summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2002-04-28Deal with xd commented out in files.mvme68k - this went unnoticed until youMiod Vallat
purge your kernel compile directory...
2002-04-28More dead beef here.Miod Vallat
2002-04-27Enable -Wall and friends for kernel compilations.Miod Vallat
2002-04-27Jumbo commit to fix all compilation warnings on mvme68k (add prototypes,Miod Vallat
add casts, fix a few errors and typos in the process, etc)
2002-04-2732 bit constraint is wrong, we thinkTheo de Raadt
2002-04-27Comment biodone as "must be called at splbio".Artur Grabowski
It calls vwakeup and vwakeup is marked as "must be at splbio".
2002-04-27In proc_trampoline, lower the spl level to 0. This way kernel threads that areArtur Grabowski
forked out in main() will run at a decent spl level and not at splhigh. From NetBSD. deraadt@ ok.
2002-04-27Lots of cleanup to catch up with other m68k-based ports and modern code,Miod Vallat
including: - use netisr_dispatch - extract an allocsys() function from cpu_startup() - updated cachectl() - a few fixes in trap() and more...
2002-04-26Implement shared key support for hostap mode; from Thomas SkiboTodd C. Miller
Also do a little KNF while I'm in here.
2002-04-26Add some bounds checking of wi_len on copyin(). From NetBSD via FreeBSD.Todd C. Miller
2002-04-26Don't set WI_RID_OWN_SSID based on wi_net_name if wi_net_name isTodd C. Miller
not actually set. Closed PR #2569.
2002-04-26add WSDISPLAY_COMPAT_RAWKBD for XFree86 servers.Matthieu Herrb
XXX this should be factored out later for all arches using wscons ok miod@, deraadt@
2002-04-26Add support for the WSDISPLAYIO_LINEBYTES ioctl and theMatthieu Herrb
WSDISPLAYIO_MODE_DUMBFB mode (mode where mmapping /dev/ttyC0 maps the framebuffer only) This makes the XF4 wsfb driver work on the TGA cards. Ok miod@, deraadt@
2002-04-26newer gas is picky about misplaced .loc directives; comment'em out for now.Federico G. Schwindt
tested by miod, deraadt ok
2002-04-26We use wi_authtype, not wi_authmode to store the auth type (open systemTodd C. Miller
or shared key).
2002-04-26build release bsd.scsi3 from regular bsd file, by using config -e toTheo de Raadt
clone sd0 out of sd*. my idea, initial hack by miod, my makefile hackery
2002-04-26be more terse with outputNathan Binkert
2002-04-26Only call bpf_mtap if we have bpf in the kernelNathan Binkert
2002-04-26a little grammarMichael Shalayeff
2002-04-26debug stuff inside #ifdefTheo de Raadt
2002-04-26properly allocate dmable memory for buffers (no malloc); drahn@ ok and testingMichael Shalayeff
2002-04-26Fix spelling in comment and some whitespace.Artur Grabowski
2002-04-26minor tweaksTheo de Raadt
2002-04-26missed one; deraadtJason Wright
2002-04-261024 bit maxJason Wright
2002-04-26Don't try to destroy a dmamap if the map was never createdNathan Binkert
This prevents a panic from occuring if the attach fails before the dmamap is created
2002-04-26disable cryptodevallowsoft again; constrain key bit sizes to % 32cryptodev.cTheo de Raadt
2002-04-26register as supporting modular exponentiationJason Wright
still contains much debugging code and isn't quite done, but its a start
2002-04-26syncNathan Binkert
2002-04-26remove duplicateNathan Binkert
2002-04-26Don't prevent a media status updates just because the interface isn't up.Nathan Binkert
ok jason
2002-04-26Add missing unlock. Ok mickeyNathan Binkert
2002-04-25Harmonize some bootstrap procedures with hp300, and move some variablesMiod Vallat
from text to data section.
2002-04-25Use more symbolic constants rather than magic values...Miod Vallat
2002-04-25Factorize more common m68k definitions.Miod Vallat
2002-04-25<m68k/cpu.h> should be included when this <machine/cpu.h> is included fromMiod Vallat
userland, for example from libkvm; found the hard way be deraadt@
2002-04-25unfudge size_t vs. unsigned int parameters.Marc Espie
2002-04-25soundforte radio driver, from Vladimir Popov <jumbo@narod.ru>Michael Shalayeff
2002-04-25do not map memory for malloc w/ execute perms.Michael Shalayeff
this prevents i-cache preload on some archs, but does not hurt on others anyway. art looked all over all the pmaps, miod and mickey tested it on all possible archs, deraadt made a lesson out of it for the rest of the folks.
2002-04-25Cast and display memory sizes as long integers, to avoid displayingMiod Vallat
negative amounts of memory on >= 2GB machines.
2002-04-24kernel API does not need the userland addresses, make them go awayTheo de Raadt
2002-04-24be much more picky about which RCC products are multi-bridgesTheo de Raadt
2002-04-24RAMDISK configurations for mac68k.Miod Vallat
2002-04-24revert, sys/param.h will need fixing first.Marc Espie
2002-04-24Make this not directly usable from userland.Marc Espie
ok millert@
2002-04-24Introduce a new file, machine/internal_types.h, to hold that specific archMarc Espie
type characteristics. internal_types.h will contain only settings invisible from standard C, e.g., in the __* or _[A-Z]* namespace, and be reused by files like limits.h. This allows us to shorten machine/limits.h greatly, as all the common defines are now in sys/limits.h, plus a small stub in internal_types.h. Tested on all arches as far as I know. Approved after discussion with art, millert, deraadt, and others.
2002-04-24whoops, missed two fields in modexp structure (kinda important ones =)Jason Wright
2002-04-24Add dynamic (in-kernel) interface name -> address translation. Instead ofDaniel Hartmeier
using just the interface name instead of an address and reloading the rule set whenever the interface changes its address, the interface name can be put in parentheses, and the kernel will keep track of changes and update rules. There is no additional cost for evaluating rules (per packet), the cost occurs when an interface changes address (and the rules are traversed and updated where necessary).
2002-04-24Initialize if_addrhooks in if_attachhead() like in if_attach(), eitherDaniel Hartmeier
one may be called.
2002-04-24Update IPsec-related comments.Angelos D. Keromytis