]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/log
FreeBSD/FreeBSD.git
22 years agoThis commit was generated by cvs2svn to compensate for changes in r82794,
obrien [Sun, 2 Sep 2001 17:19:13 +0000 (17:19 +0000)]
This commit was generated by cvs2svn to compensate for changes in r82794,
which included commits to RCS files with non-trunk default branches.

22 years agoVirgin import of AMD (am-utils) v6.0.7
obrien [Sun, 2 Sep 2001 17:19:13 +0000 (17:19 +0000)]
Virgin import of AMD (am-utils) v6.0.7

22 years agoFile positions are off_t nowdays, not long, so:
ache [Sun, 2 Sep 2001 14:40:51 +0000 (14:40 +0000)]
File positions are off_t nowdays, not long, so:
    fseek -> fseeko
    ftell -> ftello

    NOTE: fseek/ftell not works for >long offsets per POSIX:

    [EOVERFLOW] For fseek( ), the resulting file offset would be a value which
    cannot be represented correctly in an object of type long.

    [EOVERFLOW] For ftell ( ), the current file offset cannot be represented
    correctly in an object of type long.

22 years agolong -> off_t
ache [Sun, 2 Sep 2001 14:18:28 +0000 (14:18 +0000)]
long -> off_t
long -> time_t
%ld -> %qd
fseek -> fseeko

NOTE: that fseek not works for >long offsets per POSIX:

[EOVERFLOW] For fseek( ), the resulting file offset would be a value which
cannot be represented correctly in an object of type long.

22 years agoAlways turned on 8bit access card support for the fe driver
shiba [Sun, 2 Sep 2001 13:05:00 +0000 (13:05 +0000)]
Always turned on 8bit access card support for the fe driver
both i386/pc98, so options FE_8BIT_SUPPORT was deleted.

Reviewed by: nyan

22 years agoThe !RESTARTABLE_PANICS code has some loose ends.
peter [Sun, 2 Sep 2001 12:24:38 +0000 (12:24 +0000)]
The !RESTARTABLE_PANICS code has some loose ends.

22 years agoFor ia64, set the default elf brand to be FreeBSD. This is temporarily
peter [Sun, 2 Sep 2001 12:23:08 +0000 (12:23 +0000)]
For ia64, set the default elf brand to be FreeBSD.  This is temporarily
necessary only for as long as we're using a linux toolchain.

22 years agoSync with i386 / alpha. Whitespace unindent / style prep for kse.
peter [Sun, 2 Sep 2001 10:07:09 +0000 (10:07 +0000)]
Sync with i386 / alpha.  Whitespace unindent / style prep for kse.

22 years agoAdd quirks for Kingbyte USB Pen drive.
n_hibma [Sun, 2 Sep 2001 09:31:08 +0000 (09:31 +0000)]
Add quirks for Kingbyte USB Pen drive.

Submitted by: Eugene M. Kim <gene@nttmcl.com>
PR: 29530

22 years agoOnly clear endpoint stall if status was USBD_STALLED.
n_hibma [Sun, 2 Sep 2001 09:26:14 +0000 (09:26 +0000)]
Only clear endpoint stall if status was USBD_STALLED.

This avoids panicing the system by unplugging a hub. The interrupt transfer
would sometimes arrive after the driver had been removed.

22 years agoMerge from i386: various cleanups including moving the map calculations
peter [Sun, 2 Sep 2001 07:47:47 +0000 (07:47 +0000)]
Merge from i386: various cleanups including moving the map calculations
to MI code.  This gets ia64 to compile again.

22 years agoFix bus timeout bug which might happen when nsp do suspend I/O burst write.
non [Sun, 2 Sep 2001 07:18:29 +0000 (07:18 +0000)]
Fix bus timeout bug which might happen when nsp do suspend I/O burst write.

A nsp chip does suspend I/O write by 512bytes burst write,
though the chip only has 48 bytes FIFO. The chip assert I/O WAIT
signal to PC-Card bus after the CPU writes more than 48 bytes to
the chip if the SCSI device does not respond immediately in supsend
I/O burst write. If the device does not respond for a while it might
cause PC-Card bus timeout.

The previous work around was to wait the request from SCSI device.
But there are some devices which request bytes for synchronous transfer
immediately. So current work aound is to fill 32bytes FIFO, wait for
FIFO empty and burst write 512-32 bytes for every 512 bytes block.

Submitted-by: Honda-san (the author of the driver)
Obtained-from: NetBSD/pc98

22 years agoMake the fe driver kernel object module to compile in default.
shiba [Sun, 2 Sep 2001 06:43:45 +0000 (06:43 +0000)]
Make the fe driver kernel object module to compile in default.

Reviewed by: imp

22 years agoDemand minimum I/O size rather than 0 when it calls
non [Sun, 2 Sep 2001 06:42:40 +0000 (06:42 +0000)]
Demand minimum I/O size rather than 0 when it calls
bus_alloc_resource(dev, SYS_RES_IOPORT, ...)

Pointed-out by: Yamamoto-san shigeru@iij.ad.jp

22 years agoUpdate cis tuple parser, add a pccarddevs entry,
shiba [Sun, 2 Sep 2001 06:37:41 +0000 (06:37 +0000)]
Update cis tuple parser, add a pccarddevs entry,
and improve PCCARD_IVAR_ETHADDR in pccard_read_ivar().

Change points:

(1) Read Function Ext tuple.
(2) Add Ratoc REX-R280 entry(fe driver).
(3) Take ether address from function ext tuple.

Reviewed by: imp
Obtained from: NetBSD

22 years agoMake the fe driver to compile in default under a NEWCARD kernel.
shiba [Sun, 2 Sep 2001 06:28:37 +0000 (06:28 +0000)]
Make the fe driver to compile in default under a NEWCARD kernel.

Reviewed by: imp

22 years agoFix typo; CTLFLAG_RO -> CTLFLAG_RD.
iwasaki [Sun, 2 Sep 2001 06:28:20 +0000 (06:28 +0000)]
Fix typo; CTLFLAG_RO -> CTLFLAG_RD.

22 years agoUpdate the fe driver to probe and attach under a NEWCARD kernel.
shiba [Sun, 2 Sep 2001 06:27:07 +0000 (06:27 +0000)]
Update the fe driver to probe and attach under a NEWCARD kernel.

Reviewed by: imp
Obtained from: NetBSD

22 years agoDocument my tweaks better.
obrien [Sun, 2 Sep 2001 04:06:48 +0000 (04:06 +0000)]
Document my tweaks better.

22 years agoUse sched_lock to protect rtp_to_pri() and pri_to_rtp() when needed.
jhb [Sun, 2 Sep 2001 01:05:36 +0000 (01:05 +0000)]
Use sched_lock to protect rtp_to_pri() and pri_to_rtp() when needed.

22 years agoProtect pri_to_rtp() with sched_lock when needed.
jhb [Sun, 2 Sep 2001 00:52:11 +0000 (00:52 +0000)]
Protect pri_to_rtp() with sched_lock when needed.

22 years agoFrom Mike Silbersack's message on cvs-commits:
logo [Sun, 2 Sep 2001 00:45:41 +0000 (00:45 +0000)]
From Mike Silbersack's message on cvs-commits:

> > Doh!  There is a sx man page, the mutex man page just doesn't have a SEE
> > ALSO pointing to sx(9).  Could some mdoc madman go add one?

22 years agostrtol -> strtoll (for off_t file size)
ache [Sat, 1 Sep 2001 23:36:40 +0000 (23:36 +0000)]
strtol -> strtoll (for off_t file size)

22 years agoFile positions are off_t nowdays, not long, so:
ache [Sat, 1 Sep 2001 23:26:40 +0000 (23:26 +0000)]
File positions are off_t nowdays, not long, so:
  fseek -> fseeko
  ftell -> ftello

  NOTE: that fseek/ftell not works for >long offsets per POSIX:

  [EOVERFLOW] For fseek( ), the resulting file offset would be a value which
  cannot be represented correctly in an object of type long.

  [EOVERFLOW] For ftell ( ), the current file offset cannot be represented
  correctly in an object of type long.

22 years agoUse ACL_PERM_NONE instead of hardcoding 0 when initializing
jedgar [Sat, 1 Sep 2001 23:18:15 +0000 (23:18 +0000)]
Use ACL_PERM_NONE instead of hardcoding 0 when initializing
ACL entry permissions.

Reviewed by: rwatson

22 years agoIn the case of ACL_OTHER and undefined ACL entry id's, set
jedgar [Sat, 1 Sep 2001 23:16:02 +0000 (23:16 +0000)]
In the case of ACL_OTHER and undefined ACL entry id's, set
ae_id to ACL_UNDEFINED_ID instead of 0.

Reviewed by: rwatson

22 years agoSmall nit: Make both prints use 'at device %d.%d'.
n_hibma [Sat, 1 Sep 2001 23:06:14 +0000 (23:06 +0000)]
Small nit: Make both prints use 'at device %d.%d'.

22 years agoFile positions are off_t nowdays, not long, so:
ache [Sat, 1 Sep 2001 23:01:29 +0000 (23:01 +0000)]
File positions are off_t nowdays, not long, so:
  long -> off_t
  fseek -> fseeko

  NOTE: that fseek not works for >long offsets files per POSIX:

  [EOVERFLOW] For fseek( ), the resulting file offset would be a value which
  cannot be represented correctly in an object of type long.

22 years agoFile positions are off_t nowdays, not long, so:
ache [Sat, 1 Sep 2001 22:42:47 +0000 (22:42 +0000)]
File positions are off_t nowdays, not long, so:
  strtol -> strtoll
  fseek -> fseeko

  NOTE: that fseek not works for >long offsets files per POSIX:

  [EOVERFLOW] For fseek( ), the resulting file offset would be a value which
  cannot be represented correctly in an object of type long.

22 years agoAdd a MODULE_VERSION declaration. This should prevent duplicate loading
msmith [Sat, 1 Sep 2001 22:41:53 +0000 (22:41 +0000)]
Add a MODULE_VERSION declaration.  This should prevent duplicate loading
of the module, and allows other modules to depend on and link against
the ACPI module.

Add a sysctl that allows us to retrieve the ACPI CA version number as
well.

22 years agoFile positions are off_t nowdays, not long, so:
ache [Sat, 1 Sep 2001 22:22:45 +0000 (22:22 +0000)]
File positions are off_t nowdays, not long, so:
long -> off_t
strtol -> strtoll
fseek -> fseeko

NOTE: that fseek not works for >long offsets files per POSIX:

[EOVERFLOW] For fseek( ), the resulting file offset would be a value which
cannot be represented correctly in an object of type long.

22 years agoAnother punctuation fix (missing comma ending preposition).
chris [Sat, 1 Sep 2001 21:32:52 +0000 (21:32 +0000)]
Another punctuation fix (missing comma ending preposition).

22 years agoo Mention the fact that specifying a fileid of 0 searches all loaded
chris [Sat, 1 Sep 2001 21:31:33 +0000 (21:31 +0000)]
o Mention the fact that specifying a fileid of 0 searches all loaded
  modules.
o Properly terminate a preposition.

22 years agouse correct "compile" directory, which is ../../compile/<filename>
luigi [Sat, 1 Sep 2001 21:19:15 +0000 (21:19 +0000)]
use correct "compile" directory, which is ../../compile/<filename>
This does not apply to RELENG_4 for which the compile directory is
../compile/<filename>

22 years agoo Note that some sites will want to select generally more conservative
rwatson [Sat, 1 Sep 2001 21:00:28 +0000 (21:00 +0000)]
o Note that some sites will want to select generally more conservative
  permissions on some files, and give hints as to what those permissions
  might be.  Note also that the current more liberal permissions might
  get changed in future revisions.

22 years agoRemove #if 0'd remnants of the old idle page zeroing.
jhb [Sat, 1 Sep 2001 20:17:43 +0000 (20:17 +0000)]
Remove #if 0'd remnants of the old idle page zeroing.

22 years agoProcess priority is locked by the sched_lock, not the proc lock.
jhb [Sat, 1 Sep 2001 20:16:30 +0000 (20:16 +0000)]
Process priority is locked by the sched_lock, not the proc lock.

22 years agoo At some point, unmounting a non-EA file system with EA's compiled
rwatson [Sat, 1 Sep 2001 20:11:05 +0000 (20:11 +0000)]
o At some point, unmounting a non-EA file system with EA's compiled
  in got a bit broken, when ufs_extattr_stop() was called and failed,
  ufs_extattr_destroy() would panic.  This makes the call to destroy()
  conditional on the success of stop().

Submitted by: Christian Carstensen <cc@devcon.net>
Obtained from: TrustedBSD Project

22 years agoRegenerate syscalls
dillon [Sat, 1 Sep 2001 19:37:41 +0000 (19:37 +0000)]
Regenerate syscalls

22 years agoSynchronize syscalls.master(s) with recent Giant pushdown work
dillon [Sat, 1 Sep 2001 19:36:48 +0000 (19:36 +0000)]
Synchronize syscalls.master(s) with recent Giant pushdown work

22 years agoGiant Pushdown:
dillon [Sat, 1 Sep 2001 19:34:23 +0000 (19:34 +0000)]
Giant Pushdown:
    read() pread() readv() write () pwrite() writev() ioctl() select ()
    poll() openbsd_poll()

22 years agoSupply a default value for the kernel config binary.
luigi [Sat, 1 Sep 2001 19:16:00 +0000 (19:16 +0000)]
Supply a default value for the kernel config binary.

22 years agoGiant Pushdown. Saved the worst P4 tree breakage for last.
dillon [Sat, 1 Sep 2001 19:04:37 +0000 (19:04 +0000)]
Giant Pushdown.  Saved the worst P4 tree breakage for last.

    reboot() getpriority() setpriority() rtprio() osetrlimit() ogetrlimit()
    setrlimit() getrlimit() getrusage() getpid() getppid() getpgrp()
    getpgid() getsid() getgid() getegid() getgroups() setsid() setpgid()
    setuid() seteuid() setgid() setegid() setgroups() setreuid() setregid()
    setresuid() setresgid() getresuid() getresgid () __setugid() getlogin()
    setlogin() modnext() modfnext() modstat() modfind() kldload() kldunload()
    kldfind() kldnext() kldstat() kldfirstmod() kldsym() getdtablesize()
    dup2() dup() fcntl() close() ofstat() fstat() nfsstat() fpathconf()
    flock()

22 years agoBugfix: Use the correct variable for picobsd type (same bug is
luigi [Sat, 1 Sep 2001 18:27:39 +0000 (18:27 +0000)]
Bugfix: Use the correct variable for picobsd type (same bug is
present in STABLE).  Also add a bit more logging (when enabled).

22 years agoGiant Pushdown
dillon [Sat, 1 Sep 2001 18:19:21 +0000 (18:19 +0000)]
Giant Pushdown

clock_gettime() clock_settime() nanosleep() settimeofday()
adjtime() getitimer() setitimer() __sysctl() ogetkerninfo()
sigaction() osigaction() sigpending() osigpending() osigvec()
osigblock() osigsetmask() sigsuspend() osigsuspend() osigstack()
sigaltstack() kill() okillpg() trapsignal() nosys()

22 years agoSpeculatively add this file. It's part of the Linuxulator update
marcel [Sat, 1 Sep 2001 18:11:45 +0000 (18:11 +0000)]
Speculatively add this file. It's part of the Linuxulator update
to make it emulate Linux kernel version 2.4.2, which is required
in order to upgrade the linux_base port to RH 7.1.

Note that this file is only needed for 32-bit architectures. To
us this means i386 (for now?)

22 years agoSave errno before function call and restore it on success (because many
ache [Sat, 1 Sep 2001 15:28:24 +0000 (15:28 +0000)]
Save errno before function call and restore it on success (because many
internal functions there may fail and set (i.e. overwrite) errno in normal
(not error) situation). In original variant errno testing after call
(as POSIX suggest) is wrong when errno overwrite happens.

22 years agoRemove even more unneded checks, original code can't overflows in that place
ache [Sat, 1 Sep 2001 15:01:37 +0000 (15:01 +0000)]
Remove even more unneded checks, original code can't overflows in that place

22 years agoRemove two checks unneeded now (can't happens)
ache [Sat, 1 Sep 2001 14:48:45 +0000 (14:48 +0000)]
Remove two checks unneeded now (can't happens)

22 years agoMake fseek(... SEEK_CUR) fails if current file-position is unspecified.
ache [Sat, 1 Sep 2001 14:40:01 +0000 (14:40 +0000)]
Make fseek(... SEEK_CUR) fails if current file-position is unspecified.

22 years agoNote that prev. commit addition is for ftell/ftello
ache [Sat, 1 Sep 2001 14:23:30 +0000 (14:23 +0000)]
Note that prev. commit addition is for ftell/ftello

22 years agoDescribe ESPIPE as result of unspecified file-position indicator value.
ache [Sat, 1 Sep 2001 14:11:53 +0000 (14:11 +0000)]
Describe ESPIPE as result of unspecified file-position indicator value.
Add more to SEE ALSO section.

22 years agoDescribe file-position behaviour from POSIX
ache [Sat, 1 Sep 2001 14:01:52 +0000 (14:01 +0000)]
Describe file-position behaviour from POSIX

22 years agoStrict in the POSIX sence, if file position is unspecified after ungetc() at
ache [Sat, 1 Sep 2001 12:13:33 +0000 (12:13 +0000)]
Strict in the POSIX sence, if file position is unspecified after ungetc() at
0, return that we can't specify it, i.e. error with ESPIPE.
(hint from: "Peter S. Housel" <housel@acm.org>)

Back out sinit() addition, not needed after various code simplifications.

22 years agoIf lseek to wrong value sucessfully happens despite all pre-checks, set __SERR
ache [Sat, 1 Sep 2001 11:21:28 +0000 (11:21 +0000)]
If lseek to wrong value sucessfully happens despite all pre-checks, set __SERR
to indicate that stream becomes inconsistent.

22 years agoIf position is underflowed, don't try to hide that fact by recovery, just
ache [Sat, 1 Sep 2001 11:18:53 +0000 (11:18 +0000)]
If position is underflowed, don't try to hide that fact by recovery, just
return EIO and set __SERR to mark stream as inconsistent.

22 years agoNew release note: syslogd -b
dd [Sat, 1 Sep 2001 10:52:25 +0000 (10:52 +0000)]
New release note: syslogd -b

22 years agoFirst check whether the USB transfer was cancelled before starting to
n_hibma [Sat, 1 Sep 2001 09:38:45 +0000 (09:38 +0000)]
First check whether the USB transfer was cancelled before starting to
use the data structures related to that keyboard.

22 years agoRegen.
n_hibma [Sat, 1 Sep 2001 09:35:46 +0000 (09:35 +0000)]
Regen.

22 years agoSpelling nit.
n_hibma [Sat, 1 Sep 2001 09:33:15 +0000 (09:33 +0000)]
Spelling nit.

22 years agoMake "atapi less" kernels link again.
sos [Sat, 1 Sep 2001 08:47:11 +0000 (08:47 +0000)]
Make "atapi less" kernels link again.

Question is if we should allow the ioctl only interface to be
created if atapi devices are present, but no driver linked in....

22 years agoIntroduce a -b option that allows the user to specify which address to
dd [Sat, 1 Sep 2001 08:42:49 +0000 (08:42 +0000)]
Introduce a -b option that allows the user to specify which address to
bind to.  This is useful for hosts running jails that need syslog to
maintain an open socket to log to a remote host.

Reviewed by: sheldonh

22 years agoUndo last commit. The problem's been fixed for a long time.
dillon [Sat, 1 Sep 2001 08:31:09 +0000 (08:31 +0000)]
Undo last commit. The problem's been fixed for a long time.

22 years agoUpdate a duplicate quotation.
kris [Sat, 1 Sep 2001 08:01:06 +0000 (08:01 +0000)]
Update a duplicate quotation.

PR: 30228
MFC after: 2 weeks

22 years agoFix some unsafe signal handlers, and be careful not to overflow on fd_set.
kris [Sat, 1 Sep 2001 07:57:35 +0000 (07:57 +0000)]
Fix some unsafe signal handlers, and be careful not to overflow on fd_set.
Fix some string buffer operations.

Based on: OpenBSD
Reviewed by: audit
MFC after: 2 weeks

22 years agoDon't do unsafe activities in the syscall handler.
kris [Sat, 1 Sep 2001 07:40:19 +0000 (07:40 +0000)]
Don't do unsafe activities in the syscall handler.

MFC after: 2 weeks

22 years agoRemove some unsafe function calls from the signal handlers.
kris [Sat, 1 Sep 2001 07:35:25 +0000 (07:35 +0000)]
Remove some unsafe function calls from the signal handlers.

Obtained from: OpenBSD
Reviewed by: audit
MFC after: 2 weeks

22 years agoPushdown Giant for: profil(), ntp_adjtime(), ogethostname(),
dillon [Sat, 1 Sep 2001 05:47:58 +0000 (05:47 +0000)]
Pushdown Giant for: profil(), ntp_adjtime(), ogethostname(),
osethostname(), ogethostid(), osethostid()

22 years agoIt is *indeed* possible to run Alpha Linux binaries under emulation.
bmah [Sat, 1 Sep 2001 04:39:16 +0000 (04:39 +0000)]
It is *indeed* possible to run Alpha Linux binaries under emulation.

Reviewed by: gallatin

22 years agoGiant pushdown sys_exit(), [o]wait(), wait4()
dillon [Sat, 1 Sep 2001 04:37:34 +0000 (04:37 +0000)]
Giant pushdown sys_exit(), [o]wait(), wait4()

22 years agoGiant Pushdown ACL syscalls:
dillon [Sat, 1 Sep 2001 04:33:22 +0000 (04:33 +0000)]
Giant Pushdown ACL syscalls:

__acl_get_file, __acl_set_file, __acl_get_fd, __acl_set_fd,
__acl_delete_file, __acl_delete_fd, __acl_aclcheck_file,
__acl_aclcheck_fd

22 years agoregenerate syscalls
dillon [Sat, 1 Sep 2001 03:56:12 +0000 (03:56 +0000)]
regenerate syscalls

22 years agoMake yield() MPSAFE.
dillon [Sat, 1 Sep 2001 03:54:09 +0000 (03:54 +0000)]
Make yield() MPSAFE.

Synchronize syscalls.master with all MPSAFE changes to date.  Synchronize
new syscall generation follows because yield() will panic if it is out
of sync with syscalls.master.

22 years agoPushdown Giant for acct(), kqueue(), kevent(), execve(), fork(),
dillon [Sat, 1 Sep 2001 03:04:31 +0000 (03:04 +0000)]
Pushdown Giant for acct(), kqueue(), kevent(), execve(), fork(),
vfork(), rfork(), jail().

22 years agoBack out disabling ungetc() at 0, use different solution:
ache [Sat, 1 Sep 2001 01:56:54 +0000 (01:56 +0000)]
Back out disabling ungetc() at 0, use different solution:
keep negative offset internally, but return 0 externally in ftell*()
I.e. use 0 now as 'unspecified value' per POSIX ungetc() description.

22 years agoAxe stale mp_fixme().
jhb [Sat, 1 Sep 2001 00:49:29 +0000 (00:49 +0000)]
Axe stale mp_fixme().

22 years agoo Attach cap_cmp.c and cap_copy.c to the build.
rwatson [Sat, 1 Sep 2001 00:00:50 +0000 (00:00 +0000)]
o Attach cap_cmp.c and cap_copy.c to the build.
o Attach cap_copy_ext.3 and cap_copy_int.3 to the install, and link
  cap_size.3 to cap_copy_ext.3.

Submitted by: tmm
Obtained from: TrustedBSD Project

22 years agoo More conservative permissions for kerberos.log: 600 instead of 644.
rwatson [Fri, 31 Aug 2001 23:44:51 +0000 (23:44 +0000)]
o More conservative permissions for kerberos.log: 600 instead of 644.

Reviewed by: peter

22 years agoDescribe EOVERFLOW I implement per POSIX.
ache [Fri, 31 Aug 2001 23:06:28 +0000 (23:06 +0000)]
Describe EOVERFLOW I implement per POSIX.
Sort ERRORS section

22 years agoDon't claim memory resources owned by a PNP0C01 device ("system memory")
msmith [Fri, 31 Aug 2001 22:59:04 +0000 (22:59 +0000)]
Don't claim memory resources owned by a PNP0C01 device ("system memory")
as some systems claim the entire physical address space is owned by it.

22 years agoAdd an entry for the Zip 250.
murray [Fri, 31 Aug 2001 22:49:22 +0000 (22:49 +0000)]
Add an entry for the Zip 250.

PR: i386/29639
Submitted by: David Yeske <dyeske@yahoo.com>

22 years agoPushdown Giant for nfs syscalls (nfssvc())
dillon [Fri, 31 Aug 2001 22:39:36 +0000 (22:39 +0000)]
Pushdown Giant for nfs syscalls (nfssvc())

22 years agoMake various posix4 system calls MPSAFE (will fixup syscalls.master later)
dillon [Fri, 31 Aug 2001 22:34:40 +0000 (22:34 +0000)]
Make various posix4 system calls MPSAFE (will fixup syscalls.master later)
    sched_setparam()
    sched_getparam()
    sched_setscheduler()
    sched_getscheduler()
    sched_yield()
    sched_get_priority_max()
    sched_get_priority_min()
    sched_rr_get_interval()

22 years agoAdd entries for 3wire terminals. (carrier not supplied, so we set nc).
murray [Fri, 31 Aug 2001 22:18:50 +0000 (22:18 +0000)]
Add entries for 3wire terminals.  (carrier not supplied, so we set nc).

PR: conf/26420
Submitted by: Jon Passki <cykyc@yahoo.com>

22 years agomake swapon() MPSAFE (will adjust syscalls.master later)
dillon [Fri, 31 Aug 2001 22:15:37 +0000 (22:15 +0000)]
make swapon() MPSAFE (will adjust syscalls.master later)

22 years agoAdd FD_SETSIZE warning to types.h
dillon [Fri, 31 Aug 2001 22:12:32 +0000 (22:12 +0000)]
Add FD_SETSIZE warning to types.h

22 years agomark obreak() and ovadvise() as being MPSAFE
dillon [Fri, 31 Aug 2001 22:10:03 +0000 (22:10 +0000)]
mark obreak() and ovadvise() as being MPSAFE

22 years agoAdd ID for the Best Data Smart One 56SPS Voice modem.
murray [Fri, 31 Aug 2001 21:51:00 +0000 (21:51 +0000)]
Add ID for the Best Data Smart One 56SPS Voice modem.

PR: kern/24851
Submitted by: Daniel Rudy <dcrudy@aol.com>

22 years agoadd 2300/2312 notes
mjacob [Fri, 31 Aug 2001 21:50:09 +0000 (21:50 +0000)]
add 2300/2312 notes

22 years agoExit gracefully when a SIGHUP is received. This prevents ee from going into
mp [Fri, 31 Aug 2001 21:50:06 +0000 (21:50 +0000)]
Exit gracefully when a SIGHUP is received. This prevents ee from going into
an infinite spin loop when the terminal window is forcibly blown away.

PR: 29553
Reported by: Sung N. Cho <sucho2@vt.edu>
MFC after: 1 day

22 years agoo Screw over users of the kern.{security.,}suser_permitted sysctl again,
rwatson [Fri, 31 Aug 2001 21:44:12 +0000 (21:44 +0000)]
o Screw over users of the kern.{security.,}suser_permitted sysctl again,
  by renaming it to kern.security.suser_enabled.  This makes the name
  consistent with other use: "permitted" now refers to a specific right
  or privilege, whereas "enabled" refers to a feature.  As this hasn't
  been MFC'd, and using this destroys a running system currently, I believe
  the user base of the sysctl will not be too unhappy.
o While I'm at it, un-staticize and export the supporting variable, as it
  will be used by kern_cap.c shortly.

Obtained from: TrustedBSD Project

22 years agoadd 2300/2312 references
mjacob [Fri, 31 Aug 2001 21:43:35 +0000 (21:43 +0000)]
add 2300/2312 references

22 years agoCorrect the ID for the ALS0120 PnP Joystick. It is different from the
murray [Fri, 31 Aug 2001 21:40:56 +0000 (21:40 +0000)]
Correct the ID for the ALS0120 PnP Joystick.  It is different from the
ALS0110.

PR: kern/22617
Submitted by: Mike Holling <myke@fks.bt>

22 years agonote 2300/2312 support
mjacob [Fri, 31 Aug 2001 21:39:56 +0000 (21:39 +0000)]
note 2300/2312 support

22 years agoAdd 2 Gigabit Fibre Channel support (2300 && 2312 cards). This required
mjacob [Fri, 31 Aug 2001 21:39:04 +0000 (21:39 +0000)]
Add 2 Gigabit Fibre Channel support (2300 && 2312 cards). This required
some reworking (and consequent cleanup) of the interrupt service code.

Also begin to start a cleanup of target mode support that will (eventually)
not require more inforamtion routed with the ATIO to come back with the
CTIO other than tag.

MFC after: 4 weeks

22 years agoAdd 2300/2312 (2Gbit) firmware.
mjacob [Fri, 31 Aug 2001 21:25:15 +0000 (21:25 +0000)]
Add 2300/2312 (2Gbit) firmware.

22 years agoAdd OMRON ME5614ISA PnP modem.
murray [Fri, 31 Aug 2001 20:37:02 +0000 (20:37 +0000)]
Add OMRON ME5614ISA PnP modem.

PR: kern/22801
Submitted by: Ryuzo Okada <R.Okada@mm.neweb.ne.jp>

22 years agoAdd originally missing __sinit() call.
ache [Fri, 31 Aug 2001 20:36:19 +0000 (20:36 +0000)]
Add originally missing __sinit() call.

22 years agoSimplify offset underflow checks even more
ache [Fri, 31 Aug 2001 20:17:32 +0000 (20:17 +0000)]
Simplify offset underflow checks even more

22 years agoAdd PCI device IDs for Kuotech dual port serial cards.
murray [Fri, 31 Aug 2001 20:16:00 +0000 (20:16 +0000)]
Add PCI device IDs for Kuotech dual port serial cards.
Also give example of the flags needed to use these cards.

PR: kern/21242
Submitted by: Shigeki Moride <moride@portside.net>