summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2008-05-22Quick hack to make non-MULTIPROCESSOR kernels work by restrictingMark Kettenis
interrupt vectors to 11 bits.
2008-05-22zap useless comment block with no content.Jasper Lievisse Adriaanse
ok krw@
2008-05-22Restrict interrupt vectors to 11 bits. Needed to make sun4us work.Mark Kettenis
2008-05-22use PR_ZERO instead of calling bzero directlyThordur I. Bjornsson
after pool_get(); ok beck@
2008-05-22ANSI function definitions.Brad Smith
ok dlg@
2008-05-22syncTheo de Raadt
2008-05-22simplify (less bytes in media)Theo de Raadt
2008-05-22never schedule a timer for a negative time, if in the past schedule short delay.Dale Rahn
please commit deraadt@
2008-05-22More timeout(9) usage cleaned up.Michael Knudsen
ok claudio
2008-05-22- ises(4) was removed some time ago, zap it here too.Jasper Lievisse Adriaanse
ok krw@
2008-05-22Use LIST_FOREACH() instead of handrolling.Thordur I. Bjornsson
From: Pierre Riteau pierre.riteau_att_gmail.com OK miod@
2008-05-22kill 2 bogus ARGUSED and use the LIST_FOREACH() macroThordur I. Bjornsson
instead of handrolling... ok miod@
2008-05-22Remove unnecessary receive filter call from the attach hook. This isBrad Smith
already dealt with via txp_init(). ok dlg@
2008-05-22Add the MCP77, 79 and 7B SMBus controller ids.Brad Smith
ok dlg@
2008-05-22Read the MII_ANAR register and get the common denominator ability.Brad Smith
From FreeBSD ok dlg@
2008-05-22Remove the "loaded firmware" message from dmesg. Only print somethingBrad Smith
if there was an error. ok dlg@
2008-05-22regenJonathan Gray
2008-05-22Add a bunch of devices from submitted dmesgs.Jonathan Gray
2008-05-21Fujitsu PRIMEPOWER250/450 secondary LAN is a BCM5703C in disguise.Mark Kettenis
2008-05-21regenMark Kettenis
2008-05-21Add Fujitsu PRIMEPOWER250/450 secundary LAN.Mark Kettenis
2008-05-21Only cancel (timeout_del()) the timeout if we're not going to delay itMichael Knudsen
(timeout_add()) anyway. ok brad claudio
2008-05-21Just clear the timeout since timeout_del() can cope withMichael Knudsen
unscheduled/already triggered timeouts. ok brad claudio
2008-05-21Make _PROF_PROLOGUE visible if PROF is defined; will be needed by libcMiod Vallat
shortly.
2008-05-21Remove <machine/elf_abi.h> on platforms which have it. Nothing in the treeMiod Vallat
needs the few MD definitions they (sometimes) provide; only binutils is interested in them, but binutils provide their own include files for that purpose anyway. ok deraadt@ kettenis@
2008-05-21Not all cache operations need to be run from P2, so don't do this unlessMiod Vallat
necessary. Also, let the P2 functions return to P1 addresses, instead of jumping to their own P1 image before returning. This gives a ~15% speedup. From NetBSD, thanks uwe@netbsd for spotting this in the sh4 docs!
2008-05-21ddb expects the kernel longjmp() to only take a single parameter and alwaysMiod Vallat
return 1 since 12+ years, it's about time to fix the offending ports. Reported by Pierre Riteau (firstname.lastname at gmail)
2008-05-21First step towards supporting sun4us machines with Fujitsu's SPARC64-V CPU.Mark Kettenis
2008-05-21regenMiod Vallat
2008-05-21More pccom referencesMiod Vallat
2008-05-21syncTheo de Raadt
2008-05-21intel 5100 chipset; mitjaTheo de Raadt
2008-05-21Switch i386 from pccom to com. Welcomed by many.Mark Kettenis
ok dlg@, jsing@, deraadt@
2008-05-21Print a specific message for non i2c attachments like macppcJonathan Gray
memc, in the situation where Apple cheaps out by having no SPD on integrated RAM.
2008-05-20Add multicast support to lii(4), with suggestions/changes from brad@.Joel Sing
ok brad@ dlg@
2008-05-20Change the OpenBSD/sgi boot loader so that we use libsa loadfile(), ratherJoel Sing
than rolling our own load functions. tested jasper@, feedback and ok miod@
2008-05-20Fix last commit, it is rtrequest1() and not rtrequest(). Lucky me it seemsClaudio Jeker
that the code is ifdef-ed out all the time.
2008-05-20regenBrad Smith
2008-05-20Add the NVIDIA Quadro FX 3500 id.Brad Smith
2008-05-20Remove stray "attach com at isapnp with com_isapnp".Mark Kettenis
ok miod@
2008-05-19Add tsec(4)Mark Kettenis
2008-05-19tsec(4)Mark Kettenis
2008-05-19A driver for the Three Speed Ethernet Controller (TSEC) found on theMark Kettenis
Freescale MPC8349E SoC platform. Still has some bugs, but it's getting there.
2008-05-19Add support for TSEC interrupts.Mark Kettenis
2008-05-19Change all remaining MD uses of MALLOC and FREE into proper malloc() andMiod Vallat
free() calls; prodded by chl@, ok krw@
2008-05-19regenMiod Vallat
2008-05-19Add the Sun extended keys (L keys, volume keys) to the console mode layouts.Miod Vallat
2008-05-19do not leak memory if there is no power source. code is ifdef USB_DEBUG.Federico G. Schwindt
2008-05-19SO_BINDANY for ipv6; ok djm@Markus Friedl
2008-05-19try a few times before giving up while getting the device descriptor. ifFederico G. Schwindt
it fails, reset the port and try again. this seems to fix some devices that would punt with "device problem, disabling port" otherwise. from augustss@netbsd with some change as per discussion with theo. set the address before getting the descriptor. from peterbu at bemac dot com via netbsd kern/24716. tested by many.