Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ddc01c0813dc07ca7a2bd32c143a9b54a64915ce
Commit:     ddc01c0813dc07ca7a2bd32c143a9b54a64915ce
Parent:     f8cf3678f4885d66475b19b10ec2e9918ff2ca1c
Author:     Jeff Layton <[EMAIL PROTECTED]>
AuthorDate: Mon Jul 30 08:47:38 2007 -0400
Committer:  Trond Myklebust <[EMAIL PROTECTED]>
CommitDate: Tue Oct 9 17:15:39 2007 -0400

    [NFS] [PATCH] NFS: show addr=ipaddr in /proc/mounts rather than
    
    A minor thing, but useful when working with a server with multiple
    addrs. This looks like it might also be necessary if Miklos' effort
    to eliminate /etc/mtab ever comes to fruition.
    
    When displaying mount options in /proc/mounts, the kernel prints
    "addr=hostname". This info is redundant since we already have the
    hostname displayed as part of the "device" section of the mount. This
    patch changes it to display the IP address to which the socket is
    connected.
    
    Signed-off-by: Jeff Layton <[EMAIL PROTECTED]>
    Signed-off-by: Trond Myklebust <[EMAIL PROTECTED]>
---
 fs/nfs/super.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/nfs/super.c b/fs/nfs/super.c
index b878528..42b8c67 100644
--- a/fs/nfs/super.c
+++ b/fs/nfs/super.c
@@ -506,8 +506,8 @@ static int nfs_show_options(struct seq_file *m, struct 
vfsmount *mnt)
 
        nfs_show_mount_options(m, nfss, 0);
 
-       seq_puts(m, ",addr=");
-       seq_escape(m, nfss->nfs_client->cl_hostname, " \t\n\\");
+       seq_printf(m, ",addr="NIPQUAD_FMT,
+               NIPQUAD(nfss->nfs_client->cl_addr.sin_addr));
 
        return 0;
 }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to