Dima Ruban
1a432a2f54
Fix typo (inT -> int)
2000-06-23 07:10:34 +00:00
Coleman Kane
0debd63a71
Finish up the fixing of the linux ioctl stuff. Add line to remove the dev
...
entry upon unload.
Fix the module makefile.
2000-06-23 05:54:26 +00:00
Coleman Kane
9d2a5442fc
Finish up the fixing of the linux ioctl stuff. Add line to remove the dev
...
entry upon unload.
2000-06-23 05:54:01 +00:00
Chris Costello
bb33e42207
Replace .Va, .Ar and .Nm with .Fa or .Va where necessary, examples:
...
``.Ar errno'' -> ``.Va errno''
``.Nm ops'' -> ``.Fa ops''
``.Va fd'' -> ``.Fa fd''
2000-06-23 05:05:44 +00:00
Coleman Kane
e466c07526
Minor redundant #include fix.
2000-06-23 04:41:28 +00:00
Coleman Kane
ad2095d048
Fixed trouble with linux emu, not it should work in the module.
...
Removed unnecessary warning message too.
2000-06-23 04:30:20 +00:00
Coleman Kane
dca95b4671
Fixed problem with linux ioctl code, module loading should work now.
2000-06-23 04:27:33 +00:00
Chris Costello
a907d4fd1f
Replace an erroneous .Va error' with
.Va errno'.
2000-06-23 04:25:10 +00:00
Chris Costello
48b5eb7c85
Replace `FreeBSD 4.0'' with
`.Fx 4.0'' and remove a useless empty line
...
at the end of the file.
2000-06-23 03:50:32 +00:00
Chris Costello
dca3f6825f
Replace .Va references to function arguments to .Fa references.
2000-06-23 03:43:34 +00:00
Brian Somers
f3e285ba7d
Introduce /etc/defaults/periodic.conf, similar in concept to rc.conf.
...
The only change in the default functionality should be that
the output reports are slightly more verbose WRT files deleted.
Not objected to by: freebsd-arch
2000-06-23 01:18:31 +00:00
Brian Somers
32ee60d7b8
Add -s -a and -m flags for supressing the subject line, ignoring amd
...
mounts and ignoring mfs mounts.
Default functionality stays the same.
2000-06-23 01:16:49 +00:00
Peter Wemm
c1a4ed010b
Remove these here, these were repocopied to src/sys/ufs/ffs.
2000-06-23 00:11:32 +00:00
Alfred Perlstein
c636255150
fix races in the uidinfo subsystem, several problems existed:
...
1) while allocating a uidinfo struct malloc is called with M_WAITOK,
it's possible that while asleep another process by the same user
could have woken up earlier and inserted an entry into the uid
hash table. Having redundant entries causes inconsistancies that
we can't handle.
fix: do a non-waiting malloc, and if that fails then do a blocking
malloc, after waking up check that no one else has inserted an entry
for us already.
2) Because many checks for sbsize were done as "test then set" in a non
atomic manner it was possible to exceed the limits put up via races.
fix: instead of querying the count then setting, we just attempt to
set the count and leave it up to the function to return success or
failure.
3) The uidinfo code was inlining and repeating, lookups and insertions
and deletions needed to be in their own functions for clarity.
Reviewed by: green
2000-06-22 22:27:16 +00:00
Alfred Perlstein
903db3b73d
fix warning, declare function static.
...
Reviewed by: dfr
2000-06-22 22:09:31 +00:00
Brian Feldman
97c1232eb4
Rename macros to all-uppercase. Get rid of a comment that was ironic
...
(I goofed on the bitshifts myself long ago ;) and a bit redundant:
code should be clear enough that it seldom needs comments at all.
2000-06-22 20:53:36 +00:00
Brian Somers
a1bc3dccac
Correct PPPoE in multi-link mode
...
Submitted by: jason@OpenBSD.org
2000-06-22 20:51:03 +00:00
Wilko Bulte
45fbc0c3d6
update UP1000/Symbios SCSI info
2000-06-22 20:09:01 +00:00
Peter Wemm
02def50484
Make the generated set headers depend on Makefile as well (that is where
...
the list of .o files comes from - if we change the list of files that
are built, we need to rescan the files)
Obtained from: bde (indirectly)
2000-06-22 19:44:25 +00:00
Coleman Kane
6fdfb8e071
Put RF_SHAREABLE into the bus_alloc_resource call.
2000-06-22 19:10:35 +00:00
Coleman Kane
872c972896
Switch LINUX_TDFX to TDFX_LINUX, that's what i get for typing this
...
at 2 in the morning.
2000-06-22 19:08:05 +00:00
Hajimu UMEMOTO
469759fc5c
Inhibit successful DAD messages and "no default interface" messages.
...
It seems that people find them too noisy.
(ND6_DEBUG will enable them)
Obtained from: KAME Project
2000-06-22 19:04:41 +00:00
Jonathan Lemon
ea9bd2df1d
If the kevent() registration fails (probably due to the underlying
...
filesystem not being kq-aware), then fall back to using sleep. This
allows tail to work with NFS filesystems again without chewing up CPU time.
When given the -F flag, resort to sleep/stat after the file was moved
or deleted. This allows a window where the file being tailed does not
exist at all, which is typically the case during log rotation. Switch
back to using kq (if possible) after the file is reopened.
2000-06-22 18:46:03 +00:00
Jonathan Lemon
c8bea19ee3
Add a hack to fail registration of kq events on a non-ufs filesystem, as
...
support for those is non-existent at the moment.
2000-06-22 18:41:07 +00:00
Jonathan Lemon
d2693dbbc4
Add code so that the udata field is preserved across a TRACK event.
...
When re-adding an event, do not reset the event state. If the event was
pending, it will remain pending. This allows the user to change the udata
field after the event was registered, while not losing any events which
have already occurred.
Reported by: jmg
2000-06-22 18:39:31 +00:00
Matthew Dillon
55f087be8e
Add ip_portrange_first and ip_portrange_last rc.conf/rc.network
...
options. This allows you to set the standard dynamic port
assignment range prior to any network daemons (like named) starting
up, necessary if you are also using a firewall to restrict lower ports.
will be MFC'd in a few days
2000-06-22 17:40:53 +00:00
Andrey A. Chernov
195c7083da
Use %Ef
2000-06-22 16:57:39 +00:00
Jun-ichiro itojun Hagino
a8ceb7b389
correct bad TTL with packets generated by v4 mapped udp. from kame
2000-06-22 16:48:59 +00:00
Andrey A. Chernov
e7161f368a
Localize time/date.
...
Use ISO 8601 date in logs.
Fix wrong argument type in ctype functions.
2000-06-22 16:48:41 +00:00
Andrey A. Chernov
34d45d6d4e
Use %Ef instead of hardcoded %b %e
2000-06-22 15:09:51 +00:00
Neil Blakey-Milner
445572c1ed
Add 'kern.disks', a sysctl which returns the list of disks from
...
disk_enumerate(), space delimited. This allows non-root users to get a
list of disks and will simplify libdisk's Disk_Names().
Reviewed by: phk
2000-06-22 11:44:43 +00:00
Sheldon Hearn
728a64be3f
Fix changes from 1.34 through 1.37:
...
Remove newly added hard sentence breaks.
Mark ANSI up as a type name (Tn).
Avoid parenthesized sentences and paragraphs.
2000-06-22 10:07:46 +00:00
Yoshihiro Takahashi
9c9e869881
Sync with sys/dev/syscons/scterm-sc.c revisions 1.6 and 1.7.
2000-06-22 10:03:28 +00:00
Brian Somers
714c609be5
Mention the timezone where appropriate (for the -v option).
...
correct one of the -v options.
2000-06-22 10:02:33 +00:00
Sheldon Hearn
077833ef99
Allow Nm to expand gracefully instead of hard-coding an argument.
2000-06-22 10:00:19 +00:00
Sheldon Hearn
2f6e689e0c
Fix more HTML -> mdoc transcription errors.
...
Submitted by: Kazu TAKAMUNE <takamune@avrl.mei.co.jp>
2000-06-22 08:45:59 +00:00
Sheldon Hearn
0c74e83819
Whitespace-only changes: apply accepted line breaking style as a
...
pre-cursor to other markup changes.
Accepted in principle by the author.
2000-06-22 08:37:22 +00:00
Sheldon Hearn
37f653195d
Use sub-sections (Ss) to categorize diagnostics and rationalize
...
diagnostic lists (Bl -diag) so that there is one per section.
Since this change creates a large delta, enforce line-breaking
style while I'm here.
These changes have blanket approval from (but were not reviewed
by) the author.
2000-06-22 08:32:54 +00:00
Brian Feldman
ad93b7518f
Functions may be static and __inline, but not extern and __inline. This
...
should fix broken no-"-O" kernel builds.
2000-06-22 08:31:27 +00:00
Daniel Baker
2a2f33fb7a
Fix typo in the config file update procedure URL and typo in preceding
...
sentence.
2000-06-22 07:28:44 +00:00
Coleman Kane
b6d44041d6
Add my name next to the majro for 3dfx (107), to reflect new info contact,
...
due to recent commit.
2000-06-22 06:12:30 +00:00
Peter Wemm
bc26591656
Add SOFTUPDATES to GENERIC (BOOTMFS has this filtered out)
2000-06-22 06:01:02 +00:00
Jordan K. Hubbard
816c1916cd
Make sure SOFTUPDATES doesn't wind up on boot floppy and bloat it
...
up.
2000-06-22 05:55:42 +00:00
Coleman Kane
a7769538cc
Took TDFX_VERBOSE out of Makefile, added $FreeBSD$ and option for DEBUG.
...
Added a notice for linux users that the kld isn't working for them yet, so
no linux emu from the kld. It compiles statically alright though.
2000-06-22 05:47:16 +00:00
Coleman Kane
9147e09e64
Converted all TDFX_VERBOSE ifdefs to DEBUG, now it gets debugged with the
...
rest of the kernel. Added new option TDFX_LINUX for optional
LINUX_EMULATION, so that perhaps some people don't have to use linux emu to
run the driver if they don't want to.
2000-06-22 05:41:21 +00:00
Coleman Kane
5b645087b8
Stick in header, $FreeBSD$.
2000-06-22 05:37:17 +00:00
Coleman Kane
b2ca251ee9
Stick the tdfx entry in here, after some cleaning.
2000-06-22 04:41:30 +00:00
Warner Losh
39943833e9
bde says we don't need to note in passing the locore stuff.
...
Scott Flatman <sf@arcanet.com> sent in a step by step buide to updating
the config file. since he was first, he gets his name in lights :-)
2000-06-22 02:23:52 +00:00
Coleman Kane
48bd8a660c
Fix the 'file not found' in the load target, someone
...
forgot to add the '.ko' to the end of the module filename.
2000-06-22 02:07:18 +00:00
Nick Sayer
cbe8602290
Moving forward on my commitment to always make at least one commit from
...
a terminal room of any conference I attend....
Fix xdrproc_t prototype. () instead of (...) breaks C++ programs.
2000-06-22 01:46:25 +00:00