elad
ac3f498792
Typo, from David A. Holland on #NetBSD-code, thanks!
2006-10-08 20:12:27 +00:00
elad
4967fa3f06
PR/20875: Robert Elz: Incorrect facts in rtsol(8) man page
...
Patch applied, thanks! (yes, I've read the audit-trail. This is correct.)
2006-10-08 19:36:05 +00:00
uwe
d9338e1f50
general_exception() is called with all interrupts masked in SR
...
(effectively we were running syscalls with interrupts disabled).
splx back to previous interrupt level from tf->tf_ssr.
XXX: tlb_exception() still has that problem.
2006-10-08 18:20:42 +00:00
martin
a073765d4a
Apply patch from Peter Bex to fix PR bin/31922.
2006-10-08 18:09:47 +00:00
elad
4c99077841
PR/31497: Robert Elz: rc.d/accounting should have KEYWORD: shutdown
2006-10-08 18:08:39 +00:00
apb
eaa27e0a0c
Make this compile again. Reported by Steven Bellovin.
2006-10-08 18:00:30 +00:00
apb
24f8b5315f
Clarify that DESTDIR/OBJDIR/etc are absolute paths, but build.sh
...
-D/-O/etc allows relative paths.
Closes PR 32345 by Andre Luiz de Oliveira.
2006-10-08 17:54:30 +00:00
peter
e263dfd62f
WFORMAT is no more...
2006-10-08 17:52:28 +00:00
elad
83704dec18
PR/28368: Peter Postma: unrecognized option `-Wnetbsd-format-audit'
...
Apply patch from rivo nurges in #NetBSD-code, thanks!
2006-10-08 17:16:51 +00:00
riz
6833444ffd
Note which interface caused a resolv.conf to be created. From
...
Robert Elz in PR#21109, tested by Rivo Nurges.
2006-10-08 17:09:32 +00:00
rpaulo
6bd56789c1
Add kttcp.
2006-10-08 16:56:18 +00:00
rpaulo
bfbbf2d900
Add missing initializer.
2006-10-08 16:53:43 +00:00
apb
4db4ce3a05
Document the -network=netname/prefixlength syntax. Requested in
...
PR 26891 by Arto Selonen.
Also some mdoc improvements.
2006-10-08 16:35:19 +00:00
dbj
e10e76d4c6
make -t cd9660 obey -x option similarly to ffs
2006-10-08 16:25:18 +00:00
elad
25c47f2333
PR/34602: sushant: Bug in malloc implementation contains dead code in
...
free_pages()
Applied patch from Mindaugas <unex at linija org> (in #NetBSD-code), thanks
2006-10-08 16:25:15 +00:00
elad
e18b1bdd1d
PR/27233: Arto Selonen: 'options BUFCACHE' vs. 'sysctl vm.bufcache'
...
documentation differs
2006-10-08 15:56:50 +00:00
cube
886e1e7f71
Fix thinko about CPUID(0x80000000).
2006-10-08 15:51:30 +00:00
cube
ac64cd7dcd
Treat AMD CPUs with family > 6 (in fact, 15) the same way as family 6, so
...
they get cache information right. PR#32496 by Gregory McGarry.
2006-10-08 15:50:42 +00:00
elad
75783f892c
PR/31140: Tetsuya Isaki: driver(9) does not describe about kqfilter
2006-10-08 15:44:25 +00:00
elad
dcd438d489
PR/33434: Jukka Salmi: wrong lp spool directory name in default printcap
...
Patch applied, thanks!
2006-10-08 15:28:49 +00:00
elad
0dd96e541d
PR/19444: IIMURA Takuji: usleep(0); seems to microsleep(1);
...
Patch applied, thanks!
2006-10-08 15:25:28 +00:00
apb
50ef6180ea
If PREVIOUSTOOLDIR was empty, then don't complain that it has moved.
...
Patch from Jukka Salmi in PR 33095.
2006-10-08 15:21:00 +00:00
elad
0bc9c7b601
PR/10429: Takahiro Kambe: bad144(8) dosen't show disk device.
...
Patch adapted to -current, thanks!
2006-10-08 14:52:14 +00:00
elad
7eab5cff73
PR/33029: Frank Kardel: /etc/services not up to date?
...
We probably won't be synchronizing with the IANA list (which is above 14k
lines), but would rather add the services <1024.
2006-10-08 14:30:26 +00:00
elad
805c3d6901
PR/22228: Jeremy C. Reed: a man page for virecover(8)
...
Man page added, thanks!
2006-10-08 14:19:17 +00:00
tron
77e4af1adc
Make sure "libmagic" gets built after "libz".
2006-10-08 13:43:01 +00:00
pooka
9ce83b2450
add example on how to use SUN_LEN()
...
fixed lib/34744 by Christian Biere
2006-10-08 13:08:33 +00:00
bjh21
78a2e1354b
Use RCSID().
2006-10-08 12:41:51 +00:00
bjh21
78659f1508
Go back to not saving R14 on 32-bit CPUs, with the saving being conditional
...
on __PROG26. This should make everyone happy except for those who don't like
#ifdefs.
2006-10-08 12:28:24 +00:00
bjh21
ecd6759513
Expose __PROG26 to assembly language so we can use it to decide whether
...
R14 is vulnerable.
2006-10-08 12:22:35 +00:00
bjh21
dc284185fb
Use LDR/STR rather than LDM/STM for saving R14 over L_cksumdata. LDM/STM
...
are apparently very slow on some processors. This is an interim measure
while I work out how to expose __PROG{26,32} to assembly language.
2006-10-08 12:06:53 +00:00
scw
4f8db3981d
Add the 'volatile' qualifier to all descriptor fields to prevent the
...
compiler optimising away or reordering accesses to them.
Fixes ehci(4) on NetBSD/evbarm when using -Os optimisation. It's likely
ohci(4) and uhci(4) are similarly afflicted, so the same changes have
been made there.
Quite how other platforms got away without this for so long is a mystery...
2006-10-08 11:52:48 +00:00
yamt
ce8b831234
tcp_output: don't make TSO duplicate CWR/ECE.
2006-10-08 11:10:59 +00:00
yamt
713f438722
tcp_output: don't try to send SACK option larger than txsegsize.
...
fix a panic like "panic: m_copydata: off 0, len -7".
2006-10-08 11:01:46 +00:00
xtraeme
85ff1590b2
Sync list of supported drivers with the code, patch by Claus
...
Andersen via PR kern/34754.
2006-10-08 08:57:19 +00:00
rillig
bec39efa30
Added a reference to ipcs(1), since that's where one can find out more
...
about the semaphore limits in case of [ENOSPC].
2006-10-08 08:22:34 +00:00
xtraeme
337d5c1a2f
regen
2006-10-08 08:14:45 +00:00
xtraeme
68d8faa258
Added support for the following devices:
...
* Matrix Orbital MX4/MX5 Series
* Crystal Fontz CFA-635 LCD
Patch sent by Claus Andersen via PR kern/34753.
2006-10-08 08:14:24 +00:00
pooka
e2f3993f69
VOP_REMOVE is supposed to vput the arguments before returning instead
...
of keeping them locked
2006-10-08 08:13:56 +00:00
pooka
2fc4655faf
add missing depedency on libz, reported by salo
2006-10-08 08:07:34 +00:00
mlelstv
e19fb1ec00
Use last track info only if it gives a sane value. Fixes PR#34688.
2006-10-08 07:50:16 +00:00
thorpej
b3971ecdf5
Put common/lib/libc/stdlib into .PATH. From Hisashi T Fujinaka.
2006-10-08 04:31:55 +00:00
thorpej
04e486d9f8
Add specificdata support to procs and lwps, each providing their own
...
wrappers around the speicificdata subroutines. Also:
- Call the new lwpinit() function from main() after calling procinit().
- Move some pool initialization out of kern_proc.c and into files that
are directly related to the pools in question (kern_lwp.c and kern_ras.c).
- Convert uipc_sem.c to proc_{get,set}specific(), and eliminate the p_ksems
member from struct proc.
2006-10-08 04:28:44 +00:00
thorpej
31adc576d7
Add subroutines for maintaining object-specific data for arbitrary
...
subsystems, based on work by YAMAMOTO Takashi. This is intended to
be used by other subsystems (such as the proc_*() or lwp_*() routines)
rather than directly by consumers.
2006-10-08 04:21:53 +00:00
thorpej
82fd1ebbaa
- Move strtoll.c and strtoull.c from libc/stdlib to common/libc/stdlib.
...
- Add strtoll.c and strtoull.c to libkern.
2006-10-08 03:14:55 +00:00
dogcow
789d2004b7
fix typo in 'config_finalize_register'
2006-10-08 02:56:52 +00:00
oster
1d51ed695f
Re-work some of the initialization code to now use config_attach_pseudo()
...
and friends. Addresses PR#32881. BOOT_FROM_RAID_HOOKS dies.
More simplification possible now.
2006-10-08 02:39:01 +00:00
dogcow
859dcf3c5f
add all the proper fields to _proxy
2006-10-08 02:34:51 +00:00
elad
ccf0312fe1
PR/32762: Magnus Eriksson: opl(4) states that it "[sounds] awful", please
...
rephrase
Reworded. Submitter is absolutely correct.
2006-10-07 23:40:18 +00:00
elad
009a00a3c3
PR/29220: Jachym Holecek: Document additional irq fixup for cbb(4).
...
Patch applied, thanks!
2006-10-07 23:35:39 +00:00