noquot.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* noquot.c: Quota stubs necessary for when quotas are not
  2.  *           compiled into the kernel.
  3.  */
  4. #include <linux/kernel.h>
  5. #include <linux/types.h>
  6. #include <linux/errno.h>
  7. int nr_dquots, nr_free_dquots;
  8. int max_dquots;
  9. asmlinkage long sys_quotactl(int cmd, const char *special, int id, caddr_t addr)
  10. {
  11. return(-ENOSYS);
  12. }