Giorgos Keramidas
fe5628d3c1
Implement from scratch a -l option for du(1), to match the same option
...
of the GNU utility. The default behavior of our original `du' is to
count hardlinked files only once for each invocation of the utility.
With the new -l option they count towards the final size every time
they are found.
PR: bin/117944
Submitted by: keramida
Reviewed by: des, obrien
MFC after: 2 weeks
2008-02-25 19:06:43 +00:00
Kevin Lo
d4c16fe37d
setenv(3) sets errno on failure, use warn() instead
...
Pointed out by: ru
2007-11-08 01:24:31 +00:00
Kevin Lo
ee8f97394e
Check return value for setenv()
2007-11-06 10:35:50 +00:00
Sean Farley
2966d28c32
Significantly reduce the memory leak as noted in BUGS section for
...
setenv(3) by tracking the size of the memory allocated instead of using
strlen() on the current value.
Convert all calls to POSIX from historic BSD API:
- unsetenv returns an int.
- putenv takes a char * instead of const char *.
- putenv no longer makes a copy of the input string.
- errno is set appropriately for POSIX. Exceptions involve bad environ
variable and internal initialization code. These both set errno to
EFAULT.
Several patches to base utilities to handle the POSIX changes from
Andrey Chernov's previous commit. A few I re-wrote to use setenv()
instead of putenv().
New regression module for tools/regression/environ to test these
functions. It also can be used to test the performance.
Bump __FreeBSD_version to 700050 due to API change.
PR: kern/99826
Approved by: wes
Approved by: re (kensmith)
2007-07-04 00:00:41 +00:00
Andrey A. Chernov
ba174a5e38
Back out all POSIXified *env() changes.
...
Not because I admit they are technically wrong and not because of bug
reports (I receive nothing). But because I surprisingly meets so
strong opposition and resistance so lost any desire to continue that.
Anyone who interested in POSIX can dig out what changes and how
through cvs diffs.
2007-05-01 16:02:44 +00:00
Andrey A. Chernov
97e49dd4b5
Eliminate error with -W* strict flags and make putenv() calls conforming to
...
standard and portable in the same way as f.e. gcc internal portable code does.
2007-04-30 05:14:29 +00:00
Ruslan Ermilov
cb29445a92
Markup fixes.
2006-09-29 15:20:48 +00:00
Maxim Konovalov
fadc7151b7
o Implement "-n" flag: ignore files and directories with user "nodump"
...
flag set. Useful for calculation dump -h dump size.
PR: bin/96864
Submitted by: Dmitry Kazarov
Obtained from: NetBSD (man page)
MFC after: 1 month
2006-05-06 22:04:59 +00:00
Ruslan Ermilov
f682f10c76
Sync program's usage() with manpage's SYNOPSIS.
2005-05-21 09:55:10 +00:00
Stefan Farfeleder
6c97c3d1d3
Remove unused variables.
2005-04-09 14:31:41 +00:00
Pawel Jakub Dawidek
dc347bc474
Use 64bit 'fts_bignum' field instead of 32bit (on 32bit archs) field
...
'fts_number' to remember number of blocks.
This makes du(1) 64bit-clean.
This work is part of the BigDisk project:
http://www.FreeBSD.org/projects/bigdisk/
Discussed on: arch@
MFC after: 5 days
2005-01-07 00:12:24 +00:00
Giorgos Keramidas
d2c50f8bab
Add a missing full-stop to match the rest of the items in a list.
2004-10-24 00:26:35 +00:00
Stefan Farfeleder
14cc87e479
Use the length modifier 'll' instead of 'q' to print long longs.
2004-07-28 16:03:13 +00:00
Tim J. Robbins
e781c653dd
Respect locale settings from the environment.
2004-07-15 08:54:41 +00:00
Ruslan Ermilov
6a3e8b0adc
Mechanically kill hard sentence breaks.
2004-07-02 22:22:35 +00:00
Poul-Henning Kamp
cd4dc87a34
typos.
...
Pointed out by: ru
2004-06-02 07:31:11 +00:00
Poul-Henning Kamp
b933ee5464
Give du(1) a -m option to report in megabytes.
...
Submitted by: Vasily Korytov <deskpot@msk.yell.ru>
PR: 66976
2004-06-02 07:09:34 +00:00
Pawel Jakub Dawidek
7d3940bb67
Use humanize_number(3) to format sizes into a human readable form.
2004-05-24 22:22:29 +00:00
Pawel Jakub Dawidek
8cab54e9a8
Mark du(1) as WARNS6 clean.
...
Tested on: alpha, amd64, i386, ia64, sparc64
2004-05-24 21:31:30 +00:00
Tim Kientzle
aef39ef75f
More style fixes, per bde.
2004-05-02 17:54:57 +00:00
Tim Kientzle
2622aab4ae
Style fixes, most suggested by bde.
2004-05-01 21:47:31 +00:00
Tim Kientzle
231a973125
Speed up hardlink detection by using a self-sizing hash
...
table rather than the old linear list search.
On my "hardlink detection torture test", this reduced
user time from 4700 seconds down to 4.2 seconds
and wallclock time from 1:24:48 down to 1:08.
(Yes, that's over one THOUSAND times reduction in user time. ;-)
In the worst case, the new code doubles peak memory usage,
though it could actually reduce memory usage in many cases.
MFC after: 1 week
PR: misc/42167, bin/51151
2004-04-30 18:17:51 +00:00
David E. O'Brien
d84f9f6c14
-{h,k} are mutually exclisive. So only pay attention to the last of the
...
two when both are given.
2003-03-30 21:25:16 +00:00
Mike Barcroft
ed857b5741
Back out rev 1.27; getbsize(3)'s original interface has been restored.
...
Approved by: markm
2002-12-30 18:13:07 +00:00
Ruslan Ermilov
8d5d039f80
Uniformly refer to a file system as "file system".
...
Approved by: re
2002-12-12 17:26:04 +00:00
Mark Murray
3c284de5a5
Change the type of an unused variable to appease a warning.
2002-10-23 19:10:15 +00:00
David Malone
c10b37bf7a
ANSIify function definitions to avoid a warning.
2002-07-28 15:50:38 +00:00
David E. O'Brien
e026a48c34
Consistently use FBSDID
2002-06-30 05:25:07 +00:00
Tom Rhodes
46c2a2cfa4
More consistancy. file system > filesystem
2002-05-16 02:19:14 +00:00
Philippe Charnier
3898680cf7
Use `The .Nm utility'
2002-04-19 23:44:58 +00:00
Warner Losh
f1bb2cd2aa
remove __P
2002-03-22 01:22:50 +00:00
Mark Murray
91bd71d206
Remove leaf node WARNS?=2 (that mainly I added). This should
...
help the GCC3 transition and CURRENT in general.
2002-02-08 22:31:43 +00:00
Peter Wemm
cf467a82df
GRR. This was not WARNS=2 clean. You cannot printf a 'long' with
...
'%qd'.
usr.bin/du/du.c:288: warning: long long int format, long int arg (arg 2)
Pointy hat to: markm
2002-02-08 07:49:13 +00:00
Mark Murray
ef0ea716d2
WARNS=2 fixup
2001-12-02 13:48:40 +00:00
Robert Drehmel
c146250ee2
Use the correct blocksize when invoked with both -h and -k
...
options.
PR: 30275
Reviewed by: jake
2001-09-04 09:43:31 +00:00
Ruslan Ermilov
94ba280c59
mdoc(7) police: join split punctuation to macro calls.
2001-08-10 17:35:21 +00:00
Dima Dorfman
f247324df7
Remove whitespace at EOL.
2001-07-15 08:06:20 +00:00
Peter Pentchev
4bb69e3542
Add '-I mask' cmdline flag to ignore/skip files and subdirectories
...
matching a specified shell-glob mask.
Reviewed by: no serious objections on -arch and -audit over
the last few months
MFC after: 1 month
2001-06-13 06:38:58 +00:00
Ruslan Ermilov
95a09b0557
Make it clear that -P is the default.
...
PR: docs/27629
2001-05-25 07:32:58 +00:00
Ruslan Ermilov
8fe908ef0c
mdoc(7) police: use the new features of the Nm macro.
2000-11-20 19:21:22 +00:00
Ruslan Ermilov
cb22e4fad5
Backed out part of the revision 1.10.
...
BLOCKSIZE could specify arbitrary block sizes, not exactly 1K blocks.
2000-10-16 10:00:50 +00:00
Bruce Evans
1f82591eba
Fixed LDADD. Using ${LIBM} instead of -lm gave the wrong libm in most
...
cases and broke the world in some cases.
Fixed style bugs for DPADD and LDADD (don't use += for variables defined
only once).
2000-03-27 15:02:59 +00:00
Philippe Charnier
884bd44c59
Use warnx(), -Wall cleaning and remove unused #include
...
Better use of .Nm and .Ar
2000-03-26 14:21:57 +00:00
Michael Haro
b4448bd5d2
fix bug with du -hd
...
Submitted by: dcs
2000-03-24 06:25:32 +00:00
Sheldon Hearn
4e86fcacf6
Remove more single-space hard sentence breaks.
2000-03-02 14:54:02 +00:00
Sheldon Hearn
87faa07bec
Remove single-space hard sentence breaks. These degrade the quality
...
of the typeset output, tend to make diffs harder to read and provide
bad examples for new-comers to mdoc.
2000-03-01 12:20:22 +00:00
Michael Haro
d3e00c127b
cleanup using suggestions from bde
2000-01-27 20:55:09 +00:00
Michael Haro
54aa177193
Add human-readable output flag, -h
...
Reviewed by: obrien
2000-01-25 17:46:59 +00:00
Peter Wemm
c3aac50f28
$Id$ -> $FreeBSD$
1999-08-28 01:08:13 +00:00
Archie Cobbs
fa146c5335
Tweaks to allow compiling -Wall (mostly adding "const" to char rcsid[]).
1998-12-06 22:58:23 +00:00