quota.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #ifndef __QUOTA_DOT_H__
  10. #define __QUOTA_DOT_H__
  11. #include <linux/list_lru.h>
  12. struct gfs2_inode;
  13. struct gfs2_sbd;
  14. #define NO_UID_QUOTA_CHANGE INVALID_UID
  15. #define NO_GID_QUOTA_CHANGE INVALID_GID
  16. extern int gfs2_quota_hold(struct gfs2_inode *ip, kuid_t uid, kgid_t gid);
  17. extern void gfs2_quota_unhold(struct gfs2_inode *ip);
  18. extern int gfs2_quota_lock(struct gfs2_inode *ip, kuid_t uid, kgid_t gid);
  19. extern void gfs2_quota_unlock(struct gfs2_inode *ip);
  20. extern int gfs2_quota_check(struct gfs2_inode *ip, kuid_t uid, kgid_t gid,
  21. struct gfs2_alloc_parms *ap);
  22. extern void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
  23. kuid_t uid, kgid_t gid);
  24. extern int gfs2_quota_sync(struct super_block *sb, int type);
  25. extern int gfs2_quota_refresh(struct gfs2_sbd *sdp, struct kqid qid);
  26. extern int gfs2_quota_init(struct gfs2_sbd *sdp);
  27. extern void gfs2_quota_cleanup(struct gfs2_sbd *sdp);
  28. extern int gfs2_quotad(void *data);
  29. extern void gfs2_wake_up_statfs(struct gfs2_sbd *sdp);
  30. static inline int gfs2_quota_lock_check(struct gfs2_inode *ip,
  31. struct gfs2_alloc_parms *ap)
  32. {
  33. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  34. int ret;
  35. ap->allowed = UINT_MAX; /* Assume we are permitted a whole lot */
  36. if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
  37. return 0;
  38. ret = gfs2_quota_lock(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
  39. if (ret)
  40. return ret;
  41. if (sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
  42. return 0;
  43. ret = gfs2_quota_check(ip, ip->i_inode.i_uid, ip->i_inode.i_gid, ap);
  44. if (ret)
  45. gfs2_quota_unlock(ip);
  46. return ret;
  47. }
  48. extern const struct quotactl_ops gfs2_quotactl_ops;
  49. extern struct shrinker gfs2_qd_shrinker;
  50. extern struct list_lru gfs2_qd_lru;
  51. extern void __init gfs2_quota_hash_init(void);
  52. #endif /* __QUOTA_DOT_H__ */