Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-06-23 | Remember to compute IP/TCP/UDP checksum if we're going to broadcast on | Angelos D. Keromytis | |
bridge. | |||
2001-06-23 | Check for bridge loops. | Angelos D. Keromytis | |
2001-06-23 | Placeholder, reminder to fix TCP/UDP checksumming right before doing IPsec. | Angelos D. Keromytis | |
2001-06-23 | pipe_stat isn't referenced from outside sys_pipe.c anymore | Artur Grabowski | |
2001-06-23 | Add pipe_init, call it from main, move the pool initialization into it. | Artur Grabowski | |
2001-06-23 | Keep stats on TCP/UDP hardware checksumming. | Angelos D. Keromytis | |
2001-06-23 | Count input/output hardware-checksummed IP packets. | Angelos D. Keromytis | |
2001-06-23 | Hardware checksumming stats. | Angelos D. Keromytis | |
2001-06-23 | Since malloc in hashinit can get M_NOWAIT flags, we should | Artur Grabowski | |
check the return value. | |||
2001-06-23 | Only mips uses cpu_set_init_frame (and it shouldn't) | Artur Grabowski | |
2001-06-23 | TCP/UDP hardware checksumming. Untested, since txp dies when it tries | Angelos D. Keromytis | |
to compute the checksums. Still, it shouldn't affect anything. | |||
2001-06-23 | IPv4 transmit checksum offload handling | Jason Wright | |
2001-06-23 | Having to update queue(3) for DLIST_* is a major PITA; thus, just use | Angelos D. Keromytis | |
SLIST and be done with it. | |||
2001-06-23 | Remove DLIST_INSERT_BEFORE -- unnecessary complication. | Angelos D. Keromytis | |
2001-06-23 | - Add IPv4, UDP, and TCP RX checksum offloading support | Jason Wright | |
- Do not enable IPSEC offloading (don't know how that got there =) | |||
2001-06-23 | UDP and TCP bits are reversed with respect to documentation | Jason Wright | |
2001-06-23 | Use DLIST for tags. | Angelos D. Keromytis | |
2001-06-23 | Use standard defined macros to access inner ifnet data structure members. | Aaron Campbell | |
2001-06-23 | Use DLIST for tags. | Angelos D. Keromytis | |
2001-06-23 | Use DLIST for tags | Angelos D. Keromytis | |
2001-06-23 | Likewise, use m_tag_init() | Angelos D. Keromytis | |
2001-06-23 | One of these days, I'll learn to type. | Angelos D. Keromytis | |
2001-06-23 | Actually, should just use m_tag_init() | Angelos D. Keromytis | |
2001-06-23 | Typo. | Angelos D. Keromytis | |
2001-06-23 | DLIST_* type/operations. | Angelos D. Keromytis | |
2001-06-23 | fix comment | Michael Shalayeff | |
2001-06-23 | Initialize only if no hardware checksumming. | Angelos D. Keromytis | |
2001-06-23 | Clear IPv4 input checksum OK flag after verification. | Angelos D. Keromytis | |
2001-06-23 | PCI bus configuration userland access from FreeBSD. | Matthieu Herrb | |
Will be used by XFree86 on powerpc (works on i386 too, but its not currently used). | |||
2001-06-23 | fix up mtu for routes and ongoing tcp connection when if mtu changes | Niels Provos | |
from FreeBSD; fixes pr/1878 | |||
2001-06-23 | TCP, UDP, IPv4 input hardware checksumming processing; also IPv4 | Angelos D. Keromytis | |
output hardware checksumming. Not tested yet, but should be done tonight. Remain to be solved: interactions with bridge, TCP/UDP output checksumming, interactions of TCP/UDP checksumming with routing changes. | |||
2001-06-23 | Bye-bye to UFS-specific and unused functions | Constantine Sapuntzakis | |
2001-06-23 | Drop the "v4" for TCP/UDP checksums. | Angelos D. Keromytis | |
2001-06-23 | Get rid of UFS-specific and unused functions in the VFS interface | Constantine Sapuntzakis | |
2001-06-23 | Get rid of several vnode operations | Constantine Sapuntzakis | |
2001-06-23 | Get rid of several unused vnode operations | Constantine Sapuntzakis | |
2001-06-23 | LIST_INIT, not TAILQ_INIT. | Angelos D. Keromytis | |
2001-06-23 | Privatize several vnode operations that are not used by the generic code. | Constantine Sapuntzakis | |
2001-06-23 | Add csum field for hardware checksumming. Based on NetBSD's approach. | Angelos D. Keromytis | |
2001-06-23 | Header file changes to support symbol loading just added. | Dale Rahn | |
2001-06-23 | Perform symbol lookup on ddb trace command. | Dale Rahn | |
Slightly more useful this way, some say. | |||
2001-06-23 | Support ddb initialization on powerpc. | Dale Rahn | |
2001-06-23 | Disable interupts *before* establishing them to avoid a race. | Todd C. Miller | |
2001-06-23 | Disable interupts on the card before mapping and establishing the | Todd C. Miller | |
interupt. Fixes as race as noted by mickey@ | |||
2001-06-23 | Support for powerpc to load symbols, uses new libsa loadfile. | Dale Rahn | |
2001-06-23 | Add MI loadfile support, from NetBSD | Dale Rahn | |
This is currently only used on powerpc, but may be looked at for other architectures. Piece of the support to have kernel symbols on powerpc. | |||
2001-06-23 | enable attaching on pci35x models, seems to work ok | Michael Shalayeff | |
2001-06-23 | hifn now supports up to 256K | Peter Valchev | |
2001-06-23 | - put hw defines in *reg, software defines in *var, etc | Jason Wright | |
- clean up pub/rng initialization call - attempt to remove more intertex vestiges | |||
2001-06-22 | Try again. (this time it's tested). | Artur Grabowski | |
Add proc_cansugid that checks if a process may raise it's privileges. Rework exec to remove the old sugid workaround and check proc_cansugid just before raising privileges. |