NetBSD/sys
dyoung 17096c0d86 Cosmetic: join some lines. Get out early on errors, change
switch (...) {
                ...
                error = ...;
                break;
        }
        return error;

to

        switch (...) {
                ...
                return ...;
        }
2010-01-21 02:53:51 +00:00
..
altq Move BLUE_STATS to a commented out line since it is always enabled in 2009-12-06 14:03:23 +00:00
arch Move arch-local variable to a better namespace to make build again. 2010-01-21 01:23:14 +00:00
coda Remove some unecessary includes sys/user.h header. 2009-11-23 02:13:44 +00:00
common/bus_dma Add some common bus_dmamem routines to be shared by multiple platforms. 2009-08-21 03:33:17 +00:00
compat A few more instances of __sigtimedwait1 -> sigtimedwait1 2010-01-19 23:15:50 +00:00
conf Redefine bpf linkage through an always present op vector, i.e. 2010-01-19 22:06:18 +00:00
crypto Apply const where necessary (XXX: where is bf_locl.org?) 2009-06-30 13:14:40 +00:00
ddb Replace few USER_TO_UAREA/UAREA_TO_USER uses, reduce sys/user.h inclusions. 2009-12-17 01:25:10 +00:00
dev Cosmetic: join some lines. Get out early on errors, change 2010-01-21 02:53:51 +00:00
dist Redefine bpf linkage through an always present op vector, i.e. 2010-01-19 22:06:18 +00:00
external Expand PMF_FN_* macros. 2010-01-08 19:42:11 +00:00
fs In case the operations thread has exited, do not queue any more 2010-01-14 19:50:07 +00:00
gdbscripts Add a command to dump all thread stacks in the system and a command to dump 2009-11-18 18:12:00 +00:00
ipkdb Let the ipkdb subsystem allow operations related to it rather than wrongly 2009-10-02 22:05:52 +00:00
kern pool_cache_invalidate: comment out invalidation of per-CPU caches (nobody depends 2010-01-20 23:40:42 +00:00
lib Remove kern_assert.c - it's not needed here cuz it's already pulled in 2010-01-20 18:13:40 +00:00
miscfs The VATTR_NULL/VREF/VHOLD/HOLDRELE() macros lost their will to live 2010-01-08 11:35:07 +00:00
modules Fix MKBINUTILS=no builds by leaving out xldscripts. 2010-01-05 20:49:04 +00:00
net fix pasto in previous 2010-01-19 23:11:10 +00:00
net80211 Redefine bpf linkage through an always present op vector, i.e. 2010-01-19 22:08:16 +00:00
netatalk Make sure to set length in AARP-response packets. PR kern/41124 2009-09-12 20:43:18 +00:00
netbt prevent local socket address from being changed after socket is 2010-01-04 19:20:05 +00:00
netinet Redefine bpf linkage through an always present op vector, i.e. 2010-01-19 22:08:16 +00:00
netinet6 Redefine bpf linkage through an always present op vector, i.e. 2010-01-19 22:08:16 +00:00
netipsec Cosmetic: fix indentation, change some spaces to tabs. 2009-12-01 01:01:34 +00:00
netisdn Redefine bpf linkage through an always present op vector, i.e. 2010-01-19 22:08:16 +00:00
netiso Remove superfluous parenthesis in #ifdef ARGO_DEBUG. 2009-08-07 14:04:34 +00:00
netkey Fix the sense of two compares. I previously broke this. 2009-05-11 11:00:51 +00:00
netnatm Remove extra whitespace added by a stupid tool. 2009-04-18 14:58:02 +00:00
netsmb Fix cut & paste error spotted by Nicolas Joly. 2009-10-18 23:20:31 +00:00
nfs nfs_request: fix races which break congestion window and make nfs client stuck. 2010-01-19 13:39:04 +00:00
opencrypto If a multithreaded app closes an fd while another thread is blocked in 2009-12-20 09:36:05 +00:00
rump Add components necessary for bpf support (commented out just for 2010-01-19 22:47:46 +00:00
secmodel Use the socket credentials, now that we have them, instead of uidinfo. 2009-12-29 04:25:30 +00:00
stand Ansify function definitions w/o arguments. Generated with sed. 2009-03-18 10:22:21 +00:00
sys Get rid of last "easy" kernel symbols starting with __: 2010-01-19 22:28:30 +00:00
ufs vclean() actually sets v_tag to VT_NON but doesn't touch v_type. 2010-01-15 19:46:35 +00:00
uvm The VATTR_NULL/VREF/VHOLD/HOLDRELE() macros lost their will to live 2010-01-08 11:35:07 +00:00
Makefile