summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-07-14syncTheo de Raadt
2004-07-13indent an example;Jason McIntyre
2004-07-13.Xr tcpdrop 8 ,Jason McIntyre
2004-07-13bad macro here too: .I -> .ArJason McIntyre
2004-07-13replace bad macro;Jason McIntyre
2004-07-13switch sparc to setjmp/longjmp exceptions as DWARF2 handling is not present.Peter Valchev
fixes C++ exceptions. this relies on an earlier libstdc++ bump
2004-07-13slightly reword myself;Jason McIntyre
2004-07-13spelling; dlgTheo de Raadt
2004-07-13make bpf0. do NOT put this into ramdisk target (yes, that is how full theTheo de Raadt
others are..)
2004-07-13* make the email address consistentJean-Francois Brousseau
2004-07-13* initial import from the cvs-tools moduleJean-Francois Brousseau
2004-07-13bump these again, depending on gcc2/gcc3 a different library is installedDale Rahn
and they have different major numbers to prevent collision.
2004-07-13Simplify some things now that we only have login.conf to worry aboutTodd C. Miller
and fix two bugs introduced in the last commit (a duplicate free and reversed logic for the default cipher types).
2004-07-13passwd.conf has been deprecated since login.conf was imported.Todd C. Miller
Today it finally dies. Based on a diff from Gabriel Kihlman.
2004-07-13Remove iso_addr() and iso_ntoa() as part of the netiso removal.Todd C. Miller
From henning@, OK deraadt@
2004-07-13regen after stat/mode_t/nlink_t changesTodd C. Miller
2004-07-13Change mode_t and nlink_t from 16bit to 32bit. This allows us toTodd C. Miller
use mode_t in syscalls.master and to use mode_t in more places in the kernel. It also makes lint much more useful on kernel code. I've also added a placeholder for st_birthtime to make a UFS2 import easier at some future date. Requested by and OK deraadt@
2004-07-13errno changes, lib major version bumps, and general flag dayMarco S Hyman
To build you must: cd /usr/src && make obj && make includes cd lib/libc && make depend && make && NOMAN=1 sudo make install cd /usr/src && make build
2004-07-13Don't assert that P_INMEM is set in p_flag. The assert is only almostArtur Grabowski
correct because P_INMEM is for various reasons removed before cpu_swapout is called and cpu_swapout in turn calls npxsave_proc. deraadt@ ok
2004-07-13tweaks; ok henning@Jason McIntyre
2004-07-13tweaks; ok henning@Jason McIntyre
2004-07-13Respond to client queries with better server statistics. We now outputAlexander Guy
a close-to-reality stratum, a real reference time, and a leap indicator that will indicate if the local clock isn't synchronized. This also means that until the server feels it's synchronized, it will tell the clients it isn't. This is normal, and correct. ok henning@
2004-07-13more coherent intrs countingMichael Shalayeff
2004-07-13count soft intsMichael Shalayeff
2004-07-13lots of cleanup and revising:Jared Yanovich
- typo fixes, rewording, punctuation - better use of and more format macros - section reorganization in some places - list directives with their arguments - add some cross-refs ok jmc, henning, otto
2004-07-13fix some typosJared Yanovich
ok henning otto
2004-07-13ignore obviously malformed queries; ok henning@Alexander Guy
2004-07-13A better fix for the m68k optimize_reg_copy_3() problem.Miod Vallat
The problem really only arises when optimize_reg_copy_3() attempts to merge a load which fits in a register and a load which does not fit - in the m68k case, merging an int32_t foo and (int64_t)foo two lines later. In this case, and only if the backend provides its own expansion of the extendsidi2 insn (usually for performance and code size reasons) as embedded assembly statements but not rtl operations, then gcc at this point will ``fail to realize'' that when sign-extending (or zero-extending) the value of rN into rN and r(N+1), the value of rN is not preserved on big-endian architectures, and the optimization will produce bad code. Of all the OpenBSD-supported platforms, arm and m68k are the only affected; but further optimizations in gcc3 (on arm) apparently neuter this bug, which I have been unable to reproduce in an arm build with gcc3. This commit works around the problem by preventing expansions larger than the width of a general register, on m68k only. Other platforms are not affected.
2004-07-13#define __HAVE_PMAP_DIRECT and use it. requested by artTed Unangst
2004-07-13stuff from me and claudio@:Jason McIntyre
- remove references to stuff we don't support (libalias, libradius, etc.) - consistent quoting - macro fixes - grammar, punctuation, etc. - use .Ic for commands to reduce amount of quoting more work needed here. this page is just too much...
2004-07-13liek bgpd, use a socketpair(2) instead of a pipe(2)Henning Brauer
2004-07-13Sync with NetBSD, picking up fixes to correctly reset status bits returningMark Kettenis
the old status bits. ok deraadt@
2004-07-13Remove compiler options workarounds for savectx breakage.Miod Vallat
2004-07-13Do not trash r14 by mistake in __savectx.Miod Vallat
2004-07-13Remove unused argument 'int pn' to PRT_fix_CHS(). The 'int pn'Tom Cosgrove
argument to PRT_parse() then becomes unused, so remove that too. ok henning@, otto@
2004-07-13regenMichael Shalayeff
2004-07-13+madvise,msync,mlock,munlock,mlockall,munlockallMichael Shalayeff
2004-07-13regenMichael Shalayeff
2004-07-13+getdomainnameMichael Shalayeff
2004-07-13at pkg_create time, mark hard links with @link, and symlinks with @symlink,Marc Espie
instead of computing size and md5. okay naddy@, sturm@
2004-07-13Replace _DEV_IC_MPT_NETBSD_H_ with _DEV_IC_MPT_OPENBSD_H_Marco Peereboom
2004-07-12Add detection of IM/IS/IME support in mpt_attach(). This is in preparation ↵Marco Peereboom
to add RAID support.
2004-07-12Fix incorrect macro, .I -> .EmBrad Smith
From: Eric S. Raymond <esr at thyrsus dot com> ok jmc@
2004-07-12point people to milter html docs;Jason McIntyre
suggested by Alexey E. Suslikov; ok millert@
2004-07-12typo, thise -> theseBrad Smith
2004-07-12rearrange config-time printfsTheo de Raadt
2004-07-12merge error; lokiTheo de Raadt
2004-07-12m88k cross-compile goo.Miod Vallat
2004-07-12Add missing newlinesDarren Tucker
2004-07-12Replace errx with equivalent fprintf+exit to make porting easier; ok henning@Darren Tucker