linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] devfs (1/7) - fix compilation
@ 2003-04-18 16:12 Christoph Hellwig
  2003-04-18 16:19 ` Linus Torvalds
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2003-04-18 16:12 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel

As several people found out while I was asleep I sent you
a bogus patch version and devfs didn't compile in your
tree since then.  Fix it.


diff -Nru a/fs/devfs/base.c b/fs/devfs/base.c
--- a/fs/devfs/base.c	Fri Apr 18 15:56:18 2003
+++ b/fs/devfs/base.c	Fri Apr 18 15:56:18 2003
@@ -1377,7 +1377,6 @@
  *	@uid: The user ID.
  *	@gid: The group ID.
  *	@fs_info: The filesystem info.
- *	@atomic: If TRUE, an atomic allocation is required.
  *
  *	Returns %TRUE if an event was queued and devfsd woken up, else %FALSE.
  */
@@ -1423,7 +1422,7 @@
 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);
 } 
 
 
@@ -1456,8 +1455,8 @@
     dev_t devnum = 0, dev = MKDEV(major, minor);
     struct devfs_entry *de;
 
-    if (flags)
-	printk(KERN_ERR "%s called with flags != 0, please fix!\n");
+    /* we don't accept any flags anymore.  prototype will change soon. */
+    BUG_ON(flags);
 
     if (name == NULL)
     {

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] devfs (1/7) - fix compilation
  2003-04-18 16:12 [PATCH] devfs (1/7) - fix compilation Christoph Hellwig
@ 2003-04-18 16:19 ` Linus Torvalds
  2003-04-18 16:21   ` Christoph Hellwig
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Torvalds @ 2003-04-18 16:19 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: linux-kernel


On Fri, 18 Apr 2003, Christoph Hellwig wrote:
> @@ -1456,8 +1455,8 @@
>      dev_t devnum = 0, dev = MKDEV(major, minor);
>      struct devfs_entry *de;
>  
> -    if (flags)
> -	printk(KERN_ERR "%s called with flags != 0, please fix!\n");
> +    /* we don't accept any flags anymore.  prototype will change soon. */
> +    BUG_ON(flags);

PLEASE don't use BUG_ON() except for conditions that you really cannot 
continue from. It's damn impolite (and it makes debugging impossible) to 
kill the kernel startup if somebody has a unconverted driver or similar.

		Linus


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] devfs (1/7) - fix compilation
  2003-04-18 16:19 ` Linus Torvalds
@ 2003-04-18 16:21   ` Christoph Hellwig
  2003-04-18 16:26     ` Linus Torvalds
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2003-04-18 16:21 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

On Fri, Apr 18, 2003 at 09:19:00AM -0700, Linus Torvalds wrote:
> 
> On Fri, 18 Apr 2003, Christoph Hellwig wrote:
> > @@ -1456,8 +1455,8 @@
> >      dev_t devnum = 0, dev = MKDEV(major, minor);
> >      struct devfs_entry *de;
> >  
> > -    if (flags)
> > -	printk(KERN_ERR "%s called with flags != 0, please fix!\n");
> > +    /* we don't accept any flags anymore.  prototype will change soon. */
> > +    BUG_ON(flags);
> 
> PLEASE don't use BUG_ON() except for conditions that you really cannot 
> continue from. It's damn impolite (and it makes debugging impossible) to 
> kill the kernel startup if somebody has a unconverted driver or similar.

Ok.  Is this one better?


diff -Nru a/fs/devfs/base.c b/fs/devfs/base.c
--- a/fs/devfs/base.c	Fri Apr 18 15:56:18 2003
+++ b/fs/devfs/base.c	Fri Apr 18 15:56:18 2003
@@ -1377,7 +1377,6 @@
  *	@uid: The user ID.
  *	@gid: The group ID.
  *	@fs_info: The filesystem info.
- *	@atomic: If TRUE, an atomic allocation is required.
  *
  *	Returns %TRUE if an event was queued and devfsd woken up, else %FALSE.
  */
@@ -1423,7 +1422,7 @@
 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);
 } 
 
 
@@ -1456,8 +1455,8 @@
     dev_t devnum = 0, dev = MKDEV(major, minor);
     struct devfs_entry *de;
 
-    if (flags)
-	printk(KERN_ERR "%s called with flags != 0, please fix!\n");
+    /* we don't accept any flags anymore.  prototype will change soon. */
+    WARN_ON(flags);
 
     if (name == NULL)
     {

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] devfs (1/7) - fix compilation
  2003-04-18 16:21   ` Christoph Hellwig
@ 2003-04-18 16:26     ` Linus Torvalds
  0 siblings, 0 replies; 4+ messages in thread
From: Linus Torvalds @ 2003-04-18 16:26 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: linux-kernel


On Fri, 18 Apr 2003, Christoph Hellwig wrote:
>
> Ok.  Is this one better?

Well, I already edited the previous raw diff directly..

		Linus


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-04-18 16:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-18 16:12 [PATCH] devfs (1/7) - fix compilation Christoph Hellwig
2003-04-18 16:19 ` Linus Torvalds
2003-04-18 16:21   ` Christoph Hellwig
2003-04-18 16:26     ` Linus Torvalds

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).