mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 15:58:47 +00:00
NFS: rename nfs_path variable
Clean up: I'm about to move the declaration of nfs_mount into fs/nfs/internal.h and include it in fs/nfs/nfsroot.c. There's a conflicting definition of nfs_path in fs/nfs/internal.h and fs/nfs/nfsroot.c, so rename the private one. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
df94f000c4
commit
7b5d2b98e1
@ -100,7 +100,7 @@ static char nfs_root_name[256] __initdata = "";
|
|||||||
static __be32 servaddr __initdata = 0;
|
static __be32 servaddr __initdata = 0;
|
||||||
|
|
||||||
/* Name of directory to mount */
|
/* Name of directory to mount */
|
||||||
static char nfs_path[NFS_MAXPATHLEN] __initdata = { 0, };
|
static char nfs_export_path[NFS_MAXPATHLEN] __initdata = { 0, };
|
||||||
|
|
||||||
/* NFS-related data */
|
/* NFS-related data */
|
||||||
static struct nfs_mount_data nfs_data __initdata = { 0, };/* NFS mount info */
|
static struct nfs_mount_data nfs_data __initdata = { 0, };/* NFS mount info */
|
||||||
@ -312,7 +312,7 @@ static int __init root_nfs_name(char *name)
|
|||||||
printk(KERN_ERR "Root-NFS: Pathname for remote directory too long.\n");
|
printk(KERN_ERR "Root-NFS: Pathname for remote directory too long.\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
sprintf(nfs_path, buf, cp);
|
sprintf(nfs_export_path, buf, cp);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -340,7 +340,7 @@ static int __init root_nfs_addr(void)
|
|||||||
static void __init root_nfs_print(void)
|
static void __init root_nfs_print(void)
|
||||||
{
|
{
|
||||||
printk(KERN_NOTICE "Root-NFS: Mounting %s on server %s as root\n",
|
printk(KERN_NOTICE "Root-NFS: Mounting %s on server %s as root\n",
|
||||||
nfs_path, nfs_data.hostname);
|
nfs_export_path, nfs_data.hostname);
|
||||||
printk(KERN_NOTICE "Root-NFS: rsize = %d, wsize = %d, timeo = %d, retrans = %d\n",
|
printk(KERN_NOTICE "Root-NFS: rsize = %d, wsize = %d, timeo = %d, retrans = %d\n",
|
||||||
nfs_data.rsize, nfs_data.wsize, nfs_data.timeo, nfs_data.retrans);
|
nfs_data.rsize, nfs_data.wsize, nfs_data.timeo, nfs_data.retrans);
|
||||||
printk(KERN_NOTICE "Root-NFS: acreg (min,max) = (%d,%d), acdir (min,max) = (%d,%d)\n",
|
printk(KERN_NOTICE "Root-NFS: acreg (min,max) = (%d,%d), acdir (min,max) = (%d,%d)\n",
|
||||||
@ -493,10 +493,10 @@ static int __init root_nfs_get_handle(void)
|
|||||||
|
|
||||||
set_sockaddr(&sin, servaddr, htons(mount_port));
|
set_sockaddr(&sin, servaddr, htons(mount_port));
|
||||||
status = nfs_mount((struct sockaddr *) &sin, sizeof(sin), NULL,
|
status = nfs_mount((struct sockaddr *) &sin, sizeof(sin), NULL,
|
||||||
nfs_path, version, protocol, &fh);
|
nfs_export_path, version, protocol, &fh);
|
||||||
if (status < 0)
|
if (status < 0)
|
||||||
printk(KERN_ERR "Root-NFS: Server returned error %d "
|
printk(KERN_ERR "Root-NFS: Server returned error %d "
|
||||||
"while mounting %s\n", status, nfs_path);
|
"while mounting %s\n", status, nfs_export_path);
|
||||||
else {
|
else {
|
||||||
nfs_data.root.size = fh.size;
|
nfs_data.root.size = fh.size;
|
||||||
memcpy(nfs_data.root.data, fh.data, fh.size);
|
memcpy(nfs_data.root.data, fh.data, fh.size);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user