Warner Losh
3c2d2c7cea
More style(9) nits
2002-06-01 05:44:45 +00:00
Warner Losh
f60115a36c
Define a PCI_INVALID_IRQ to augment PCI_INTERRUPT_VALID
2002-06-01 05:40:33 +00:00
Warner Losh
8ce1ab3a24
Use a common function to map the bogus intlines.
...
Don't require pin be non-zero before we map bogus intlines, always do it.
This fixes a number of problems on HP Omnibook computers.
Tested/Reviewed by: Brooks Davis
2002-06-01 05:14:11 +00:00
Brian S. Dean
181b15f9f8
Make a structure definition slightly more style(9) compliant (makes
...
the structure definition easier to find using grep).
2002-06-01 03:55:16 +00:00
Warner Losh
c9579f73e0
Make this file mostly conform to style(9).
...
Approved by: msmith in principle before walkabout
2002-06-01 03:41:02 +00:00
Tim J. Robbins
39dccc6f6d
Implement $PPID, the parent process ID of the shell.
2002-06-01 02:14:48 +00:00
Tim J. Robbins
f63d6dbfc9
Support the remaining job ID formats required by SUSv3:
...
%+ (current job, same as %%),
%- (previous job),
%?str (job with "str" in its command name).
2002-06-01 01:51:42 +00:00
Juli Mallett
27d72beba7
We have a version of help(SCCS) in /usr/bin now.
2002-06-01 01:07:50 +00:00
Juli Mallett
30617de0f3
Remove a stray asterisk in a comment.
2002-06-01 00:52:28 +00:00
Archie Cobbs
f0184ff8e3
Fix GCC warnings caused by initializing a zero length array. In the process,
...
simply things a bit by getting rid of 'struct ng_parse_struct_info' which
was useless because it only contained one field.
MFC after: 2 weeks
2002-05-31 23:48:03 +00:00
Warner Losh
cbcfdbcfe6
Quick, low impact band-aide to unbreak the build. Added && 0 so we
...
ifdef out what appears to be a bogus call to softintr using data
elements that aren't in the softc.
2002-05-31 23:39:04 +00:00
Eric Anholt
4956c7034c
Warnings cleanup for gcc3. Also __FUNCTION__ -> __func__
...
Approved by: des
2002-05-31 23:19:50 +00:00
Archie Cobbs
c05b5b0453
Grammar nit: treat "contents" as plural.
2002-05-31 22:26:19 +00:00
Archie Cobbs
48d183faca
Fix a bug in m_split(): the "m->m_ext.ext_size" field of an mbuf was being
...
set to zero. This field indicates the total space in the external buffer
and therefore should not be modified after the external buffer is added.
Add a comment warning that the mbufs returned by m_split() might be read-only.
Fix M_TRAILINGSPACE() to return zero if !M_WRITABLE(m).
Reviewed by: freebsd-net
Obtained from: Vernier Networks, Inc.
MFC after: 1 week
2002-05-31 22:09:57 +00:00
John Baldwin
fa82904a90
Don't load a module from /stand/modules in the MFS root if it is already in
...
the kernel.
2002-05-31 20:06:24 +00:00
Ruslan Ermilov
2d80eecc97
We don't build libc_r on sparc64 for the moment.
2002-05-31 19:59:12 +00:00
Bruce A. Mah
f7f8fa6135
pc98 now has its own relnotes and hardware documents.
2002-05-31 19:31:26 +00:00
Yoshihiro Takahashi
64917c4f00
Add/Update hardware, installation and relnotes documentations for pc98.
...
Submitted by: NAKAJI Hiroyuki <nakaji@tutrp.tut.ac.jp> and nyan
Reviewed by: bmah
2002-05-31 18:00:39 +00:00
Hajimu UMEMOTO
0776834a11
__FreeBSD__ is not a compiler constant. We must use
...
__FreeBSD_version here.
Submitted by: rwatson
2002-05-31 17:56:45 +00:00
Pierre Beyssac
81f5d1fac0
Fix integer overflow causing disk/partition size display wrapping
...
above 4GB.
2002-05-31 17:03:01 +00:00
Dag-Erling Smørgrav
7aa57dca57
Nit: kern.ttys is of type S,xtty, not S,tty.
2002-05-31 16:11:49 +00:00
Bruce A. Mah
ca8f81dd24
pkg_version was incorrectly claiming that 1.5 == 1.5.0.1, because
...
we weren't properly checking for the case that the two version strings
being compared had different numbers of components. This has been
fixed.
Pointed out by: sobomax
Reviewed by: silence on -ports
2002-05-31 15:45:48 +00:00
Jens Schweikhardt
8f53a66abc
Backout recent typo "fix". I've been enlightened that it's an obsolete
...
and rare synonym for indomitable (from the French indomptable)
Requested by: "Jacques A. Vidrine" <nectar@FreeBSD.org>
2002-05-31 14:36:45 +00:00
John Baldwin
4f3624a441
- Document the new `diskInteractive' variable.
...
- Document the tcpMenuSelect command.
Sponsored by: The Weather Channel
2002-05-31 14:32:03 +00:00
Tim J. Robbins
ad8a075902
Add -s (output PID's only) and -l (show PID's) options to the jobs(1)
...
builtin. Modify the output format to match what SUSv3 requires.
2002-05-31 14:04:23 +00:00
John Baldwin
dc1024256c
If 'netInteractive' is set to true in an installation script, then
...
temporarily turn off the nonInteractive variable around the DHCP and IPv6
Yes/No questions in a network device setup so that those questions are
asked.
2002-05-31 13:39:55 +00:00
John Baldwin
df349781bf
Add a 'diskInteractive' variable that can be set to interactively partition
...
and label a disk from a sysinstall script.
2002-05-31 13:38:17 +00:00
Jens Schweikhardt
55847cbc30
Typo: s/Indomptable/Indomitable/
...
MFC after: 3 weeks
2002-05-31 13:26:56 +00:00
Ruslan Ermilov
8c5fbbf993
Fixed modes.
2002-05-31 13:20:01 +00:00
Tim J. Robbins
bdfc15df5e
#if JOBS around a job control-related statement to allow compilation with
...
job control disabled.
2002-05-31 13:10:38 +00:00
Tim J. Robbins
e3f3094912
Break the code to display status info for one job out from showjobs() into
...
showjob(), use it inside dowait() to display status info for consistency,
and in a format closer to what the standard requires.
2002-05-31 13:07:05 +00:00
Ruslan Ermilov
99b73fffb8
On behalf of lib/compat/compat4x.i386/libusb.so.0.bz2.uu,v 1.1,
...
added uudecode(1) to bootstrap-tools.
2002-05-31 13:04:09 +00:00
Ruslan Ermilov
ce17d4f3d3
Bootstrapping aid for those with Athlon upgrading from gcc 2.95.x.
...
Prodded by: gordon
2002-05-31 12:50:24 +00:00
Tim J. Robbins
3771ef59ae
Move job to front of most recently used job list when bg'd or fg'd.
2002-05-31 12:35:34 +00:00
Tim J. Robbins
d86825beb8
Instead of keeping just the jobid of the most recently bg'd or fg'd job,
...
keep a linked list of the jobs, most recently used first. This is required
to support the idea of `previous job', and to allow the jobs fg and bg
default to be correct according to POSIX.
2002-05-31 12:31:23 +00:00
Seigo Tanimura
4cc20ab1f0
Back out my lats commit of locking down a socket, it conflicts with hsu's work.
...
Requested by: hsu
2002-05-31 11:52:35 +00:00
Ruslan Ermilov
c82593cf2c
The new bsd.incs.mk is powerful enough to handle this wrinkle.
2002-05-31 11:45:34 +00:00
Chris D. Faulhaber
5f6da00d2e
Remove DESTDIR which is already included in DOCDIR.
...
Submitted by: jhay
2002-05-31 10:37:22 +00:00
Robert Drehmel
280759e75e
- Replace the bandaid introduced in revision 1.110 with
...
a better solution.
- Add braces for a ``for'' statement containing a single
multi-line statement.
2002-05-31 09:41:09 +00:00
Dag-Erling Smørgrav
8dcfdf3f80
Export nswapdev through sysctl(8).
...
Sponsored by: DARPA, NAI Labs
2002-05-31 08:17:58 +00:00
Brooks Davis
09d225d8c3
The loop back device hasn't been a count device for a while so remove
...
the number of interfaces.
2002-05-31 06:28:13 +00:00
Greg Lehey
c4dafa223d
Kludge around troff bugs to get a reasonable print format despite the
...
necessity to shrink quoted text to fit on the page.
PR: 38760
2002-05-31 06:17:03 +00:00
Archie Cobbs
6accdce98b
Grammar fix: "contents" is plural.
...
MFC after: 1 day
2002-05-31 05:01:17 +00:00
Mike Silbersack
acc52a9a8e
Use %lu instead of %ld when printing rt_use (aka rt_rmx.rmx_pksent)
...
Submitted by: Andre Oppermann <oppermann@pipeline.ch>
MFC after: 5 days
2002-05-31 04:36:55 +00:00
Mike Silbersack
54e84abb59
Ensure that packet counts are always reset to 0 when
...
a route is cloned. Previously, they took on the count
of their parent route (which was sometimes nonzero.)
Submitted by: Andre Oppermann <oppermann@pipeline.ch>
MFC after: 5 days
2002-05-31 04:27:51 +00:00
Alan Cox
9917e01041
Further work on pushing Giant out of the vm_map layer and down
...
into the vm_object layer:
o Acquire and release Giant in vm_object_shadow() and
vm_object_page_remove().
o Remove the GIANT_REQUIRED assertion preceding vm_map_delete()'s call
to vm_object_page_remove().
o Remove the acquisition and release of Giant around vm_map_lookup()'s
call to vm_object_shadow().
2002-05-31 03:48:55 +00:00
Warner Losh
6f20d5e68f
Use __FreeBSD_version to test what things to use
2002-05-31 03:27:34 +00:00
Giorgos Keramidas
f1c746bb3f
Typo fix: syste -> system
2002-05-31 01:46:26 +00:00
Takanori Watanabe
6e8f09ca61
Fix build breakage on my pccard related commit.
2002-05-31 01:08:49 +00:00
Marcel Moolenaar
78dff92b6b
Don't use an incomplete array type to mark the start of the padding
...
because the padding should be inserted before the array and not after
it, as is done by GCC 3.1. Instead use an explicit uint32_t field
to get what was intended and on top of that make the size of the
padding explicit. This also doesn't depend on a C99 feature.
While here, expand the comment. Just to make a point.
Pointed out by: fanf
2002-05-31 01:07:13 +00:00