summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2005-10-21Remove unused global adapter linked list.Brad Smith
From FreeBSD
2005-10-21In em_process_receive_interrupts() cycle check IFF_RUNNING flag.Brad Smith
2005-10-20Instead of keeping track of the index into the receive ring use the alreadyBrad Smith
implemented "sis_nextdesc" pointer to keep a pointer instead. From phk FreeBSD Tested by a few developers
2005-10-20fix command and write rid handling and fix some fmt strings used on debug.Federico G. Schwindt
should avoid several errors when using wicontrol(8) and make scanning work at some extent. tested by jsg, joris and todd at some extent.
2005-10-20defintion -> definition;Jason McIntyre
2005-10-20revert to revision 1.16 for now, 1.17 and 1.18 broke audioJoris Vink
on a lot of macppc machines that use this driver; ok drahn@
2005-10-20cannot manipulate hid0 register yet in 64 bit mode (because we are runningTheo de Raadt
in 32 bit mode, and ibm moves the bits....) ok drahn
2005-10-20fix a typo in a Via PCI product id.Brad Smith
2005-10-20fix addr range in the commentsMichael Shalayeff
2005-10-20Enable IPMI on amd64.Marco Peereboom
2005-10-20fix a long-standing bug in "preserving" bios mapped irqs.Michael Shalayeff
in case bios did not provide routing info for those they would be falsely routed often to wrong pins. also testing by henning@
2005-10-20add 8237 support and repair 8231 that was confused very bad; lots of testing ↵Michael Shalayeff
help by henning@
2005-10-20s/mtrspr/mtsprg in ddblowMark Kettenis
ok drahn@
2005-10-20Don't try to match VIA ide chips as ISA bridges.Alexander Yurchenko
2005-10-20add arrays of initial rf register values.Reyk Floeter
ok jsg@ btw., life would be much easier if chipset vendors would implement a digital rf interface instead of this analog voodoo all the time.
2005-10-20KNF; marco okTheo de Raadt
2005-10-19Fixup case statements to use #define'sJordan Hargrave
suggested by deraadt ok marco@
2005-10-19KNF fixesJordan Hargrave
ok marco@
2005-10-19Oops.. part of ipmi_thread fixesJordan Hargrave
ok marco@
2005-10-19Added readable case names for ipmi device typesJordan Hargrave
ok marco@
2005-10-19Added length test for ipmi_sensor_name stringJordan Hargrave
ok marco@
2005-10-19make this compile with AUDIO_DEBUG; reported in tech@ byFederico G. Schwindt
Gordon Willem Klok (gklok at cogeco dot ca).
2005-10-19Changed poll to use kernel threads instead of in timer contextJordan Hargrave
ok marco@
2005-10-19Added status for chassis intrusion (critical if open)Jordan Hargrave
ok marco@
2005-10-19Changed order of reading sensor vs sensor status, failed sensors had invalidJordan Hargrave
reading ok marco@
2005-10-19Added code to properly read power supply installed/power stateJordan Hargrave
ok marco@
2005-10-19Added SMIC interface codeJordan Hargrave
ok marco@
2005-10-19add support to change the channel from ifconfig; tested by some,Federico G. Schwindt
deraadt@ ok.
2005-10-19regenBrad Smith
2005-10-19Add the DeLorme Earthmate GPS.Brad Smith
From NetBSD
2005-10-19Remove v_vnlock from struct vnode, okay krw@ tedu@Pedro Martelletto
2005-10-19Add smu(4).Mark Kettenis
ok drahn@
2005-10-19Add IPMI to amd64. Keep it disabled for now.Marco Peereboom
Prodded earlier today by deraadt@ ok krw@
2005-10-18Use MI trunc_page() & round_page(). Suggested by miod@ and grange@Marco Peereboom
2005-10-18Document Dell PowerEdge 8450 hackMarco Peereboom
2005-10-18Scan SMBIOS before calling config_attach() to prevent unnecessary kernel print.Marco Peereboom
Written with jordan@ help. ok deraadt@
2005-10-18getnewfsid() was renamed and moved to sys/mount.h long ago; ok pedroJared Yanovich
2005-10-18remove wrong definition since result really belongs to stat (which isFederico G. Schwindt
already there).
2005-10-18Add some missing IDE/SATA interfaces..Brad Smith
- Via VT6421 SATA - ServerWorks HT-1000 IDE - ServerWorks Frodo4/Frodo8 and HT-1000 SATA - NVidia NForce3 250 2nd channel, MCP04 and MCP51 ok grange@
2005-10-18Use PSR_IND rather than recomputing it from PSR_INTERRUPT_DISABLE_BIT;Miod Vallat
spotted by martin.
2005-10-18Put rev 1.56 back in and make sure to include the header soBrad Smith
it actually compiles this time.
2005-10-18revert last commit for now.Brad Smith
2005-10-18Make sure that if_timer does not get reset if there are packetsBrad Smith
still queued for transmission. This should solve the problem of the device stalling on transmissions if some link event prevents transmission. From luigi FreeBSD ok pedro@ hshoexer@
2005-10-17knfTheo de Raadt
2005-10-17remove /bcom5421 from the OF device map table, this is actually a PHY.Brad Smith
ok deraadt@
2005-10-17* Fix SMBIOS Table addressJordan Hargrave
mapped memory instead of ISA_HOLE_VADDR for SMBIOS tables in high memory * Added ipmi_poll variable to control sensor polling * Add Power Supply sensor type * Fixed chassis intrusion reading * Added Block-Transfer interface BT is transport protocol to BMC * Fixed threshold values Bits in Sensor reading did not contain correct values for threshold vioation; must compare reading against actual threshold. * KNF ok: marco@
2005-10-17Performing certain operations on queue.h data structurs producedOtto Moerbeek
funny results. An example is calling LIST_REMOVE on the same element twice. This will not fail, but result in a data structure referencing who knows what. Prevent these accidents by NULLing some fields on remove and replace. This way, either a panic or segfault will be produced on the faulty operation. Tested by many, ok deraadt@
2005-10-17don't say no more if there is no driver for icu; lessen noiseMichael Shalayeff
2005-10-17Rename ncpus to alpha_ncpus so that MI ncpus matches the number ofMiod Vallat
attached processors; deraadt@ ok
2005-10-17Store the usb device names and vendors in more compact structures.Dale Rahn
Originally committed in 2001, backed out in a sync, now back in. saves close to 12k of kernel size. commit deraadt@