date | project | content | link |
|---|
| 19:03 on Mar 28, 2011 | FreeBSD | Commit by weongyo :: r 220105 /head/sys/netinet/tcp_sack.c: ( link) Covers values if (BYTES_THIS_ACK(tp, th) / tp->t_maxseg) value is from 2.0 to 3.0.
Reviewed by: lstewart | # |
| 19:03 on Mar 28, 2011 | FreeBSD | Commit by weongyo :: r 220105 /head/sys/netinet/tcp_sack.c: ( link) Covers values if (BYTES_THIS_ACK(tp, th) / tp->t_maxseg) value is from 2.0 to 3.0.
Reviewed by: lstewart | # |
| 16:37 on Jan 13, 2011 | FreeBSD | Commit by weongyo :: r 217358 /head/usr.sbin/usbdump/usbdump.8: ( link) Documents OUTPUT formats. While I'm here cleans up styles and words.
Reviewed by: brueffer@ | # |
| 20:31 on Dec 07, 2010 | FreeBSD | Commit by weongyo :: r 216268 /head/sys/net/if.h: ( link) Adds IFF_CANTCONFIG to IFF_CANTCHANGE that it shouldn't happen through ioctl(2). | # |
| 20:23 on Dec 07, 2010 | FreeBSD | Commit by weongyo :: r 216267 /head/ (3 files in 3 dirs): ( link) Introduces IFF_CANTCONFIG interface flag to point that the interface isn't configurable in a meaningful way. This is for ifconfig(8) or other tools not to change code whenever IFT_USB-like interfaces are registered at the interface list.
Reviewed by: brooks No objections: gavin, jkim | # |
| 00:44 on Dec 03, 2010 | FreeBSD | Commit by weongyo :: r 216138 /head/usr.sbin/usbdump/usbdump.c: ( link) Changes the meaning of each characters '<' and '>' that it could be confused with USB OUT or USB IN packets though it just represents USB submit or done. To know the USB packet direction, the endpoint address should be referred.
Requested by: jkim | # |
| 03:51 on Dec 01, 2010 | FreeBSD | Commit by weongyo :: r 216091 /head/sys/dev/usb/usb_pf.c: ( link) Explicitly UP and DOWN the usbus interfaces (IFT_USB) when it's attached or detached. Normally it should be changed through user land ioctl(2) system calls but it looks there's no apps for USB and no need.
With this patch, libpcap would detect the usbus interfaces correctly and tcpdump(1) could dump the USB packets into PCAP format with -w option. However it couldn't print the output to console because there's no printer-routine at tcpdump(1). | # |
| 03:24 on Dec 01, 2010 | FreeBSD | Commit by weongyo :: r 216089 /head/sbin/ifconfig/ifconfig.c: ( link) Don't print usbus[0-9] interfaces that it's not the interesting interface type for ifconfig(8). | # |
| 22:56 on Nov 25, 2010 | FreeBSD | Commit by weongyo :: r 215846 /head/sys/dev/usb/ (2 files in 2 dirs): ( link) Removes a unused function `usb_bus_find'. | # |
| 03:30 on Nov 25, 2010 | FreeBSD | Commit by weongyo :: r 215812 /head/sys/dev/usb/ (usb_pf.c controller/usb_controller.c): ( link) Handles the unit number correctly that the previous commit had a problem (wrong unit number for a host controller) when the module is load / unloaded repeatly. Attaching the USB pf is moved to usbus device's attach.
Pointed by: yongari | # |
| 03:02 on Nov 25, 2010 | FreeBSD | Commit by weongyo :: r 215810 /head/sys/dev/usb/usb_pf.c: ( link) Assigning the unit number for each interfaces could not use ubus->parent because it could differ depending on the host controller type. It could lead the duplicate unit number assignment. | # |
| 21:43 on Nov 24, 2010 | FreeBSD | Commit by weongyo :: r 215804 /head/sys/dev/usb/usb_pf.c: ( link) Fixes a compiler warning when it's compiled with INVARIANTS.
Pointy hat to: me | # |
| 19:15 on Nov 24, 2010 | FreeBSD | Commit by weongyo :: r 215803 /head/usr.sbin/usbdump/usbdump.c: ( link) As a refection of r215802 it should use BPF interfaces because the duplication code of USB pf is removed. | # |
| 19:11 on Nov 24, 2010 | FreeBSD | Commit by weongyo :: r 215802 /head/sys/dev/usb/ (4 files in 2 dirs): ( link) Removes all duplicated code with BPF that it's greatly simplified and take all benefits whenever BPF code is improved.
Pointed by: jkim Reviewed by: thompsa | # |
| 20:23 on Nov 23, 2010 | FreeBSD | Commit by weongyo :: r 215764 /head/sys/dev/usb/usb_pf.c: ( link) Fixes a kernel crash when usb module is reloaded after unload that it didn't destroy the cdev properly.
Pointy hat to: me Reported by: Brandon Gooch <jamesbrandongooch at gmail dot com>, jkim | # |
| 01:28 on Nov 22, 2010 | FreeBSD | Commit by weongyo :: r 215651 /head/usr.sbin/ (4 files in 2 dirs): ( link) Adds usbdump(8) tool that currently it only supports the very basic feature set. It's not connected to the build yet.
Reviewed by: hps | # |
| 01:11 on Nov 22, 2010 | FreeBSD | Commit by weongyo :: r 215649 /head/sys/ (8 files in 4 dirs): ( link) Adds a USB packet filter feature to the stack that it could capture packets which go through each USB host controllers. Its implementations are almost based on BPF code and very similar with it except it's little bit customized for USB packet only. The userland program usbdump(8) would be committed soon.
Discussed with: hps, thompsa, yongari | # |
| 21:19 on Nov 15, 2010 | FreeBSD | Commit by weongyo :: r 215346 /user/weongyo/usb/sys/dev/usb/usb_sleepout.c: ( link) Stopping / draining the callout should happen first to make sure that the task wouldn't be enqueued during stopping the taskqueue.
Pointed by: hps | # |
| 02:38 on Nov 14, 2010 | FreeBSD | Commit by weongyo :: r 215278 /user/weongyo/usb/sys/dev/usb/usb_sleepout.c: ( link) Uses taskqueue_cancel(9) interface for sleepout_stop which is recently committed. | # |
| 02:35 on Nov 14, 2010 | FreeBSD | Commit by weongyo :: r 215277 /user/weongyo/usb/sys/dev/usb/usb_pf.c: ( link) Fixes a compile error that missed ';'. | # |