Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-06-13 | Switch macppc to the interactive bootloader in stand/boot. | Dale Rahn | |
Much more useable on serial console systems. | |||
2007-06-12 | all disksubr.c did their b_flags manipulation differently (and wrong). | Theo de Raadt | |
correct and unify; ok thib miod | |||
2007-06-12 | add M_CANFAIL to malloc() flags, requested by | Thordur I. Bjornsson | |
marco after I showed him a diff to remove the malloc retun values since they are all called with M_WAITOK. ok marco@ | |||
2007-06-12 | remove some unused externs; | Thordur I. Bjornsson | |
smallish cleanup (move prototypes and externs togather). ok toby@ | |||
2007-06-12 | Remove the definition and use of the device_ptr_t which was a struct device *. | Marc Balmer | |
No binary change. ok mk. | |||
2007-06-12 | Use SATA_SIGNATURE_ATAPI constant instead of a magic number. | Alexander Yurchenko | |
ok dlg@ | |||
2007-06-12 | Bring raidgetdisklabel() into line with all other drivers by passing | Kenneth R Westerback | |
the same parameters and honouring the spoofonly flag. DIOCGPDINFO can thus get the default label using raidgetdisklabel() and spoofonly like everyone else. Tested by fkr@ naddy@ ho@. | |||
2007-06-11 | kill unneeded include; | Thordur I. Bjornsson | |
(stdarg.h, leftover from the vararg's idea). ok tedu@ | |||
2007-06-11 | remove unused structure. | Damien Bergamini | |
2007-06-11 | adds 802.11e EDCA tables for QAPs and non-AP QSTAs. | Damien Bergamini | |
not used yet. ok jsg@ deraadt@ | |||
2007-06-11 | Wait for firmware command WPI_CMD_TXPOWER to complete before sending | Damien Bergamini | |
the WPI_CMD_ADD_NODE command in wpi_config(). Fixes mp kernels. Tested by jasper@, deanna@, fkr@ | |||
2007-06-11 | Remove the usb_proc_ptr type definition, which was really a 'struct proc *' | Marc Balmer | |
only. No binary change. ok mk. | |||
2007-06-11 | inlude powerpc/include/*.h in macppc's make tags target. | Thordur I. Bjornsson | |
ok drahn@ | |||
2007-06-11 | Remove the USB_GET_SC_OPEN macro. There is a double check for sc == NULL in | Marc Balmer | |
ulpt.c, I am aware of that and it will be changed later. No binary change. ok mk. | |||
2007-06-11 | there was code inside #if NPF > 0, but pf.h was not included, so it did | Henning Brauer | |
not get build. the code looks at flags that used to be in mbuf tags, now they are in the mbuf header, so we can check them unconditionally. problem spotted by Daniel Roethlisberger <daniel@roe.ch>, ok ryan markus | |||
2007-06-11 | move definitions for the flags in the mbuf header used by pf to mbuf.h | Henning Brauer | |
since we include the mbuf header parts for pf unconditionally, we should be able to check them unconditionally as well. ok mcbride markus | |||
2007-06-11 | Remove the definition and use of the USB_GET_SC macro, no binary change. | Marc Balmer | |
ok mk. | |||
2007-06-11 | Handle mbuf chains in TX path. Improve debug output. | Marcus Glocker | |
2007-06-11 | More USB cleanup: In usb_port.h, get rid of the sel_klist #define | Michael Knudsen | |
(which was there twice without gcc complaining) and update all uses of it. ok jsg mbalmer | |||
2007-06-11 | remove all FreeBSD/NetBSD specific code because we will | Robert Nagy | |
never use them and the code is much more readable now ok jakemsr@ | |||
2007-06-11 | Remove the definiton and usage of the USB_DO_ATTACH macro. It was a wrapper | Marc Balmer | |
around a single function only and it did not even use all of it's arguments. ok jsg. | |||
2007-06-11 | Remove the definition and usage of the USBGETSOFTC macro, which was really | Marc Balmer | |
only a cast to (void *). ok jsg. | |||
2007-06-11 | usbd_devinfo_alloc() uses M_WAITOK so don't check return value. | Jonathan Gray | |
From Karl Sjödahl <dunceor@gmail.com> | |||
2007-06-10 | Remove spurious blank line at end of file. Spotted by deraadt@. | Kenneth R Westerback | |
2007-06-10 | Get rid of the USBDEVPTRNAME macro. | Marc Balmer | |
No binary change. ok jsg. | |||
2007-06-10 | when we change fields in the label to version 1, fix the checksum (but only | Theo de Raadt | |
if it was ok beforehands) | |||
2007-06-10 | Remove the definition and use of USBDEVUNIT. | Marc Balmer | |
ok jsg. | |||
2007-06-10 | Remove the definition and use of the USBDEVNAME macro. | Marc Balmer | |
(This might look easy, but it was a big diff. Thanks to dlg and especially jsg for looking over it; we found at least four mistakes in the initial diff.) ok jsg. | |||
2007-06-10 | Remove the definition and use of the USBDEV macro. It only created confusion | Marc Balmer | |
and the address of it's argument: USBDEV(sc->sc_dev) yields &sc->sc_dev. No binary changes. ok jsg. | |||
2007-06-10 | Remove definitions and usage of usb_callout and related macros. These macros | Marc Balmer | |
were used as a layer of confusion^Wabstraction around the timeout(9) API. No binary change. ok jsg. | |||
2007-06-10 | Do not turn on debugging in most/all drivers when USB_DEBUG is defined. | Marc Balmer | |
Debugging code must be turned on selectively, e.g. by defining UDCF_DEBUG. idea from and ok jsg. | |||
2007-06-10 | No need for two *LABELSECTOR and *LABELOFFSET defines that mean the | Kenneth R Westerback | |
same thing. Keep LABELSECTOR and LABELOFFSET and nuke ALPHA_LABELSECTOR and ALPHA_LABELOFFSET. Kernel still compiles and boots. Superfluidity pointed out by deraadt@. | |||
2007-06-10 | Add netbt files to common files for "make tags" | Uwe Stuehler | |
2007-06-09 | blocks/sectors != blocks/blocks. Fix calculation of b_cylinder in | Kenneth R Westerback | |
bounds_check_with_label(). Tweak error path to eliminate duplicate code. | |||
2007-06-09 | The differences in the last non-homogeneous bounds_check_with_label() | Kenneth R Westerback | |
routines (alpha, vax) prove to be not worth keeping. Move bounds_check_with_label() into the MI world. Eliminate unreliable and almost certainly useless checks for overwriting a disklabel. After discussion with deraadt@ | |||
2007-06-09 | Enable re* at cardbus?, tested with a D-Link DGE-660TD card. | Marc Balmer | |
ok deraadt. | |||
2007-06-09 | fix wrong argument passing to m_copyback for the log case | Henning Brauer | |
(&ptr instead of ptr). should fix pflog breakage seen by bob | |||
2007-06-09 | kill stupid character difference | Theo de Raadt | |
2007-06-09 | unify DOSPTYP_FAT* code (some architectures missed a filesystem type or two) | Theo de Raadt | |
2007-06-09 | remove a useless comment | Theo de Raadt | |
2007-06-09 | silently whack wrong-sized C partitions | Theo de Raadt | |
2007-06-09 | sizeof(ptr) is no good if you want sizeof(*ptr). icmp/icmpv6. | Henning Brauer | |
2007-06-09 | Silence a debug printf. | Miod Vallat | |
2007-06-09 | This information is redundant. Remove the list of files. | Marc Balmer | |
suggested by and ok jsg. | |||
2007-06-09 | Initialize TX queue. Handle TX done interrupts in a own function. | Marcus Glocker | |
2007-06-09 | Remove the definition and use of if_deactivate(). It was defined empty and | Marc Balmer | |
thus produced no code at all. No binary change. ok jsg. | |||
2007-06-09 | Add a CVS marker. | Marc Balmer | |
ok jsg | |||
2007-06-09 | Remove the definition and use of usb_malloc_type which is really int. | Marc Balmer | |
While here, reindent the function prototypes in usbdi_util.h No binary change. ok jsg | |||
2007-06-09 | Remove the definition and use of UPACKED and replace it with our own __packed | Marc Balmer | |
(to which UPACKED was define'd before anway). No binary change, just one layer of confusion less in the sourcecode. ok jsg | |||
2007-06-09 | print regulatory domain in dmesg output. | Damien Bergamini | |
fix typo in a comment. |