Hi Alexey, Today's linux-next build (powerpc ppc64_defconfig) failed like this: fs/proc/proc_net.c: In function 'proc_net_get_sb': fs/proc/proc_net.c:296: error: void value not ignored as it ought to be Caused by commit 39bc389a04412aa199d8abec6582be33d57d1344 ("proc 3/6: make /proc/net it's own filesystem") interacting with commit a3ec947c85ec339884b30ef6a08133e9311fdae1 ("vfs: simple_set_mnt() should return void") from Linus' tree. I applied the following patch and can carry it for a while. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Date: Mon, 30 Mar 2009 17:41:54 +1100 Subject: [PATCH] proc: update proc_net.c for simple_set_mnt API change Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> --- fs/proc/proc_net.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/fs/proc/proc_net.c b/fs/proc/proc_net.c index 32dd84f..1e31e5d 100644 --- a/fs/proc/proc_net.c +++ b/fs/proc/proc_net.c @@ -293,7 +293,8 @@ static int proc_net_get_sb(struct file_system_type *fs_type, sb->s_flags |= MS_ACTIVE; } - return simple_set_mnt(mnt, sb); + simple_set_mnt(mnt, sb); + return 0; } static struct file_system_type proc_net_fs_type = { -- 1.6.2.1 -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html