ioport.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/mips/kernel/ioport.c
  3.  */
  4. #include <linux/sched.h>
  5. #include <linux/kernel.h>
  6. #include <linux/errno.h>
  7. #include <linux/types.h>
  8. #include <linux/ioport.h>
  9. /*
  10.  * This changes the io permissions bitmap in the current task.
  11.  */
  12. asmlinkage int sys_ioperm(unsigned long from, unsigned long num, int turn_on)
  13. {
  14. return -ENOSYS;
  15. }
  16. /*
  17.  * sys_iopl has to be used when you want to access the IO ports
  18.  * beyond the 0x3ff range: to get the full 65536 ports bitmapped
  19.  * you'd need 8kB of bitmaps/process, which is a bit excessive.
  20.  *
  21.  * Here we just change the eflags value on the stack: we allow
  22.  * only the super-user to do it. This depends on the stack-layout
  23.  * on system-call entry - see also fork() and the signal handling
  24.  * code.
  25.  */
  26. asmlinkage int sys_iopl(long ebx,long ecx,long edx,
  27.      long esi, long edi, long ebp, long eax, long ds,
  28.      long es, long fs, long gs, long orig_eax,
  29.      long eip,long cs,long eflags,long esp,long ss)
  30. {
  31. return -ENOSYS;
  32. }