4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
27 * Kstat definitions for the SMB server module.
29 #ifndef _SMBSRV_SMB_KSTAT_H
30 #define _SMBSRV_SMB_KSTAT_H
32 #include <smbsrv/smb.h>
33 #include <smbsrv/smb2.h>
39 #define SMBSRV_KSTAT_PROCESS "smbd"
40 #define SMBSRV_KSTAT_MODULE "smbsrv"
41 #define SMBSRV_KSTAT_CLASS "net"
42 #define SMBSRV_KSTAT_NAME "smbsrv"
43 #define SMBSRV_KSTAT_NAME_CMDS "smbsrv_commands"
44 #define SMBSRV_KSTAT_TXRCACHE "smb_txreq"
45 #define SMBSRV_KSTAT_REQUEST_CACHE "smb_request_cache"
46 #define SMBSRV_KSTAT_SESSION_CACHE "smb_session_cache"
47 #define SMBSRV_KSTAT_USER_CACHE "smb_user_cache"
48 #define SMBSRV_KSTAT_TREE_CACHE "smb_tree_cache"
49 #define SMBSRV_KSTAT_OFILE_CACHE "smb_ofile_cache"
50 #define SMBSRV_KSTAT_ODIR_CACHE "smb_odir_cache"
51 #define SMBSRV_KSTAT_NODE_CACHE "smb_node_cache"
52 #define SMBSRV_KSTAT_MBC_CACHE "smb_mbc_cache"
53 #define SMBSRV_KSTAT_STATISTICS "smbsrv_statistics"
54 #define SMBSRV_KSTAT_UNSUPPORTED "Unsupported"
55 #define SMBSRV_KSTAT_WORKERS "smb_workers"
59 typedef struct smb_kstat_utilization
{
64 } smb_kstat_utilization_t
;
66 typedef struct smb_kstat_req
{
67 char kr_name
[KSTAT_STRLEN
];
68 char kr_pad
[(~(KSTAT_STRLEN
& 0x07) + 1) & 0x07];
79 typedef struct smbsrv_kstats
{
80 hrtime_t ks_start_time
;
81 uint64_t ks_txb
; /* Bytes transmitted */
82 uint64_t ks_rxb
; /* Bytes received */
83 uint64_t ks_nreq
; /* Requests treated */
84 smb_kstat_utilization_t ks_utilization
;
85 smb_kstat_req_t ks_reqs1
[SMB_COM_NUM
];
86 smb_kstat_req_t ks_reqs2
[SMB2__NCMDS
];
87 uint32_t ks_nbt_sess
; /* NBT sessions */
88 uint32_t ks_tcp_sess
; /* TCP sessions */
89 uint32_t ks_users
; /* Users logged in */
90 uint32_t ks_trees
; /* Trees connected */
91 uint32_t ks_files
; /* Open files */
92 uint32_t ks_pipes
; /* Open pipes */
93 uint32_t ks_maxreqs
; /* Max number of reqs */
103 #endif /* _SMBSRV_SMB_KSTAT_H */