summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-08-11To control the lifetime of IPv6 addresses, prefixes and defaultAlexander Bluhm
routers, the kernel and ndp use a bunch of expire fields. Before they were int or u_long, convert expire to time_t in all structs. Move vltime and pltime to u_int32_t everywhere. Sort struct fields by size. Struct inet6_ndpr_msghdr is not used at all, so remove it. Binary compatibility of rtsold and ndp break with this change as rtsold uses in6_drlist and ndp uses in6_defrouter and in6_prefix to interact with the kernel. OK mpi@
2013-08-11Check wether the required perl packages are installed and that theAlexander Bluhm
environment for the remote testing machine is set up. If not, print a message and skip the regression tests.
2013-08-11Use variable REMOTE_SSH instead of a fixed name for the testing host.Alexander Bluhm
2013-08-11typoFlorian Obser
2013-08-11pflow(4) template regression testsFlorian Obser
2013-08-11A few fixes from Tim Mcintosh:Miod Vallat
- provide 88110 syntactic sugar for the control register names - correctly handle -m options - and a minor fix to allow the register prefix to correctly be recognized in front of the condition codes (only needed for SVR4)
2013-08-11capitalize RAID in one spot.Brad Smith
2013-08-10On 'original' LUNA-88K, NVRAM contents and Timekeeper registers areKenji Aoyama
mapped on the most significant byte of each 32bit word. (i.e. 4-bytes stride) Also, add small 'Wrong year set by UniOS-Mach after Y2K' hack. ok miod@
2013-08-10Cancel timeouts on pflow interface destruction.Florian Obser
OK benno@
2013-08-10libkafs5 has been renamed to libkafs;Jason McIntyre
ok ajacoutot
2013-08-10We can use ${LIBKAFS} now.Antoine Jacoutot
intro.3 will be handled by jmc@
2013-08-10libkafs5->libkafs ; forgotten in previousAntoine Jacoutot
2013-08-10libkafs5 -> libkafs (unused in build, so no functional change)Antoine Jacoutot
2013-08-10No longer mention GCC2_ARCHSMiod Vallat
2013-08-10Plug fd and mem leak in fuse_open's error path. ok syl@Jeremie Courreges-Anglas
2013-08-10Rename libkafs5 back to libkafs; that is the real upstream library nameAntoine Jacoutot
ad there is no point to diverge and maintain local patches here. ok robert@ miod@
2013-08-10Move the device table inside the softc.Martin Pieuchot
2013-08-10Initialize first_addr much earlier, in locore; this will help addingMiod Vallat
symbols support in the not-so-distant future. ok aoyama@
2013-08-10Only clear the bss after we have picked a cpu as master, and on this cpu only;Miod Vallat
fixes a potential race where a secondary cpu resets carefully computed variables. ok aoyama@
2013-08-10Mention amd_master with amd_flags.Antoine Jacoutot
Move identd_flags away from the inetd-capable daemons and fix usage. ok deraadt@
2013-08-10avoid Xref to self;Jason McIntyre
2013-08-10Remove some useless DPRINTF.Sylvestre Gallon
2013-08-10Remove debug printfs.Sylvestre Gallon
2013-08-09Merge uhts(1) into ums(1). The code is amost the same, so no need to duplicate.Edd Barrett
A part of ongoing work to improve touchscreen/digitiser support. A diff will follow shortly to remove uhts(1). OK matthieu@, with input from mpi@
2013-08-09Add RCS id and ISC license.Alexander Bluhm
2013-08-09Move the check for required perl packages into Makefile.inc so thatAlexander Bluhm
make obj always runs through als sudirs.
2013-08-09Check wether all required perl packages are installed. If someAlexander Bluhm
are missing print a warning and skip the tests, but do not fail.
2013-08-09Useless CPPFLAGS are useless.Antoine Jacoutot
2013-08-09Remove dead code and useless #include and #ifdef from ndp.Alexander Bluhm
No binary change; OK deraadt@ mpi@
2013-08-09Add rc.d(8) scripts for ipropd-master and ipropd-slave.Antoine Jacoutot
ok deraadt@
2013-08-09Add regress test for fuse_opt.Sylvestre Gallon
2013-08-09Remove all references to btd and the corresponding _btd user and group.Antoine Jacoutot
ok sthen@ deraadt@
2013-08-09syncMiod Vallat
2013-08-09Add urtwn(4) for upgradesMartin Pieuchot
2013-08-09Uncomment another kprintf attribute.Sylvestre Gallon
ok miod@.
2013-08-09match linux and only allow multiple contexts on the render ringJonathan Gray
2013-08-09add commented out versions of unused functions present in the originalJonathan Gray
files to reduce the diff to linux.
2013-08-09Constify the default null sockaddr_dl, no functional change.Martin Pieuchot
ok mikeb@
2013-08-09enable ctrl-left-arrow and ctrl-right-arrow to move forward/back a word;Damien Miller
matching ksh's relatively recent change.
2013-08-09two problems found by a to-be-committed regress test: 1) msg_id was notDamien Miller
being initialised so was starting at a random value from the heap (harmless, but confusing). 2) some error conditions were not being propagated back to the caller
2013-08-09do getopt parsing for all sftp commands (with an empty optstring forDamien Miller
commands without arguments) to ensure consistent behaviour
2013-08-08Add support for Intel Wifi Link 130.Sylvestre Gallon
ok kettenis@, mpi@
2013-08-08Uncomment kprintf format attributes for sys/kernSylvestre Gallon
tested on vax (gcc3) ok miod@
2013-08-08Fix sign of errno values to match Linux.Mark Kettenis
2013-08-08Add PMAP_NOCACHE as an alias for PMAP_NC for use in semi-MI code.Mark Kettenis
2013-08-08Test .%C; supported by mandoc, will soon be supported by the groff port, too.Ingo Schwarze
2013-08-08/dev/drmN for sparc64Mark Kettenis
2013-08-08Drop the retval argument from do*at() functions which don't use it.Philip Guenther
ok kettenis@ mpi@ deraadt@ millert@ miod@ matthew@ beck@
2013-08-08Implement the roff(7) font-escape sequence \f(BI "bold+italic".Ingo Schwarze
This improves the formatting of about 40 base manuals and reduces groff-mandoc formatting differences in base by about 5%.
2013-08-08Most network drivers include netinet/in_var.h, but apparently theyAlexander Bluhm
don't have to. Remove these include lines from vax drivers. test lteo@