Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-22 | Whitespace fixes. | Kenneth R Westerback | |
2016-01-22 | Rename map field 'misc' to 'block0' since that's what it is. | Kenneth R Westerback | |
2016-01-22 | Whitespace fixes. | Kenneth R Westerback | |
2016-01-22 | Whitespace fixes. | Kenneth R Westerback | |
2016-01-22 | Straightforward uiomovei -> uiomove conversion. All size arguments for | Stefan Kempf | |
uiomove had unsigned types already. Diff from Martin Natano. | |||
2016-01-22 | Always check destination MAC address of received unicast packets, not | Stefan Fritsch | |
only when in promiscuous mode This necessary for NICs like virtio, where the unicast MAC filter is 'best effort' only. ok dlg@ encouragement from mpi@ | |||
2016-01-22 | Replace a (broken) test for @option explicit-update (the code has been | Landry Breuil | |
removed 2 years ago) by a (working) test for @ask-update | |||
2016-01-22 | Lost a fix for one invocation of write_block() in diff juggling. It | Kenneth R Westerback | |
takes an off_t offset, not a disk address, for now. | |||
2016-01-22 | If usb_fill_udf_task() failed to fill the struct, udf_data still | Alexander Bluhm | |
contained the pointer it received from user land. usbioctl() has to reset it, otherwise user supplied data is passed to free(). OK mpi@ | |||
2016-01-22 | in lka process, revoke proc/exec pledges after privsep-ed table backends | Gilles Chehade | |
are forked at startup i thought i had committed this already, diff has been okayed several weeks ago... ok jung@, ok millert@, ok sunil@ | |||
2016-01-22 | add a log_warn() so that when smtpd fails to start due to a problem reading | Gilles Chehade | |
the configuration file of a table, user actually understands what happens diff by Alexis Vachette, ok jung@ | |||
2016-01-22 | Merge read_block() and read_file_media() into read_block(). Ditto | Kenneth R Westerback | |
write_block() and write_file_media(). One layer of read/write wrappers for pread/pwrite should be enough for anyone. | |||
2016-01-22 | Drop packets whose VNI flag is not set and VNI is not zero | Kazuya Goda | |
ok reyk@ yasuoka@ | |||
2016-01-22 | Support tunnel VRF on etherip(4) | Kazuya Goda | |
ok dlg@ yasuoka@ | |||
2016-01-22 | add a missing if_put() to ipip_input() | Jonathan Gray | |
ok mpi@ | |||
2016-01-22 | fix a missing if_put() in the default af path of tcp_mss() | Jonathan Gray | |
ok mpi@ | |||
2016-01-22 | escape punctuation to have it mark up properly; | Jason McIntyre | |
2016-01-22 | Repair creation of initial partition table on a blank disk, broken | Kenneth R Westerback | |
when hoisting file operations and ioctl to main(). Pass media size to open_partition_map() and create_partition_map() so they can properly initialize a map. | |||
2016-01-22 | In the "why use two variables when one would do" category, eliminate | Kenneth R Westerback | |
the 'written' field and just use the 'changed' field to mediate when it is appropriate to ask whether changes should be discarded. | |||
2016-01-22 | Add back the initialisation of a cn30xxipd_offload() variable removed | Jonathan Gray | |
in rev 1.6 so SET doesn't or bits into uninitialised memory. ok visa@ | |||
2016-01-22 | remove a surplus splbio | Jonathan Gray | |
ok deraadt@ krw@ | |||
2016-01-22 | Nuke 'expert' mode and the enabling, undocumented, '-d' flag by | Kenneth R Westerback | |
just making all the commands available all the time. Document the newly available commands. Remove the former 'P' command (list partitions in base address order) and use 'P' from expert mode (show map data structures). Stop accepting uppercase aliases for commands documented as lower case. Bring the 'h' help text and man pages into agreement. ok jasper@ millert@ | |||
2016-01-21 | another round of tiny wording tweaks and unifications | Joerg Jung | |
all from tj ok millert | |||
2016-01-21 | Fix the timeout value sent in ADDBA request and response frames. | Stefan Sperling | |
ba_timeout_val is in usec so we must divide by TU when copying it to the frame. ok kettenis@ millert@ | |||
2016-01-21 | Hoist all file opening and ioctl calls into main(), passing a pointer to | Kenneth R Westerback | |
a valid map to edit(). Should enable pledging a la fdisk at some point. Since edit() always gets a valid map (and maintains its validity even when 'I'nitializing a new one) many checks for (map == NULL) are junked. Remove some dances around block sizes by using DEV_BSIZE everywhere since we don't support non-DEV_BSIZE (a.k.a. 512-byte) sectors. Remove many superfluous #include statements. | |||
2016-01-21 | Introduce in{,6}_hasmulti(), two functions to check in the hot path if | Martin Pieuchot | |
an interface joined a specific multicast group. ok phessler@, visa@, dlg@ | |||
2016-01-21 | avoid uninitialised variable use | Jonathan Gray | |
ok kettenis@ | |||
2016-01-21 | add a missing if_put() in a carp specific path | Jonathan Gray | |
ok mpi@ | |||
2016-01-21 | Remove now uneeded bus_space_unmap calls in the DS1742W/Origin path that | Jonathan Gray | |
have had uninitialised bus space handle arguments since the mapping became conditional in rev 1.9 confirmed with miod | |||
2016-01-21 | remove the arp_inuse and arp_allocated counters | David Gwynne | |
we can get the same info from the arp pool: # vmstat -m | grep -e ^arp -e ^Name Name Size Requests Fail InUse Pgreq Pgrel Npage Hiwat Minpg Maxpg Idle arp 56 84 0 6 1 0 1 1 0 8 0 Requests and InUse end up being the same: # pstat -d d arp_allocated arp_allocated at 0xffffffff81942084: 84 # pstat -d d arp_inuse arp_inuse at 0xffffffff81942098: 6 ok bluhm@ claudio@ mpi@ | |||
2016-01-21 | Nuke 'writable' field now that it is always in sync with 'rflag'. Since | Kenneth R Westerback | |
(!rflag && writable == 0) can't be true remove those warning blocks and simply leave the not-writable warning when attempting to write the map. Always show 'w' in the help and rely on the check and warning in do_write_partition_map() so the user always gets a message. | |||
2016-01-21 | sync | Theo de Raadt | |
2016-01-21 | Don't try to be cute by silently opening a disk read-only when R/W | Kenneth R Westerback | |
access was requested. Just complain when the R/W open fails. Make failure messages consistent. | |||
2016-01-20 | Add Approx APPUSB300NANO V1. V2 uses a different chipset. | Juan Francisco Cantero Hurtado | |
2016-01-20 | sync | Theo de Raadt | |
2016-01-20 | add a calendar for new zealand; from craig skinner | Jason McIntyre | |
2016-01-20 | After nearly 20 years of warning that malloc.h is obsolete, it's about time we | Jasper Lievisse Adriaanse | |
actually remove this header. It was originally added for ports, which is malloc.h-free now. additional ports bulk by aja@ ok bently@ dcoppa@ millert@ sthen@ | |||
2016-01-20 | make AUDIO_GETDEV ioctl return the device name (ex "azalia0") rather | Alexandre Ratchov | |
than driver specific strings. ok kettenis | |||
2016-01-20 | fix year | Theo de Raadt | |
2016-01-20 | dlg@ took a pity on me and let me stay sane a bit longer by giving | Mike Belopuhov | |
me a chance to kill these glowing red trailing whitespace characters. | |||
2016-01-20 | Set segflg member of uio struct with symbolic enum value | Stefan Kempf | |
instead of using magic numbers. No binary change. Diff from Martin Natano. ok deraadt@ | |||
2016-01-20 | Check for disks deeper than 4 levels down in the Open Firmware device tree. | Stefan Sperling | |
Makes softraid(4) boot possible on more sparc64 machines. Tested on Sun Fire machines by mikeb@ and Alexander Bochmann via misc@ ok mikeb@ | |||
2016-01-20 | quote ${CC} expansion, from andreas.kahari at icm uu se, ok mpi@ | Stuart Henderson | |
2016-01-20 | Don't bump output errors when when tx ring is full | Mike Belopuhov | |
Reported by Jonathon Sisson <openbsd at j3z ! org>, thanks! | |||
2016-01-20 | Include sys/time.h for gettimeofday. From sortie at maxsi.org. | Darren Tucker | |
2016-01-20 | Remove ARG_CHAR_T, a relic from when the code was written K&R style. | Anthony J. Bentley | |
ok millert@ schwarze@ | |||
2016-01-20 | Set byte order the default encoding in the attach method to | Alexandre Ratchov | |
native byte order. No behaviour change, as attach time parameters are just hints, except thay this makes audioctl output nicer if the device was never opened. | |||
2016-01-20 | sync | Theo de Raadt | |
2016-01-20 | remove an unused ifp variable | Jonathan Gray | |
2016-01-20 | add an imt manpage | Joshua Stein | |