Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-05-24 | remove NetBSD's event counter code. | Brad Smith | |
2005-05-24 | san depends on sppp. canacar@ ok. | Hakan Olsson | |
2005-05-24 | Fix our NTFS readdir function. | Brad Smith | |
To check a directory's in-use bitmap bit by bit, we use a pointer to an 8 bit wide unsigned value. The index used to dereference this pointer is calculated by shifting the bit index right 3 bits. Then we do a logical AND with the bit# represented by the lower 3 bits of the bit index. This is an idiomatic way of iterating through a bit map with simple bitwise operations. This commit fixes the bug that we only checked bits 3:0 of each 8 bit chunk, because we only used bits 1:0 of the bit index for the bit# in the current 8 bit value. This resulted in files not being returned by getdirentries(2). Change the type of the bit map pointer from `char *' to `u_int8_t *'. From FreeBSD ok pedro | |||
2005-05-24 | when a device vnode associated with a mount point disappears, mark the | Pedro Martelletto | |
filesystem as doomed and unmount it | |||
2005-05-24 | - allow reception of VLAN sized frames | Brad Smith | |
- make sure to re-init the card when setting the MTU - don't do a full card re-init when going into promisc mode or adding/removing multicast addresses, this causes the PHY to be reset | |||
2005-05-24 | Set the data length on CBI data transfers. | Christopher Pascoe | |
ok dlg@ | |||
2005-05-24 | better handling of disappearing devices, in spec_close(), don't try to | Pedro Martelletto | |
double-lock the vnode if we're coming from vclean() | |||
2005-05-24 | brelse() on failed bread() | Pedro Martelletto | |
2005-05-24 | add net.inet.ip.ifq for monitoring and changing ifqueue; similar to netbsd | Markus Friedl | |
ok henning | |||
2005-05-24 | add support for brace notation for interface groups, i. e. (testgroup) matches | Henning Brauer | |
all IPs on all interfaces in testgroup | |||
2005-05-24 | POSIX specifies errno values that were BSD-specific once upon a time. | Todd C. Miller | |
OK deraadt@ | |||
2005-05-24 | Support second interface on FTDI 2232C based devices. | Christopher Pascoe | |
ok dlg@ | |||
2005-05-24 | Make sure all fields in the SADB_DUMP header are zeroed properly. hshoexer@ ok. | Hakan Olsson | |
2005-05-24 | regen | Jonathan Gray | |
2005-05-24 | nForce4 devices found in a dmesg from Charly Tipton <ekop at flash.net>. | Jonathan Gray | |
2005-05-24 | actually delete the interface from the member list when it leaves the group | Henning Brauer | |
2005-05-24 | initial import of a trunking (link aggregation and link failover) | Reyk Floeter | |
implementation. it currently supports round robin mode with link state checking, additional modes will be added later. ok brad@, deraadt@ | |||
2005-05-24 | Better SA state reporting. markus@, hshoexer@ ok. | Hakan Olsson | |
2005-05-24 | keep a list of member interfaces in ifg_group | Henning Brauer | |
2005-05-24 | add aapic driver which currently is used to workaround errata on | Brad Smith | |
the AMD 8131 IO APIC. From NetBSD ok marco@ | |||
2005-05-24 | disable TX HW checksumming, some revs of the chip can cause packet corruption. | Brad Smith | |
Issue with NFS reported by Han Boetes <han at mijncomputer dot nl> ok pvalchev@ | |||
2005-05-24 | Ignore ICMP Source Quench messages meant for TCP connections. (Details in | Fernando Gont | |
http://www.gont.com.ar/drafts/icmp-attacks-against-tcp.html) ok markus frantzen | |||
2005-05-23 | fix rasops initialization when not acting as console; ok miod@ | Uwe Stuehler | |
2005-05-23 | add USER_PCICONF | Jason Wright | |
2005-05-23 | change pool allocation of table entries, no longer use the oldnointr | Daniel Hartmeier | |
allocator and two pools, but PR_WAITOK when called from non-interrupt context (ioctl). add configurable hard limits for tables and table entries (set limit tables/table-entries), defaulting to 1000/100000. ok aaron@, henning@, mcbride@, art@ | |||
2005-05-23 | loose is not lose. ok deraadt tdeval and a few more typos from jfb | Ted Unangst | |
2005-05-23 | Remove some unuseful debug code. | Jonathan Gray | |
2005-05-23 | Cleanup leading and trailing whitespace. | Christopher Pascoe | |
2005-05-23 | Headphone output and volume control support. | Christopher Pascoe | |
ok dlg@ | |||
2005-05-23 | - Fix some big-endian issues. | Brad Smith | |
- Centralize the interrupt bits for the 3 registers where they are being used. - Replace magic numbers for power management control with PCI_PMCSR* macros. - The flow control registers are 16 bits wide, not 32. - Create the Tx DMA maps with a size large enough for a jumbo Ethernet frame. - Oops, make Rx interrupt deferral actually work. From NetBSD | |||
2005-05-23 | further cleanup: don't mimic ifnet and add hooks and the dohooks() stuff to | Henning Brauer | |
pf's interface abstraction, just attahc a linked list of the dynaddrs to the respective kifs. makes things way easier and will be needed for the next step, ryan jajajaja | |||
2005-05-23 | Round the DMA block size, not the maximum buffer size. Addresses "request | Christopher Pascoe | |
with bad start address" errors. | |||
2005-05-23 | ROTD (Regen Of The Day) | Miod Vallat | |
2005-05-23 | Duplicate keycode 50 as keycode 49, some USB keyboards use the latter. | Miod Vallat | |
with and ok millert@ | |||
2005-05-23 | suspected airprime pc5220 EVDO support | Theo de Raadt | |
2005-05-23 | re-enable softdep notification of inode mode change, | Pedro Martelletto | |
talked over with marius@ and tedu@ | |||
2005-05-23 | - remomve unneeded tulip_reset() and always include intr.h | Martin Reindl | |
- make it possible to get media information from the SRM on alpha ok brad@ | |||
2005-05-23 | don't deny access to "special" tables in get_addrs | Henning Brauer | |
with this, when you know their name you can list their contents with pfctl ok ryan | |||
2005-05-23 | repair updates for the tables used for (interface) notation | Henning Brauer | |
the way it is done is completely retarded, needs fixing with ryan | |||
2005-05-23 | Avoid potential null pointer dereference. | Christopher Pascoe | |
2005-05-23 | carp needs a multicast kludge storage. | Marco Pfatschbacher | |
Fixes PR 4211. OK mcbride@ | |||
2005-05-23 | Initial radiotap support. ok dlg@ | Jonathan Gray | |
2005-05-23 | pin the sample rate at 44.1k, PB's don't seem to get the 8k or 48k sample | Jason Wright | |
rate notificiations | |||
2005-05-23 | Remove superfluous and confusing define and use correct field names | Kenneth R Westerback | |
instead. | |||
2005-05-23 | Don't bzero() data before calling scsi_mode_sense[_big]() since | Kenneth R Westerback | |
scsi_mode_sense[_big] bzero()'s it. | |||
2005-05-23 | Remove more superfluous structures, etc. No functional change. | Kenneth R Westerback | |
2005-05-22 | these do not fit; brad did not test | Theo de Raadt | |
2005-05-22 | add option VFSDEBUG, disabled by default | Pedro Martelletto | |
2005-05-22 | put VLOCKSWORK stuff under a single option, VFSDEBUG | Pedro Martelletto | |
2005-05-22 | Remove some superfluous structures, etc. No functional change. | Kenneth R Westerback | |