* [PATCH v3] nfsd4: add filename to states output
@ 2020-04-20 12:50 Achilles Gaikwad
2020-04-20 22:04 ` J. Bruce Fields
0 siblings, 1 reply; 2+ messages in thread
From: Achilles Gaikwad @ 2020-04-20 12:50 UTC (permalink / raw)
To: linux-nfs; +Cc: bfields, trondmy, kdsouza
Add filename to states output for ease of debugging.
Signed-off-by: Achilles Gaikwad <agaikwad@redhat.com>
Signed-off-by: Kenneth Dsouza <kdsouza@redhat.com>
---
fs/nfsd/nfs4state.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index e32ecedece0f..27338640959d 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -2404,6 +2404,11 @@ static void states_stop(struct seq_file *s, void *v)
spin_unlock(&clp->cl_lock);
}
+static void nfs4_show_fname(struct seq_file *s, struct nfsd_file *f)
+{
+ seq_printf(s, "filename: \"%pD2\"", f->nf_file);
+}
+
static void nfs4_show_superblock(struct seq_file *s, struct nfsd_file *f)
{
struct inode *inode = f->nf_inode;
@@ -2449,6 +2454,8 @@ static int nfs4_show_open(struct seq_file *s, struct nfs4_stid *st)
nfs4_show_superblock(s, file);
seq_printf(s, ", ");
+ nfs4_show_fname(s, file);
+ seq_printf(s, ", ");
nfs4_show_owner(s, oo);
seq_printf(s, " }\n");
nfsd_file_put(file);
@@ -2480,6 +2487,8 @@ static int nfs4_show_lock(struct seq_file *s, struct nfs4_stid *st)
nfs4_show_superblock(s, file);
/* XXX: open stateid? */
seq_printf(s, ", ");
+ nfs4_show_fname(s, file);
+ seq_printf(s, ", ");
nfs4_show_owner(s, oo);
seq_printf(s, " }\n");
nfsd_file_put(file);
@@ -2506,6 +2515,8 @@ static int nfs4_show_deleg(struct seq_file *s, struct nfs4_stid *st)
/* XXX: lease time, whether it's being recalled. */
nfs4_show_superblock(s, file);
+ seq_printf(s, ", ");
+ nfs4_show_fname(s, file);
seq_printf(s, " }\n");
return 0;
@@ -2524,6 +2535,8 @@ static int nfs4_show_layout(struct seq_file *s, struct nfs4_stid *st)
/* XXX: What else would be useful? */
nfs4_show_superblock(s, file);
+ seq_printf(s, ", ");
+ nfs4_show_fname(s, file);
seq_printf(s, " }\n");
return 0;
--
2.25.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v3] nfsd4: add filename to states output
2020-04-20 12:50 [PATCH v3] nfsd4: add filename to states output Achilles Gaikwad
@ 2020-04-20 22:04 ` J. Bruce Fields
0 siblings, 0 replies; 2+ messages in thread
From: J. Bruce Fields @ 2020-04-20 22:04 UTC (permalink / raw)
To: Achilles Gaikwad; +Cc: linux-nfs, trondmy, kdsouza
On Mon, Apr 20, 2020 at 06:20:31PM +0530, Achilles Gaikwad wrote:
> Add filename to states output for ease of debugging.
Thanks!
The results may be surprising for disconnected dentries. E.g., start a
"tail -f" on a file on an NFS export, then reboot the server and give
the client a chance to recover, and then look at /proc/fs/nfsd/clients,
and you'll just see
filename: "/"
But, I suppose it's still nice to print the pathname when it's
available. The one improvement I can think of is to print something
like "<disconnected>" in that case. I'm not sure where that logic would
go.
--b.
>
> Signed-off-by: Achilles Gaikwad <agaikwad@redhat.com>
> Signed-off-by: Kenneth Dsouza <kdsouza@redhat.com>
> ---
> fs/nfsd/nfs4state.c | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
> index e32ecedece0f..27338640959d 100644
> --- a/fs/nfsd/nfs4state.c
> +++ b/fs/nfsd/nfs4state.c
> @@ -2404,6 +2404,11 @@ static void states_stop(struct seq_file *s, void *v)
> spin_unlock(&clp->cl_lock);
> }
>
> +static void nfs4_show_fname(struct seq_file *s, struct nfsd_file *f)
> +{
> + seq_printf(s, "filename: \"%pD2\"", f->nf_file);
> +}
> +
> static void nfs4_show_superblock(struct seq_file *s, struct nfsd_file *f)
> {
> struct inode *inode = f->nf_inode;
> @@ -2449,6 +2454,8 @@ static int nfs4_show_open(struct seq_file *s, struct nfs4_stid *st)
>
> nfs4_show_superblock(s, file);
> seq_printf(s, ", ");
> + nfs4_show_fname(s, file);
> + seq_printf(s, ", ");
> nfs4_show_owner(s, oo);
> seq_printf(s, " }\n");
> nfsd_file_put(file);
> @@ -2480,6 +2487,8 @@ static int nfs4_show_lock(struct seq_file *s, struct nfs4_stid *st)
> nfs4_show_superblock(s, file);
> /* XXX: open stateid? */
> seq_printf(s, ", ");
> + nfs4_show_fname(s, file);
> + seq_printf(s, ", ");
> nfs4_show_owner(s, oo);
> seq_printf(s, " }\n");
> nfsd_file_put(file);
> @@ -2506,6 +2515,8 @@ static int nfs4_show_deleg(struct seq_file *s, struct nfs4_stid *st)
> /* XXX: lease time, whether it's being recalled. */
>
> nfs4_show_superblock(s, file);
> + seq_printf(s, ", ");
> + nfs4_show_fname(s, file);
> seq_printf(s, " }\n");
>
> return 0;
> @@ -2524,6 +2535,8 @@ static int nfs4_show_layout(struct seq_file *s, struct nfs4_stid *st)
> /* XXX: What else would be useful? */
>
> nfs4_show_superblock(s, file);
> + seq_printf(s, ", ");
> + nfs4_show_fname(s, file);
> seq_printf(s, " }\n");
>
> return 0;
> --
> 2.25.3
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-04-20 22:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-20 12:50 [PATCH v3] nfsd4: add filename to states output Achilles Gaikwad
2020-04-20 22:04 ` J. Bruce Fields
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.