public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Use hex numbers in fs/block_dev.c
@ 2003-02-26 16:19 Rolf Eike Beer
  2003-02-26 16:37 ` Jörn Engel
  0 siblings, 1 reply; 4+ messages in thread
From: Rolf Eike Beer @ 2003-02-26 16:19 UTC (permalink / raw)
  To: linux-kernel; +Cc: Linus Torvalds

We're using hex numbers to identify devices in most places. We should use
them in filesystem messages, errors etc. too, this would be much more
consistent and avoids things like this where two different naming styles
for the same error are used:

     end_request: [...] dev 16:45 (hdd), sector 9175248
     EXT3-fs error (device ide1(22,69)): [...] inode=575269, block=1146906

With this patch the second message would look like this:

     EXT3-fs error (device ide1(16:45)): [...] inode=575269, block=1146906

This code is used in some drivers outside fs/ too, but there only in *print*
or DEBUG's.

Eike

--- linux-2.5.63-eike/fs/block_dev.c.orig	Tue Feb 25 08:15:45 2003
+++ linux-2.5.63-eike/fs/block_dev.c	Wed Feb 26 16:04:28 2003
@@ -794,7 +794,7 @@
 	if (!name)
 		name = "unknown-block";
 
-	sprintf(buffer, "%s(%d,%d)", name, MAJOR(dev), MINOR(dev));
+	sprintf(buffer, "%s(%x:%x)", name, MAJOR(dev), MINOR(dev));
 	return buffer;
 }
 

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

* Re: [PATCH] Use hex numbers in fs/block_dev.c
  2003-02-26 16:19 [PATCH] Use hex numbers in fs/block_dev.c Rolf Eike Beer
@ 2003-02-26 16:37 ` Jörn Engel
  2003-02-26 17:01   ` Rolf Eike Beer
  0 siblings, 1 reply; 4+ messages in thread
From: Jörn Engel @ 2003-02-26 16:37 UTC (permalink / raw)
  To: Rolf Eike Beer; +Cc: linux-kernel, Linus Torvalds

On Wed, 26 February 2003 17:19:15 +0100, Rolf Eike Beer wrote:
> 
> We're using hex numbers to identify devices in most places. We should use
> them in filesystem messages, errors etc. too, this would be much more
> consistent and avoids things like this where two different naming styles
> for the same error are used:
> 
>      end_request: [...] dev 16:45 (hdd), sector 9175248
>      EXT3-fs error (device ide1(22,69)): [...] inode=575269, block=1146906
> 
> With this patch the second message would look like this:
> 
>      EXT3-fs error (device ide1(16:45)): [...] inode=575269, block=1146906

Whis is _horrible_. Am I supposed to guess that ide does not use major
16, so it will be 0x16 == 22 instead?

Better use the patch below, if at all.

--- linux-2.5.63-eike/fs/block_dev.c.orig	Tue Feb 25 08:15:45 2003
+++ linux-2.5.63-eike/fs/block_dev.c	Wed Feb 26 16:04:28 2003
@@ -794,7 +794,7 @@
 	if (!name)
 		name = "unknown-block";
 
-	sprintf(buffer, "%s(%d,%d)", name, MAJOR(dev), MINOR(dev));
+	sprintf(buffer, "%s(0x%x:0x%x)", name, MAJOR(dev), MINOR(dev));
 	return buffer;
 }

Jörn

-- 
Courage is not the absence of fear, but rather the judgement that
something else is more important than fear.
-- Ambrose Redmoon

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

* Re: [PATCH] Use hex numbers in fs/block_dev.c
  2003-02-26 16:37 ` Jörn Engel
@ 2003-02-26 17:01   ` Rolf Eike Beer
  2003-02-27  0:12     ` jw schultz
  0 siblings, 1 reply; 4+ messages in thread
From: Rolf Eike Beer @ 2003-02-26 17:01 UTC (permalink / raw)
  To: Jörn Engel; +Cc: linux-kernel, Linus Torvalds

Am Mittwoch, 26. Februar 2003 17:37 schrieb Jörn Engel:
> On Wed, 26 February 2003 17:19:15 +0100, Rolf Eike Beer wrote:
> > We're using hex numbers to identify devices in most places. We should use
> > them in filesystem messages, errors etc. too, this would be much more
> > consistent and avoids things like this where two different naming styles
> > for the same error are used:
> >
> >      end_request: [...] dev 16:45 (hdd), sector 9175248
> >      EXT3-fs error (device ide1(22,69)): [...] inode=575269,
> > block=1146906
> >
> > With this patch the second message would look like this:
> >
> >      EXT3-fs error (device ide1(16:45)): [...] inode=575269,
> > block=1146906
>
> Whis is _horrible_. Am I supposed to guess that ide does not use major
> 16, so it will be 0x16 == 22 instead?

Of course, I know. But then we have to fix the end_request stuff also. And 
root=831 command line etc. This _is_ ugly. I just tried to make it one kind 
of ugly at all.

Eike

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

* Re: [PATCH] Use hex numbers in fs/block_dev.c
  2003-02-26 17:01   ` Rolf Eike Beer
@ 2003-02-27  0:12     ` jw schultz
  0 siblings, 0 replies; 4+ messages in thread
From: jw schultz @ 2003-02-27  0:12 UTC (permalink / raw)
  To: linux-kernel

On Wed, Feb 26, 2003 at 06:01:55PM +0100, Rolf Eike Beer wrote:
> Am Mittwoch, 26. Februar 2003 17:37 schrieb Jörn Engel:
> > On Wed, 26 February 2003 17:19:15 +0100, Rolf Eike Beer wrote:
> > > We're using hex numbers to identify devices in most places. We should use
> > > them in filesystem messages, errors etc. too, this would be much more
> > > consistent and avoids things like this where two different naming styles
> > > for the same error are used:
> > >
> > >      end_request: [...] dev 16:45 (hdd), sector 9175248
> > >      EXT3-fs error (device ide1(22,69)): [...] inode=575269,
> > > block=1146906
> > >
> > > With this patch the second message would look like this:
> > >
> > >      EXT3-fs error (device ide1(16:45)): [...] inode=575269,
> > > block=1146906
> >
> > Whis is _horrible_. Am I supposed to guess that ide does not use major
> > 16, so it will be 0x16 == 22 instead?
> 
> Of course, I know. But then we have to fix the end_request stuff also. And 
> root=831 command line etc. This _is_ ugly. I just tried to make it one kind 
> of ugly at all.

If you are going to print it in hex do make it clear but one
0x should be enough: 0x16:45 is OK, 0x16:0x45 is hideous.

Given that the way i would identify device would be to grep
for the numbers in an ls of /dev i'd much rather they be in
decimal.  It all depends on how people will use the values.
When would i use the hex representation be useful?

-- 
________________________________________________________________
	J.W. Schultz            Pegasystems Technologies
	email address:		jw@pegasys.ws

		Remember Cernan and Schmitt

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

end of thread, other threads:[~2003-02-27  0:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-26 16:19 [PATCH] Use hex numbers in fs/block_dev.c Rolf Eike Beer
2003-02-26 16:37 ` Jörn Engel
2003-02-26 17:01   ` Rolf Eike Beer
2003-02-27  0:12     ` jw schultz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox