From 2c12b90a84c544343e384e1d60d03b10be9fc45b Mon Sep 17 00:00:00 2001 From: Raghavendra G Date: Thu, 21 Apr 2011 05:03:56 +0000 Subject: features/marker-quota: handle creation of regular files using mknod. - Add the disk-used to parents' size. Signed-off-by: Raghavendra G Signed-off-by: Anand Avati BUG: 2649 (Quota: size field is not getting updated properly) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2649 --- xlators/features/marker/src/marker.c | 6 ++++++ xlators/features/marker/src/marker.h | 1 + 2 files changed, 7 insertions(+) diff --git a/xlators/features/marker/src/marker.c b/xlators/features/marker/src/marker.c index 862c0a464aa..8ab66f46e1f 100644 --- a/xlators/features/marker/src/marker.c +++ b/xlators/features/marker/src/marker.c @@ -1267,6 +1267,10 @@ marker_mknod_cbk (call_frame_t *frame, void *cookie, xlator_t *this, priv = this->private; + if ((priv->feature_enabled & GF_QUOTA) && (S_ISREG (local->mode))) { + inspect_file_xattr (this, &local->loc, NULL, *buf); + } + if (priv->feature_enabled & GF_XTIME) marker_xtime_update_marks (this, local); out: @@ -1294,6 +1298,8 @@ marker_mknod (call_frame_t *frame, xlator_t *this, loc_t *loc, mode_t mode, ret = loc_copy (&local->loc, loc); + local->mode = mode; + if (ret == -1) goto err; wind: diff --git a/xlators/features/marker/src/marker.h b/xlators/features/marker/src/marker.h index 70b5e8567d3..ea1f5cc0a99 100644 --- a/xlators/features/marker/src/marker.h +++ b/xlators/features/marker/src/marker.h @@ -68,6 +68,7 @@ struct marker_local{ int32_t ref; int32_t ia_nlink; gf_lock_t lock; + mode_t mode; struct marker_local *oplocal; }; typedef struct marker_local marker_local_t; -- cgit