1700 Add SCSI UNMAP support
[unleashed.git] / usr / src / uts / common / sys / vm_usage.h
blob1aa4a8ee6df6225c178d83577ceb4566e7b23b97
1 /*
2 * CDDL HEADER START
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]
19 * CDDL HEADER END
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 #ifndef _SYS_VM_USAGE_H
27 #define _SYS_VM_USAGE_H
29 #include <sys/types.h>
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
36 * The flags passed to getvmusage() request how to aggregate rss/swap results.
37 * Results can be aggregated by zone, project, task, ruser, and/or euser.
39 * If VMUSAGE_ALL_* or VMUSAGE_COL_* are passed from a non-global-zone, the
40 * flag is treated as VMUSAGE_*. For example, VMUSAGE_ALL_ZONES would be
41 * treated as VMUSAGE_ZONE.
43 * If VMUSAGE_SYSTEM is passed from a non-global zone, a result of type
44 * VMUSAGE_SYSTEM will be returned, but it will only reflect the usage
45 * of the calling zone.
47 * VMUSAGE_* requests results for the calling zone.
48 * VMUSAGE_ALL_* requests results for all zones.
49 * VMUSAGE_COL_* requests results for all zones, but collapses out the zoneid.
50 * For example, VMUSAGE_COL_PROJECTS requests results for all
51 * projects in all zones, and project N in ANY zone is treated
52 * as the same project.
54 #define VMUSAGE_SYSTEM 0x1 /* rss/swap for ALL processes */
55 #define VMUSAGE_ZONE 0x2 /* rss/swap for caller's zone */
56 #define VMUSAGE_PROJECTS 0x4 /* rss/swap for all projects in */
57 /* caller's zone */
58 #define VMUSAGE_TASKS 0x8 /* rss/swap for all tasks in */
59 /* caller's zones */
60 #define VMUSAGE_RUSERS 0x10 /* rss/swap for all users (by process */
61 /* ruser) in the caller's zone */
62 #define VMUSAGE_EUSERS 0x20 /* same as VMUSAGE_RUSERS, but by */
63 /* euser */
65 #define VMUSAGE_ALL_ZONES 0x40 /* rss/swap for all zones */
66 #define VMUSAGE_ALL_PROJECTS 0x80 /* rss/swap for all projects in */
67 /* all zones */
68 #define VMUSAGE_ALL_TASKS 0x100 /* rss/swap for all tasks in all */
69 /* zones */
70 #define VMUSAGE_ALL_RUSERS 0x200 /* rss/swap for all users (by process */
71 /* ruser) in all zones */
72 #define VMUSAGE_ALL_EUSERS 0x400 /* same as VMUSAGE_ALL_RUSERS, but by */
73 /* euser */
75 #define VMUSAGE_COL_PROJECTS 0x800 /* rss/swap for all projects in */
76 /* all zones. Collapse zoneid. */
77 #define VMUSAGE_COL_RUSERS 0x1000 /* rss/swap for all users (by process */
78 /* ruser), in all zones. Collapse */
79 /* zoneid */
80 #define VMUSAGE_COL_EUSERS 0x2000 /* same as VMUSAGE_COL_RUSERS, but by */
81 /* euser */
83 #define VMUSAGE_MASK 0x3fff /* all valid flags for getvmusage() */
85 typedef struct vmusage {
86 id_t vmu_zoneid; /* zoneid, or ALL_ZONES for */
87 /* VMUSAGE_COL_* results */
88 /* ALL_ZONES means that the result */
89 /* reflects swap and rss usage for */
90 /* a projid/uid across all zones */
91 uint_t vmu_type; /* Entity type of result. One of: */
92 /* VMUSAGE_(SYSTEM|ZONE|PROJECTS| */
93 /* TASKS|RUSERS|EUSERS) */
94 id_t vmu_id; /* zoneid, projid, taskid, ... */
95 size_t vmu_rss_all; /* total resident memory of entity */
96 /* in bytes */
97 size_t vmu_rss_private; /* total resident private memory */
98 size_t vmu_rss_shared; /* total resident shared memory */
99 size_t vmu_swap_all; /* total swap reserved, in bytes */
100 size_t vmu_swap_private; /* swap reserved for private mappings */
101 size_t vmu_swap_shared; /* swap reserved for shared mappings */
103 } vmusage_t;
105 extern int getvmusage(uint_t flags, time_t age, vmusage_t *buf, size_t *nres);
107 #ifdef _KERNEL
109 int vm_getusage(uint_t, time_t, vmusage_t *, size_t *, int);
110 void vm_usage_init();
112 #endif /* _KERNEL */
114 #ifdef __cplusplus
116 #endif
118 #endif /* _SYS_VM_USAGE_H */