staging: usbip: userspace: set kernel module names in one place
Move kernel module name setting to usbip_common.h so that macros can be used instead of hard coding the names in multiple places. Signed-off-by: matt mooney <mfm@muteddisk.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
988e752081
commit
5a285cf523
@ -8,10 +8,6 @@
|
|||||||
|
|
||||||
#include "usbip.h"
|
#include "usbip.h"
|
||||||
|
|
||||||
/* kernel module name */
|
|
||||||
static const char *usbip_stub_driver_name = "usbip-host";
|
|
||||||
|
|
||||||
|
|
||||||
struct usbip_stub_driver *stub_driver;
|
struct usbip_stub_driver *stub_driver;
|
||||||
|
|
||||||
static struct sysfs_driver *open_sysfs_stub_driver(void)
|
static struct sysfs_driver *open_sysfs_stub_driver(void)
|
||||||
@ -31,11 +27,12 @@ static struct sysfs_driver *open_sysfs_stub_driver(void)
|
|||||||
|
|
||||||
snprintf(stub_driver_path, SYSFS_PATH_MAX, "%s/%s/usb/%s/%s",
|
snprintf(stub_driver_path, SYSFS_PATH_MAX, "%s/%s/usb/%s/%s",
|
||||||
sysfs_mntpath, SYSFS_BUS_NAME, SYSFS_DRIVERS_NAME,
|
sysfs_mntpath, SYSFS_BUS_NAME, SYSFS_DRIVERS_NAME,
|
||||||
usbip_stub_driver_name);
|
USBIP_HOST_DRV_NAME);
|
||||||
|
|
||||||
stub_driver = sysfs_open_driver_path(stub_driver_path);
|
stub_driver = sysfs_open_driver_path(stub_driver_path);
|
||||||
if (!stub_driver) {
|
if (!stub_driver) {
|
||||||
err("usbip-core.ko and usbip-host.ko must be loaded");
|
err(USBIP_CORE_MOD_NAME ".ko and " USBIP_HOST_DRV_NAME
|
||||||
|
".ko must be loaded");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -200,7 +197,8 @@ static int refresh_exported_devices(void)
|
|||||||
|
|
||||||
suinf_list = sysfs_get_driver_devices(stub_driver->sysfs_driver);
|
suinf_list = sysfs_get_driver_devices(stub_driver->sysfs_driver);
|
||||||
if (!suinf_list) {
|
if (!suinf_list) {
|
||||||
printf("Bind usbip-host.ko to a usb device to be exportable!\n");
|
info("bind " USBIP_HOST_DRV_NAME ".ko to a usb device to be "
|
||||||
|
"exportable!\n");
|
||||||
goto bye;
|
goto bye;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,7 +26,11 @@
|
|||||||
#define VHCI_STATE_PATH "/var/run/vhci_hcd"
|
#define VHCI_STATE_PATH "/var/run/vhci_hcd"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//#include <linux/usb_ch9.h>
|
/* kernel module names */
|
||||||
|
#define USBIP_CORE_MOD_NAME "usbip-core"
|
||||||
|
#define USBIP_HOST_DRV_NAME "usbip-host"
|
||||||
|
#define USBIP_VHCI_DRV_NAME "vhci_hcd"
|
||||||
|
|
||||||
enum usb_device_speed {
|
enum usb_device_speed {
|
||||||
USB_SPEED_UNKNOWN = 0, /* enumerating */
|
USB_SPEED_UNKNOWN = 0, /* enumerating */
|
||||||
USB_SPEED_LOW, USB_SPEED_FULL, /* usb 1.1 */
|
USB_SPEED_LOW, USB_SPEED_FULL, /* usb 1.1 */
|
||||||
|
@ -5,9 +5,6 @@
|
|||||||
|
|
||||||
#include "usbip.h"
|
#include "usbip.h"
|
||||||
|
|
||||||
|
|
||||||
static const char vhci_driver_name[] = "vhci_hcd";
|
|
||||||
|
|
||||||
struct usbip_vhci_driver *vhci_driver;
|
struct usbip_vhci_driver *vhci_driver;
|
||||||
|
|
||||||
static struct usbip_imported_device *imported_device_init(struct usbip_imported_device *idev, char *busid)
|
static struct usbip_imported_device *imported_device_init(struct usbip_imported_device *idev, char *busid)
|
||||||
@ -277,12 +274,13 @@ static int get_hc_busid(char *sysfs_mntpath, char *hc_busid)
|
|||||||
|
|
||||||
snprintf(sdriver_path, SYSFS_PATH_MAX, "%s/%s/platform/%s/%s",
|
snprintf(sdriver_path, SYSFS_PATH_MAX, "%s/%s/platform/%s/%s",
|
||||||
sysfs_mntpath, SYSFS_BUS_NAME, SYSFS_DRIVERS_NAME,
|
sysfs_mntpath, SYSFS_BUS_NAME, SYSFS_DRIVERS_NAME,
|
||||||
vhci_driver_name);
|
USBIP_VHCI_DRV_NAME);
|
||||||
|
|
||||||
sdriver = sysfs_open_driver_path(sdriver_path);
|
sdriver = sysfs_open_driver_path(sdriver_path);
|
||||||
if (!sdriver) {
|
if (!sdriver) {
|
||||||
info("%s is not found", sdriver_path);
|
info("%s is not found", sdriver_path);
|
||||||
info("load usbip-core.ko and vhci-hcd.ko !");
|
info("please load " USBIP_CORE_MOD_NAME ".ko and "
|
||||||
|
USBIP_VHCI_DRV_NAME ".ko!");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,13 +3,12 @@
|
|||||||
* Copyright (C) 2005-2007 Takahiro Hirofuchi
|
* Copyright (C) 2005-2007 Takahiro Hirofuchi
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "utils.h"
|
|
||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
|
|
||||||
|
#include "usbip.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
static const struct option longopts[] = {
|
static const struct option longopts[] = {
|
||||||
{"usbip", required_argument, NULL, 'u'},
|
{"usbip", required_argument, NULL, 'u'},
|
||||||
@ -27,9 +26,6 @@ static const struct option longopts[] = {
|
|||||||
{NULL, 0, NULL, 0}
|
{NULL, 0, NULL, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char match_busid_path[] = "/sys/bus/usb/drivers/usbip-host/match_busid";
|
|
||||||
|
|
||||||
|
|
||||||
static void show_help(void)
|
static void show_help(void)
|
||||||
{
|
{
|
||||||
printf("Usage: usbip_bind_driver [OPTION]\n");
|
printf("Usage: usbip_bind_driver [OPTION]\n");
|
||||||
@ -51,6 +47,18 @@ static int modify_match_busid(char *busid, int add)
|
|||||||
int fd;
|
int fd;
|
||||||
int ret;
|
int ret;
|
||||||
char buff[BUS_ID_SIZE + 4];
|
char buff[BUS_ID_SIZE + 4];
|
||||||
|
char sysfs_mntpath[SYSFS_PATH_MAX];
|
||||||
|
char match_busid_path[SYSFS_PATH_MAX];
|
||||||
|
|
||||||
|
ret = sysfs_get_mnt_path(sysfs_mntpath, SYSFS_PATH_MAX);
|
||||||
|
if (ret < 0) {
|
||||||
|
err("sysfs must be mounted");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
snprintf(match_busid_path, sizeof(match_busid_path),
|
||||||
|
"%s/%s/usb/%s/%s/match_busid", sysfs_mntpath, SYSFS_BUS_NAME,
|
||||||
|
SYSFS_DRIVERS_NAME, USBIP_HOST_DRV_NAME);
|
||||||
|
|
||||||
/* BUS_IS_SIZE includes NULL termination? */
|
/* BUS_IS_SIZE includes NULL termination? */
|
||||||
if (strnlen(busid, BUS_ID_SIZE) > BUS_ID_SIZE - 1) {
|
if (strnlen(busid, BUS_ID_SIZE) > BUS_ID_SIZE - 1) {
|
||||||
@ -228,7 +236,8 @@ static int bind_to_usbip(char *busid)
|
|||||||
for (i = 0; i < ninterface; i++) {
|
for (i = 0; i < ninterface; i++) {
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = bind_interface(busid, configvalue, i, "usbip-host");
|
ret = bind_interface(busid, configvalue, i,
|
||||||
|
USBIP_HOST_DRV_NAME);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
g_warning("bind usbip at %s:%d.%d, failed",
|
g_warning("bind usbip at %s:%d.%d, failed",
|
||||||
busid, configvalue, i);
|
busid, configvalue, i);
|
||||||
|
Loading…
Reference in New Issue
Block a user