diff options
author | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-04-21 17:29:47 +0000 |
---|---|---|
committer | behlendo <behlendo@7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c> | 2008-04-21 17:29:47 +0000 |
commit | 937879f11db15a4842306f9da4b4a3e60cf073b7 (patch) | |
tree | 3a72837d2323df2f844951229ecbbdb22925ac6a /include/sys/sysmacros.h | |
parent | 2fae1b3d0af1caa2aaa77552a0c96f121016381d (diff) |
Update SPL to use new debug infrastructure. This means:
- Replacing all BUG_ON()'s with proper ASSERT()'s
- Using ENTRY,EXIT,GOTO, and RETURN macro to instument call paths
git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@78 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
Diffstat (limited to 'include/sys/sysmacros.h')
-rw-r--r-- | include/sys/sysmacros.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/sysmacros.h b/include/sys/sysmacros.h index 62a51aa38..0cafd7122 100644 --- a/include/sys/sysmacros.h +++ b/include/sys/sysmacros.h @@ -98,8 +98,8 @@ extern "C" { #define DTRACE_PROBE4(a, b, c, d, e, f, g, h, i) ((void)0) /* Missing globals */ -extern unsigned long spl_hostid; -extern char spl_hw_serial[11]; +extern long spl_hostid; +extern char hw_serial[11]; extern int p0; /* Missing misc functions */ |