]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Get rid of major/minor number distinction.
authored <ed@FreeBSD.org>
Wed, 28 Sep 2011 18:53:36 +0000 (18:53 +0000)
committered <ed@FreeBSD.org>
Wed, 28 Sep 2011 18:53:36 +0000 (18:53 +0000)
commit2a84e78d2ee67e2efdc4107a8a067cca7f435e1c
treeefc748c3ad32a5751cb0627cfa2b151f69147a78
parentce36da245f8d051544101d1b63405860d1e57c4b
Get rid of major/minor number distinction.

As of FreeBSD 6, devices can only be opened through devfs. These device
nodes don't have major and minor numbers anymore. The st_rdev field in
struct stat is simply based a copy of st_ino.

Simply display device numbers as hexadecimal, using "%#jx". This is
allowed by POSIX, since it explicitly states things like the following
(example taken from ls(1)):

"If the file is a character special or block special file, the
size of the file may be replaced with implementation-defined
information associated with the device in question."

This makes the output of these commands more compact. For example, ls(1)
now uses approximately four columns less. While there, simplify the
column length calculation from ls(1) by calling snprintf() with a NULL
buffer.

Don't be afraid; if needed one can still obtain individual major/minor
numbers using stat(1).
12 files changed:
bin/ls/ls.1
bin/ls/ls.c
bin/ls/ls.h
bin/ls/print.c
bin/ps/print.c
lib/libc/gen/devname.c
sbin/fsdb/fsdbutil.c
usr.bin/find/find.1
usr.bin/find/ls.c
usr.bin/fstat/fstat.1
usr.bin/fstat/fstat.c
usr.sbin/pstat/pstat.c