Commit Graph

200723 Commits

Author SHA1 Message Date
njoly
411ef8d5d2 Small typo in macro (Xd -> Xr). 2011-05-10 12:14:37 +00:00
jruoho
4f636e256c Xref div(3) and remainder(3). 2011-05-10 12:09:00 +00:00
jruoho
881e57fce3 Remove trailing '\'. 2011-05-10 09:07:51 +00:00
manu
25ff744367 Fix filesystem root leaked lock when using UFS_EXTATTR_AUTOSTART.
This way, statvfs(2) calls obtained by df(1) or umount(8) will no
longer sleep forever in the kernel to acquire the lock.
2011-05-10 08:29:32 +00:00
mrg
1c0dbcb69c convert RF_CommonLogData_s/RF_ReconMap_s mutex to a kmutex/cv. 2011-05-10 07:04:17 +00:00
jruoho
34c8ff4209 Fix comment/string typos. 2011-05-10 06:58:17 +00:00
jruoho
ac31bc5721 Fix typo. 2011-05-10 06:55:27 +00:00
jruoho
5a43e397bb Xref ilogb(3). 2011-05-10 06:39:45 +00:00
jruoho
31061e207a Split out the ilogb(3) family out of ieee(3) and properly document it. 2011-05-10 06:38:33 +00:00
mrg
de9a772ed6 print "raidN: detached" when unconfiguring a raid device. 2011-05-10 05:08:51 +00:00
enami
dd41556bdf Use ptrdiff_t to hold pointer difference to avoid coredump on LP64 system. 2011-05-10 04:40:16 +00:00
christos
0172147d4a AS additions from Zafer Aydogan to print the AS path. Minor cleanups to compile
without WARNS=1 hackery.
2011-05-10 01:58:58 +00:00
christos
64b9d7212f Add AS support for traceroute6. While here cleanup both traceroute programs
a bit.
XXX: Error printing on traceroute should be revisited.
2011-05-10 01:52:49 +00:00
matt
089d8e407b yes, more C99 please (back out previous change). 2011-05-10 00:34:26 +00:00
matt
12a3861acb Make rump compile things with -std=gnu99 like the kernel and modules. 2011-05-10 00:33:58 +00:00
drochner
e7c5804ca9 rearrange variable usage to kill __UNCONST
reviewed by sjg
2011-05-09 19:15:28 +00:00
jruoho
949a3d9b76 Add one missing cleanup routine declaration. 2011-05-09 17:55:37 +00:00
jruoho
f33b8e3d59 Add a test case for PR kern/44946. This tests that common first level sysctl
nodes (ddb, hw, machdep, etc.) are not writable by a normal user.
2011-05-09 17:53:54 +00:00
manu
136a3b8340 Attempt to fix build after perfuse addition (there is no MKPERFUSE) 2011-05-09 17:13:19 +00:00
haad
a28cba54a4 Mention MKPERFUSE keyword here, too. I have forgot to commit this file before. 2011-05-09 14:45:44 +00:00
haad
1d514c3d24 Add MKPERFUSE flag to those who are enabled by default. 2011-05-09 14:36:48 +00:00
taca
fa1b10fb99 Postfix 2.8.3 has released. 2011-05-09 12:45:25 +00:00
njoly
2a2612f827 Small typo (perfuse.debug -> perfused.debug). 2011-05-09 11:55:33 +00:00
jruoho
76710b77f2 On a second thought, require that close(2) fails for a descriptor already
closed with closefrom(3). For some odd reason (yet to be determined), this
check fails on 5.99.51 (amd64).
2011-05-09 11:05:36 +00:00
jruoho
d5aa514fe9 Remove superfluous close(2) pointed out by martin@. 2011-05-09 10:50:02 +00:00
jruoho
105ad5cd59 Add one more naive unit test. 2011-05-09 09:27:37 +00:00
jdc
8902e570be Alter the sync-on-green and composite-sync settings:
if the monitor doesn't support composite sync, enable sync-on-green

  then, if the monitor supports separate sync, disable composite vsync

(Prompted by macallan@.)
2011-05-09 09:06:28 +00:00
jruoho
fa096afe20 Xref raise_default_signal(3). 2011-05-09 09:06:21 +00:00
manu
73963ae9de Enable the build of perfused and libperfuse 2011-05-09 08:51:08 +00:00
jdc
f4f3632056 Correc the "enable pedestal" register definition. 2011-05-09 08:44:22 +00:00
jruoho
6cd711aedd Few basic tests for exit(3). 2011-05-09 07:31:50 +00:00
jruoho
aab71b6e06 List the ATF_TC_() thins in the order of appearance. 2011-05-09 06:05:54 +00:00
jruoho
48b4c06005 Few basic tests for strerror(3). 2011-05-09 06:04:14 +00:00
jruoho
f5d692df83 Few basic tests for closefrom(3). 2011-05-09 05:17:12 +00:00
spz
18f5539bfc update (unused) ND option identifiers and corresponding comments 2011-05-08 18:42:53 +00:00
hannken
f7e12f18b3 Revert previous commit. Locking the snapshot vnode while the file system
is suspended extends the suspension until the vnode gets unlocked by
the caller of ffs_snapshot().

Resuming the file system before expunging all snapshots and syncing the
snapshot creates races and deadlocks with journaling file systems at least.
2011-05-08 18:37:15 +00:00
pgoyette
821775e983 Fix parsing of -A option so that the [/ptn_0_offset] part is optional, as
described in the man page.
2011-05-08 14:22:16 +00:00
bouyer
d203040377 aarpprobe() is called before MOWNER_ATTACH(&aarp_mowner), leading
to a DIAGNOSTIC panic when MBUFTRACE is defined and atalkd is started.
Fix by moving MOWNER_ATTACH(&aarp_mowner) to ddp_init().
Should fix PR kern/44734
2011-05-08 13:51:31 +00:00
spz
52472990ca babylon5 ssh key changed (due to reinstall) 2011-05-08 13:19:08 +00:00
christos
b58828d4bd Add a no_stack_protector function attribute to localize the effect
of disabling stack protection on a function-by-function level, as
opposed to per source file.
2011-05-08 01:49:32 +00:00
jym
e1b3bebc56 Print the PGD address in the debug message. 2011-05-08 00:18:25 +00:00
christos
192b65f8f8 no c99 please. 2011-05-08 00:03:35 +00:00
jym
f0672645f9 Do as the comment says, use ilog2(). This gets optimized directly at
compile time, no call to fls() is needed.
2011-05-07 23:59:13 +00:00
tsutsui
783cb872c9 Use a correct register to save/restore MIPS_COP_0_TLB_HI in
mips1_tlb_record_asids().
2011-05-07 19:15:48 +00:00
tsutsui
73b55918cc Tweak some comments in mipsN_tlb_record_asids() to reduce diffs. 2011-05-07 18:16:54 +00:00
tsutsui
63deb05e86 Remove trailing spaces and tabs. 2011-05-07 17:52:43 +00:00
tsutsui
69ab59e540 Fix misc comments. 2011-05-07 17:47:34 +00:00
tsutsui
93594035b4 Fix a MIPS3 dependent KASSERT. 2011-05-07 14:37:46 +00:00
cheusov
813b6c039b Add myself 2011-05-07 11:12:48 +00:00
dholland
490409ebab Grammar patrol 2011-05-07 07:16:08 +00:00