All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] staging: usbip
@ 2011-05-20  4:36 ` matt mooney
  0 siblings, 0 replies; 42+ messages in thread
From: matt mooney @ 2011-05-20  4:36 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-kernel, kernel-janitors

matt mooney (12):
  staging: usbip: replace usbip_u{dbg,err,info} and printk with dev_
    and pr_
  staging: usbip: remove unnecessary lines and extra return statements
  staging: usbip: stub_main.c: reorder functions
  staging: usbip: stub_main.c: code cleanup
  staging: usbip: stub_main.c: rename init and exit functions
  staging: usbip: stub_main.c: use KMEM_CACHE macro
  staging: usbip: usbip_common.c: fix misspelled function name
  staging: usbip: usbip_common.h: reorganize and document request
    headers
  staging: usbip: stub_dev.c: move stub_driver definition and update
    driver name
  staging: usbip: userspace: bind_driver.c: update kernel module name
  staging: usbip: usbip_common.c: rename init and exit functions
  staging: usbip: vhci_hcd.c: rename init and exit functions

 drivers/staging/usbip/stub.h                      |    1 +
 drivers/staging/usbip/stub_dev.c                  |   93 +++----
 drivers/staging/usbip/stub_main.c                 |  212 +++++++---------
 drivers/staging/usbip/stub_rx.c                   |   23 +-
 drivers/staging/usbip/stub_tx.c                   |   30 +-
 drivers/staging/usbip/usbip_common.c              |  257 +++++++++----------
 drivers/staging/usbip/usbip_common.h              |  284 +++++++++-----------
 drivers/staging/usbip/usbip_event.c               |    3 +-
 drivers/staging/usbip/userspace/src/bind-driver.c |    4 +-
 drivers/staging/usbip/vhci_hcd.c                  |  106 +++-----
 drivers/staging/usbip/vhci_rx.c                   |   35 ++--
 drivers/staging/usbip/vhci_sysfs.c                |   14 +-
 drivers/staging/usbip/vhci_tx.c                   |    8 +-
 13 files changed, 479 insertions(+), 591 deletions(-)

-- 
1.7.5.1


^ permalink raw reply	[flat|nested] 42+ messages in thread

end of thread, other threads:[~2011-05-21 11:45 UTC | newest]

Thread overview: 42+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-20  4:36 [PATCH 00/12] staging: usbip matt mooney
2011-05-20  4:36 ` matt mooney
2011-05-20  4:36 ` [PATCH 01/12] staging: usbip: replace usbip_u{dbg,err,info} and printk with dev_ and pr_ matt mooney
2011-05-20  4:36   ` matt mooney
2011-05-20  4:59   ` [PATCH 01/12] staging: usbip: replace usbip_u{dbg,err,info} and Greg KH
2011-05-20  5:01     ` [PATCH 01/12] staging: usbip: replace usbip_u{dbg,err,info} and printk with dev_ and pr_ Greg KH
2011-05-20  5:25     ` matt mooney
2011-05-20  5:25       ` [PATCH 01/12] staging: usbip: replace usbip_u{dbg,err,info} and matt mooney
2011-05-20 12:53       ` [PATCH 01/12] staging: usbip: replace usbip_u{dbg,err,info} and printk with dev_ and pr_ Greg KH
2011-05-20 12:53         ` [PATCH 01/12] staging: usbip: replace usbip_u{dbg,err,info} and Greg KH
2011-05-20 18:51         ` [PATCH 01/12] staging: usbip: replace usbip_u{dbg,err,info} and printk with dev_ and pr_ matt mooney
2011-05-20 18:51           ` matt mooney
2011-05-20  4:36 ` [PATCH 02/12] staging: usbip: remove unnecessary lines and extra return statements matt mooney
2011-05-20  4:36   ` matt mooney
2011-05-20  4:36 ` [PATCH 03/12] staging: usbip: stub_main.c: reorder functions matt mooney
2011-05-20  4:36   ` matt mooney
2011-05-20  8:37   ` walter harms
2011-05-20 18:42   ` matt mooney
2011-05-20  4:36 ` [PATCH 04/12] staging: usbip: stub_main.c: code cleanup matt mooney
2011-05-20  4:36   ` matt mooney
2011-05-20  9:08   ` walter harms
2011-05-20  9:08     ` walter harms
2011-05-20 18:45     ` matt mooney
2011-05-20 18:45       ` matt mooney
2011-05-21 11:45       ` walter harms
2011-05-21 11:45         ` walter harms
2011-05-20  4:36 ` [PATCH 05/12] staging: usbip: stub_main.c: rename init and exit functions matt mooney
2011-05-20  4:36   ` matt mooney
2011-05-20  4:37 ` [PATCH 06/12] staging: usbip: stub_main.c: use KMEM_CACHE macro matt mooney
2011-05-20  4:37   ` matt mooney
2011-05-20  4:37 ` [PATCH 07/12] staging: usbip: usbip_common.c: fix misspelled function name matt mooney
2011-05-20  4:37   ` matt mooney
2011-05-20  4:37 ` [PATCH 08/12] staging: usbip: usbip_common.h: reorganize and document request headers matt mooney
2011-05-20  4:37   ` matt mooney
2011-05-20  4:37 ` [PATCH 09/12] staging: usbip: stub_dev.c: move stub_driver definition and update driver name matt mooney
2011-05-20  4:37   ` matt mooney
2011-05-20  4:37 ` [PATCH 10/12] staging: usbip: userspace: bind_driver.c: update kernel module name matt mooney
2011-05-20  4:37   ` matt mooney
2011-05-20  4:37 ` [PATCH 11/12] staging: usbip: usbip_common.c: rename init and exit functions matt mooney
2011-05-20  4:37   ` matt mooney
2011-05-20  4:37 ` [PATCH 12/12] staging: usbip: vhci_hcd.c: " matt mooney
2011-05-20  4:37   ` matt mooney

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.