Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-28 | rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and | Theo de Raadt | |
unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms | |||
2008-03-16 | actually print the now available large numbers | Otto Moerbeek | |
2007-12-22 | fix df posix mode bug | Charles Longeau | |
from otto@ prompted by otto@ who is aftk for now | |||
2007-09-02 | use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsg | Theo de Raadt | |
2006-10-29 | like -i, -h is incompatible with -P; suggested by jmc@; ok ray@ | Otto Moerbeek | |
2006-09-21 | Remove LFS-related code, no binary change | Pedro Martelletto | |
2006-05-11 | handle malloc failure; jan.niemann@tu-bs.de | Theo de Raadt | |
2005-02-20 | Better handling of large filesystems, okay henning@ and millert@, with | Pedro Martelletto | |
input from martin@ and miod@. | |||
2005-01-28 | widen the avail/used columns by one space to accomodate for >100g ↵ | Michael Shalayeff | |
filesystems. the total is already wide enough due to the header length; dhartmei@ ok | |||
2004-11-18 | Sync usage with man page; Paul de Weerd | Todd C. Miller | |
2004-10-15 | Don't print header if we didn't print any usage lines. Noticed and | Todd C. Miller | |
tested by robert@ | |||
2004-09-14 | fd leak (and who said lint never finds real bugs) | Theo de Raadt | |
2004-09-14 | remove unused variable | Theo de Raadt | |
2003-07-29 | spacing | Theo de Raadt | |
2003-07-02 | missing protos | Theo de Raadt | |
2003-06-02 | Remove the advertising clause in the UCB license which Berkeley | Todd C. Miller | |
rescinded 22 July 1999. Proofed by myself and Theo. | |||
2003-05-26 | Use prt_scaled from libutil. ok pjanzen@, millert@ | Ian Darwin | |
2003-02-19 | LFS is dead. saves some space on install floppies too. | Ted Unangst | |
ok deraadt@ | |||
2002-07-04 | ansi | Theo de Raadt | |
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2001-09-06 | o) __progname aria; | Mike Pechkin | |
millert@ ok. | |||
2001-07-09 | Compute %used in -P mode as a double, just like we do in normal printing | Todd C. Miller | |
mode. Fixes an int wraparound problem noted by mike@erdelynet.com | |||
2001-02-23 | Avoid potential uninitialized variable | Paul Janzen | |
2000-10-18 | sort out printf formats according to types, 64bit arithmetics in ffs_df; ↵ | Michael Shalayeff | |
millert@ ok | |||
2000-03-24 | Make f_bsize signed. Having it unsigned causes surprising (and unwanted) | Todd C. Miller | |
type coercions. With this fixed I can back out the hack in df. | |||
1999-12-31 | In prtstat() use u_int32_t and int32_t, not long and cast | Todd C. Miller | |
sfsp->f_bsize to be signed when using the fsbtoblk() macro so we get signed divide, not unsigned divide. Fixes a bug in df when the filesystem has < 0 blocks available to the user. Guess I should have just made f_bsize signed when struct statfs was changed. | |||
1999-05-31 | New struct statfs with mount options. NOTE: this replaces statfs(2), | Todd C. Miller | |
fstatfs(2), and getfsstat(2) so you will need to build a new kernel before doing a "make build" or you will get "unimplemented syscall" errors. The new struct statfs has the following featuires: o Has a u_int32_t flags field--now softdep can have a real flag. o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man page used to lie about setting invalid/unused fields to -1. SunOS does that but our code never has. o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9 and having it there but always 0 is confusing. It is conceivable that this may cause some old code to not compile but that is better than silently breaking. o Adds a mount_info union that contains the FSTYPE_args struct. This means that "mount" can now tell you all the options a filesystem was mounted with. This is especially nice for NFS. Other changes: o The linux statfs emulation didn't convert between BSD fs names and linux f_type numbers. Now it does, since the BSD f_type number is useless to linux apps (and has been removed anyway) o FreeBSD's struct statfs is different from our (both old and new) and thus needs conversion. Previously, the OpenBSD syscalls were used without any real translation. o mount(8) will now show extra info when invoked with no arguments. However, to see *everything* you need to use the -v (verbose) flag. | |||
1999-01-31 | When adjusting units for -h mode, use the absolute value to check for | Todd C. Miller | |
kb, mega, giga, etc. Based on a change from kstailey@openbsd.org but fixed differently. | |||
1998-08-18 | people who fail to update man pages and usage lines will henceforth be shot ↵ | Theo de Raadt | |
on sight | |||
1998-08-17 | fix df -P on 0-size filesystems | Theo de Raadt | |
1997-11-20 | Fix units conversion wrt -h flag to be correct (and consistent with | Todd C. Miller | |
the GNU df's -h flag). | |||
1997-09-01 | i am bored enough to fix terminal space/tab uglies | Theo de Raadt | |
1997-08-19 | Add -P option, the POSIX 1003.2 output format (strictly specified for parsing). | denny | |
1997-07-23 | tabify | kstailey | |
1997-06-16 | Better support for unmounted filesystems (i.e. df /dev/rsd0a): | denny | |
- interpret the superblock of lfs, ext2fs, and ffs filesystems. - never mount() an offline filesystem, always read its superblock. - use the same algorithm as statfs() for ffs, get the same answers. Even so, now I'm really unsure this code should remain in df. Similar functionality should be added to dumpfs or fsck instead. | |||
1997-06-01 | From denny@c200234-a.frmt1.sfba.home.com, check superblock magic number. | Jason Downs | |
I'm unsure if this code should even remain in df. | |||
1997-04-14 | make -h columns more compact | kstailey | |
1997-04-14 | switch from <blank> to "B" for byte suffix; columns look too ugly otherwise | kstailey | |
1997-04-14 | fix Avail column in -h mode (again) | kstailey | |
1997-04-14 | fix Avail column in -h mode | kstailey | |
1997-04-14 | new "-h" (human-readable) output flag now works, please test. thx | kstailey | |
1997-04-12 | start of -h (human readable) flag. more to come | kstailey | |
1997-04-04 | when mktemp() is hard to fix, use 10 X | Theo de Raadt | |
1996-12-24 | indicate this mktemp is vulnerable to a DOS attack, however the impact is ↵ | Theo de Raadt | |
very low | |||
1996-12-14 | -Wall'ing. | Michael Shalayeff | |
1996-12-07 | handle -t & -l in more cases; netbsd pr#2869, hubert.feyrer@rz.uni-regensburg.de | Theo de Raadt | |
1996-08-02 | zap getopt() case of -?, come on, it is the default! | Theo de Raadt | |
1996-06-23 | update rcsid | Theo de Raadt | |
1995-11-06 | complete ufs -> ffs change (From John Kohl; PR #1403) | Theo de Raadt | |
1995-10-18 | initial import of NetBSD tree | Theo de Raadt | |