tag | line | file | source code |
bytecount | 15 | kernel/ldt.c | static int read_ldt(void * ptr, unsigned long bytecount) |
bytecount | 28 | kernel/ldt.c | if (size > bytecount) |
bytecount | 29 | kernel/ldt.c | size = bytecount; |
bytecount | 37 | kernel/ldt.c | static int write_ldt(void * ptr, unsigned long bytecount) |
bytecount | 44 | kernel/ldt.c | if (bytecount != sizeof(ldt_info)) |
bytecount | 95 | kernel/ldt.c | asmlinkage int sys_modify_ldt(int func, void *ptr, unsigned long bytecount) |
bytecount | 98 | kernel/ldt.c | return read_ldt(ptr, bytecount); |
bytecount | 100 | kernel/ldt.c | return write_ldt(ptr, bytecount); |