taglinefilesource code
bytecount15kernel/ldt.cstatic int read_ldt(void * ptr, unsigned long bytecount)
bytecount28kernel/ldt.cif (size > bytecount)
bytecount29kernel/ldt.csize = bytecount;
bytecount37kernel/ldt.cstatic int write_ldt(void * ptr, unsigned long bytecount)
bytecount44kernel/ldt.cif (bytecount != sizeof(ldt_info))
bytecount95kernel/ldt.casmlinkage int sys_modify_ldt(int func, void *ptr, unsigned long bytecount)
bytecount98kernel/ldt.creturn read_ldt(ptr, bytecount);
bytecount100kernel/ldt.creturn write_ldt(ptr, bytecount);