summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-03-23oops - i obviously missed -r1.142;Jason McIntyre
2010-03-23Sync with show.c of route(8). OK michele@Claudio Jeker
2010-03-23Fix pointer usage with the renice and kill error message structure. Pointer ↵lum
was used without allocating memory. ok beck@ otto@
2010-03-23Add missing break, found while syncing with netstat/show.cClaudio Jeker
2010-03-23Set rtm_mpls on RTM_GET so that we get the correct options on mpls routes.Claudio Jeker
OK michele@
2010-03-23Print MPLS information in route -n get and do some cleanup in the show code.Claudio Jeker
OK michele@
2010-03-23avoid use of uninited var in max_partition_size(); ok krw@Otto Moerbeek
2010-03-23introducing 'R': interactive command to customize auto allocated labels,Otto Moerbeek
by growing or shrinking them as desired. can use some tweaks, but committing now to be able to work in-tree; ok krw@ lum@
2010-03-23adjust after -A / -O / -R / -T load removalHenning Brauer
2010-03-23remove -A, -O, -R and -T loadHenning Brauer
the partial loading of a ruleset (leaving ancors aside) is wrong and conflicts with the general idea of how pf works. last not least it breaks with the optimizer generating tables automagically. ok deraadt sthen krw manpage jmc
2010-03-23macppc seems to need a couple more casts before it will compile aKenneth R Westerback
kernel after the cardbus rectification. ok jsg@
2010-03-23Fix glob(3) to correctly return an error when its buffer space isNicholas Marriott
exhausted and GLOB_BRACE is given. globexp2() was ignoring errors returned from lower levels. While here, change globexp2() to return its return value normally rather putting it in a int pointer then always returning 0. ok otto
2010-03-23Add POSIX -A option to od and simplify a bit. From FreeBSD.Federico G. Schwindt
jmc@ and millert@ input and ok.
2010-03-23fix callback. This one isn't called that often actually.Marc Espie
noticed by ckuethe
2010-03-23struct pfioc_natlook has rdomain now.Stuart Henderson
2010-03-23Change the scsi_cmd function member of scsi_adapter from int toKenneth R Westerback
void. Use XS_NO_CCB error in the scsi command (xs) to report the NO_CCB condition. Eliminates all SUCCESSFULLY_QUEUED and COMPLETE confusion and untangles the midlayer from the adapter a bit more. Eyes and some fixes by miod@ There may be some compile issues on little used (i.e. I don't have any) drivers but the change is mechanical and thus easy to remedy. ok dlg@
2010-03-23dont maintain a list of vether devices inside the driver if they are neverDavid Gwynne
looked up. can vether get any smaller? ok deraadt@ claudio@
2010-03-22Detect Nuvoton W83795G.Mark Kettenis
ok deraadt@
2010-03-22Only try to break the line at an existing hyphenIngo Schwarze
when there actually IS a hyphen. Fixing an endless loop that broke the xenocara build.
2010-03-22Remove some cardbus defines and types which are identical toJonathan Gray
their pci counterparts, similar to recent changes in NetBSD. ok oga@ deraadt@ jasper@
2010-03-22tweak; ok espieJason McIntyre
2010-03-22Add missing text from license. Originally found in safte(4) in JulyPaul de Weerd
2005, this was copied around quite a bit. ok jmc@ deraadt@ dlg@ claudio@ grange@ marco@
2010-03-22fix rcs id, from bradJonathan Gray
2010-03-22Put back bnx(4) now that claudio@ has made the driver work on big endianMiod Vallat
systems with page size different than 4KB... 4 months ago.
2010-03-22On SGI IP35 systems, get SPD memory records from L1 and attach spdmem toMiod Vallat
decode them when available; tested on Fuel and Origin 350.
2010-03-22Split existing spdmem@i2c code into bus-agnostic spd record decoding code,Miod Vallat
and an i2c attachment. No functional change; ok jsg@ deraadt@
2010-03-22Enable PAGEFASTRECYCLE.Mark Kettenis
ok deraadt@, ariane@
2010-03-22add more gnum4 support: regexps do weird things with empty patterns (thisMarc Espie
is required for newer autoconf). fix the tokenizer for gnu extensions, allowing digits out of range is ridiculous. add POSIX2008 mkstemp and document it (also documenting that mktemp is safe, not posix...) tidy the manpage, do extra .Nm m4 -> .Nm. okay otto@, miod@, jmc@
2010-03-22clean up the ProgressMeter code, create a specific class if a TermMarc Espie
is around. start using stuff from termcap, specifically, cleareol, and move to hp. use the full line when we can, cram 100% if we can. (this should flicker much less on slow terminals). clean-up the install-and-progress bits to be in progressmeter, this removes some code. have pkg_create follow the same pattern as the others, with a state. This allows us to unify error messages a bit.
2010-03-22Various improvements, mainly regarding ERRORS.Ingo Schwarze
* Document EINVAL and EEXIST. * Neither mkstemp nor mkdtemp use lstat, but mktemp does. * Documenting ENOTDIR is useless, it is documented in lstat(2), mkdir(2) and open(2), and it's just one thing out of several that could go wrong. * Refer to lstat(2) instead of stat(2), which is actually used here. * State that two of these functions are standardized in the XPG. * Move the sentence about mkdtemp and mkstemps to the new STANDARDS section. * Get rid of the ugly ".So Li X Sc Ns s", just use "Xs" (suggested by jmc@). tweaks and ok jmc@ millert@
2010-03-22Even though this cannot happen in the diff -r case,Ingo Schwarze
even though diff(1) will exit(3) soon after this mkstemp(3) failure, even though this cannot really leak anything, close the file descriptor as soon as it is not used any more to make correctness of the code more obvious. patch from Igor Zinovik <zinovik dot igor at gmail dot com> on tech@ "looks nice" deraadt@
2010-03-22Dead functions, lint.Nicholas Marriott
2010-03-22Reset output functions too when changing client after attaching, toNicholas Marriott
avoid crash if a command in a sequence after new/attach causes output.
2010-03-22paste-buffer should be per pane, from C. Coutinho.Nicholas Marriott
2010-03-22Nuke unused variable.Nicholas Marriott
2010-03-22Add vi-style "jump" commands for copy mode, from Micah Cowan.Nicholas Marriott
2010-03-22Support up, down, left, right movement through panes with -UDLR flags toNicholas Marriott
select-pane. Also REMOVE the up- and down-pane commands: equivalent behaviour is now available using -t :.+ and -t :.-.
2010-03-22Accept a full key match (not a partial) even if there is data left inNicholas Marriott
the buffer.
2010-03-22New input parser based on http://vt100.net/emu/dec_ansi_parser.Nicholas Marriott
2010-03-22Read trap registers after setting up the stack frame in the slowtrap handler.Mark Kettenis
This will free up %g4 for tl>0 handling.
2010-03-22There is a workaround for a 82599 specific errata that could hang the rx dmaJonathan Gray
unit, it just wasn't called. Problem is present in the FreeBSD driver (but not the Linux one).
2010-03-22Use the correct number of max scatter gather segments for 82599,Jonathan Gray
adapted from FreeBSD.
2010-03-22Following diff fixes memory leak. `debug' is allocated via asprintf(3) so weTheo de Raadt
need to free it with free(3). from zinovik
2010-03-22Do not leak file descriptor `fd' on error path; from zinovikTheo de Raadt
2010-03-22report why getgrouplist() failed and for which user, helps with debugging;Otto Moerbeek
ok deraadt@
2010-03-22introduce HAS_MBR and let make define it for the right machines;Otto Moerbeek
requested by miod@; ok miod@ krw@
2010-03-22description of cmpci(4) can be shorter and more consistent with otherIgor Sobrado
drivers by using slashes as separator between sound chips. ok jmc@
2010-03-22Add some MLDv2 definitions from FreeBSD.Jonathan Gray
2010-03-22make argument check for '-s' cli option and interactive 's' consistent. ok otto@lum
2010-03-21When all tried file names already existed, mktemp(3) returned withoutIngo Schwarze
setting errno(2). Behaviour unchanged for mkstemp[s] and mkdtemp. ok guenther deraadt