From: Reuben Farrelly <reuben-lkml@reub.net>
To: Andrew Morton <akpm@osdl.org>
Cc: linux-kernel@vger.kernel.org
Subject: Re: 2.6.12-rc1-mm2
Date: Fri, 25 Mar 2005 11:50:51 +1200 [thread overview]
Message-ID: <4243525B.1030307@reub.net> (raw)
In-Reply-To: <fa.h0e9s21.ljie1j@ifi.uio.no>
[-- Attachment #1: Type: text/plain, Size: 1762 bytes --]
Hi,
Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.12-rc1/2.6.12-rc1-mm2/
>
>
> - Added David Miller's networking tree to the -mm lineup as bk-net.patch.
>
> - Added Herbert Xu's crypto development tree to the -mm lineup as
> bk-cryptodev.patch.
>
> -mm kernels now aggregate Linus's tree and 34 subsystem trees. Usually
> they are pulled 3-4 hours before the release of the -mm kernel.
>
> Usually it is possible to determine the latest cset from each tree by
> looking at the first couple of lines of the relevant patch in the
> broken-out/ directory. Although sometimes it isn't there if I had to
> massage the diff.
>
> - There may be an x86_64 problem here, although it works for me. If it
> fails early in boot, try reverting
> x86_64-separate-amd-cmp-detection-from-hyper-threading.patch
>
> - There's some work here on the recent USB PM resume bugs. If you had
> problems there, please test and be sure to cc
> linux-usb-devel@lists.sourceforge.net in any reports.
>
> - Some fixes for the recent DRM problems.
>
> - Big DVB update
>
> - md updates
>
> - nfs4 server updates
>
> - Lots more fixes
>
> - Lots more bugs.
Fails to compile for me:
CC [M] fs/nfs/dir.o
CC [M] fs/nfs/inode.o
CC [M] fs/nfs/nfs4proc.o
fs/nfs/nfs4proc.c:2976: error: static declaration of
'nfs4_file_inode_operations' follows non-static declaration
fs/nfs/nfs4_fs.h:179: error: previous declaration of
'nfs4_file_inode_operations' was here
make[2]: *** [fs/nfs/nfs4proc.o] Error 1
make[1]: *** [fs/nfs] Error 2
make: *** [fs] Error 2
I needed to remove this line:
extern struct inode_operations nfs4_file_inode_operations;
from fs/nfs/nfs4_fs.h.
Patch attached.
Reuben
[-- Attachment #2: nfsfix.patch --]
[-- Type: text/plain, Size: 407 bytes --]
--- fs/nfs/nfs4_fs.h 2005-03-25 11:40:51.000000000 +1200
+++ fs/nfs/nfs4_fs.h 2005-03-25 11:44:28.000000000 +1200
@@ -176,7 +176,6 @@
extern struct dentry_operations nfs4_dentry_operations;
extern struct inode_operations nfs4_dir_inode_operations;
-extern struct inode_operations nfs4_file_inode_operations;
/* inode.c */
extern ssize_t nfs4_getxattr(struct dentry *, const char *, void *, size_t);
next parent reply other threads:[~2005-03-24 23:51 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <fa.h0e9s21.ljie1j@ifi.uio.no>
2005-03-24 23:50 ` Reuben Farrelly [this message]
2005-03-24 12:41 2.6.12-rc1-mm2 Andrew Morton
2005-03-24 14:40 ` 2.6.12-rc1-mm2 Stefano Rivoir
2005-03-24 15:13 ` 2.6.12-rc1-mm2 Manuel Lauss
2005-03-24 15:18 ` 2.6.12-rc1-mm2 Brice Goglin
2005-03-24 15:31 ` 2.6.12-rc1-mm2 Stefano Rivoir
2005-03-24 20:05 ` 2.6.12-rc1-mm2 Andrew Morton
2005-03-24 20:21 ` 2.6.12-rc1-mm2 Brice Goglin
2005-03-25 1:19 ` 2.6.12-rc1-mm2 Alexey Dobriyan
2005-03-24 16:46 ` 2.6.12-rc1-mm2 Lee Revell
2005-03-24 20:17 ` 2.6.12-rc1-mm2 Andrew Morton
2005-03-24 22:31 ` 2.6.12-rc1-mm2 Rafael J. Wysocki
2005-03-24 22:31 ` 2.6.12-rc1-mm2 Rafael J. Wysocki
2005-03-24 22:37 ` 2.6.12-rc1-mm2 Rafael J. Wysocki
2005-03-24 23:33 ` 2.6.12-rc1-mm2 Laurent Riffard
2005-03-24 23:33 ` 2.6.12-rc1-mm2 Laurent Riffard
2005-03-24 23:49 ` 2.6.12-rc1-mm2 Andrew Morton
2005-03-24 23:49 ` 2.6.12-rc1-mm2 Andrew Morton
2005-03-25 1:00 ` 2.6.12-rc1-mm2 Patrick Mochel
2005-03-25 1:00 ` 2.6.12-rc1-mm2 Patrick Mochel
2005-03-25 6:05 ` 2.6.12-rc1-mm2 Greg KH
2005-03-25 6:05 ` 2.6.12-rc1-mm2 Greg KH
2005-03-25 18:01 ` 2.6.12-rc1-mm2 Laurent Riffard
2005-05-26 0:29 ` 2.6.12-rc1-mm2 Andrew Morton
2005-05-26 13:58 ` 2.6.12-rc1-mm2 Rafael J. Wysocki
2005-05-26 13:58 ` 2.6.12-rc1-mm2 Rafael J. Wysocki
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=4243525B.1030307@reub.net \
--to=reuben-lkml@reub.net \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.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.