From: Peter Buckingham <peter@pantasys.com>
To: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Subject: [PATCH 2.6] make nfsroot compile
Date: Thu, 09 Sep 2004 13:53:57 -0700 [thread overview]
Message-ID: <4140C2E5.6050006@pantasys.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 195 bytes --]
Hi Ralf,
I needed to merge this fix in from Linus's tree to make things work with
a NFS root. Now I can boot up broadcom's 1250 :-D
peter
Signed-off-by: Peter Buckingham <peter@pantasys.com>
[-- Attachment #2: p --]
[-- Type: text/plain, Size: 587 bytes --]
Index: fs/nfs/nfsroot.c
===================================================================
RCS file: /home/cvs/linux/fs/nfs/nfsroot.c,v
retrieving revision 1.30
diff -u -r1.30 nfsroot.c
--- fs/nfs/nfsroot.c 24 Aug 2004 15:10:14 -0000 1.30
+++ fs/nfs/nfsroot.c 9 Sep 2004 20:53:56 -0000
@@ -495,8 +495,10 @@
if (status < 0)
printk(KERN_ERR "Root-NFS: Server returned error %d "
"while mounting %s\n", status, nfs_path);
- else
- nfs_copy_fh(nfs_data.root, fh);
+ else {
+ nfs_data.root.size=fh.size;
+ memcpy(nfs_data.root.data, fh.data, fh.size);
+ }
return status;
}
reply other threads:[~2004-09-09 20:54 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4140C2E5.6050006@pantasys.com \
--to=peter@pantasys.com \
--cc=linux-mips@linux-mips.org \
--cc=ralf@linux-mips.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.