50dc83
From 0c485548b4126ed907dec9941209b1b1312d0b5d Mon Sep 17 00:00:00 2001
50dc83
From: Sheetal Pamecha <spamecha@redhat.com>
50dc83
Date: Wed, 19 Jun 2019 15:08:58 +0530
50dc83
Subject: [PATCH 215/221] posix: modify storage.reserve option to take size and
50dc83
 percent
50dc83
50dc83
* reverting changes made in
50dc83
https://review.gluster.org/#/c/glusterfs/+/21686/
50dc83
50dc83
* Now storage.reserve can take value in percent or bytes
50dc83
50dc83
> fixes: bz#1651445
50dc83
> Change-Id: Id4826210ec27991c55b17d1fecd90356bff3e036
50dc83
> Signed-off-by: Sheetal Pamecha <spamecha@redhat.com>
50dc83
> Cherry pick from commit 5cbc87d8b8f1287e81c38b793b8d13b057208c62
50dc83
> Reviewed on upstream link https://review.gluster.org/#/c/glusterfs/+/22900/
50dc83
50dc83
BUG: 1573077
50dc83
Change-Id: Id4826210ec27991c55b17d1fecd90356bff3e036
50dc83
Signed-off-by: Sheetal Pamecha <spamecha@redhat.com>
50dc83
Reviewed-on: https://code.engineering.redhat.com/gerrit/174744
50dc83
Tested-by: RHGS Build Bot <nigelb@redhat.com>
50dc83
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
50dc83
---
50dc83
 tests/bugs/posix/bug-1651445.t                  | 29 +++++++++-------------
50dc83
 xlators/mgmt/glusterd/src/glusterd-volume-set.c | 33 -------------------------
50dc83
 xlators/storage/posix/src/posix-common.c        | 33 +++++++++++--------------
50dc83
 xlators/storage/posix/src/posix-helpers.c       | 26 +++++++++----------
50dc83
 xlators/storage/posix/src/posix-inode-fd-ops.c  | 15 ++++++-----
50dc83
 xlators/storage/posix/src/posix.h               |  4 +--
50dc83
 6 files changed, 51 insertions(+), 89 deletions(-)
50dc83
50dc83
diff --git a/tests/bugs/posix/bug-1651445.t b/tests/bugs/posix/bug-1651445.t
50dc83
index f6f1833..5248d47 100644
50dc83
--- a/tests/bugs/posix/bug-1651445.t
50dc83
+++ b/tests/bugs/posix/bug-1651445.t
50dc83
@@ -17,39 +17,34 @@ TEST $CLI volume start $V0
50dc83
 
50dc83
 TEST glusterfs --volfile-id=/$V0 --volfile-server=$H0 $M0
50dc83
 
50dc83
-TEST $CLI volume set $V0 storage.reserve-size 10MB
50dc83
+#Setting the size in bytes
50dc83
+TEST $CLI volume set $V0 storage.reserve 40MB
50dc83
 
50dc83
-#No effect as priority to reserve-size
50dc83
-TEST $CLI volume set $V0 storage.reserve 20
50dc83
+#wait 5s to reset disk_space_full flag
50dc83
+sleep 5
50dc83
 
50dc83
 TEST dd if=/dev/zero of=$M0/a bs=100M count=1
50dc83
-sleep 5
50dc83
+TEST dd if=/dev/zero of=$M0/b bs=10M count=1
50dc83
 
50dc83
-#Below dd confirms posix is giving priority to reserve-size
50dc83
-TEST dd if=/dev/zero of=$M0/b bs=40M count=1
50dc83
+# Wait 5s to update disk_space_full flag because thread check disk space
50dc83
+# after every 5s
50dc83
 
50dc83
 sleep 5
50dc83
+# setup_lvm create lvm partition of 150M and 40M are reserve so after
50dc83
+# consuming more than 110M next dd should fail
50dc83
 TEST ! dd if=/dev/zero of=$M0/c bs=5M count=1
50dc83
 
50dc83
 rm -rf $M0/*
50dc83
-#Size will reserve from the previously set reserve option = 20%
50dc83
-TEST $CLI volume set $V0 storage.reserve-size 0
50dc83
 
50dc83
-#Overwrite reserve option
50dc83
-TEST $CLI volume set $V0 storage.reserve-size 40MB
50dc83
+#Setting the size in percent and repeating the above steps
50dc83
+TEST $CLI volume set $V0 storage.reserve 40
50dc83
 
50dc83
-#wait 5s to reset disk_space_full flag
50dc83
 sleep 5
50dc83
 
50dc83
-TEST dd if=/dev/zero of=$M0/a bs=100M count=1
50dc83
+TEST dd if=/dev/zero of=$M0/a bs=80M count=1
50dc83
 TEST dd if=/dev/zero of=$M0/b bs=10M count=1
50dc83
 
50dc83
-# Wait 5s to update disk_space_full flag because thread check disk space
50dc83
-# after every 5s
50dc83
-
50dc83
 sleep 5
50dc83
-# setup_lvm create lvm partition of 150M and 40M are reserve so after
50dc83
-# consuming more than 110M next dd should fail
50dc83
 TEST ! dd if=/dev/zero of=$M0/c bs=5M count=1
50dc83
 
50dc83
 TEST $CLI volume stop $V0
50dc83
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-set.c b/xlators/mgmt/glusterd/src/glusterd-volume-set.c
50dc83
index 3a7ab83..7a83124 100644
50dc83
--- a/xlators/mgmt/glusterd/src/glusterd-volume-set.c
50dc83
+++ b/xlators/mgmt/glusterd/src/glusterd-volume-set.c
50dc83
@@ -1231,30 +1231,6 @@ out:
50dc83
 
50dc83
     return ret;
50dc83
 }
50dc83
-static int
50dc83
-validate_size(glusterd_volinfo_t *volinfo, dict_t *dict, char *key, char *value,
50dc83
-              char **op_errstr)
50dc83
-{
50dc83
-    xlator_t *this = NULL;
50dc83
-    uint64_t size = 0;
50dc83
-    int ret = -1;
50dc83
-
50dc83
-    this = THIS;
50dc83
-    GF_VALIDATE_OR_GOTO("glusterd", this, out);
50dc83
-    ret = gf_string2bytesize_uint64(value, &size);
50dc83
-    if (ret < 0) {
50dc83
-        gf_asprintf(op_errstr,
50dc83
-                    "%s is not a valid size. %s "
50dc83
-                    "expects a valid value in bytes",
50dc83
-                    value, key);
50dc83
-        gf_msg(this->name, GF_LOG_ERROR, 0, GD_MSG_INVALID_ENTRY, "%s",
50dc83
-               *op_errstr);
50dc83
-    }
50dc83
-out:
50dc83
-    gf_msg_debug("glusterd", 0, "Returning %d", ret);
50dc83
-
50dc83
-    return ret;
50dc83
-}
50dc83
 
50dc83
 /* dispatch table for VOLUME SET
50dc83
  * -----------------------------
50dc83
@@ -2854,15 +2830,6 @@ struct volopt_map_entry glusterd_volopt_map[] = {
50dc83
         .op_version = GD_OP_VERSION_3_13_0,
50dc83
     },
50dc83
     {
50dc83
-        .key = "storage.reserve-size",
50dc83
-        .voltype = "storage/posix",
50dc83
-        .value = "0",
50dc83
-        .validate_fn = validate_size,
50dc83
-        .description = "If set, priority will be given to "
50dc83
-                       "storage.reserve-size over storage.reserve",
50dc83
-        .op_version = GD_OP_VERSION_7_0,
50dc83
-    },
50dc83
-    {
50dc83
         .option = "health-check-timeout",
50dc83
         .key = "storage.health-check-timeout",
50dc83
         .type = NO_DOC,
50dc83
diff --git a/xlators/storage/posix/src/posix-common.c b/xlators/storage/posix/src/posix-common.c
50dc83
index 0f70af5..bfe2cb0 100644
50dc83
--- a/xlators/storage/posix/src/posix-common.c
50dc83
+++ b/xlators/storage/posix/src/posix-common.c
50dc83
@@ -345,12 +345,14 @@ posix_reconfigure(xlator_t *this, dict_t *options)
50dc83
                " fallback to <hostname>:<export>");
50dc83
     }
50dc83
 
50dc83
-    GF_OPTION_RECONF("reserve-size", priv->disk_reserve_size, options, size,
50dc83
+    GF_OPTION_RECONF("reserve", priv->disk_reserve, options, percent_or_size,
50dc83
                      out);
50dc83
+    /* option can be any one of percent or bytes */
50dc83
+    priv->disk_unit = 0;
50dc83
+    if (priv->disk_reserve < 100.0)
50dc83
+        priv->disk_unit = 'p';
50dc83
 
50dc83
-    GF_OPTION_RECONF("reserve", priv->disk_reserve_percent, options, uint32,
50dc83
-                     out);
50dc83
-    if (priv->disk_reserve_size || priv->disk_reserve_percent) {
50dc83
+    if (priv->disk_reserve) {
50dc83
         ret = posix_spawn_disk_space_check_thread(this);
50dc83
         if (ret) {
50dc83
             gf_msg(this->name, GF_LOG_INFO, 0, P_MSG_DISK_SPACE_CHECK_FAILED,
50dc83
@@ -975,11 +977,15 @@ posix_init(xlator_t *this)
50dc83
 
50dc83
     _private->disk_space_check_active = _gf_false;
50dc83
     _private->disk_space_full = 0;
50dc83
-    GF_OPTION_INIT("reserve-size", _private->disk_reserve_size, size, out);
50dc83
 
50dc83
-    GF_OPTION_INIT("reserve", _private->disk_reserve_percent, uint32, out);
50dc83
+    GF_OPTION_INIT("reserve", _private->disk_reserve, percent_or_size, out);
50dc83
+
50dc83
+    /* option can be any one of percent or bytes */
50dc83
+    _private->disk_unit = 0;
50dc83
+    if (_private->disk_reserve < 100.0)
50dc83
+        _private->disk_unit = 'p';
50dc83
 
50dc83
-    if (_private->disk_reserve_size || _private->disk_reserve_percent) {
50dc83
+    if (_private->disk_reserve) {
50dc83
         ret = posix_spawn_disk_space_check_thread(this);
50dc83
         if (ret) {
50dc83
             gf_msg(this->name, GF_LOG_INFO, 0, P_MSG_DISK_SPACE_CHECK_FAILED,
50dc83
@@ -1221,23 +1227,14 @@ struct volume_options posix_options[] = {
50dc83
      .op_version = {GD_OP_VERSION_4_0_0},
50dc83
      .flags = OPT_FLAG_SETTABLE | OPT_FLAG_DOC},
50dc83
     {.key = {"reserve"},
50dc83
-     .type = GF_OPTION_TYPE_INT,
50dc83
+     .type = GF_OPTION_TYPE_PERCENT_OR_SIZET,
50dc83
      .min = 0,
50dc83
      .default_value = "1",
50dc83
      .validate = GF_OPT_VALIDATE_MIN,
50dc83
-     .description = "Percentage of disk space to be reserved."
50dc83
+     .description = "Percentage/Size of disk space to be reserved."
50dc83
                     " Set to 0 to disable",
50dc83
      .op_version = {GD_OP_VERSION_3_13_0},
50dc83
      .flags = OPT_FLAG_SETTABLE | OPT_FLAG_DOC},
50dc83
-    {.key = {"reserve-size"},
50dc83
-     .type = GF_OPTION_TYPE_SIZET,
50dc83
-     .min = 0,
50dc83
-     .default_value = "0",
50dc83
-     .validate = GF_OPT_VALIDATE_MIN,
50dc83
-     .description = "size in megabytes to be reserved for disk space."
50dc83
-                    " Set to 0 to disable",
50dc83
-     .op_version = {GD_OP_VERSION_7_0},
50dc83
-     .flags = OPT_FLAG_SETTABLE | OPT_FLAG_DOC},
50dc83
     {.key = {"batch-fsync-mode"},
50dc83
      .type = GF_OPTION_TYPE_STR,
50dc83
      .default_value = "reverse-fsync",
50dc83
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c
50dc83
index 849db3d..07169b5 100644
50dc83
--- a/xlators/storage/posix/src/posix-helpers.c
50dc83
+++ b/xlators/storage/posix/src/posix-helpers.c
50dc83
@@ -2246,11 +2246,11 @@ posix_disk_space_check(xlator_t *this)
50dc83
     struct posix_private *priv = NULL;
50dc83
     char *subvol_path = NULL;
50dc83
     int op_ret = 0;
50dc83
-    uint64_t size = 0;
50dc83
-    int percent = 0;
50dc83
+    double size = 0;
50dc83
+    double percent = 0;
50dc83
     struct statvfs buf = {0};
50dc83
-    uint64_t totsz = 0;
50dc83
-    uint64_t freesz = 0;
50dc83
+    double totsz = 0;
50dc83
+    double freesz = 0;
50dc83
 
50dc83
     GF_VALIDATE_OR_GOTO(this->name, this, out);
50dc83
     priv = this->private;
50dc83
@@ -2258,14 +2258,6 @@ posix_disk_space_check(xlator_t *this)
50dc83
 
50dc83
     subvol_path = priv->base_path;
50dc83
 
50dc83
-    if (priv->disk_reserve_size) {
50dc83
-        size = priv->disk_reserve_size;
50dc83
-    } else {
50dc83
-        percent = priv->disk_reserve_percent;
50dc83
-        totsz = (buf.f_blocks * buf.f_bsize);
50dc83
-        size = ((totsz * percent) / 100);
50dc83
-    }
50dc83
-
50dc83
     op_ret = sys_statvfs(subvol_path, &buf;;
50dc83
 
50dc83
     if (op_ret == -1) {
50dc83
@@ -2273,8 +2265,16 @@ posix_disk_space_check(xlator_t *this)
50dc83
                "statvfs failed on %s", subvol_path);
50dc83
         goto out;
50dc83
     }
50dc83
-    freesz = (buf.f_bfree * buf.f_bsize);
50dc83
 
50dc83
+    if (priv->disk_unit == 'p') {
50dc83
+        percent = priv->disk_reserve;
50dc83
+        totsz = (buf.f_blocks * buf.f_bsize);
50dc83
+        size = ((totsz * percent) / 100);
50dc83
+    } else {
50dc83
+        size = priv->disk_reserve;
50dc83
+    }
50dc83
+
50dc83
+    freesz = (buf.f_bfree * buf.f_bsize);
50dc83
     if (freesz <= size) {
50dc83
         priv->disk_space_full = 1;
50dc83
     } else {
50dc83
diff --git a/xlators/storage/posix/src/posix-inode-fd-ops.c b/xlators/storage/posix/src/posix-inode-fd-ops.c
50dc83
index b92c411..fc847d6 100644
50dc83
--- a/xlators/storage/posix/src/posix-inode-fd-ops.c
50dc83
+++ b/xlators/storage/posix/src/posix-inode-fd-ops.c
50dc83
@@ -720,7 +720,7 @@ posix_do_fallocate(call_frame_t *frame, xlator_t *this, fd_t *fd, int32_t flags,
50dc83
        thread after every 5 sec sleep to working correctly storage.reserve
50dc83
        option behaviour
50dc83
     */
50dc83
-    if (priv->disk_reserve_size || priv->disk_reserve_percent)
50dc83
+    if (priv->disk_reserve)
50dc83
         posix_disk_space_check(this);
50dc83
 
50dc83
     DISK_SPACE_CHECK_AND_GOTO(frame, priv, xdata, ret, ret, out);
50dc83
@@ -2306,7 +2306,7 @@ posix_statfs(call_frame_t *frame, xlator_t *this, loc_t *loc, dict_t *xdata)
50dc83
     };
50dc83
     struct posix_private *priv = NULL;
50dc83
     int shared_by = 1;
50dc83
-    int percent = 0;
50dc83
+    double percent = 0;
50dc83
     uint64_t reserved_blocks = 0;
50dc83
 
50dc83
     VALIDATE_OR_GOTO(frame, out);
50dc83
@@ -2332,11 +2332,14 @@ posix_statfs(call_frame_t *frame, xlator_t *this, loc_t *loc, dict_t *xdata)
50dc83
         goto out;
50dc83
     }
50dc83
 
50dc83
-    if (priv->disk_reserve_size) {
50dc83
-        reserved_blocks = priv->disk_reserve_size / buf.f_bsize;
50dc83
+    if (priv->disk_unit == 'p') {
50dc83
+        percent = priv->disk_reserve;
50dc83
+        reserved_blocks = (((buf.f_blocks * percent) / 100) + 0.5);
50dc83
     } else {
50dc83
-        percent = priv->disk_reserve_percent;
50dc83
-        reserved_blocks = (buf.f_blocks * percent) / 100;
50dc83
+        if (buf.f_bsize) {
50dc83
+            reserved_blocks = (priv->disk_reserve + buf.f_bsize - 1) /
50dc83
+                              buf.f_bsize;
50dc83
+        }
50dc83
     }
50dc83
 
50dc83
     if (buf.f_bfree > reserved_blocks) {
50dc83
diff --git a/xlators/storage/posix/src/posix.h b/xlators/storage/posix/src/posix.h
50dc83
index 4364b96..b0935a7 100644
50dc83
--- a/xlators/storage/posix/src/posix.h
50dc83
+++ b/xlators/storage/posix/src/posix.h
50dc83
@@ -225,8 +225,8 @@ struct posix_private {
50dc83
     pthread_t health_check;
50dc83
     gf_boolean_t health_check_active;
50dc83
 
50dc83
-    uint32_t disk_reserve_percent;
50dc83
-    uint64_t disk_reserve_size;
50dc83
+    double disk_reserve;
50dc83
+    char disk_unit;
50dc83
     uint32_t disk_space_full;
50dc83
     pthread_t disk_space_check;
50dc83
     gf_boolean_t disk_space_check_active;
50dc83
-- 
50dc83
1.8.3.1
50dc83