mike
27ef305f7e
style(9)
...
Submitted by: bde (partially)
2002-10-14 14:28:46 +00:00
phk
8762cef261
Populate more fields of the disklabel for PC98.
...
Submitted by: Kawanobe Koh <kawanobe@st.rim.or.jp>
2002-10-14 14:22:29 +00:00
mike
2cd396dc53
o Move forward declaration for struct timespec to a more appropriate
...
location.
o Don't prototype functions for which we don't have an implementation.
o Add forward declaration for struct __ucontext, previously this was
forward declared in <sys/signal.h>.
o Add a comment about the size of NSIG.
PR: 35924
Submitted by: bde
2002-10-14 14:13:37 +00:00
mike
6fbe78af1c
1) Although C99 allows implementations to define additional SIG*
...
constants in scope, C90 does not; so, add namespace visibility
conditionals to SIG*.
2) Define the extended __sighandler_t type only in BSD namespace.
3) Don't forward declare a struct for a prototype in <signal.h>.
4) Move location of SIG_* constants.
5) Move a forward declare into the correct namespace conditional.
Requested by: bde (1)
Submitted by: bde (2 thru 5)
2002-10-14 14:12:16 +00:00
nyan
879ba46c82
Fix to check disk geometry.
...
Submitted by: kawanobe@st.rim.or.jp (Kawanobe Koh)
2002-10-14 13:15:14 +00:00
nyan
92b6682eed
The MACHINE variable on pc98 is "i386". So, use "pc98" directly in PC98 case.
2002-10-14 13:06:13 +00:00
nyan
b07584819d
Use snprintf() instead of sprintf().
2002-10-14 13:04:21 +00:00
nyan
91f57b58e2
Check correct machine name.
2002-10-14 13:02:30 +00:00
nyan
01c92602a2
MFi386: revision 1.9.
2002-10-14 12:07:39 +00:00
cognet
6fa5a2e248
Fix support for the ALi M5451 (rev 0.2) chip.
...
Reviewed by: orion, mux
Approved by: mux (mentor)
MFC after: 1 week
2002-10-14 11:47:37 +00:00
phk
ab7f456357
Don't panic when we can just return an error code.
2002-10-14 11:21:05 +00:00
tjr
83b297f2f0
Use a weak reference instead of a macro to make vfscanf an alias
...
for __vfscanf.
2002-10-14 11:18:21 +00:00
ue
c952a2a492
Move toc-depth define to the correct position and reduce whitespace diff to
...
the english original.
2002-10-14 11:04:26 +00:00
tjr
375bcd9d36
Add LC_CTYPE information for characters with lead bytes ED, EE, FA, FB, FC.
2002-10-14 10:44:00 +00:00
tjr
2d375c4af2
Write the strvis()'d string out to the history file in history_save(),
...
not the original string. Fixes the bug where every second line of a
history file was empty.
2002-10-14 10:42:38 +00:00
nyan
a61bdcb3db
The ep and pccard modules build on pc98.
2002-10-14 10:15:01 +00:00
nyan
23f1ad6ad4
Merged from sys/dev/sio/sio.c revision 1.382.
2002-10-14 10:10:09 +00:00
phk
d855c32204
Implement the GEOMCONFIGGEOM ioctl which can be used to manually create
...
and configure an instance of a class on a give provider.
Sponsored by: DARPA & NAI Labs
2002-10-14 10:05:23 +00:00
phk
8298a7f6ad
Add more KASSERTS.
...
Sponsored by: DARPA & NAI Labs.
2002-10-14 10:02:24 +00:00
ru
d9865aa4d5
Merge FSF changes onto mainline (-r option).
2002-10-14 09:15:17 +00:00
ru
5c810fd127
From ChangeLog:
...
: 2002-10-13 Ruslan Ermilov <ru@FreeBSD.org>
:
: Add the new -r option to grotty. It is similar to the -i option
: except it tells grotty(1) to use the "reverse video" attribute to
: render italic fonts.
2002-10-14 09:12:27 +00:00
ru
ac54214516
This commit was generated by cvs2svn to compensate for changes in r105081,
...
which included commits to RCS files with non-trunk default branches.
2002-10-14 09:12:27 +00:00
phk
95d3ce583e
Remove an unused variable.
2002-10-14 08:54:08 +00:00
marcel
7d6013f59f
Allow kernel dumps to be aborted with ctrl-C.
2002-10-14 05:38:22 +00:00
cjc
af56ac88c7
Unconditionally restore the pointer to the saved Ethernet header after
...
going to bridge.c:bdg_forward(). The header can be munged even if the
mbuf does not /appear/ to change.
PR: kern/42465
MFC after: 4 days
2002-10-14 05:27:00 +00:00
mckusick
25230d4c6a
Regularize the vop_stdlock'ing protocol across all the filesystems
...
that use it. Specifically, vop_stdlock uses the lock pointed to by
vp->v_vnlock. By default, getnewvnode sets up vp->v_vnlock to
reference vp->v_lock. Filesystems that wish to use the default
do not need to allocate a lock at the front of their node structure
(as some still did) or do a lockinit. They can simply start using
vn_lock/VOP_UNLOCK. Filesystems that wish to manage their own locks,
but still use the vop_stdlock functions (such as nullfs) can simply
replace vp->v_vnlock with a pointer to the lock that they wish to
have used for the vnode. Such filesystems are responsible for
setting the vp->v_vnlock back to the default in their vop_reclaim
routine (e.g., vp->v_vnlock = &vp->v_lock).
In theory, this set of changes cleans up the existing filesystem
lock interface and should have no function change to the existing
locking scheme.
Sponsored by: DARPA & NAI Labs.
2002-10-14 03:20:36 +00:00
imp
2cf51225e1
o Comment out the symbol download code for 4.x.
...
o Add hooks for doing power management of the output signal.
o Minor hacks to make flexlint happy wrt staticness of functions.
2002-10-14 01:59:57 +00:00
tjr
bfd4cfc4dc
FA, FB and FC are lead bytes according to recent Microsoft documentation.
2002-10-14 01:50:45 +00:00
tjr
061d1d394f
Style changes. Mainly removing excessive whitespace and parens.
2002-10-14 01:46:18 +00:00
alc
d7c3f24729
Eliminate the unnecessary clearing of flag bits that are already clear
...
in lio_listio(2).
2002-10-14 01:21:37 +00:00
tjr
f884e12d21
Add Big5, MSKanji and UTF-8 to the list of supported encodings.
...
Mark UTF2 as being deprecated.
2002-10-14 00:45:51 +00:00
grog
6d7a906aa2
Clarify that a number of incidents relate to Germany.
...
This file contains a number of incidents which do not related to
Germany. It's not clear whether they should remain or not, so I have
left them.
2002-10-14 00:45:13 +00:00
obrien
b6ff61943b
Take a guess at what WARNS level will make this compile on ia64.
2002-10-14 00:05:49 +00:00
phk
4dbebb44b1
Add in the GEOM control module.
...
Sponsored by: DARPA & NAI Labs.
2002-10-13 20:36:47 +00:00
phk
1eafd1bc95
Add the outline of the "/dev/geom.ctl" handling code.
...
Sponsored by: DARPA & NAI Labs.
2002-10-13 20:33:33 +00:00
jake
083845b5c0
Compile in support for zipfs and bzipfs so we can load the gzipped mfsroot
...
that releases use.
2002-10-13 18:52:46 +00:00
cognet
c67390b43d
Connect trm(4) to the build.
...
Reviewed by: mux (mentor)
Approved by: mux (mentor)
2002-10-13 18:44:26 +00:00
phk
a95c8cfb24
Give GEOM modules a chance to specify their own init routine, in case they
...
have special requirements.
Sponsored by: DARPA & NAI Labs.
2002-10-13 18:42:35 +00:00
jake
521f97afae
Add beginnings of sparc64 release magic.
2002-10-13 18:36:06 +00:00
cognet
20c51b1bbd
Import of the trm(4) driver (for Tekram DC395U/UW/F and DC315U SCSI adapters).
...
Reviewed by: mux, scottl
Approved by: mux, scottl
2002-10-13 18:32:39 +00:00
jake
99f37adfdd
MODINFO_SIZE metadata has type size_t, not unsigned. This makes preloaded
...
md root work on sparc64.
2002-10-13 18:19:22 +00:00
phk
c78ac11587
Correctly account for MAXPARTITIONS in the CTASSERT() which protects the
...
size of the disklabel structure.
Hit by: schweikh
2002-10-13 17:28:14 +00:00
rwatson
e503981b22
Remove root from the kmem, sys, tty, and staff groups in the default
...
configuration. Root privileges override DAC on local file systems and
therefore root does not generally need to be a member of a group to
access files owned by that group. In the NFS case, require explicit
authorization for root to have these privileges.
Leave root in operator for dump/restore broadcast reasons; leave root
in wheel until discrepencies in the "no users in wheel means any user
can su" policy are resolved (possibly indefinitely).
2002-10-13 17:00:37 +00:00
mike
274818ff2c
Remove the P1003_1B kernel option; it is no longer used.
2002-10-13 16:29:17 +00:00
rwatson
3f24148d9c
For consistency with other entries in group, don't put the daemon or
...
xten users in their groups explicitly--we pick that up from the gid
field in master.passwd.
2002-10-13 16:26:26 +00:00
mux
fc294fdaf0
- Remove a useless initialization for 'ronly', if it hadn't been
...
there, we would have noticed that 'ronly' was uninitialized :-).
- Kill a nearby 'register' keyword.
2002-10-13 16:13:11 +00:00
phk
7753ea4ce0
Pass flags to VOP_CLOSE() corresponding to what was passed to VOP_OPEN().
...
Submitted by: "Peter Edwards" <pmedwards@eircom.net>
2002-10-13 16:04:46 +00:00
mike
289d041ef1
struct ia64_fpreg needs to be available outside of the kernel for
...
struct sigcontext.
Pointy hat to: mike
2002-10-13 15:30:17 +00:00
mike
e20d2b8d8d
Remove <sys/_posix.h>; nothing uses it anymore.
2002-10-13 15:05:56 +00:00
mike
2a56301cd0
Remove _KPOSIX_VERSION as a kernel option, nothing uses this any more.
2002-10-13 14:29:04 +00:00