summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-06-15regenJonathan Gray
2011-06-15ZTE AC2746Jonathan Gray
from Martin Furter
2011-06-15oops. some unrelated junk has slipped inMike Belopuhov
2011-06-15Set RL_FLAG_INVMAR for RTL8105E/RTL8401E/RTL8168E VL so multicastJonathan Gray
will work and add PHY wake up code for RTL8401E. From brad
2011-06-15tweak previous;Jason McIntyre
2011-06-15more testsJasper Lievisse Adriaanse
2011-06-15- only process Requires.private if needed (--cflags, --static or ↵Jasper Lievisse Adriaanse
--print-requires-private) - process Requires.private before processing Requires, order matters these are first steps towards a working --static. static doesn't work yet as libraries get re-ordered in a funky way.
2011-06-15- add tests for --static (failing right now)Jasper Lievisse Adriaanse
- fix another test which should fail now
2011-06-15When BN_bn2bin converts a bignum to the binary representationMike Belopuhov
it skips leading zeroes if there are any. To accommodate the difference with the protocol we need to prepend those zeroes ourselves. Fixes PR 6601, tested by Pawel Wieleba, sthen, otto. Huge thanks to Pawel for spending nearly a week testing diffs. ok sthen
2011-06-15change yet again how we handle transparent formatting of manpages.Marc Espie
simplify: actually create a tmp directory hierarchy that exactly mimics what fake contains. This avoids trouble with makewhatis checks. Don't even try to remember what files are there, just wipe it all with rmtree.
2011-06-15Document IP_RECVRTABLEMike Belopuhov
2011-06-15Add IP_RECVRTABLE socket option to be used with a IPPROTO_IPMike Belopuhov
level that allows one to retrieve the original routing domain of UDP datagrams diverted by the pf via "divert-to" with a recvmsg(2). ok claudio
2011-06-15Silence unneeded conversion warning. Okay jordan@.Paul Irofti
2011-06-15FUJITSU MBD drives seem okDavid Gwynne
2011-06-15all the dell md3xxx arrays are rdacDavid Gwynne
2011-06-15print which ldev, controller, port, and whether we're asymmetric orDavid Gwynne
symmetric. dont leak bufs on xs failure and make sure we free the buf back to the right dma pool.
2011-06-15check the preferred path ownership bit rather than assuming that odd lunsDavid Gwynne
like to be talked to on odd paths, and even luns like being talked to on even paths.
2011-06-15build inquiry with scsi_init_inquiry().David Gwynne
2011-06-15factor the common bits out of code that builds scsi inquiry commands intoDavid Gwynne
scsi_init_inquiry(). cut the compiled INQUIRY code over to it. ok and tweaks from krw@ ok matthew@
2011-06-15try to make critical messages make more sense. help from sthen.Marco Peereboom
2011-06-15if the system runs out of mbufs and cannot provide any when fillingDavid Gwynne
the rx ring, schedule a timeout to keep trying until it gets some. a timeout is used here cos the chip doesnt have a way of reporting if its out of descriptors or when there's a ring overflow. we have to manage that ourselves in software. mikeb reported this issue on an ipsec gateway. ipsec would consume all the mbufs while they were stuck in crypto waiting for the cpu to catch up, by which time it was too late to give more to the hardware. without any rx descriptors the chip would never interrupt and we'd never try to fill the ring again. the fix was tested by and is ok mikeb@
2011-06-14make sure key_parse_public/private_rsa1() no longer consumes its input buffer.Markus Friedl
fixes ssh-add for passphrase-protected ssh1-keys; noted by naddy@; ok djm@
2011-06-14exit if there is an unknown option; from FreeBSDChristian Weisgerber
ok millert@
2011-06-14Intel 3400 AHCI responds to PMP probes like ATI SBx00 chips.Jonathan Matthew
Unknown whether this also applies to product id 3b23 as well as 3b22. Problem reported by John Danks in PR6630 ok dlg@
2011-06-14KNF (no change in .o files)Ryan Thomas McBride
2011-06-13Let opcodes build for ia64 cross-tools.Paul Irofti
Okay drahn@, ``Go ahead, don't wait for me'' miod@.
2011-06-13Not need define KEYBOARD_ARRAY (keyboard array used only in dev/adb/akbd.cAlexandr Shadchin
if defined WSDISPLAY_COMPAT_RAWKBD). Move keyboard array from dev/adb/keyboard.h to dev/adb/akbdmap.h. ok miod@
2011-06-13fill in tests for getting/setting variablesJasper Lievisse Adriaanse
2011-06-12tweak the virtual pkg-config configJasper Lievisse Adriaanse
2011-06-12- cleanup now --errors-to-stdout is honoredJasper Lievisse Adriaanse
- zap --short-errors which isn't helping us
2011-06-12- rename pr_* to say_* to be consistent with perl (prompted by espie@)Jasper Lievisse Adriaanse
- move actual printing to STDERR to one place, this makes it easier to: - honor $mode{estdout} (--errors-to-stdout) which was silently ignored untill now
2011-06-12- Rename $D to $mode{debug} for consistency.Jasper Lievisse Adriaanse
- Factorize lots of prints into a common debug/error subroutine. This reduces unneeded clutter when testing for $mode{printerr} or $mode{debug}. Will be adjusted further when fixing --errors-to-stdout
2011-06-12- fix commentJasper Lievisse Adriaanse
- style nit
2011-06-12- fix version comparison by adjusting the regex which decides aboutJasper Lievisse Adriaanse
what is an operator and what is a valid version. (all version comparison regress tests pass now) - add back 'rc' support ok sthen@
2011-06-12Some devices, like parts of the NVIDIA C51 chipset, have a broken CapabilitiesMark Kettenis
List. So turn a DIAGNOSTIC panic into returning failure. ok mglocker@, miod@
2011-06-11syncMiod Vallat
2011-06-11Don't split sentence with a command.lum
help from jmc@
2011-06-11Unbreak the build with MANPS, making sure to still honour NOMAN.Ingo Schwarze
Problem found and fix tested by jmc@. Note that the patch to Makefile.in is useful for two additional reasons: 1. It removes an ugly reimplementation of the bsd.man.mk .8.cat8 target. 2. It will be required anyway when installing source manuals in the future. The bsd-wrapper patch looks redundant, but isn't. These rules are not in bsd.man.mk because elsewhere, the source files (*.8 etc.) are part of the source tree, not generated files.
2011-06-11- add check for empty filesJasper Lievisse Adriaanse
- only do the above check, and print an error if we lack a required field if $mode{printerr}. - put code setting $D together
2011-06-11- add missing comment for missing-req-3Jasper Lievisse Adriaanse
2011-06-11- add test for empty .pc-filesJasper Lievisse Adriaanse
- tweak other corruption tests - add reminder to add tests for --static
2011-06-10Monster update of ix(4). This brings ix(4) close to what is currentlyClaudio Jeker
in FreeBSD. This seems to fix a lot of problems on 82599 based cards including the VLAN problems and the corrupted receives. Putting this in now to work on it in tree since a few additional things need to be merged. Tested by myself, deraadt@ and jsg@ on both 98er and 99er cards. OK jsg@, deraadt@
2011-06-10syncStuart Henderson
2011-06-10typo; from Doug Barton (freebsd r222890)Jason McIntyre
2011-06-10tweak previous;Jason McIntyre
2011-06-10One less entry in BUGS.Antoine Jacoutot
2011-06-10Finally deal with background processes: "rc_cmd start" will now returnAntoine Jacoutot
the correct code according whether the daemon did start successfully or not. rc_wait() This function has been extended, first we need to pass in which mode we are running (start or stop) and second we can pass a number of seconds to wait (optionnal, will default to 30s). The function will return the correct code whether we are running during "rc_cmd start" or "rc_cmd stop". rc_cmd() start If we are running in background mode, then we call rc_wait with the "start" argument. The sleep(1) is needed to prevent a race condition where the process will appear in the list before failing and rc_check will see it as running. Call rc_post() when failing to prevent being left in an inconsistent state (because rc_pre() would have run successfully) rc_cmd() stop We are now calling rc_wait with the "stop" argument. "looks good" sthen@, ok robert@
2011-06-10RegenClaudio Jeker
2011-06-10Fix numeric order of a 82598 chip and add the id of 82599VF for theClaudio Jeker
upcomming ix(4) update.
2011-06-10Do not set the dying flag in wdc_wait_for_status, since there is atTheo de Raadt
least one chip sii3112 or sii314, owned by henning) that spuriously returns failure. This is only backing out one of the dying cases. As well, I have found one other case where attempts are made to advance IO even after obvious failure. I suspect that I should find that issue next. discussed with henning, kettenis, and matthew