]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoIf we get a receive error in nfs_receive() and then get an error trying to
jhb [Tue, 16 Jul 2002 15:12:07 +0000 (15:12 +0000)]
If we get a receive error in nfs_receive() and then get an error trying to
obtain the send lock, we would bogusly try to unlock the send lock before
returning resulting in a panic.  Instead, only unlock the send lock if
nfs_sndlock() succeeds and nfs_reconnect() fails.

MFC after: 3 days
Sponsored by: The Weather Channel

22 years agoChange include order.
nyan [Tue, 16 Jul 2002 14:39:52 +0000 (14:39 +0000)]
Change include order.

22 years agoCheck return status from fd_in() function.
nyan [Tue, 16 Jul 2002 14:34:38 +0000 (14:34 +0000)]
Check return status from fd_in() function.

22 years agoThe main reason for this is to reduce diffs between all the crt1.c's.
markm [Tue, 16 Jul 2002 12:28:50 +0000 (12:28 +0000)]
The main reason for this is to reduce diffs between all the crt1.c's.

Assembler macros are tidied up and made as similar as sanely possible.
The macros are translated into C (__inline static) functions for lint.

Declaration orders are made the same.
Declarations are all ISOfied and tidied up.

Comment contents have gratuitous diffs removed.

The net result is a bunch of crt1.c's that are 90% the same.
It may be possible to now encapsulate the differences in one
MD header, and have only one MI crt1.c file (although the macros
to do this may be ugly).

Helpful comments by: obrien, bde
Alpha tested by: des
i386-elf tested by: markm

22 years agoUnbreak Alpha build.
des [Tue, 16 Jul 2002 09:58:36 +0000 (09:58 +0000)]
Unbreak Alpha build.

22 years agoUnbreak LINT; sort the includes so that functions are explicitly
markm [Tue, 16 Jul 2002 09:33:33 +0000 (09:33 +0000)]
Unbreak LINT; sort the includes so that functions are explicitly
declared. Remove duplicate includes.

22 years agoRetire the perl gethints.conf in favour of an awk version. Move
markm [Tue, 16 Jul 2002 09:28:25 +0000 (09:28 +0000)]
Retire the perl gethints.conf in favour of an awk version. Move
the awk version to a central place for maintenance.

Submitted by: Cyrille Lefevre <cyrille.lefevre@laposte.net>

22 years agoFix incorrect cast.
kbyanc [Tue, 16 Jul 2002 05:57:21 +0000 (05:57 +0000)]
Fix incorrect cast.

22 years agoUse proper article.
dd [Tue, 16 Jul 2002 05:38:26 +0000 (05:38 +0000)]
Use proper article.

22 years agoThe pmap_invalidate_all() here is definately not a good idea. We are
peter [Mon, 15 Jul 2002 23:11:49 +0000 (23:11 +0000)]
The pmap_invalidate_all() here is definately not a good idea. We are
running with interrupts disabled, other cpus locked down, and only
making a temporary local mapping that we immediately back out again.

Tested by: gallatin

22 years agoSupport POSIX ``programming environment'' mistake.
wollman [Mon, 15 Jul 2002 22:51:24 +0000 (22:51 +0000)]
Support POSIX ``programming environment'' mistake.

22 years agoAssume that my bug report against 1003.1-2001 will be resolved my way,
wollman [Mon, 15 Jul 2002 22:43:03 +0000 (22:43 +0000)]
Assume that my bug report against 1003.1-2001 will be resolved my way,
and make 64-bit architectures use the LP64_OFF64 environment instead
of the LPBIG_OFFBIG one.

22 years agoSupport POSIX/SUS ``programming environment'' mistake in confstr().
wollman [Mon, 15 Jul 2002 22:21:33 +0000 (22:21 +0000)]
Support POSIX/SUS ``programming environment'' mistake in confstr().

22 years agoMove _CS_PATH from <sys/unistd.h> to <unistd.h> -- the kernel isn't involved
wollman [Mon, 15 Jul 2002 21:56:40 +0000 (21:56 +0000)]
Move _CS_PATH from <sys/unistd.h> to <unistd.h> -- the kernel isn't involved
in confstr() processing.

22 years agoAll of the things that confstr() returns are compile-time constants.
wollman [Mon, 15 Jul 2002 21:51:19 +0000 (21:51 +0000)]
All of the things that confstr() returns are compile-time constants.
It's silly to call sysctl() to get the value of _PATH_STDPATH from
<paths.h> when we can just use it directly.  This greatly simplifies
the implementation.  (This is also part of my grand scheme to get
rid of sysctl's `user' category, which should never have been created.)

Use strlcpy() instead of strncpy() as it has the exact semantics we want.

22 years agogetopt(3) was also added in 1003.2-1992.
wollman [Mon, 15 Jul 2002 21:32:45 +0000 (21:32 +0000)]
getopt(3) was also added in 1003.2-1992.

22 years agoThe .Fn function.
keramida [Mon, 15 Jul 2002 20:59:12 +0000 (20:59 +0000)]
The .Fn function.

22 years agoThe .Fn function
keramida [Mon, 15 Jul 2002 20:50:16 +0000 (20:50 +0000)]
The .Fn function

22 years agoDon't bother asking the kernel about _SC_FSYNC; it's not optional.
wollman [Mon, 15 Jul 2002 20:42:05 +0000 (20:42 +0000)]
Don't bother asking the kernel about _SC_FSYNC; it's not optional.

22 years agoDefine _POSIX_FSYNC unconditionally. (The standard has enough weasel-words
wollman [Mon, 15 Jul 2002 20:37:10 +0000 (20:37 +0000)]
Define _POSIX_FSYNC unconditionally.  (The standard has enough weasel-words
to allow us to claim compliance.)  Define a few other nearby feature tests
in the way required by 1003.1-2001.

22 years agoFix visibility:
wollman [Mon, 15 Jul 2002 20:33:58 +0000 (20:33 +0000)]
Fix visibility:
- symlink() is from 1003.1-2001 and XPG4.2
- fchown() is from 1003.1-2001
- fsync() is from ISO/IEC 9945-1:1995
- confstr() is from 1003.2-1992

22 years agoAdd a missing 'function' word.
keramida [Mon, 15 Jul 2002 20:07:09 +0000 (20:07 +0000)]
Add a missing 'function' word.
Use .Vt to mark up `struct stat' when it is a variable type.

22 years agoUse BSDi derived if_nametoindex(), if_indextoname(), if_nameindex()
ume [Mon, 15 Jul 2002 19:58:56 +0000 (19:58 +0000)]
Use BSDi derived if_nametoindex(), if_indextoname(), if_nameindex()
and if_freenameindex().

Obtained from: KAME
MFC after: 2 weeks

22 years agoThe .Fn function
keramida [Mon, 15 Jul 2002 19:56:24 +0000 (19:56 +0000)]
The .Fn function

22 years agoDon't claim to fully implement C99 in the STANDARDS section and then disclaim
wollman [Mon, 15 Jul 2002 19:46:06 +0000 (19:46 +0000)]
Don't claim to fully implement C99 in the STANDARDS section and then disclaim
compliance in the BUGS section immediately below.

22 years agoNote that fseeko() and ftello() are standard in 1003.1-2001.
wollman [Mon, 15 Jul 2002 19:42:25 +0000 (19:42 +0000)]
Note that fseeko() and ftello() are standard in 1003.1-2001.
(Prefer the more-encompassing POSIX standard to SUSv2.)

22 years agoAdd IPv6 support.
alfred [Mon, 15 Jul 2002 19:40:23 +0000 (19:40 +0000)]
Add IPv6 support.

Submitted by: Jean-Luc Richier <Jean-Luc.Richier@imag.fr>

22 years agoClean up some of the rather strange structure and ordering of this
wollman [Mon, 15 Jul 2002 19:38:45 +0000 (19:38 +0000)]
Clean up some of the rather strange structure and ordering of this
file.  Correct visibility conditions and order blocks of declarations
in order of increasing inclusiveness.  Note that [v]snprintf() is now
in ISO C and f{seek,tell}o() are now in POSIX.  Deprecated getw() and
putw() are no longer visible in XSH6 namespace (and should probably
be removed from BSD namespace as well).

22 years ago- fixed a bug that we can't send a packet to ipv4mapped ipv6 address
ume [Mon, 15 Jul 2002 19:25:46 +0000 (19:25 +0000)]
- fixed a bug that we can't send a packet to ipv4mapped ipv6 address
  using a udp6 socket without bind(2)ing.
- fbsd4/430 reported from the FreeBSD team.
- this fix is different from the fix reported in the above PR.  i think
  this better, but we need some test.

Obtained from: KAME
MFC after: 3 weeks

22 years agoAdd a new VM options section. Move KSTACK_PAGES there from the MI NOTES
jhb [Mon, 15 Jul 2002 19:25:40 +0000 (19:25 +0000)]
Add a new VM options section.  Move KSTACK_PAGES there from the MI NOTES
file and better document it.  Add better documentation for the DISABLE_PSE
option.  Add the missing DISABLE_PG_G option and document it.

22 years agoKSTACK_PAGES is only an option on i386, so move it to the i386 NOTES file.
jhb [Mon, 15 Jul 2002 19:24:50 +0000 (19:24 +0000)]
KSTACK_PAGES is only an option on i386, so move it to the i386 NOTES file.

22 years agoWhitespace fix.
jhb [Mon, 15 Jul 2002 19:14:13 +0000 (19:14 +0000)]
Whitespace fix.

22 years agoMove SMBFS from i386 and pc98 files and options files to MI files and
jhb [Mon, 15 Jul 2002 19:11:21 +0000 (19:11 +0000)]
Move SMBFS from i386 and pc98 files and options files to MI files and
options files.

22 years agoadd support for rpc IPv6 (rpc/udp/46 ...)
alfred [Mon, 15 Jul 2002 19:09:33 +0000 (19:09 +0000)]
add support for rpc IPv6 (rpc/udp/46 ...)

Submitted by: Jean-Luc Richier <Jean-Luc.Richier@imag.fr>

22 years agouse getaddrinfo() instead of gethostbyname().
alfred [Mon, 15 Jul 2002 19:02:45 +0000 (19:02 +0000)]
use getaddrinfo() instead of gethostbyname().

Submitted by: Jean-Luc Richier <Jean-Luc.Richier@imag.fr>

22 years agoNuke unused variable.
alfred [Mon, 15 Jul 2002 19:00:34 +0000 (19:00 +0000)]
Nuke unused variable.

22 years agoThe hardware bus configuration section is now empty, so axe it. The
jhb [Mon, 15 Jul 2002 19:00:21 +0000 (19:00 +0000)]
The hardware bus configuration section is now empty, so axe it.  The
architecture specific NOTES files define which hardware busses each
architecture supports.

22 years agoMove NTIMECOUNTER and PPS_SYNC from the ISA bus section to the clock
jhb [Mon, 15 Jul 2002 18:59:00 +0000 (18:59 +0000)]
Move NTIMECOUNTER and PPS_SYNC from the ISA bus section to the clock
options section.

22 years agoThe EISA_SLOTS option appears to be i386-only.
jhb [Mon, 15 Jul 2002 18:55:07 +0000 (18:55 +0000)]
The EISA_SLOTS option appears to be i386-only.

22 years agodo not call clnt_spcreateerror nor clnt_sperror with a NULL pointer, instead
alfred [Mon, 15 Jul 2002 18:53:52 +0000 (18:53 +0000)]
do not call clnt_spcreateerror nor clnt_sperror with a NULL pointer, instead
pass an empty string.

Submitted by: Jean-Luc Richier <Jean-Luc.Richier@imag.fr>

22 years agoPort to TI/RPC and/or IPV6.
alfred [Mon, 15 Jul 2002 18:51:57 +0000 (18:51 +0000)]
Port to TI/RPC and/or IPV6.

Submitted by: Jean-Luc Richier <Jean-Luc.Richier@imag.fr>

22 years agoCOMPAT_OLDISA is only used on i386.
jhb [Mon, 15 Jul 2002 18:50:13 +0000 (18:50 +0000)]
COMPAT_OLDISA is only used on i386.

22 years agoSync up syscons options from options.i386.
jhb [Mon, 15 Jul 2002 18:43:09 +0000 (18:43 +0000)]
Sync up syscons options from options.i386.

22 years agoIf an RPC fails, try a shorter reply in case the fault lies with the
alfred [Mon, 15 Jul 2002 18:34:27 +0000 (18:34 +0000)]
If an RPC fails, try a shorter reply in case the fault lies with the
size of the response.

PR: misc/26320
MFC After: 2 weeks

22 years agoAdd a NOTES file for the Alpha architecture.
jhb [Mon, 15 Jul 2002 17:50:17 +0000 (17:50 +0000)]
Add a NOTES file for the Alpha architecture.

22 years agomakeLINT.send has been moved to sys/conf so we can build LINT on other
jhb [Mon, 15 Jul 2002 17:48:47 +0000 (17:48 +0000)]
makeLINT.send has been moved to sys/conf so we can build LINT on other
architectures besides i386.

22 years agode-__P().
alfred [Mon, 15 Jul 2002 17:44:34 +0000 (17:44 +0000)]
de-__P().
WARNS=4 cleanup:
  include headers needed.
  don't initialize char * with const char *.
  fix main() declaration.
  fix shadowed variable.
  properly cast tcpcb members for printf(3) output.
  remove 'register'.
  remove unused arg.

Reviewed by: tmm, bde

22 years agoFix a bazillion lint and WARNS warnings. One major fix is the removal of
markm [Mon, 15 Jul 2002 17:28:34 +0000 (17:28 +0000)]
Fix a bazillion lint and WARNS warnings. One major fix is the removal of
semicolons from the end of macros:

#define FOO() bar(a,b,c);

becomes

#define FOO() bar(a,b,c)

Thus requiring the semicolon in the invocation of FOO. This is much
cleaner syntax and more consistent with expectations when writing
function-like things in source.

With both peril-sensitive sunglasses and flame-proof undies on, tighten
up some types, and work around some warnings generated by this. There
are some _horrible_ const/non-const issues in this code.

22 years agoUse ISO 9X variadic macro format; arguments are not optional, just
markm [Mon, 15 Jul 2002 17:17:56 +0000 (17:17 +0000)]
Use ISO 9X variadic macro format; arguments are not optional, just
variable.

22 years agoConvert macros with variadic arguments from GNU format to ISO 9X.
markm [Mon, 15 Jul 2002 17:15:41 +0000 (17:15 +0000)]
Convert macros with variadic arguments from GNU format to ISO 9X.

22 years agoComment out WARNS?=4 to unbreak the Alpha build.
des [Mon, 15 Jul 2002 17:11:20 +0000 (17:11 +0000)]
Comment out WARNS?=4 to unbreak the Alpha build.

22 years agoIdentify the C Language Binding Option of IEEE Std. 1003.2-1992.
wollman [Mon, 15 Jul 2002 16:44:07 +0000 (16:44 +0000)]
Identify the C Language Binding Option of IEEE Std. 1003.2-1992.
This represents the original standardization of the following functions
and headers:

popen()
<regex.h>: regcomp(), regexec(), regerror(), regfree()
<fnmatch.h>: fnmatch()
getopt(), optarg, optind, opterr, optopt
<glob.h>: glob()
<wordexp.h>: wordexp(), wordfree()
confstr()

22 years agoFix grammar 'the administrator'
trhodes [Mon, 15 Jul 2002 16:23:56 +0000 (16:23 +0000)]
Fix grammar 'the administrator'

PR: 39093
Submitted by: Mike Makonnen <makonnen@packbell.net>

22 years agoGet rid of %qd, and unbreak Alpha build.
des [Mon, 15 Jul 2002 16:05:15 +0000 (16:05 +0000)]
Get rid of %qd, and unbreak Alpha build.

22 years agoMove all the sio(4) attachments (except for pc98's cbus attachment) to the
jhb [Mon, 15 Jul 2002 15:47:34 +0000 (15:47 +0000)]
Move all the sio(4) attachments (except for pc98's cbus attachment) to the
MI files file.  We can't move sio.c because pc98 uses a custom version.

22 years agoThe puc(4) driver/bridge is MI, so don't bury it in MD options and files
jhb [Mon, 15 Jul 2002 15:39:10 +0000 (15:39 +0000)]
The puc(4) driver/bridge is MI, so don't bury it in MD options and files
config files.  It also depends on PCI.

22 years agoo Introduce new m_getcl() interface routine that allocates an mbuf
bmilekic [Mon, 15 Jul 2002 15:32:59 +0000 (15:32 +0000)]
o Introduce new m_getcl() interface routine that allocates an mbuf
  and a cluster in one shot.
o Introduce MBP_PERSIST and MBP_PERSISTENT control bits to mb_alloc();
  MBP_PERSIST means "if you can allocate, then keep the cache lock
  held on exit," and MBP_PERSISTENT means "a cache lock is alredy held
  on entry, so allocate from the specified (already locked) cache."
  They may be used in combination.
o m_getcl() uses the MBP_PERSIST/MBP_PERSISTENT interface so that it
  doesn't drop the cache lock in between the mbuf and cluster allocations.
o m_getm(), which takes a size and allocates an mbuf + cluster "best fit"
  chain, has been moved from uipc_mbuf.c to subr_mbuf.c and shown how to
  use MBP_PERSIST/MBP_PERSISTENT to attempt to do a grouped allocation
  without dropping the cache lock in between.

Why this is good: much less bus-locked lock acquires/drops when they're
not needed.  Also, prototype for m_getcl():
struct mbuf * m_getcl(int how, short type, int flags);
"how" and "type" are self-explanatory.  "flags" may be M_PKTHDR, in
which case m_getcl() will make the mbuf a pkthdr-mbuf.

While I'm in subr_mbuf.c:
o Every exported routine now has a nice comment with a description of
  the expected arguments.  Eventually, mbuf(9) needs to be re-vamped
  but there's still more code to write/finalize before I get to that.
o internal macros have been changed a bit.
o consistently use 'short' for "type."  This somehow slipped through
  before (that 'type' was sometimes declared as int).

Alfred has been pushing for the MBP_PERSIST{,ENT} thing for almost a
year now.  Luigi asked for m_getcl(), and will probably MFC that
part of this commit.

TODO [Related]: teach mb_free() about MBP_PERSIST{, ENT}.

22 years agoSort all the SYSV IPC options. They are still all clumped together, but
jhb [Mon, 15 Jul 2002 15:28:16 +0000 (15:28 +0000)]
Sort all the SYSV IPC options.  They are still all clumped together, but
at least they are sorted relative to themselves now.

22 years ago- Properly sort GEOM and NODEVFS.
jhb [Mon, 15 Jul 2002 15:25:08 +0000 (15:25 +0000)]
- Properly sort GEOM and NODEVFS.
- GEOM doesn't need to specify a filename, the correct one is chosen by
  default.

22 years agoMake WLCACHE and WLDEBUG MI options.
jhb [Mon, 15 Jul 2002 15:21:51 +0000 (15:21 +0000)]
Make WLCACHE and WLDEBUG MI options.

22 years agoMake NDGBPORTS an MI option since the dgb(4) driver is an MI driver.
jhb [Mon, 15 Jul 2002 15:18:34 +0000 (15:18 +0000)]
Make NDGBPORTS an MI option since the dgb(4) driver is an MI driver.
Remove comments about NDGBPORTS from the options* files.  Please document
options in NOTES, not in the options* files.

22 years agoProperly document NDGBPORTS and use a better value in NOTES. The normal
jhb [Mon, 15 Jul 2002 15:17:22 +0000 (15:17 +0000)]
Properly document NDGBPORTS and use a better value in NOTES.  The normal
values for settings in NOTES is to use the default value + 1.

22 years agoRemove SIMOS option from here. It will be moving to a new home shortly.
jhb [Mon, 15 Jul 2002 15:07:51 +0000 (15:07 +0000)]
Remove SIMOS option from here.  It will be moving to a new home shortly.

22 years agoAdjust a comment, the vga device only supports VGA cards.
jhb [Mon, 15 Jul 2002 14:56:44 +0000 (14:56 +0000)]
Adjust a comment, the vga device only supports VGA cards.

22 years agoThe sources to the non-working esp device are no longer present in current.
jhb [Mon, 15 Jul 2002 14:54:36 +0000 (14:54 +0000)]
The sources to the non-working esp device are no longer present in current.

22 years agoAlpha does not support the PERFMON kernel option and does not have a
jhb [Mon, 15 Jul 2002 14:45:32 +0000 (14:45 +0000)]
Alpha does not support the PERFMON kernel option and does not have a
perfmon.c.

22 years agoNeither options SLICE or sys/alpha/alpha/mountroot.c exist anymore.
jhb [Mon, 15 Jul 2002 14:43:40 +0000 (14:43 +0000)]
Neither options SLICE or sys/alpha/alpha/mountroot.c exist anymore.

22 years agoRe-fetch the interface handle after setting the config number,
iedowse [Mon, 15 Jul 2002 14:37:36 +0000 (14:37 +0000)]
Re-fetch the interface handle after setting the config number,
because the previous interface handle gets freed when the config
number is set. This fixes a problem where memory could be accessed
after it was freed when the interface was ifconfig'd up.

Reviewed by: n_hibma

22 years ago- Remove an irrelevant comment from i386 GENERIC.
jhb [Mon, 15 Jul 2002 14:33:20 +0000 (14:33 +0000)]
- Remove an irrelevant comment from i386 GENERIC.
- Remove unneeded quotes.
- Remove 'config' line.
- Rename ident to SIMOS.

22 years agoMove ACPI device and options from MI NOTES to the i386 MD NOTES file.
jhb [Mon, 15 Jul 2002 14:28:20 +0000 (14:28 +0000)]
Move ACPI device and options from MI NOTES to the i386 MD NOTES file.

22 years agoVery minor warns fix. Add a declaration for an unused parameter.
markm [Mon, 15 Jul 2002 14:06:03 +0000 (14:06 +0000)]
Very minor warns fix. Add a declaration for an unused parameter.

22 years agoHelp lint out a bit; wrap some functions (redefined as macros) in #ifdef.
markm [Mon, 15 Jul 2002 14:04:08 +0000 (14:04 +0000)]
Help lint out a bit; wrap some functions (redefined as macros) in #ifdef.

22 years agoUpgrade the random device to use a "real" hash instead of building
markm [Mon, 15 Jul 2002 13:58:35 +0000 (13:58 +0000)]
Upgrade the random device to use a "real" hash instead of building
one out of a block cipher. This has 2 advantages:
1) The code is _much_ simpler
2) We aren't committing our security to one algorithm (much as we
   may think we trust AES).

While I'm here, make an explicit reseed do a slow reseed instead
of a fast; this is in line with what the original paper suggested.

22 years agoFix some really pedantic GCC warnings.
markm [Mon, 15 Jul 2002 13:45:15 +0000 (13:45 +0000)]
Fix some really pedantic GCC warnings.

22 years agoConvert GNU variadic macros to the ISO 9X variety.
markm [Mon, 15 Jul 2002 13:34:50 +0000 (13:34 +0000)]
Convert GNU variadic macros to the ISO 9X variety.

22 years agoWrap GNU specific code in ifdefs, and help lint out by providing
markm [Mon, 15 Jul 2002 13:29:40 +0000 (13:29 +0000)]
Wrap GNU specific code in ifdefs, and help lint out by providing
some alternative definitions.

22 years agoCast to prevent "signed/unsigned comparison" warnings.
markm [Mon, 15 Jul 2002 13:27:43 +0000 (13:27 +0000)]
Cast to prevent "signed/unsigned comparison" warnings.

22 years agoWarnings and lint-assisting fixes; mark unused function parameters as
markm [Mon, 15 Jul 2002 13:25:15 +0000 (13:25 +0000)]
Warnings and lint-assisting fixes; mark unused function parameters as
unused; wrap GNUisms (asm code) in appropriate #ifdefs.

22 years agoConsistently use semicolons to terminate macro invocations. Cleaner
markm [Mon, 15 Jul 2002 13:17:23 +0000 (13:17 +0000)]
Consistently use semicolons to terminate macro invocations. Cleaner
style and fixes later warnings.

22 years agoConvert GNU-styled variadic macros to ISO(9x) style.
markm [Mon, 15 Jul 2002 13:15:31 +0000 (13:15 +0000)]
Convert GNU-styled variadic macros to ISO(9x) style.

22 years agoUse a semicolon at the end of a function-like macro invocation. Kills
markm [Mon, 15 Jul 2002 13:13:04 +0000 (13:13 +0000)]
Use a semicolon at the end of a function-like macro invocation. Kills
warnings and makes the visual style easier.

22 years agoFix warning by marking unused function parameter.
markm [Mon, 15 Jul 2002 13:10:19 +0000 (13:10 +0000)]
Fix warning by marking unused function parameter.

22 years agoISOfy and minor warnsfix.
markm [Mon, 15 Jul 2002 13:08:44 +0000 (13:08 +0000)]
ISOfy and minor warnsfix.

22 years agoUse semicolons at the end of function-like macros for the sake of
markm [Mon, 15 Jul 2002 13:03:10 +0000 (13:03 +0000)]
Use semicolons at the end of function-like macros for the sake of
consistency, style and future cleanliness.

22 years agoGet rid of %qd, and unbreak Alpha build.
des [Mon, 15 Jul 2002 12:17:31 +0000 (12:17 +0000)]
Get rid of %qd, and unbreak Alpha build.

22 years agoRevert previous delta, which is not required with rev 1.5 of
sheldonh [Mon, 15 Jul 2002 12:08:21 +0000 (12:08 +0000)]
Revert previous delta, which is not required with rev 1.5 of
src/contrib/gcc/c-format.c .

22 years agos/progname/procname/ to be consistent with the other occurrences
rse [Mon, 15 Jul 2002 11:33:30 +0000 (11:33 +0000)]
s/progname/procname/ to be consistent with the other occurrences
of the option -c argument in SYNOPSIS and DESCRIPTION.

22 years agoReplace extra call to "tunefs" with the equivalent of "newfs -U".
rse [Mon, 15 Jul 2002 11:30:21 +0000 (11:30 +0000)]
Replace extra call to "tunefs" with the equivalent of "newfs -U".

Reviewed by: phk

22 years agoCorrect module name of my previous commit.
ume [Mon, 15 Jul 2002 11:22:37 +0000 (11:22 +0000)]
Correct module name of my previous commit.

22 years agorevert WARNS=4, it makes the alpha compile sad.
alfred [Mon, 15 Jul 2002 09:53:34 +0000 (09:53 +0000)]
revert WARNS=4, it makes the alpha compile sad.

22 years agoFix whitespace in .Bd -literal display of S_IXXX constants.
keramida [Mon, 15 Jul 2002 08:58:16 +0000 (08:58 +0000)]
Fix whitespace in .Bd -literal display of S_IXXX constants.

Noticed by:     jmallett

22 years agomdoc fun: add a few more sentence breaks.
keramida [Mon, 15 Jul 2002 07:51:10 +0000 (07:51 +0000)]
mdoc fun: add a few more sentence breaks.

22 years agoKill excessive whitespace between macro arguments.
keramida [Mon, 15 Jul 2002 07:35:36 +0000 (07:35 +0000)]
Kill excessive whitespace between macro arguments.

22 years agomdoc style: break up sentences
keramida [Mon, 15 Jul 2002 07:16:54 +0000 (07:16 +0000)]
mdoc style: break up sentences

22 years agoBit-width fields should be of type 'int'.
jmallett [Mon, 15 Jul 2002 06:57:25 +0000 (06:57 +0000)]
Bit-width fields should be of type 'int'.

22 years agoUse %zu to print size_t.
jmallett [Mon, 15 Jul 2002 06:57:01 +0000 (06:57 +0000)]
Use %zu to print size_t.

22 years ago o Create vm_contig_launder() to replace code that appears twice
alc [Mon, 15 Jul 2002 06:33:31 +0000 (06:33 +0000)]
 o Create vm_contig_launder() to replace code that appears twice
   in contigmalloc1().

22 years agoFix last hard sentence break.
keramida [Mon, 15 Jul 2002 06:15:38 +0000 (06:15 +0000)]
Fix last hard sentence break.

22 years ago^Z suspends any and all programs that don't do anything special about
keramida [Mon, 15 Jul 2002 05:54:35 +0000 (05:54 +0000)]
^Z suspends any and all programs that don't do anything special about
it.  There's really no reason to explicitly mention it here.

Suggested by: Mark Valentine <mark@thuvia.demon.co.uk>

22 years agoSupport larger files (at least 64-bit offsets) by using off_t instead of
tjr [Mon, 15 Jul 2002 05:31:55 +0000 (05:31 +0000)]
Support larger files (at least 64-bit offsets) by using off_t instead of
int to store offsets.