Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-23 | Use MIN() instead of min() as we're dealing with 64-bit types. | Mark Kettenis | |
2014-01-23 | drm/radeon: fix resume on some rs4xx boards (v2) | Jonathan Gray | |
From Alex Deucher e46cac0111dfea1fc18a513067abc67dd38e422f in ubuntu 3.8 acf88deb8ddbb73acd1c3fa32fde51af9153227f in mainline linux | |||
2014-01-22 | Do not assume the data buffers handed down to us from the SCSI midlayer are | Mark Kettenis | |
page aligned. | |||
2014-01-22 | Assert copyright. | Joel Sing | |
2014-01-22 | Add some debug messages to the rebuild process and fix a bogus comment. | Joel Sing | |
2014-01-22 | drm/edid: add quirk for BPC in Samsung NP700G7A-S01PL notebook | Jonathan Gray | |
From Rafal Milecki f40ead76deb24bbb912c1791722f5ae6eabcc800 in ubuntu 3.8 49d45a31b71d7d9da74485922bdb63faf3dc9684 in mainline linux | |||
2014-01-22 | drm/i915: No LVDS hardware on Intel D410PT and D425KT | Jonathan Gray | |
From Rob Pearce 4694d14ae2ffe12fa49f4b3e57d5c7a6b74c0856 in ubuntu 3.8 645378d85ee524e429aa4cf52806047b56cdc596 in mainline linux | |||
2014-01-22 | drm/i915: quirk away phantom LVDS on Intel's D525MW mainboard | Jonathan Gray | |
From Jani Nikula 24498530d1a0246d7995baa386ee4fc0208911b2 in in ubuntu 3.8 dcf6d294830d46b0e6901477fb4bf455281d90c8 in mainline linux | |||
2014-01-22 | Only kick the iopool if we've just established a new connection to the server. | Mark Kettenis | |
2014-01-22 | drm/i915: quirk away phantom LVDS on Intel's D510MO mainboard | Jonathan Gray | |
From Chris Wilson b818e76978dda65f9c749970ebef14490eb93387 in ubuntu 3.8 e5614f0c2d0f4d7f0b8ef745d34593baf2c5dbf8 in mainline linux | |||
2014-01-22 | add DMI_EXACT_MATCH macro, handled the same as DMI_MATCH for now | Jonathan Gray | |
2014-01-22 | drm/edid: add quirk for Medion MD30217PG | Jonathan Gray | |
From Alex Deucher d0d012f66761701d9cda6b9e27bfbac9be766060 in ubuntu 3.8 118bdbd86b39dbb843155054021d2c59058f1e05 in mainline linux | |||
2014-01-22 | fix endianness for FC4 type registration | Jonathan Matthew | |
2014-01-22 | this gets rid of NO_CCB in vdsk. it considers space on the tx ring | David Gwynne | |
as the resource the iopool is managing, but gated by the availability of the service domain. it takes advantage of the newly available scsi_iopool_run() interface to restart io when the domain providing a disk comes back. ok kettenis@ | |||
2014-01-22 | bring over kqfilter code from ufs which works better than the | Ted Unangst | |
generic flavor. problems noted and tested by ajacoutot | |||
2014-01-22 | Split the checksum calculation for IPv6 like for IPv4: | Christian Weisgerber | |
Always calculate the pseudo-header checksum. Complete the checksum if hardware offload is not available. Parts originally from NetBSD; ok henning@ | |||
2014-01-22 | There's no reason to pass a netmask argument when doing a RTF_HOST | Martin Pieuchot | |
request, so kill it along with the associated global variable. ok claudio@ | |||
2014-01-22 | Do not attempt to handle rebuild work units in the RAID5 work unit | Joel Sing | |
completion code. Add a comment about retrying on write failures. | |||
2014-01-22 | To prevent lock ordering problems with the kernel lock, we need to make sure | Mark Kettenis | |
we block all interrupts that can grab the kernel lock. The simplest way to achieve this is to make sure mutexes always raise the ipl to the highest level that has interrupts that grab the kernel lock. This will allow us to have "mpsafe" interrupt handlers at lower priority levels. No change for non-MULTIPROCESSOR kernels. tested by mpi@, landry@ ok mpi@, dlg@ | |||
2014-01-22 | Use extent_alloc_subregion_with_descr(9). This should make bus_dmamap_load(9) | Mark Kettenis | |
and bus_dmamap_unload(9) "mpsafe". | |||
2014-01-22 | Kill the RN_DEBUG code it is broken since rev 1.1 and not worth fixing. | Claudio Jeker | |
OK mpi@ and krw@ | |||
2014-01-22 | Add a debug flag for rebuild. | Joel Sing | |
2014-01-22 | Allocate two work units for use by rebuild/scrub. | Joel Sing | |
2014-01-22 | Pass the receiving interface pointer to carp_input() instead of re- | Martin Pieuchot | |
reading it from the packet header. While here makes carp_input() take the same arguments as ether_input(). ok bluhm@, mikeb@ | |||
2014-01-22 | Same clean up for hppa64. | Joel Sing | |
2014-01-22 | Clean up code - sort headers, remove __OpenBSD__ #ifdefs and ansify | Joel Sing | |
function declarations. ok kettenis@ | |||
2014-01-22 | Make rebuild a discipline specific function pointer. For now, this defaults | Joel Sing | |
to the existing rebuild code. ok krw@ | |||
2014-01-22 | Remove genmask support from the kernel. rtmsgs with RTA_GENMASK set will | Claudio Jeker | |
now cause a EINVAL. The RTA_GENMASK and RTAX_GENMASK defines are kept for compatibility reasons. OK benno@ and agreed by dlg@ | |||
2014-01-22 | dont piggyback on C_PRIVATEXFER because it must not touch splx. | David Gwynne | |
because im using it while the system is up and running i need the xfer free path to take the right locks, which PRIVATEXFER doesnt. invent a new C_SCSIXFER flag that provides the safety needed. this fixes issues people have had installing from atapiscsi(4) cdrom devices. bug spelunking and tailq corruption identified by jsing@ ok jsing@ | |||
2014-01-22 | - Unconditionally set IFCAP_VLAN_MTU | Brad Smith | |
- Bring the receive filter handling in line with other drivers - Simplify the RX checksum code a bit and only set the flags when the RX checksum is Ok ok uebayasi@ | |||
2014-01-22 | simplify ubcmtp_match | joshua stein | |
suggested by mpi@ | |||
2014-01-22 | The sr_rebuild function does not actually do the rebuild, it only starts | Joel Sing | |
the rebuild thread. Rename it to sr_rebuild_start to make this clearer. ok krw@ | |||
2014-01-22 | tweak ubcmtp comment | joshua stein | |
2014-01-22 | Provide inline dummy implementations of drm_sysfs_connector_add() and | Mark Kettenis | |
drm_sysfs_connector_remove() and call those instead of #ifdef'ing them out. Reduces the noise when diffing against Linux. | |||
2014-01-22 | Move sr_dump from the RAID5 code into shared code. Rename it to | Joel Sing | |
sr_dump_block and place it under the debug define in the process. | |||
2014-01-22 | bring inteldrm back up after resume using DVACT_WAKEUP (non-cold, able | Theo de Raadt | |
to tsleep, etc) rather than DVACT_RESUME (cold, interrupts disabled, super restrictive) tested by jcs and myself, investigated with kettenis | |||
2014-01-22 | Handle the case where a chunk is in a rebuild state during writes. | Joel Sing | |
ok krw@ | |||
2014-01-22 | one more absolutely obvious bcopy -> memcpy | Henning Brauer | |
2014-01-22 | 7x bcopy -> memcpy, impossibility of overlaps verified. ok benno dlg | Henning Brauer | |
2014-01-22 | Switch metadata saves from the system workq to the system taskq. | Joel Sing | |
ok dlg@ | |||
2014-01-22 | udav(4): add CoreChip RD9700 support | sasano | |
RD9700 has no MII-PHY, no serial EEPROM. ok by deraadt@, brad@ | |||
2014-01-22 | Use DIV_ROUND_UP instead of howmany to reduce the diffs with Linux. | Mark Kettenis | |
2014-01-22 | do the tx and pfsync handlers only once on the way out of netisr | David Gwynne | |
instead of in every loop. tested for a long time on many machines at work. ok henning@ | |||
2014-01-22 | CDIAGFLAGS= not needed | Theo de Raadt | |
2014-01-22 | Write disklabel in correct spot on devices with non-512-byte sectors. | Kenneth R Westerback | |
For now and until 5.5 is cut, also read from current/incorrect spot so people don't immediately lose their existing disklabels on such devices. Problem spotted by David Vasek. | |||
2014-01-22 | Emit a warning if no entropy was supplied by the boot loader. | Joel Sing | |
ok deraadt@ | |||
2014-01-22 | add a missing argument to a printf | Jonathan Gray | |
2014-01-22 | add a missing argument to a debug printf | Jonathan Gray | |
ok jcs@ | |||
2014-01-22 | Use ljmp instead of ljmpq since binutils 2.17 doesn't like the latter. | Mark Kettenis | |
ok mlarkin@ | |||
2014-01-22 | add a missing argument to a debug printf | Jonathan Gray | |