summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-02-08use the correct integer width in calls to AMSG_ISSET()Alexandre Ratchov
2014-02-08styleMarc Espie
2014-02-08Fix REST (restart transfer) for offsets large than 2GB. OK okan@Todd C. Miller
2014-02-08Some (if not all) G5 systems use a different layout for the physical memoryMiod Vallat
information (property `reg' of the `/memory' node). Fortunately the available physical memory information still uses the same format, so this only affects the computation of physmem. Detect this case and parse the information correctly, converting to the format expected by pmap, ignoring physical memory beyond 4GB. Compute physmem from all the physical memory information, even memory not usable by the kernel. Let pmap not recompute physmem in pmap_bootstrap() if physmem is != 0 upon entry. This should allow G5 systems fitted with more than 2GB of physical memory to report the correct amount of memory, even though the kernel will only use the lower 2GB. Prompted by a dmesg@ submission by Greg Marsh, owner of a 3.5GB G5 help and tweaks kettenis@, ok mpi@
2014-02-08don't allow unsigned packages by default.Marc Espie
as kettenis@ says "test it now", always possible to revert if we don't want it for the release.
2014-02-08also limit the number of currently opened packages locally: each uncompressMarc Espie
gobbles memory. (this was probably already an issue with external gunzip, but not THAT visible because of separate processes).
2014-02-08Initializing the time from an uninitialized variable isn't a very good idea.Mark Kettenis
While there, afnsify the inittodr() prototype.
2014-02-08Don't unmask interrupts that should be left blocked because we're at aMark Kettenis
higher spl. Fixes booting my n1200 with a usb disk plugged in.
2014-02-08fudge verbose state so that makewhatis is only verbose if pkg_add/delete -vvMarc Espie
or more.
2014-02-08Add option MIPS_PTE64 to IP27/IP35 kernels, and no longer ignore memoryMiod Vallat
beyond 16GB physical.
2014-02-08Allow page table entries to be either 32 bits wide (the existing state of theMiod Vallat
code), or 64 bits wide, if option MIPS_PTE64. 64-bit ptes allow for physical memory beyond 16GB (34 bits) to be addressable by the pmap code.
2014-02-08document -DunsignedMarc Espie
2014-02-08only copy wmesg if wchan, after chatting with guenther and millert.Ted Unangst
(and no need to copy empty string, it's already been zero filled.)
2014-02-07Initializing the time from an uninitialized variable isn't a very good idea.Mark Kettenis
While there, fix some indentation and adjust things for 64-bit time_t.
2014-02-07make sure a free bpf exists before dhclient is run, and remove someAlexander Hall
prior workarounds until we have clonable bpfs ok rpe@ krw@
2014-02-07Fix remote printing; broken in rev 1.50. OK guenther@ stsp@Todd C. Miller
2014-02-07Make carp send IPv6 neighbour advertisements with the 'router' flagStefan Sperling
if we're acting as router. Otherwise clients lose the default route learned from router advertisements during carp failover. Patch by Ole Myhre; ok bluhm@
2014-02-07Update to sendmail 8.14.8. This touches a lot of files due to theTodd C. Miller
Sendmail, Inc -> Proofpoint name change. See RELEASE_NOTES for actual changes.
2014-02-07-Wold-style-declaration is not supported by gcc 3.Miod Vallat
2014-02-07Create -L leases files with the same 0000 permissions as regularKenneth R Westerback
leases.IF files. Inconsistency pointed out by Jiri B.
2014-02-07When using SM_PATH, fetch the SHA256 file only once since we will not beAntoine Jacoutot
using multiple repos. ok rpe@
2014-02-07Log failures to fchmod() or fchown() the file written inKenneth R Westerback
priv_write_file().
2001-09-11sendmail 8.12.0 with $Id tags converted to $SendmailTodd C. Miller
2014-02-07reclaim: we don't need to keep tracking temporary files/directories weMarc Espie
removed.
2014-02-07add qla; ok dlgJason McIntyre
2014-02-07Nuke unused #define CLIENT_PATH. A remnant of dhclient-script.Kenneth R Westerback
2014-02-07historyDavid Gwynne
2014-02-07don't store full terminal, we just need a few control sequencesMarc Espie
2014-02-07Borrow the sparc installboot a.out nlist code, for /usr/mdec/bootxx is stillMiod Vallat
built as an a.out binary.
2014-02-07drivers need manpagesDavid Gwynne
2014-02-07Fix inet6_opt_init() to only check extlen when extbuff is not NULLMartin Pieuchot
as per RFC 3542, from DragonFlyBSD via Eitan Adler. ok bluhm@
2014-02-07remove some logging that makes ssh debugging output very verbose;Damien Miller
ok markus
2014-02-06http 404 is definitive, so treat it like 550 ftp.Marc Espie
2014-02-06in ssh_create_socket(), only do the getaddrinfo for BindAddress whenDamien Miller
BindAddress is actually specified. Fixes regression in 6.5 for UsePrivilegedPort=yes; patch from Corinna Vinschen
2014-02-06missing define for qla2100 supportJonathan Matthew
2014-02-06Oops, pax -x and cpio -H need to set frmtPhilip Guenther
Add 'break' accidentally removed by previous commit and future-proof format listing by cpio -H problem noted by naddy@ ok halex@ naddy@
2014-02-06styleMarc Espie
2014-02-06don't store full directory objects if they're not "special", just knowingMarc Espie
there's a directory that should stay around is enough. shaves on the number of shared directories for shared items quite a lot.
2014-02-06reference ubcmtp(4)joshua stein
2014-02-06revert some HID changes that broke on older modelsjoshua stein
discussed with mpi@ and jung@
2014-02-06add some more bufbackoff calls. uvm_wait optimistically (?), uvm_wait_plaTed Unangst
after analysis and testing. when flushing a large mmapped file, we can eat up all the reserve bufs, but there's a good chance there will be more clean ones available. ok beck kettenis
2014-02-06parenthesis to make the math right. ok beck kettenisTed Unangst
2014-02-06syncMiod Vallat
2014-02-06Almost-working QLA2100 support. This appears to be the best I can do forJonathan Matthew
now. The one 2100 card I have doesn't work at all with isp(4). I can get it to see devices on the fabric, but it can't log in to them, and it can't see loop devices at all.
2014-02-06Fix an MP race in the fpu context saving code; from NetBSD.Miod Vallat
2014-02-05Don't segfault on IPv6 NFS traffic; found the hard why by matthieu@.Florian Obser
Fix inspired by what upstream is doing. Tested by me and matthieu@. Input^WHand holding and OK guenther@
2014-02-05Allow libfuse to compile with WARNINGS=yes. No functional change.Sylvestre Gallon
ok tedu@
2014-02-05Remove unnecessary stdio.h include.Stefan Sperling
Patch by Jean-Philippe Ouellet ; ok krw@
2014-02-05make pax cope with a stripped down format list, e.g. when compiledAlexander Hall
with -DNOCPIO - ignore empty entries (millert@, halex@) - replace bsort with linear scan (guenther@) ok millert@ guenther@
2014-02-05check return values in libfuse.Sylvestre Gallon
inputs from stsp@. ok stsp@.