lkml.org 
[lkml]   [2003]   [Feb]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] nfsroot port= parameter fix

Hi,
When I specify the NFS port for nfsroot (e.g., nfsroot=<dir>,port=2049), the
kernel uses the wrong port. In my case it tries to use 264 (0x108) instead
of 2049 (0x801).

This patch adds the missing htons().

Eric

--- linux-2.4.21-pre4/fs/nfs/nfsroot.c.orig Mon Feb 3 10:11:10 2003
+++ linux-2.4.21-pre4/fs/nfs/nfsroot.c Mon Feb 3 10:28:35 2003
@@ -384,10 +384,11 @@
"number from server, using default\n");
port = nfsd_port;
}
- nfs_port = htons(port);
+ nfs_port = port;
dprintk("Root-NFS: Portmapper on server returned %d "
"as nfsd port\n", port);
}
+ nfs_port = htons(nfs_port);

if ((port = root_nfs_getport(NFS_MNT_PROGRAM, mountd_ver, proto)) < 0) {
printk(KERN_ERR "Root-NFS: Unable to get mountd port "

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 13:32    [W:0.035 / U:0.368 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site