|
|
74096c |
From 7c51addf7912a94320e6b148bd66f2dbf274c533 Mon Sep 17 00:00:00 2001
|
|
|
74096c |
From: Pranith Kumar K <pkarampu@redhat.com>
|
|
|
74096c |
Date: Mon, 11 Mar 2019 14:04:39 +0530
|
|
|
74096c |
Subject: [PATCH 464/465] storage/posix: Remove nr_files usage
|
|
|
74096c |
|
|
|
74096c |
nr_files is supposed to represent the number of files opened in posix.
|
|
|
74096c |
Present logic doesn't seem to handle anon-fds because of which the
|
|
|
74096c |
counts would always be wrong.
|
|
|
74096c |
|
|
|
74096c |
I don't remember anyone using this value in debugging any problem probably
|
|
|
74096c |
because we always have 'ls -l /proc/<pid>/fd' which not only prints the
|
|
|
74096c |
fds that are active but also prints their paths. It also handles directories
|
|
|
74096c |
and anon-fds which actually opened the file. So removing this code
|
|
|
74096c |
instead of fixing the buggy logic to have the nr_files.
|
|
|
74096c |
|
|
|
74096c |
> fixes bz#1688106
|
|
|
74096c |
> Change-Id: Ibf8713fdfdc1ef094e08e6818152637206a54040
|
|
|
74096c |
> Signed-off-by: Pranith Kumar K <pkarampu@redhat.com>
|
|
|
74096c |
> (Cherry pick from commit f5987d38f216a3142dfe45f03bf66ff4827d9b55)
|
|
|
74096c |
> (Reviewed on upstream link https://review.gluster.org/#/c/glusterfs/+/22333/)
|
|
|
74096c |
|
|
|
74096c |
Change-Id: Ibf8713fdfdc1ef094e08e6818152637206a54040
|
|
|
74096c |
BUG: 1851989
|
|
|
74096c |
Signed-off-by: Mohit Agrawal<moagrawa@redhat.com>
|
|
|
74096c |
Reviewed-on: https://code.engineering.redhat.com/gerrit/209468
|
|
|
74096c |
Tested-by: RHGS Build Bot <nigelb@redhat.com>
|
|
|
74096c |
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
|
|
|
74096c |
---
|
|
|
74096c |
xlators/storage/posix/src/posix-common.c | 2 --
|
|
|
74096c |
xlators/storage/posix/src/posix-entry-ops.c | 2 --
|
|
|
74096c |
xlators/storage/posix/src/posix-inode-fd-ops.c | 2 --
|
|
|
74096c |
xlators/storage/posix/src/posix.h | 1 -
|
|
|
74096c |
4 files changed, 7 deletions(-)
|
|
|
74096c |
|
|
|
74096c |
diff --git a/xlators/storage/posix/src/posix-common.c b/xlators/storage/posix/src/posix-common.c
|
|
|
74096c |
index ac53796..b317627 100644
|
|
|
74096c |
--- a/xlators/storage/posix/src/posix-common.c
|
|
|
74096c |
+++ b/xlators/storage/posix/src/posix-common.c
|
|
|
74096c |
@@ -128,7 +128,6 @@ posix_priv(xlator_t *this)
|
|
|
74096c |
gf_proc_dump_write("max_read", "%" PRId64, GF_ATOMIC_GET(priv->read_value));
|
|
|
74096c |
gf_proc_dump_write("max_write", "%" PRId64,
|
|
|
74096c |
GF_ATOMIC_GET(priv->write_value));
|
|
|
74096c |
- gf_proc_dump_write("nr_files", "%" PRId64, GF_ATOMIC_GET(priv->nr_files));
|
|
|
74096c |
|
|
|
74096c |
return 0;
|
|
|
74096c |
}
|
|
|
74096c |
@@ -815,7 +814,6 @@ posix_init(xlator_t *this)
|
|
|
74096c |
}
|
|
|
74096c |
|
|
|
74096c |
LOCK_INIT(&_private->lock);
|
|
|
74096c |
- GF_ATOMIC_INIT(_private->nr_files, 0);
|
|
|
74096c |
GF_ATOMIC_INIT(_private->read_value, 0);
|
|
|
74096c |
GF_ATOMIC_INIT(_private->write_value, 0);
|
|
|
74096c |
|
|
|
74096c |
diff --git a/xlators/storage/posix/src/posix-entry-ops.c b/xlators/storage/posix/src/posix-entry-ops.c
|
|
|
74096c |
index 65650b3..b3a5381 100644
|
|
|
74096c |
--- a/xlators/storage/posix/src/posix-entry-ops.c
|
|
|
74096c |
+++ b/xlators/storage/posix/src/posix-entry-ops.c
|
|
|
74096c |
@@ -2243,8 +2243,6 @@ fill_stat:
|
|
|
74096c |
gf_msg(this->name, GF_LOG_WARNING, 0, P_MSG_FD_PATH_SETTING_FAILED,
|
|
|
74096c |
"failed to set the fd context path=%s fd=%p", real_path, fd);
|
|
|
74096c |
|
|
|
74096c |
- GF_ATOMIC_INC(priv->nr_files);
|
|
|
74096c |
-
|
|
|
74096c |
op_ret = 0;
|
|
|
74096c |
|
|
|
74096c |
out:
|
|
|
74096c |
diff --git a/xlators/storage/posix/src/posix-inode-fd-ops.c b/xlators/storage/posix/src/posix-inode-fd-ops.c
|
|
|
74096c |
index d135d8b..81f4a6b 100644
|
|
|
74096c |
--- a/xlators/storage/posix/src/posix-inode-fd-ops.c
|
|
|
74096c |
+++ b/xlators/storage/posix/src/posix-inode-fd-ops.c
|
|
|
74096c |
@@ -1605,7 +1605,6 @@ posix_open(call_frame_t *frame, xlator_t *this, loc_t *loc, int32_t flags,
|
|
|
74096c |
gf_msg(this->name, GF_LOG_WARNING, 0, P_MSG_FD_PATH_SETTING_FAILED,
|
|
|
74096c |
"failed to set the fd context path=%s fd=%p", real_path, fd);
|
|
|
74096c |
|
|
|
74096c |
- GF_ATOMIC_INC(priv->nr_files);
|
|
|
74096c |
op_ret = 0;
|
|
|
74096c |
|
|
|
74096c |
out:
|
|
|
74096c |
@@ -2526,7 +2525,6 @@ posix_release(xlator_t *this, fd_t *fd)
|
|
|
74096c |
if (!priv)
|
|
|
74096c |
goto out;
|
|
|
74096c |
|
|
|
74096c |
- GF_ATOMIC_DEC(priv->nr_files);
|
|
|
74096c |
out:
|
|
|
74096c |
return 0;
|
|
|
74096c |
}
|
|
|
74096c |
diff --git a/xlators/storage/posix/src/posix.h b/xlators/storage/posix/src/posix.h
|
|
|
74096c |
index 61495a7..124dbb4 100644
|
|
|
74096c |
--- a/xlators/storage/posix/src/posix.h
|
|
|
74096c |
+++ b/xlators/storage/posix/src/posix.h
|
|
|
74096c |
@@ -154,7 +154,6 @@ struct posix_private {
|
|
|
74096c |
|
|
|
74096c |
gf_atomic_t read_value; /* Total read, from init */
|
|
|
74096c |
gf_atomic_t write_value; /* Total write, from init */
|
|
|
74096c |
- gf_atomic_t nr_files;
|
|
|
74096c |
/*
|
|
|
74096c |
In some cases, two exported volumes may reside on the same
|
|
|
74096c |
partition on the server. Sending statvfs info for both
|
|
|
74096c |
--
|
|
|
74096c |
1.8.3.1
|
|
|
74096c |
|