Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-01 | Check return code for resource allocation. | Marco Peereboom | |
prompted by tedu | |||
2007-06-01 | dont request zeroed memory when we allocate data regions for buffers. this | David Gwynne | |
moves memset from the 20th most expensive function in the kernel to the 331st when doing heavy io. ok tedu@ thib@ pedro@ beck@ art@ | |||
2007-06-01 | decouple the allocated number of vnodes from the "desiredvnodes" variable | Bob Beck | |
which is used to size a zillion other things that increasing excessively has been shown to cause problems - so that we may incrementally look at increasing those other things without making the kernel unusable. This diff effectivly increases the number of vnodes back to the number of buffers, as in the earlier dynamic buffer cache commits, without increasing anything else (namecache, softdeps, etc. etc.) ok pedro@ tedu@ art@ thib@ | |||
2007-06-01 | Fix cd block major number | Miod Vallat | |
2007-06-01 | Nuke ufs_time_t, okay beck@ krw@ marco@ | Pedro Martelletto | |
2007-06-01 | Fix macppc tags. | Alexander Yurchenko | |
ok drahn@ | |||
2007-06-01 | Establish interrupt after checking the i2s subsystem, fixes a problem with | Gordon Willem Klok | |
xserve G5. ok drahn | |||
2007-06-01 | really gone | Theo de Raadt | |
2007-06-01 | and don't forget the other daddr var in the comment | Otto Moerbeek | |
2007-06-01 | fix struct vop_bmap_args comment. ok deraadt@ | Otto Moerbeek | |
2007-06-01 | wrong cast checking for VOP_BMAP return value; ok miod | Theo de Raadt | |
2007-06-01 | daddr_t -> daddr64_t; | Thordur I. Bjornsson | |
Basically the usage of daddr_t was to math out arguments to nfs_getcacheblk, wich calls getblk(); ok deraadt@ | |||
2007-06-01 | revert previous comment "fix", must have been sleeping | Otto Moerbeek | |
2007-06-01 | fix comment, fs_ipg is inode *blocks* per cylinder group | Otto Moerbeek | |
2007-06-01 | convert ufs2_daddr_t -> daddr64_t for greater clarity; ok pedro otto thib | Theo de Raadt | |
2007-06-01 | Remove more Free(?)BSD and NetBSD #ifdef/#endifs. No functional nor | Marc Balmer | |
binary change. ok jsg | |||
2007-06-01 | remove crufty adosfs. everytime we try to change a vfs layer interface, | Theo de Raadt | |
adosfs has the issue and in an entirely different way. noone uses this code so this is hte best way to handle the problem diff from pedro who went to sleep but we need to move ahead; ok thib | |||
2007-06-01 | Remove the hci_enable now done in a higher layer. | Gordon Willem Klok | |
ok uwe | |||
2007-06-01 | Only probe phy's at address 0; gets rid of bogus phy's on the | Mark Kettenis | |
Marvell Yukon 88E8036. ok jsg@ | |||
2007-06-01 | rework the sensor task handling to run in the kernels generic workq. | David Gwynne | |
apologies to art for abusing timeouts so badly. apologies to tedu for making his head hurt. tested by and ok tedu@ | |||
2007-06-01 | set debug level to 0 | Uwe Stuehler | |
2007-06-01 | complete the sys/netbt import and adopt some more code to our interfaces | Uwe Stuehler | |
2007-06-01 | sc_carplladdr does not need to be dereferenced. | Marco Pfatschbacher | |
OK mcbride@ | |||
2007-06-01 | save metdata in context using dlg and tedu's shiny new workq api. | Marco Peereboom | |
detect stale metadata during bringup. | |||
2007-06-01 | never attempt to tweak a file just before commit | Ted Unangst | |
2007-06-01 | apply the "skip ipsec if there are no flows" speedup diff to IPv6 too. | Henning Brauer | |
we need a pointer to the inpcb to decide, which was not previously passed to ip6_output, so this diff is a little bigger. from itojun, ok ryan | |||
2007-06-01 | Don't initialize d_partitions[RAW_DISK] just before calling | Kenneth R Westerback | |
readdisklabel(), since all readdisklabel()'s do that already. ok deraadt@ | |||
2007-06-01 | Remove code to create a carp(4) Token Ring lladdr. | Marco Pfatschbacher | |
OK mcbride@ | |||
2007-05-31 | panic if mtx_leave is called on an unlocked mutex. ok kettenis@ | Dale Rahn | |
2007-05-31 | Enable packet flow between HCI driver and controller | Uwe Stuehler | |
- not all platforms have generic sofintr support, use schednetisr() - enable HCI driver at attach time (for development, since we have no userland tools yet) | |||
2007-05-31 | don't print debug messages | Uwe Stuehler | |
2007-05-31 | intel pchb rnd support, from i386 | Ted Unangst | |
ok deraadt | |||
2007-05-31 | It's the time to squash antique bugs. This has been there | Tobias Weingartner | |
for some time. I can't believe it took a re-read for future functionality plus something I wrote and kjell@ saved from '97 for me to find this. ok tom@ | |||
2007-05-31 | Clean up and fix sbt_write_packet() | Uwe Stuehler | |
2007-05-31 | Add Bluetooth drivers to GENERIC (not enabled - we still have ways to go) | Uwe Stuehler | |
ok gwk, deraadt | |||
2007-05-31 | Sync comment regarding rthdr0 w/ kame tree. | Ryan Thomas McBride | |
from itojun@ | |||
2007-05-31 | when getting ESTALE from the server, allow the client to retry in the | Thordur I. Bjornsson | |
nfsv2 client case, this matches v3 behaviour to that extent. This is to work around the fact that when the namecache is large, we dont purge vnodes correctly out of it. ok beck@,pedro@ | |||
2007-05-31 | Make sure that pf_state_key and pf_state_key_cmp are in sync. | Ryan Thomas McBride | |
I am a retard for not testing properly and owe people beers tonight. | |||
2007-05-31 | some more pchb that have rnd powers, IDs from NetBSD | Ted Unangst | |
2007-05-31 | RAW_PART is defined to be 2 in vax (like elsewhere) so use it rather | Kenneth R Westerback | |
than 2. | |||
2007-05-31 | Well, whatever the bug was, it does not seem to appear anymore. | Artur Grabowski | |
Remove the workaround. (krw tried to reproduce many, many times) | |||
2007-05-31 | switch wskbd hotkeys over to workq. this eliminates quite a bit of code, | Ted Unangst | |
so remove the option too. if you have audio and wskbd, you have hotkeys. ok dlg | |||
2007-05-31 | further improvement of the bus space i/o. firmware loading, booting, | Reyk Floeter | |
and card initalization works now. thanks to dlg@ who pointed me to the fact that bus_space_write_region_N and bus_space_write_raw_region_N use count of elements vs. size of buffer arguments. | |||
2007-05-31 | remove p_lock from struct proc; unused debug goo for lockmgr, | Thordur I. Bjornsson | |
wich gets set and never checked etc... ok art@,tedu@ | |||
2007-05-31 | Minor bounds_check_with_label nits. | Kenneth R Westerback | |
1) Use local variable 'labelsector' not 'labelsect' to be consistant (hp300, mac68k, mvme68k, mvme88k, vax). 2) Having checked for sz == 0, the next check needs only be sz < 0, not <= 0. (mac68k, mvme68k, mvme88k) 3) Use lp->d_partitions + DISKPART(dev), rather than lp->d_partitions[DISKPART(dev)] (hp300). Assuming no typos there should be no functional change. | |||
2007-05-31 | Redo the syncer to be a little smarter on interaction while shutting down | Marco Peereboom | |
the system help and ok tedu | |||
2007-05-31 | ckuethe found i missed a file in the workq update. my bad | Ted Unangst | |
2007-05-31 | Forgot to commit the changes to this file with the rest of the ELF32+64 | Tom Cosgrove | |
pieces. Since this is where the "boot both ELF32 and ELF64" behaviour is turned on for i386, it is quite important. Bump version numbers too. Found by ckuethe@; thanks. | |||
2007-05-31 | switch the flags argument to the front, requested by art | Ted Unangst | |
ok dlg | |||
2007-05-31 | zap the vm_amap am_l simplelock, and amap_{lock/unlock} macros for | Thordur I. Bjornsson | |
simple_{lock/unlock}. ok art@ |