wiz
f290bb1c88
Fix typo, remove trailing space.
2015-04-22 14:00:46 +00:00
wiz
858361fa34
Remove trailing whitespace.
2015-04-22 13:59:54 +00:00
ginsbach
0b61b786a1
Make century and year conversion tests a standalone test case rather than
...
part of the "common" test case.
2015-04-22 13:15:30 +00:00
maxv
459997491f
Instead of duplicating code, create ffs_is_appleufs(): returns 1 if the
...
device is an AppleUFS FS, 0 otherwise.
This changes the behavior a bit: if the kernel cannot determine whether the
disk is an AppleUFS one or not, it now considers it as a normal UFS rather
than returning an error and not mounting/reloading it.
No particular comment on tech-kern@
2015-04-22 07:27:09 +00:00
ozaki-r
df66dd74ee
Fix rump.route shows host's interface names
...
Let it use rump-ified if_indextoname and getifaddrs
to get rump kernel's interfaces, which is the same way
as ifconfig.
2015-04-22 03:07:55 +00:00
christos
ad5d6863f7
obey $ACRONYMDB like before
2015-04-21 23:56:30 +00:00
christos
96276379e9
Add -o flag.
2015-04-21 22:49:46 +00:00
christos
ab4165e5f0
add acronyms-o
2015-04-21 22:41:32 +00:00
christos
2d79abd2a4
Split acronyms to offensive and non-offensive like fortunes.
2015-04-21 22:40:37 +00:00
christos
9cf433da08
Mention EWOULDBLOCK too since a lot of the source code and documentation still
...
refers to it.
2015-04-21 21:22:07 +00:00
macallan
d3361f56e7
enable clocks as needed
2015-04-21 19:57:41 +00:00
macallan
de18a25b0d
#define some bits in the clock gating registers
2015-04-21 19:56:01 +00:00
macallan
3aefd491bf
fix comments, add LCDC*_BASEs
2015-04-21 19:19:31 +00:00
ginsbach
fb89bad2cc
Make seconds conversion tests a standalone test case rather than
...
part of the "common" test case.
2015-04-21 17:39:50 +00:00
pooka
b9e12739d0
Use hardclock_ticks instead of a homegrown variable.
...
... not that I understand how various kernel algorithms can work
after enough uptime with hardclock_ticks being a signed int.
2015-04-21 16:18:50 +00:00
riastradh
a6d56fa756
#ifdef DIAGNOSTIC panic -> KASSERT
2015-04-21 13:17:25 +00:00
riastradh
3b3b3f4af1
Remove bogus size_t->int casts in uiomove.
2015-04-21 13:15:28 +00:00
riastradh
b8cae62e30
Mark some variables __read_mostly.
2015-04-21 12:55:57 +00:00
riastradh
808c0b52c7
Sort includes.
2015-04-21 12:47:33 +00:00
riastradh
b1dc061a01
Xor, not ior, to combine bits of binuptime for rnd_counter.
2015-04-21 12:07:31 +00:00
ryoon
01c7d8eae8
Add Kurotoshiko GbE-USB3.0S2.
2015-04-21 11:53:53 +00:00
pooka
022fe45008
Remove the unused and all-but-unusable kthread_destroy(). Also makes
...
it more obvious that the opposite of kthread_create() is kthread_exit().
2015-04-21 11:10:29 +00:00
pooka
115eb707b4
Don't check if constant-sized KM_SLEEP allocations succeeded.
2015-04-21 10:54:52 +00:00
pooka
b9534ae5af
Attach PF_INET6 pktq sysctls only when inet6 is present.
...
More modular initialization would be nicer, but at least this patch
prevents "sysctl -a" from crashing when INET6 is defined by inet6 has
not been attached.
2015-04-21 10:39:41 +00:00
christos
0bb625c711
help sun2
2015-04-21 10:12:04 +00:00
wiz
79a213efae
Bump date for previous.
2015-04-21 10:00:30 +00:00
macallan
66d1b808ee
support interrupt-driven transfers
2015-04-21 06:12:41 +00:00
snj
2a79bc2442
move service(8) entry to CHANGES.prev, since it'll be appearing in 7.0
2015-04-21 05:27:30 +00:00
riastradh
7841b062cd
Turn a kassert into a more appropriately placed ctassert.
2015-04-21 04:41:36 +00:00
matt
36b5b12d8a
No need for CPU_CORTEXA7 since it's implied by ALLWINNER_A20
2015-04-21 04:24:51 +00:00
riastradh
01adfe9a57
Save some space: use one condvar for all rndsinks. Not a hot spot.
2015-04-21 04:24:16 +00:00
riastradh
5a7cf63bf5
Gather rndsinks global state into a cacheline-aligned struct.
2015-04-21 04:19:25 +00:00
riastradh
5db50cc603
Revert previous -- a little too quick on the commit trigger.
...
Ran some tests but not enough. There is a deadlock against myself:
rndsink_request acquires rndsinks_lock
-> rnd_getmore
-> hyperentropy feedrandom (or any other rndsource callback)
-> rnd_add_data
-> rndsinks_distribute acquires rndsinks_lock
Need to break this cycle before rndsource callbacks can invoke
rnd_add_data.
2015-04-21 04:05:57 +00:00
riastradh
f8b6ebf6aa
Restore simplicity of rump hyperentropy `hardware RNG'.
2015-04-21 03:53:50 +00:00
riastradh
6be68e2895
Release rnd_global.lock while calling an rndsource's callback.
...
Obviates the need for obnoxious double-lock dances in hardware RNG
drivers.
2015-04-21 03:53:07 +00:00
riastradh
4faebe442f
Correction: we do need <sys/atomic.h>, for membar_*.
...
(Not clear that these membars actually make sense, but that's a
separate issue.)
2015-04-21 03:46:46 +00:00
riastradh
ef69b14356
Sort includes.
2015-04-21 03:30:06 +00:00
riastradh
e8cbd445df
Nix some more needless includes.
2015-04-21 03:29:27 +00:00
riastradh
a2deb59454
Don't need <sys/atomic.h>.
2015-04-21 03:25:46 +00:00
riastradh
9cfa0037ec
Sort includes.
2015-04-21 03:24:07 +00:00
riastradh
f07d4c6e8b
Cull long-dead flags from namei(9) man page.
2015-04-21 03:21:54 +00:00
riastradh
e6d0ae95b0
Cull unused INRENAME and INRELOOKUP from callers.
2015-04-21 03:19:03 +00:00
riastradh
4292b99c7c
Cull unused INRENAME and INRELOOKUP from PARAMASK.
2015-04-21 03:18:21 +00:00
riastradh
6331efe680
Cull unused INRENAME and INRELOOKUP.
2015-04-21 03:16:30 +00:00
riastradh
f9534e4daa
Uncomment the argument struct declarations in deadfs.
...
We don't actually use them, but this is the only way the vop
versioning mechanism flags code that needs changing.
2015-04-20 23:30:58 +00:00
jmcneill
5944395eac
Restore "#if !defined(CPU_CORTEXA5)" accidentally removed in previous
...
commit -- hi skrll@
2015-04-20 23:12:56 +00:00
riastradh
aef6e9be2d
regen for good measure (no functional change)
2015-04-20 23:11:27 +00:00
riastradh
148589f348
Fix comment in vnode_if.src to reflect change to VOP_LINK.
2015-04-20 23:08:07 +00:00
riastradh
46e71c7d57
Make VOP_LINK return directory still locked and referenced.
...
Ride 7.99.10 bump.
2015-04-20 22:59:19 +00:00
pgoyette
6b45f4ed79
Set the redirection correctly, so that stderr gets duped to the
...
already redirected stdout, rather than duping stdout to stderr!
Without this fix, the disklabel output is included in the log file
rather than being discarded as intended. (The purpose of running
disklabel this first time is only to check for success.)
2015-04-20 22:46:35 +00:00