quota.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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_qa_alloc(struct gfs2_inode *ip);
  17. extern void gfs2_qa_delete(struct gfs2_inode *ip, atomic_t *wcount);
  18. extern int gfs2_quota_hold(struct gfs2_inode *ip, kuid_t uid, kgid_t gid);
  19. extern void gfs2_quota_unhold(struct gfs2_inode *ip);
  20. extern int gfs2_quota_lock(struct gfs2_inode *ip, kuid_t uid, kgid_t gid);
  21. extern void gfs2_quota_unlock(struct gfs2_inode *ip);
  22. extern int gfs2_quota_check(struct gfs2_inode *ip, kuid_t uid, kgid_t gid,
  23. struct gfs2_alloc_parms *ap);
  24. extern void gfs2_quota_change(struct gfs2_inode *ip, s64 change,
  25. kuid_t uid, kgid_t gid);
  26. extern int gfs2_quota_sync(struct super_block *sb, int type);
  27. extern int gfs2_quota_refresh(struct gfs2_sbd *sdp, struct kqid qid);
  28. extern int gfs2_quota_init(struct gfs2_sbd *sdp);
  29. extern void gfs2_quota_cleanup(struct gfs2_sbd *sdp);
  30. extern int gfs2_quotad(void *data);
  31. extern void gfs2_wake_up_statfs(struct gfs2_sbd *sdp);
  32. static inline int gfs2_quota_lock_check(struct gfs2_inode *ip,
  33. struct gfs2_alloc_parms *ap)
  34. {
  35. struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
  36. int ret;
  37. ap->allowed = UINT_MAX; /* Assume we are permitted a whole lot */
  38. if (sdp->sd_args.ar_quota == GFS2_QUOTA_OFF)
  39. return 0;
  40. ret = gfs2_quota_lock(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE);
  41. if (ret)
  42. return ret;
  43. if (sdp->sd_args.ar_quota != GFS2_QUOTA_ON)
  44. return 0;
  45. ret = gfs2_quota_check(ip, ip->i_inode.i_uid, ip->i_inode.i_gid, ap);
  46. if (ret)
  47. gfs2_quota_unlock(ip);
  48. return ret;
  49. }
  50. extern const struct quotactl_ops gfs2_quotactl_ops;
  51. extern struct shrinker gfs2_qd_shrinker;
  52. extern struct list_lru gfs2_qd_lru;
  53. extern void __init gfs2_quota_hash_init(void);
  54. #endif /* __QUOTA_DOT_H__ */