summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-11-20mention the chipset.Brad Smith
2005-11-20- add a datasheet for daca(4)Brad Smith
- add a datasheet for a very similar chipset to onyx(4); From kettenis@
2005-11-20splimp -> splvm. mbuf allocation here.Brad Smith
ok henning@
2005-11-20add "iapp" (port 3517), as used by hostapd(8).Reyk Floeter
the official assignment by the IANA for the IEEE 802.11f Inter Access Point Protocol on port 3517 is 802-11-iapp, we use it as an alias. ok jakob@, deraadt@
2005-11-20#ifdef NO_DIR can go too. From Han Boetes.Kjell Wooding
2005-11-20Rename basename() to lbasename() to avoid conflict with basename(3).Chad Loder
2005-11-20Fix typos in commentsChad Loder
2005-11-20Cut powerpc over to inf-ptrace.c, making fork following work.Mark Kettenis
2005-11-20spacingTheo de Raadt
2005-11-20KNF. OK kjell, millertChad Loder
2005-11-20Allocate space for profiling data using mmap instead of sbrk.Todd C. Miller
Tested by myself and pedro@
2005-11-20much to my horror, it turns out that `\-' and `\(en' are not equivalent,Jason McIntyre
and neither are `--' and `\(em'. this diff reworks the hyphens and dashes section, and is from ray lai; i doubt anyone would believe how many emails we had to exchange to sort this small issue out. jaredy@ ok'd it in a slightly different form;
2005-11-20wording;Jason McIntyre
ok jsg@
2005-11-20add support for multiple hostap (wireless) interfaces.Reyk Floeter
for example, if you run one hostapd with two ath(4) devices. you have to specify "set hostap interface { ath0, ath1 }" in hostapd.conf(5). man page bits by jmc@, tested by others
2005-11-20sort SEE ALSO;Jason McIntyre
2005-11-20sort SEE ALSO;Jason McIntyre
2005-11-20sort SEE ALSO;Jason McIntyre
2005-11-20drop trailing whitespace;Jason McIntyre
2005-11-20.Sh SECURITY -> .Sh CAVEATSJason McIntyre
ok camield@
2005-11-20sync this w/ the header file;Jason McIntyre
ok otto@
2005-11-20GRF5101 based hardware should work now.Jonathan Gray
2005-11-20Add support for GCT GRF5101 RF transceiver based hardware. Magic numbersJonathan Gray
partially derived from rtl8180-sa2400 Linux driver. GCT refuse to release documentation so this is more than likely not as optimal as it could be.
2005-11-20rcs_statfile() improvements; initial work from joris + some bits from me;Xavier Santolaria
niallo ok
2005-11-20use the right name here.Brad Smith
2005-11-20Xr iic/maciic(4) and fix up ki2c(4) a bit.Brad Smith
2005-11-20remove Xr to snapper.Brad Smith
2005-11-20Xr a bunch of devices.Brad Smith
2005-11-20mention pi2c.Brad Smith
2005-11-20add pi2c.Brad Smith
2005-11-20add a basic pi2c(4) page.Brad Smith
2005-11-20Don't bind help to a null functionKjell Wooding
2005-11-20Kill the NO_BACKUP #ifdefKjell Wooding
2005-11-20mention pi2c(4).Brad Smith
2005-11-20fix dmesg printing so the adapter info has a proper dmesg entryBrad Smith
before.. aic7902: U320 Wide Channel A, SCSI Id=7, PCI-X 67-100Mhz, 512 SCBs after.. ahd0: aic7902, U320 Wide Channel A, SCSI Id=7, PCI-X 67-100Mhz, 512 SCBs ok krw@ marco@
2005-11-20GOSLING screen update always on, so #ifdef can go; ok kjellTheo de Raadt
2005-11-20Reorder dma stuff so that it makes sense.Marco Peereboom
ok dlg@ krw@
2005-11-20toast NO_DIRED #ifdef; ok kjellTheo de Raadt
2005-11-20don't say datasheet yet, but at least mention product info.Brad Smith
2005-11-20add the datasheet URL.Brad Smith
2005-11-20brk() and sbrk() should use void *, not char *. Note that sbrk()Todd C. Miller
should take intptr_t, not int, but we don't presently have intptr_t available from unistd.h. OK marco@
2005-11-20treat the BCM5715 like the 5714Brad Smith
2005-11-20regenBrad Smith
2005-11-20add BCM5715Brad Smith
2005-11-19update DIAGNOSTICS messages a bit.Brad Smith
2005-11-19Correct a performance bug from Bill Paul's original FreeBSD bge(4) driver:Brad Smith
Each call to the FreeBSD bge_start() routine the transmit producer pointer index from the chip mailbox register BGE_MBX_TX_HOST_PROD0_LO. The local copy of that value is then updated by bge_encap() as bge_encap() encapsulates packets in the Tx ring. If bge_encap() succeds in encpuslating one or more packets, bge_start() tells the chip to start sending the newly-encinitiates writes the new value back to the chip mailbox register. However, comparison of the Linux drivers (Broadcom-supplied and open-source tg3.c) and to the OpenSolaris driver confirms that register BGE_MBX_TX_HOST_PROD0_LO is write-only to software. Thus, we can just keep a copy in the softc, and eliminate the (expensive) PCI register write on each call to bge_start(). From jonathan NetBSD tested by krw@, sturm@ and I on a few different bge NICs.
2005-11-19No longer need volatile since longjmp has been removed.Todd C. Miller
Ironically silences a gcc warning.
2005-11-19a whole lot of spaces to tabs, KNF and some other cleaning.Brad Smith
2005-11-19Remove DO_METAKEY here, too. Noted by Han Boetes.Kjell Wooding
2005-11-19ANSI protos and some KNF.Brad Smith
2005-11-19adb devices print a string identifying the device.Brad Smith