summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-07-02don't reference an item after it has been returned to the poolDavid Krause
an 8 year old bug exposed by recent uvm changes ok thib@ tedu@ deraadt@
2010-07-02correctly init ppr_able in reset, and some others gcc complained about.Ted Unangst
ok deraadt
2010-07-02timeout_add -> timeout_add_msecBret Lambert
ok miod@ some time ago
2010-07-02fix a variety of uninit errors. ok and one correction deraadtTed Unangst
2010-07-02the variables work better when initialized. ok deraadtTed Unangst
2010-07-02on error, getuint() will return UINT_MAX. Instead of actually usingAlexander Hall
that value, print an error message and repost the question ok krw@ deraadt@
2010-07-02oops, add a missing newline; noticed by and ok phessler@Christian Weisgerber
2010-07-02Don't validate modification of immutable attributes if the namespace isMartin Hedenfal
configured with relaxed schema checking.
2010-07-02m_copyback can fail to allocate memory, but is a void fucntion so gymnasticsBret Lambert
are required to detect that. Change the function to take a wait argument (used in nfs server, but M_NOWAIT everywhere else for now) and to return an error ok claudio@ henning@ krw@
2010-07-02braces define scope, not indentation. found hunting uninit bugs. ok ogaTed Unangst
2010-07-02some very obvious uninit bugs found when I turned off -Wno-uninitializedTed Unangst
ok deraadt
2010-07-02fix corrupt UVMHIST_LOGTakuya ASADA
2010-07-02Disallow deleting non-leaf nodes.Martin Hedenfal
2010-07-02Add a BT_CURSOR_EXACT operation to btree_cursor_get. It behaves likeMartin Hedenfal
BT_CURSOR, but fails if the key is not found.
2010-07-02initialize values to something sensible.Ted Unangst
ok deraadt pirofti
2010-07-02add an align argument to uvm_km_kmemalloc_pla.Artur Grabowski
Use uvm_km_kmemalloc_pla with the dma constraint to allocate kernel stacks. Yes, that means DMA is possible to kernel stacks, but only until we've fixed all the scary drivers. deraadt@ ok
2010-07-02Drop the uvm_km_pages.mtx mutex in uvm_km_putpage before we free va's,Thordur I. Bjornsson
as calls to uvm_km_free_wakup can end up in uvm_mapent_alloc which tries to grab this mutex. ok tedu@
2010-07-02Plug a memory leak where each update leaked one page.Martin Hedenfal
2010-07-02Abstraction clean-up. `I like it' deraadt@.Paul Irofti
2010-07-02Some functions change the ifp in during ether_input(). This confuses theClaudio Jeker
IFF_PROMISC check that ensures that only local packets make it into the network stack. Check both the original ifp and the new ifp for IFF_PROMISC. Problem identified by Patrick Coleman. OK mcbride@, henning@
2010-07-02Fix memory leaks in schema parser.Martin Hedenfal
2010-07-02Add ability to limit memory presented to kernel withTobias Weingartner
'machine memory =128M' style commands. Thanks to phessler for finding a small man page niggle. Bumped version strings to a nice round fraction, and make them the same across the board. Easier to identify boot binary versions that way. ok thib@, tedu@, phessler@
2010-07-02Add Lenovo ThinkPad X100e quirk, from Brad.Paul Irofti
2010-07-02remove prototype of okaytoclone, which got removed in 1.117Jonathan Gray
2010-07-02structure copy the unp_connid to the other socketTheo de Raadt
2010-07-02Switch to nitems for the table, save some space. `Looks good' deraadt@.Paul Irofti
2010-07-02Use M_NOWAIT only if SCSI_NOSLEEP is set, as is the usual idiom. FromKenneth R Westerback
matthew@ who won't be home until late. ok matthew@ & tedu@.
2010-07-02Implement FPU shootdowns for hppa multiprocessor kernels. There are stillJoel Sing
some subtle bugs however these can be fixed in tree. ok kettenis@
2010-07-01Don't overwrite the device name with the fake cu%d host.Nicholas Marriott
2010-07-01Repost T510 video using the emulator.Mike Larkin
ok deraadt@
2010-07-01When a process' FPU context is evicted or restored record which CPU theJoel Sing
context is on so that we can handle FPU shootdowns. ok kettenis@
2010-07-01Mobility hd4870 works, add it.Owain Ainsworth
From jcr
2010-07-01regenTed Unangst
2010-07-013.5 compat is old, but relied upon by other compats still in tree. theTed Unangst
fhstat syscall, however, isn't needed and can go away. ok deraadt
2010-07-01syncOwain Ainsworth
2010-07-01Radeon mobility Hd4870, from jcr.Owain Ainsworth
2010-07-01Make our trapframe squeeky clean in setregs(). Avoid leaking registers intoMark Kettenis
the new process image. ok deraadt@, guenther@
2010-07-01enable mandoc regression tests; ok phessler@Ingo Schwarze
2010-07-01syncTheo de Raadt
2010-07-01It seems the x200s doesn't need the video bios call from locore.Paul Irofti
Retested on yuo's machine with a clean kernel and it works fine without the hack. This should also fix the issues other x200s users were seeing with resuming from X.
2010-07-01Add more support bits for ARMv7, including frame for VIPT (pmap_prefer).Dale Rahn
2010-07-01Another radeon hd3200.Owain Ainsworth
from brad
2010-07-01CPU id is not enough to tell 3430 from 3530 so change the printed name.Dale Rahn
2010-07-01In the mdoc(7) parser, inspect roff registers early such that all partsIngo Schwarze
of the parser can use the resulting cues. In particular, this allows to use .nr nS to force SYNOPSIS-style .Nm indentation outside the SYNOPSIS as needed by ifconfig(8). To actually make this useable, .Pp must rewind .Nm, or the rest of the section would end up indented. Implement a quick hack for now, a generic solution can be designed later. ok kristaps@ sobrado@
2010-07-01if we cannot copy the setup file (because objdir doesn't exist), thenPeter Hessler
continue anyways.
2010-07-01Move rdcap/rdcap16 structs used to get info about disk size off ofKenneth R Westerback
stack and malloc/free them instead. First stirrings of the tide of de-stacking to come. Feedback, fixes and ok matthew@ & tedu@.
2010-07-01don't need to setup the resolver early now that dns lookups are doneEric Faurot
by the dns engine. ok henning@
2010-07-01Oops. Lost the < 0 check on file position I had in the circulatedKenneth R Westerback
diff. A bit of paranoia suggested by beck@.
2010-07-018168E/8111E also supports IPv6 receive TCP/UDP checksum offload.Stuart Henderson
From Brad, plus a small punctuation tweak.
2010-07-01Nix some warnings.Nicholas Marriott