patch-2.1.54 linux/include/asm-alpha/uaccess.h
Next file: linux/include/asm-i386/bugs.h
Previous file: linux/include/asm-alpha/pgtable.h
Back to the patch index
Back to the overall index
- Lines: 29
- Date:
Sat Sep 6 10:23:14 1997
- Orig file:
v2.1.53/linux/include/asm-alpha/uaccess.h
- Orig date:
Mon Apr 14 16:28:18 1997
diff -u --recursive --new-file v2.1.53/linux/include/asm-alpha/uaccess.h linux/include/asm-alpha/uaccess.h
@@ -10,6 +10,10 @@
* performed or not. If get_fs() == USER_DS, checking is performed, with
* get_fs() == KERNEL_DS, checking is bypassed.
*
+ * Or at least it did once upon a time. Nowadays it is a mask that
+ * defines which bits of the address space are off limits. This is a
+ * wee bit faster than the above.
+ *
* For historical reasons, these macros are grossly misnamed.
*/
@@ -20,8 +24,16 @@
#define VERIFY_WRITE 1
#define get_fs() (current->tss.fs)
-#define set_fs(x) (current->tss.fs = (x))
#define get_ds() (KERNEL_DS)
+
+/* Our scheme relies on all bits being preserved. Trap those evil
+ Intellists in their plot to use unsigned short. */
+
+extern unsigned long __bad_fs_size(void);
+
+#define set_fs(x) (current->tss.fs = \
+ sizeof(x) == sizeof(unsigned long) ? (x) \
+ : __bad_fs_size())
/*
* Is a address valid? This does a straighforward calculation rather
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov