Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-02 | Constipate the second argument to timeout_add_*(). Also, use | Philip Guenthe | |
nitems() in two places instead of coding the array size and fix a spot of whitespace. ok miod@ blambert@ | |||
2009-06-02 | Avoid a buf oflow in uhidev_set_report_async() if we have to prepend the | Miod Vallat | |
report id and the data to report is too long (this should probably use dynamic allocation for large reports). | |||
2009-06-02 | Reintroduce the macppc interrupt subsystem rewrite. Several bugs have | Dale Rahn | |
been found and corrected. | |||
2009-06-02 | Shuffle function declarations a bit; ipsp_kern doesn't actually exist, | Bret Lambert | |
and tdb_hash is only used in ip_ipsp.c, so there's no need to declare it as extern in ip_ipsp.h ok claudio@ henning@ | |||
2009-06-02 | A piece of an upcoming diff was on the same line, revert that portion | Dale Rahn | |
of the previous diff so macppc is stable again. found/ok maja@ | |||
2009-06-02 | Abuse bio layer a little less by marking fake buffers with B_PHYS. | Marco Peereboom | |
From beck with lots of squealing and ear bleeds. Issue originally reported by todd. ok beck | |||
2009-06-02 | Add some extra protection against non-monotonic timestamps. ok stevesk | Chris Kuethe | |
2009-06-02 | Remove unused b_forw defines which make beck@ scream like a little girl | Miod Vallat | |
and disturb everyone's peace. | |||
2009-06-02 | - make sure biodone() gets run at IPL_BIO | Jasper Lievisse Adriaanse | |
OK thib@ | |||
2009-06-02 | ANSIfy | Philip Guenthe | |
noted by Jonathan ARMANI, ok blambert@ | |||
2009-06-02 | Clear PQ_ENCRYPT flag on uvm_pagefree, because free pages are by definition | Ariane van der Steldt | |
not encrypted. | |||
2009-06-02 | space | Marco Peereboom | |
2009-06-02 | Make rebuilds restartable over reboots. | Marco Peereboom | |
Abort rebuild and drain IO when shutting down. | |||
2009-06-02 | When about to run X11 in 32 bpp mode, advertize correctly that we are | Mark Kettenis | |
really using 24 bpp pixels on 32 bit boundaries. ok miod@ | |||
2009-06-02 | Some casts to please format strings a little bit later on | Theo de Raadt | |
ok grange | |||
2009-06-02 | The two "firmware" arrays only contained 16 bit values, but were being | Theo de Raadt | |
being stored in an array of 32 bits. waste of memory. The bandpass filter table only contained 16 bit values, but was being treaded as if it was in an array of 32 bit values, thus what was being loaded into the chip was totally wrong and this probably explains why I remember it sounded horrid. Not tested on real hardware; incorrect array accesses discovered by Parfait ok oga | |||
2009-06-02 | Add an r10k-specific cop0 control register. | Miod Vallat | |
2009-06-02 | make rl at pci detachable; untested. | Jonathan Gray | |
2009-06-02 | do the pf_pkt_addr_changed(m) magic just like gif etc | Henning Brauer | |
tested by Manuel Rodriguez Morales <marodriguez at grupogdt.com> | |||
2009-06-02 | satosin was already defined in in.h, no need to redefine it here | Bret Lambert | |
ok claudio@ | |||
2009-06-02 | Make fxp at pci detachable; untested. | Jonathan Gray | |
2009-06-02 | Rebuild can go to degraded | Marco Peereboom | |
2009-06-02 | do not leak mbufs in the Rx path in case hardware decryption failed. | Damien Bergamini | |
this leak was introduced when i switched to MCLGETI. reported by mpf@ and others. | |||
2009-06-02 | make sure the channel's subband is found in iwn4965_set_txpower(). | Damien Bergamini | |
found by "Parfait". | |||
2009-06-02 | make dc at pci detachable; untested. | Jonathan Gray | |
2009-06-02 | 0 -> NULL | Bret Lambert | |
ok claudio@ | |||
2009-06-02 | let atw at pci be detachable; untested. | Jonathan Gray | |
2009-06-02 | Add a DIAGNOSTIC panic to ensure we are not running | Kurt Miller | |
via an interrupt handler in acpi_sleep_machdep. okay mlarkin@ marco@ | |||
2009-06-02 | truncated format strings; found by Parfait and gcc | Theo de Raadt | |
ok maja oga guenther | |||
2009-06-02 | replace custom macro AR5K_ELEMENTS() with nitems() | Reyk Floeter | |
2009-06-02 | Drop an argument to DRM_ERROR() that was both unmatched and superfluous | Philip Guenthe | |
ok oga@ | |||
2009-06-02 | blkno's are 64 bit so need %llu, found by Parfait | Theo de Raadt | |
ok oga | |||
2009-06-02 | replace custom macro sizeofa() with nitems() | Reyk Floeter | |
2009-06-02 | Fix some minor format string problems found in a maze of false positives | Theo de Raadt | |
provided by Parfait ok oga | |||
2009-06-02 | Cope with logical device numbers gaps, this fixes out-of-bounds access | Alexander Yurchenko | |
in an array. Problem found and ok deraadt@. | |||
2009-06-02 | msgctl(), shmctl(), semctl() all have operations that are supposed | Philip Guenthe | |
to return pids, not thread ids, so record the former when performing operations. ok blambert | |||
2009-06-02 | If a bogus channel is encountered, return an error instead of trying | Philip Guenthe | |
to use the -1 flag value as an array index. Found by Parfait. ok reyk@ oga@ | |||
2009-06-02 | change a sizeof() to nitems() because the array subtype is a short. | Theo de Raadt | |
change all the N() macros to our favorite new macro nitems() found by Parfait ok oga guenther | |||
2009-06-02 | marco needs to learn how to do his range checks better, found by Parfait | Theo de Raadt | |
ok oga guenther | |||
2009-06-02 | When we fail to find the controller type, don't continue on using the next | Theo de Raadt | |
consecutive index which is outside the array; found by Parfait ok oga guenther | |||
2009-06-02 | Do not go one bar too far down the road; found by Parfait; ok oga | Theo de Raadt | |
2009-06-02 | Fix an off-by-one in the ddb-only debugging function tdb_hashstats. | Owain Ainsworth | |
when we check if a hash chain is over 15 long, we would access one past the end of the array. change the static array size to a define because it makes this checking easier to verify. Found by Parfait. ok deraadt@. | |||
2009-06-02 | A process should always be able to attach kevent filters to its own | Philip Guenthe | |
threads, even when it has changed uid or gid in the past. As is, a P_SUGID process using rthreads leaks the stack on thread exit. requested and approved by tedu@ a while ago | |||
2009-06-02 | The xl_detach() function is now used by pci code, so it must be in the | Theo de Raadt | |
shared code in case either cardbus or pci varients are not configured. | |||
2009-06-02 | add CRYPTO and softraid to zaurus RAMDISK | Todd T. Fries | |
Sure deraadt@ | |||
2009-06-02 | did not issue scsi_inquire with EVPD flag for USB mass strage class | Yojiro Uo | |
device, as some devices will be stalled by the request. ok krw@ | |||
2009-06-02 | add CRYPTO to macppc RAMDISK | Todd T. Fries | |
Sure deraadt@ | |||
2009-06-02 | Add an identifier that tells us if we can rebuild this discipline. | Marco Peereboom | |
KNF & spelling too | |||
2009-06-02 | make xl at pci detachable. | Jonathan Gray | |
2009-06-02 | set needfree to NULL in sys_writev() so stack garbage | Thordur I. Bjornsson | |
does not cause us to call free if we never malloced. crash found by & OK marco@ |