All of lore.kernel.org
 help / color / mirror / Atom feed
From: matt mooney <mfm@muteddisk.com>
To: Greg KH <greg@kroah.com>
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 00/22] staging: usbip: misc. userspace changes
Date: Sun, 19 Jun 2011 22:44:30 -0700	[thread overview]
Message-ID: <cover.1308547654.git.mfm@muteddisk.com> (raw)

Hi Greg,

This patch set contains only userspace changes. Next, I will take a look at
attach and detach, which should soon lead to the reason why usbip is not
currently working.

Thanks,
matt

matt mooney (22):
  staging: usbip: userspace: update cleanup.sh
  staging: usbip: userspace: usbip_common.h: cleanup log macros
  staging: usbip: userspace: usbip_common.h: move enums
  staging: usbip: userspace: usbip_common.h: fixup header includes
  staging: usbip: userspace: libsrc: set program name for logging
  staging: usbip: userspace: usbip.c: add log option
  staging: usbip: userspace: libsrc: remove usbip.h
  staging: usbip: userspace: libsrc: change all output messages to
    debug
  staging: usbip: userspace: usbip: modify command failure
  staging: usbip: userspace: utils: remove libsysfs circumvention
  staging: usbip: userspace: utils.c: rewrite modify_match_busid
  staging: usbip: userspace: usbip_bind.c: major rewrite of the
    implementation
  staging: usbip: userspace: usbip_unbind.c: implement using libsysfs
  staging: usbip: userspace: usbip list: edit output messages
  staging: usbip: userspace: usbip list: move output header
  staging: usbip: userspace: rename stub driver files
  staging: usbip: userspace: usbip_host: update function and variable
    names
  staging: usbip: userspace: usbipd: major cleanup of daemon
  staging: usbip: userspace: usbip_network.c: coding style cleanup
  staging: usbip: userspace: add new prefix for usbip network code
  staging: usbip: userspace: fix header installation bug
  staging: usbip: userspace: configure.ac: change package data

 drivers/staging/usbip/userspace/Makefile.am        |    4 +-
 drivers/staging/usbip/userspace/cleanup.sh         |   10 +-
 drivers/staging/usbip/userspace/configure.ac       |    2 +-
 drivers/staging/usbip/userspace/libsrc/Makefile.am |    8 +-
 .../staging/usbip/userspace/libsrc/stub_driver.c   |  390 -----------
 .../staging/usbip/userspace/libsrc/stub_driver.h   |   36 -
 drivers/staging/usbip/userspace/libsrc/usbip.h     |   19 -
 .../staging/usbip/userspace/libsrc/usbip_common.c  |   19 +-
 .../staging/usbip/userspace/libsrc/usbip_common.h  |  118 ++--
 .../usbip/userspace/libsrc/usbip_host_driver.c     |  401 +++++++++++
 .../usbip/userspace/libsrc/usbip_host_driver.h     |   48 ++
 .../staging/usbip/userspace/libsrc/vhci_driver.c   |   99 ++--
 .../staging/usbip/userspace/libsrc/vhci_driver.h   |   13 +-
 drivers/staging/usbip/userspace/src/Makefile.am    |    6 +-
 drivers/staging/usbip/userspace/src/usbip.c        |   26 +-
 drivers/staging/usbip/userspace/src/usbip_attach.c |    8 +-
 drivers/staging/usbip/userspace/src/usbip_bind.c   |  303 +++++----
 drivers/staging/usbip/userspace/src/usbip_list.c   |   81 ++-
 .../staging/usbip/userspace/src/usbip_network.c    |  121 ++--
 .../staging/usbip/userspace/src/usbip_network.h    |   39 +-
 drivers/staging/usbip/userspace/src/usbip_unbind.c |  123 +++-
 drivers/staging/usbip/userspace/src/usbipd.c       |  697 ++++++++++----------
 drivers/staging/usbip/userspace/src/utils.c        |  317 ++--------
 drivers/staging/usbip/userspace/src/utils.h        |   31 +-
 24 files changed, 1417 insertions(+), 1502 deletions(-)
 delete mode 100644 drivers/staging/usbip/userspace/libsrc/stub_driver.c
 delete mode 100644 drivers/staging/usbip/userspace/libsrc/stub_driver.h
 delete mode 100644 drivers/staging/usbip/userspace/libsrc/usbip.h
 create mode 100644 drivers/staging/usbip/userspace/libsrc/usbip_host_driver.c
 create mode 100644 drivers/staging/usbip/userspace/libsrc/usbip_host_driver.h

-- 
1.7.5.2


             reply	other threads:[~2011-06-20  5:45 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-20  5:44 matt mooney [this message]
2011-06-20  5:44 ` [PATCH 01/22] staging: usbip: userspace: update cleanup.sh matt mooney
2011-06-20  5:44 ` [PATCH 02/22] staging: usbip: userspace: usbip_common.h: cleanup log macros matt mooney
2011-06-20  5:44 ` [PATCH 03/22] staging: usbip: userspace: usbip_common.h: move enums matt mooney
2011-06-20  5:44 ` [PATCH 04/22] staging: usbip: userspace: usbip_common.h: fixup header includes matt mooney
2011-06-20  5:44 ` [PATCH 05/22] staging: usbip: userspace: libsrc: set program name for logging matt mooney
2011-06-20  5:44 ` [PATCH 06/22] staging: usbip: userspace: usbip.c: add log option matt mooney
2011-06-20  5:44 ` [PATCH 07/22] staging: usbip: userspace: libsrc: remove usbip.h matt mooney
2011-06-20  5:44 ` [PATCH 08/22] staging: usbip: userspace: libsrc: change all output messages to debug matt mooney
2011-06-20  5:44 ` [PATCH 09/22] staging: usbip: userspace: usbip: modify command failure matt mooney
2011-06-20  5:44 ` [PATCH 10/22] staging: usbip: userspace: utils: remove libsysfs circumvention matt mooney
2011-06-20  5:44 ` [PATCH 11/22] staging: usbip: userspace: utils.c: rewrite modify_match_busid matt mooney
2011-06-20  5:44 ` [PATCH 12/22] staging: usbip: userspace: usbip_bind.c: major rewrite of the implementation matt mooney
2011-06-20  5:44 ` [PATCH 13/22] staging: usbip: userspace: usbip_unbind.c: implement using libsysfs matt mooney
2011-06-20  5:44 ` [PATCH 14/22] staging: usbip: userspace: usbip list: edit output messages matt mooney
2011-06-20  5:44 ` [PATCH 15/22] staging: usbip: userspace: usbip list: move output header matt mooney
2011-06-20  5:44 ` [PATCH 16/22] staging: usbip: userspace: rename stub driver files matt mooney
2011-06-20  5:44 ` [PATCH 17/22] staging: usbip: userspace: usbip_host: update function and variable names matt mooney
2011-06-20  5:44 ` [PATCH 18/22] staging: usbip: userspace: usbipd: major cleanup of daemon matt mooney
2011-06-20  5:44 ` [PATCH 19/22] staging: usbip: userspace: usbip_network.c: coding style cleanup matt mooney
2011-06-20  5:44 ` [PATCH 20/22] staging: usbip: userspace: add new prefix for usbip network code matt mooney
2011-06-20  5:44 ` [PATCH 21/22] staging: usbip: userspace: fix header installation bug matt mooney
2011-06-20  5:44 ` [PATCH 22/22] staging: usbip: userspace: configure.ac: change package data matt mooney
2011-07-06  3:12 ` [PATCH 00/22] staging: usbip: misc. userspace changes Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1308547654.git.mfm@muteddisk.com \
    --to=mfm@muteddisk.com \
    --cc=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.