Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2003-10-07 | better guess for ncyls. allows chuck yerkes to make small file systems again. | 1 | -4/+4 | ||
2003-10-07 | sync | 2 | -4/+4 | ||
2003-10-07 | typo in previous commit, sigh | 1 | -2/+2 | ||
2003-10-07 | missing free(). Andrey Matveev via deraadt@. ok deraadt@ | 1 | -2/+3 | ||
2003-10-07 | oopsie. | 1 | -2/+2 | ||
2003-10-07 | check strdup in sample code. from Jared Yanovich <jjy2+@pitt.edu>. | 1 | -2/+5 | ||
ok deraadt@ | |||||
2003-10-07 | FILES /etc/sensorsd.conf | 1 | -1/+7 | ||
spotted by millert@ ok millert@ jmc@ | |||||
2003-10-07 | sync | 2 | -2/+7 | ||
2003-10-07 | VIA VT8237 SATA; ok deraadt@ | 1 | -1/+2 | ||
2003-10-07 | add support for modifying attribute cache parameters | 2 | -4/+52 | ||
inspired by PR2567, the included diff was wrong tho and not used here manpage from millert@ ok millert@ on code and jmc@ on manpage | |||||
2003-10-07 | - check if result is valid before using it. | 2 | -4/+5 | ||
- correctly set *freePtr, not freePtr. input and ok espie@. | |||||
2003-10-07 | handle ; terminators for strings like other sed programs do. this is | 1 | -13/+30 | ||
apparently an extension, but without it you cannot express longer labelled sed scripts as one-liners. noted by seb@todesplanet.de apr 2002. also noted by cerille lefevre a bit later. fixed by otto and myself, tested on tree builds to be careful | |||||
2003-10-07 | sync | 15 | -0/+19 | ||
2003-10-07 | check strdup, from jared yanovich. fix realloc while i'm here. | 1 | -7/+12 | ||
ok deraadt@ henning@ millert@ | |||||
2003-10-07 | use PCI_PMCSR instead of some magic value. | 4 | -10/+10 | ||
ok krw@ henning@ | |||||
2003-10-07 | remove extra \n | 1 | -3/+1 | ||
2003-10-07 | Do not forget to initialise the version member of the softc, and bring | 1 | -10/+11 | ||
yet another set of reliability fixes from FreeBSD; PR #3461 | |||||
2003-10-07 | filename needs to be quoted... | 1 | -2/+2 | ||
ok mcbride@ jmc@ | |||||
2003-10-07 | use crypto/arc4; test, debug, ok millert@; ok fgsch@ | 2 | -57/+24 | ||
2003-10-07 | arc4 support; ok millert@, fgsch@ | 2 | -0/+86 | ||
2003-10-07 | more sftp quoting regress tests; ok markus | 1 | -1/+15 | ||
2003-10-07 | sftp quoting fix from admorten AT umich.edu; ok markus@ | 1 | -1/+2 | ||
2003-10-07 | Test SSH2 banner. ok markus@ | 2 | -2/+34 | ||
2003-10-07 | Don't use logit for banner, since it truncates to MSGBUFSIZ; bz #668 & #707. | 1 | -2/+3 | ||
ok markus@ | |||||
2003-10-07 | toplev.c, flags.h: add -fstack-protector-all option to generate protection instruments for every functions. | 2 | -2/+6 | ||
ok pvalchev@ | |||||
2003-10-07 | flag_stack_protection enables to genereate protecting instruments for every functions. | 1 | -2/+11 | ||
ok pvalchev@ | |||||
2003-10-07 | rtl_epilogue: fix pp warning message trouble at -Wmissing-noreturn. | 1 | -1/+12 | ||
ok pvalchev@ | |||||
2003-10-07 | copy_args_for_protection: fix the problem that move_arg_location may corrupt the contents of DECL_RTL (parms). | 1 | -0/+4 | ||
ok pvalchev@ | |||||
2003-10-06 | munmap() the correct size; adapted from PR #3462 | 1 | -10/+12 | ||
ok matthieu@ | |||||
2003-10-06 | finally remove the sample lines for httpd, causes problems as soon as | 1 | -11/+1 | ||
3rd party, chroot-unaware modules are loaded, if not sooner ok millert@ | |||||
2003-10-06 | .Xr sensorsd 8 | 3 | -3/+6 | ||
ok grange@ jmc@ | |||||
2003-10-06 | connect sensorsd to the build | 1 | -2/+2 | ||
ok deraadt@ | |||||
2003-10-06 | ANSIfication; most from Patrick Latifi | 1 | -72/+39 | ||
OK deraadt@ | |||||
2003-10-06 | more pci_flags, unused for now; from netbsd. | 1 | -1/+5 | ||
ok deraadt@ henning@ krw@ | |||||
2003-10-06 | Implement a real xfs_devpoll() and don't rely on xfs_realselect(). | 1 | -5/+14 | ||
Tested by beck@ | |||||
2003-10-06 | power management status reg. definition; from netbsd. | 1 | -1/+2 | ||
ok deraadt@ henning@ krw@. | |||||
2003-10-06 | Correctly handle sparse mappings in pmap_changebit() and pmap_testbit(). | 1 | -12/+17 | ||
2003-10-06 | This is one of these eerie moments when you realize that a significant part | 1 | -0/+2 | ||
of your beliefs are wrong. In this case, trust in gcc. When computing the address of a field in a structure on stack, and: - the offset of the structure relative to the stack pointer and - the offset of the field relative to the structure have no _bits_ in common (for example, accessing field at structure(8) with the structure at sp(64)), triggers a gcc optimization in the following improvement: (plus (plus (frame_pointer offset_for_structure) offset_for_field)) changing into (plus (frame_pointer direct_offset_for_field)) In the aforementioned "no bits in common" case, gcc will use (or (plus frame_pointer offset_for_structure) offset_for_field) which is not necessarily correct, depending on the value of the frame pointer... Checking generated assembly code for a kernel compilation pointed out that ALL architectures were affected by this bug (some, such as m88k, alpha and sparc64, being much more affected than others, such as vax and m68k). Our first move was to backport a fix for this found in the gcc 3.x branch, however it relies upon several microbugfixes scattered around, and produced a misbehaving kernel on one particular machine. So what goes in with this commit is just a conservative fix which disables this particular "bitwise or is fun" optimization. Problem discovery and analysis by yours truly. Fix by etoh@ and I. Tested on all supported architectures by various people, including deraadt@, henning@, mickey@, naddy@ and I. | |||||
2003-10-06 | better output on error; ok henning@ | 1 | -3/+3 | ||
2003-10-06 | .Xr it 4 | 1 | -1/+2 | ||
PR3512, From: zejames@greyhats.org | |||||
2003-10-06 | remove ftp.calyx.nl and mirrors.serveftp.org from here as well | 1 | -3/+1 | ||
2003-10-06 | make lge(4) compile, from tedu@ | 1 | -2/+2 | ||
ok jason@ nate@ | |||||
2003-10-06 | More vm_offset_t removal I forgot to check in; spotted by deraadt@ | 2 | -20/+21 | ||
2003-10-06 | Update to tzcode2003c from elsie.nci.nih.gov | 7 | -73/+124 | ||
Fixes a pasto and implements better int oflow checking (doesn't rely on unspecified behavior). | |||||
2003-10-05 | Update to tzcode2003c from elsie.nci.nih.gov | 9 | -217/+339 | ||
2003-10-05 | Bang head against wall, unbreak ddb, do not collect $2000, and go to sleep. | 1 | -3/+3 | ||
2003-10-05 | Stop the chip from stripping VLAN headers (the driver | 1 | -2/+5 | ||
ignores them) and tell the rest of the stack that "em" support VLAN frames. The "em" driver should now work with VLAN(4) pseudo-devs (and it should no longer be silently stripping VLAN headers when bridging). prodding by Attila Nagy ok jason@ | |||||
2003-10-05 | Oops, commited from the wrong tree | 1 | -2/+1 | ||
2003-10-05 | More cmmu routines cleanup: | 5 | -1307/+869 | ||
- remove unused routines (which were mostly here for debugging anyway) - do not include <machine/m88*.h> from <machine/cmmu.h> but rather only from the modules which need them - try to simplify the MVME187 codepath in the 8820x code, whenever possible | |||||
2003-10-05 | Do not use empty No_SSBR and No_Precheck macros, but rather pass empty | 1 | -84/+81 | ||
arguments to PREP*() macros. Slightly reorganize code in badaddr() - also do not make some internal labels unnecessarily visible from outside code. |