xfs: convert the per-mount dquot list to use list heads
[deliverable/linux.git] / fs / xfs / quota / xfs_dquot.h
index a0f7da586d1ba44b0901917923af5f11ca0e2183..6992a67c165aebe4ce087cf6e95e9a91e0c66c7b 100644 (file)
@@ -57,7 +57,6 @@ struct xfs_trans;
 typedef struct xfs_dqmarker {
        struct xfs_dquot*dqm_flnext;    /* link to freelist: must be first */
        struct xfs_dquot*dqm_flprev;
-       xfs_dqlink_t     dqm_mplist;    /* link to mount's list of dquots */
        xfs_dqlink_t     dqm_hashlist;  /* link to the hash chain */
        uint             dqm_flags;     /* various flags (XFS_DQ_*) */
 } xfs_dqmarker_t;
@@ -67,6 +66,7 @@ typedef struct xfs_dqmarker {
  */
 typedef struct xfs_dquot {
        xfs_dqmarker_t   q_lists;       /* list ptrs, q_flags (marker) */
+       struct list_head q_mplist;      /* mount's list of dquots */
        xfs_dqhash_t    *q_hash;        /* the hashchain header */
        struct xfs_mount*q_mount;       /* filesystem this relates to */
        struct xfs_trans*q_transp;      /* trans this belongs to currently */
This page took 0.028121 seconds and 5 git commands to generate.