~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux/fs/noquot.c

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

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

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.