From: Seth Chandler <sethbc@gentoo.org>
To: Andrew Morton <akpm@digeo.com>, Andrei Ivanov <andrei.ivanov@ines.ro>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
Christoph Hellwig <hch@lst.de>
Subject: Re: 2.5.67-mm4
Date: Fri, 18 Apr 2003 10:31:09 -0400 [thread overview]
Message-ID: <200304181031.09836.sethbc@gentoo.org> (raw)
In-Reply-To: <20030418022606.56357df4.akpm@digeo.com>
i'd like to note this was a problem when i was building a bk pull last
night...
seth
On Friday 18 April 2003 05:26, Andrew Morton wrote:
> Andrei Ivanov <andrei.ivanov@ines.ro> wrote:
> > :(
> >
> > make -f scripts/Makefile.build obj=fs/devfs
> > gcc -Wp,-MD,fs/devfs/.base.o.d -D__KERNEL__ -Iinclude -Wall
> > -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common
> > -pipe -mpreferred-stack-boundary=2 -march=athlon
> > -Iinclude/asm-i386/mach-default -nostdinc -iwithprefix include
> > -DKBUILD_BASENAME=base -DKBUILD_MODNAME=devfs -c -o fs/devfs/base.o
> > fs/devfs/base.c
> > fs/devfs/base.c: In function `devfsd_notify':
> > fs/devfs/base.c:1426: too many arguments to function `devfsd_notify_de'
> > fs/devfs/base.c: In function `devfs_register':
> > fs/devfs/base.c:1460: warning: too few arguments for format
> > make[2]: *** [fs/devfs/base.o] Error 1
> > make[1]: *** [fs/devfs] Error 2
> > make: *** [fs] Error 2
>
> Like this I guess.
>
>
> diff -puN fs/devfs/base.c~devfs-build-fix fs/devfs/base.c
> --- 25/fs/devfs/base.c~devfs-build-fix 2003-04-18 02:21:47.000000000 -0700
> +++ 25-akpm/fs/devfs/base.c 2003-04-18 02:22:11.000000000 -0700
> @@ -1423,7 +1423,7 @@ static int devfsd_notify_de (struct devf
> static void devfsd_notify (struct devfs_entry *de,unsigned short type)
> {
> devfsd_notify_de(de, type, de->mode, current->euid,
> - current->egid, &fs_info, 0);
> + current->egid, &fs_info);
> }
>
>
> @@ -1457,7 +1457,8 @@ devfs_handle_t devfs_register (devfs_han
> struct devfs_entry *de;
>
> if (flags)
> - printk(KERN_ERR "%s called with flags != 0, please fix!\n");
> + printk(KERN_ERR "%s called with flags != 0, please fix!\n",
> + __FUNCTION__);
>
> if (name == NULL)
> {
>
> _
>
> -
> 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/
WARNING: multiple messages have this Message-ID (diff)
From: Seth Chandler <sethbc@gentoo.org>
To: Andrew Morton <akpm@digeo.com>, Andrei Ivanov <andrei.ivanov@ines.ro>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
Christoph Hellwig <hch@lst.de>
Subject: Re: 2.5.67-mm4
Date: Fri, 18 Apr 2003 10:31:09 -0400 [thread overview]
Message-ID: <200304181031.09836.sethbc@gentoo.org> (raw)
In-Reply-To: <20030418022606.56357df4.akpm@digeo.com>
i'd like to note this was a problem when i was building a bk pull last
night...
seth
On Friday 18 April 2003 05:26, Andrew Morton wrote:
> Andrei Ivanov <andrei.ivanov@ines.ro> wrote:
> > :(
> >
> > make -f scripts/Makefile.build obj=fs/devfs
> > gcc -Wp,-MD,fs/devfs/.base.o.d -D__KERNEL__ -Iinclude -Wall
> > -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common
> > -pipe -mpreferred-stack-boundary=2 -march=athlon
> > -Iinclude/asm-i386/mach-default -nostdinc -iwithprefix include
> > -DKBUILD_BASENAME=base -DKBUILD_MODNAME=devfs -c -o fs/devfs/base.o
> > fs/devfs/base.c
> > fs/devfs/base.c: In function `devfsd_notify':
> > fs/devfs/base.c:1426: too many arguments to function `devfsd_notify_de'
> > fs/devfs/base.c: In function `devfs_register':
> > fs/devfs/base.c:1460: warning: too few arguments for format
> > make[2]: *** [fs/devfs/base.o] Error 1
> > make[1]: *** [fs/devfs] Error 2
> > make: *** [fs] Error 2
>
> Like this I guess.
>
>
> diff -puN fs/devfs/base.c~devfs-build-fix fs/devfs/base.c
> --- 25/fs/devfs/base.c~devfs-build-fix 2003-04-18 02:21:47.000000000 -0700
> +++ 25-akpm/fs/devfs/base.c 2003-04-18 02:22:11.000000000 -0700
> @@ -1423,7 +1423,7 @@ static int devfsd_notify_de (struct devf
> static void devfsd_notify (struct devfs_entry *de,unsigned short type)
> {
> devfsd_notify_de(de, type, de->mode, current->euid,
> - current->egid, &fs_info, 0);
> + current->egid, &fs_info);
> }
>
>
> @@ -1457,7 +1457,8 @@ devfs_handle_t devfs_register (devfs_han
> struct devfs_entry *de;
>
> if (flags)
> - printk(KERN_ERR "%s called with flags != 0, please fix!\n");
> + printk(KERN_ERR "%s called with flags != 0, please fix!\n",
> + __FUNCTION__);
>
> if (name == NULL)
> {
>
> _
>
> -
> 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/
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>
next prev parent reply other threads:[~2003-04-18 14:19 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-04-18 8:45 2.5.67-mm4 Andrew Morton
2003-04-18 8:45 ` 2.5.67-mm4 Andrew Morton
2003-04-18 9:17 ` 2.5.67-mm4 Andrei Ivanov
2003-04-18 9:17 ` 2.5.67-mm4 Andrei Ivanov
2003-04-18 9:26 ` 2.5.67-mm4 Andrew Morton
2003-04-18 9:26 ` 2.5.67-mm4 Andrew Morton
2003-04-18 14:31 ` Seth Chandler [this message]
2003-04-18 14:31 ` 2.5.67-mm4 Seth Chandler
2003-04-18 15:32 ` 2.5.67-mm4 Andrei Ivanov
2003-04-18 15:49 ` 2.5.67-mm4 Toon van der Pas
2003-04-18 21:48 ` 2.5.67-mm4 Andrew Morton
2003-04-18 23:25 ` 2.5.67-mm4 Nick Piggin
2003-04-18 16:17 ` 2.5.67-mm4 devfs don't compile Helge Hafting
2003-04-18 16:17 ` Helge Hafting
2003-04-18 16:24 ` Randy.Dunlap
2003-04-18 16:24 ` Randy.Dunlap
2003-04-19 18:28 ` 2.5.67-mm4 Arador
2003-04-19 21:02 ` 2.5.67-mm4 Andrew Morton
-- strict thread matches above, loose matches on Subject: below --
2003-04-18 19:37 2.5.67-mm4 Andrei Ivanov
2003-04-18 20:54 ` 2.5.67-mm4 Nick Orlov
2003-04-18 21:54 ` 2.5.67-mm4 Christoph Hellwig
2003-04-18 22:10 ` 2.5.67-mm4 Nick Orlov
2003-04-18 22:12 ` 2.5.67-mm4 Christoph Hellwig
2003-04-18 22:29 ` 2.5.67-mm4 Nick Orlov
2003-04-18 23:07 ` 2.5.67-mm4 Nick Orlov
2003-04-19 7:45 ` 2.5.67-mm4 Christoph Hellwig
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=200304181031.09836.sethbc@gentoo.org \
--to=sethbc@gentoo.org \
--cc=akpm@digeo.com \
--cc=andrei.ivanov@ines.ro \
--cc=hch@lst.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.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.