diff options
author | Brian Behlendorf <[email protected]> | 2009-02-19 11:26:17 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-02-19 11:26:17 -0800 |
commit | 99639e4a13306c3809b52e487d4343d756fad2e2 (patch) | |
tree | 0baaa1c24c08ee7b51c24dd62d48427b439fd498 /include/sys | |
parent | 63a93055fb6cfddebe31c791f7df86b14942ca9d (diff) |
Add zone_get_hostid() function
Minimal support added for the zone_get_hostid() function. Only
global zones are supported therefore this function must be called
with a NULL argumment. Additionally, I've added the HW_HOSTID_LEN
define and updated all instances where a hard coded magic value
of 11 was used; "A good riddance of bad rubbish!"
Diffstat (limited to 'include/sys')
-rw-r--r-- | include/sys/proc.h | 1 | ||||
-rw-r--r-- | include/sys/sysmacros.h | 1 | ||||
-rw-r--r-- | include/sys/systeminfo.h | 5 |
3 files changed, 7 insertions, 0 deletions
diff --git a/include/sys/proc.h b/include/sys/proc.h index ab2425ce8..a4b1da55a 100644 --- a/include/sys/proc.h +++ b/include/sys/proc.h @@ -33,6 +33,7 @@ #include <linux/sysctl.h> #include <linux/seq_file.h> #include <sys/sysmacros.h> +#include <sys/systeminfo.h> #include <sys/kmem.h> #include <sys/mutex.h> #include <sys/kstat.h> diff --git a/include/sys/sysmacros.h b/include/sys/sysmacros.h index 03e72a145..923cc22e7 100644 --- a/include/sys/sysmacros.h +++ b/include/sys/sysmacros.h @@ -143,6 +143,7 @@ extern int p0; /* Missing misc functions */ extern int highbit(unsigned long i); +extern uint32_t zone_get_hostid(void *zone); #define makedevice(maj,min) makedev(maj,min) diff --git a/include/sys/systeminfo.h b/include/sys/systeminfo.h index e297f2a5a..0e8934554 100644 --- a/include/sys/systeminfo.h +++ b/include/sys/systeminfo.h @@ -1,4 +1,9 @@ #ifndef _SPL_SYSTEMINFO_H #define _SPL_SYSTEMINFO_H +#define HW_INVALID_HOSTID 0xFFFFFFFF /* an invalid hostid */ +#define HW_HOSTID_LEN 11 /* minimum buffer size needed */ + /* to hold a decimal or hex */ + /* hostid string */ + #endif /* SPL_SYSTEMINFO_H */ |