diff options
author | Josef 'Jeff' Sipek <jeffpc@josefsipek.net> | 2015-01-20 08:01:27 -0500 |
---|---|---|
committer | Robert Mustacchi <rm@joyent.com> | 2015-01-26 22:06:43 -0800 |
commit | 6ac69b9e8b1fd0a0c01fff97ef2c9510c8934330 (patch) | |
tree | 0108e7bc1e6011728f6a4e3c1fb1e0d8d0d33d8a | |
parent | b045990893825c31e176b319ae8cc4ef32115d17 (diff) | |
download | illumos-joyent-6ac69b9e8b1fd0a0c01fff97ef2c9510c8934330.tar.gz |
5545 remove unused pritospl and spltopri
Reviewed by: Marcel Telka <marcel@telka.sk>
Reviewed by: Dan McDonald <danmcd@omniti.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Approved by: Robert Mustacchi <rm@joyent.com>
-rw-r--r-- | usr/src/uts/intel/sys/spl.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/usr/src/uts/intel/sys/spl.h b/usr/src/uts/intel/sys/spl.h index 9e0619204e..2f74eb31c9 100644 --- a/usr/src/uts/intel/sys/spl.h +++ b/usr/src/uts/intel/sys/spl.h @@ -27,25 +27,15 @@ #ifndef _SYS_SPL_H #define _SYS_SPL_H -#pragma ident "%Z%%M% %I% %E% SMI" - #ifdef __cplusplus extern "C" { #endif /* - * Convert system interrupt priorities (0-7) into a psr for splx. - * In general, the processor priority (0-15) should be 2 times - * the system pririty. - */ -#define pritospl(n) ((n) << 1) - -/* * on x86 platform these are identity functions */ #define ipltospl(n) (n) #define spltoipl(n) (n) -#define spltopri(n) (n) /* * Hardware spl levels |