summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-07-23match _dl_ syscall prototypes w/ the real syscalls prototypes, including ↵Michael Shalayeff
args and return values; art@ ok
2002-07-23Do not use bcopy() when you mean ovbcopy(); found the hard way by aaron@Miod Vallat
2002-07-23Remove unused files now that powerpc archs use link_elf.hDale Rahn
2002-07-23Allow 'boot hd:,ofwboot bsd' previously it required '/bsd' instead ofDale Rahn
just 'bsd'.
2002-07-23from reading sam@errno.com's code:Jason Wright
- TRDY and RETRY register definitions were backwards - move TRDY/RETRY setup into its own function
2002-07-23check account expiration time as well; from hamajima@nagoya.ydc.co.jp pr2835Peter Valchev
2002-07-23prevent double free in some error conditions; from xs@kittenz.orgNiels Provos
2002-07-23timeout_list/_spec and limit_list/_spec don't return anything -> no %type.Henning Brauer
ok theo
2002-07-23Don't use a magic constantJason Wright
2002-07-23Typos (ok jason@)Ian Darwin
2002-07-23Cardbus/pcmcia support for macppc. parts borrowed from NetBSD, and otherDale Rahn
portions of the tree.
2002-07-23Turn READ/WRITE into function calls (driver was getting too bloated withJason Wright
inline macro's; if hifn wanted to make it possible to write a very efficient driver they would have fixed the bugs in the chips). Also, invalidate the burst write checks when a read is executed.
2002-07-23Use the proper cardbus_conf_read() rather than pci (in a cardbus driver).Dale Rahn
ok fgsch@
2002-07-23only break in ddb if the kernel has been mappedMichael Shalayeff
2002-07-23print page protection w/ bits in dump_tableMichael Shalayeff
2002-07-23utmp_len is unsigned; display error consistent with other options.Kevin Steves
ok markus@
2002-07-23Now that sparc64 implements reverse splassert, it make senseArtur Grabowski
to add splassert(IPL_NONE) in a few strategic places.
2002-07-23Fix yet another braino.Artur Grabowski
Just because the pool allocates from intrsafe memory doesn't mean that the pool has to be protected by splvm. We can have an intrsafe pools at splbio or splsoftnet. pool_page_alloc and pool_page_free must du their own splvm protection.
2002-07-23Please tell me what crack I've been smoking when I did that.Artur Grabowski
When trying the drain hook just in pool_allocator_alloc, don't leak memory when the drain succeeds and don't avoid draining other pools if this pool doesn't have a drain hook.
2002-07-23Define __HAVE_SPLASSERT on architectures that support splassert.Artur Grabowski
2002-07-23IPL_NONE, not IPL_0Artur Grabowski
2002-07-23Define IPL_NONEArtur Grabowski
2002-07-23When handling an interrupt record the interrupt level we're handlingArtur Grabowski
in a global variable (not mp safe!). Use that value for the reverse splassert check.
2002-07-23Add pshufw insn so ogle compiles without the need for a recent gas.Federico G. Schwindt
2002-07-23Partial update, only track the name changes and mirror removals yet.Miod Vallat
Reminded by jufi@
2002-07-22check argc after getopt(), otherwise we may go ahead even if we only gotFederico G. Schwindt
flags; from Jean-Francois Brousseau <krapht@secureops.com>.
2002-07-22ansifyPeter Valchev
2002-07-22Remove some dead ifdefs to make the code more readable.Artur Grabowski
2002-07-22don't try to recheck the pathes to server.crt and .key once chrootedHenning Brauer
makes graceful restarts work when running SSL.
2002-07-22don't attempt to chroot if we are already chrooted ;-)Henning Brauer
(happens on SIGHUP aka apachectl restart)
2002-07-22sync ICONFILES with realityHenning Brauer
2002-07-22uninitialized variable; pointed out by sam@errno.comJason Wright
2002-07-22u_int here; ok provos@Kevin Steves
2002-07-22Document the REPORT and REPLACE ioctls.Wilbern Cobb
ok provos@.
2002-07-22we document '-F' as introduced with apache 1.3.26 in httpd(8).Henning Brauer
apache people don't.
2002-07-22fallback to _PATH_STDPATH on setusercontext+LOGIN_SETPATH errors;Markus Friedl
suggeted by millert@; ok deraadt@
2002-07-22Fix pnozz(4) references.Miod Vallat
2002-07-22auth_close() was not actually getting called in auth_errx?() (notTodd C. Miller
that it really makes much of a difference). Call vwarnx?() instead of verrx?() and then do the exit inline after auth_close(). That's what I get for doing a cut & paste from err.c...
2002-07-22add seqnr to message from kernel, userland needs to quote correct seqnr.Niels Provos
avoids problems where tsleep has been interrupted by a signal.
2002-07-22KNF and unbreak PT_GETREGSArtur Grabowski
2002-07-22Map the core file with MAP_PRIVATE.Artur Grabowski
Some other random cleanups.
2002-07-22Use process_getregs everywhere.Artur Grabowski
2002-07-22knfArtur Grabowski
2002-07-22Support for reading from core files.Artur Grabowski
From Jean-Francois Brousseau <krapht@secureops.com>
2002-07-22Undo a cvs botch in the last commit that reverted a few lines.Kenneth R Westerback
2002-07-21syncTheo de Raadt
2002-07-21Map stack pages without VM_PROT_EXECUTE. Notice that right now thisArtur Grabowski
doesn't do anything since no pmap implements exec protection yet.
2002-07-21fix route-to alsoTheo de Raadt
2002-07-21Flip on the LEDs on a 7811 when each of the rings is active (and turn themJason Wright
off when not), I should really get a life.
2002-07-21link evtimer_* now, not timeout_* since it was changed for man pages.Eric Jackson