1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2003-2008 Takahiro Hirofuchi
9 #include <linux/list.h>
10 #include <linux/slab.h>
11 #include <linux/spinlock.h>
12 #include <linux/types.h>
13 #include <linux/usb.h>
14 #include <linux/wait.h>
16 #define STUB_BUSID_OTHER 0
17 #define STUB_BUSID_REMOV 1
18 #define STUB_BUSID_ADDED 2
19 #define STUB_BUSID_ALLOC 3
22 struct usb_device
*udev
;
24 struct usbip_device ud
;
28 * stub_priv preserves private data of each urb.
29 * It is allocated as stub_priv_cache and assigned to urb->context.
31 * stub_priv is always linked to any one of 3 lists;
32 * priv_init: linked to this until the comletion of a urb.
33 * priv_tx : linked to this after the completion of a urb.
34 * priv_free: linked to this after the sending of the result.
36 * Any of these list operations should be locked by priv_lock.
39 struct list_head priv_init
;
40 struct list_head priv_tx
;
41 struct list_head priv_free
;
43 /* see comments for unlinking in stub_rx.c */
44 struct list_head unlink_tx
;
45 struct list_head unlink_free
;
47 wait_queue_head_t tx_waitq
;
50 /* private data into urb->priv */
53 struct list_head list
;
54 struct stub_device
*sdev
;
62 struct list_head list
;
66 /* same as SYSFS_BUS_ID_SIZE */
70 char name
[BUSID_SIZE
];
73 struct stub_device
*sdev
;
74 struct usb_device
*udev
;
76 spinlock_t busid_lock
;
79 /* stub_priv is allocated from stub_priv_cache */
80 extern struct kmem_cache
*stub_priv_cache
;
83 extern struct usb_device_driver stub_driver
;
86 struct bus_id_priv
*get_busid_priv(const char *busid
);
87 void put_busid_priv(struct bus_id_priv
*bid
);
88 int del_match_busid(char *busid
);
89 void stub_device_cleanup_urbs(struct stub_device
*sdev
);
92 int stub_rx_loop(void *data
);
95 void stub_enqueue_ret_unlink(struct stub_device
*sdev
, __u32 seqnum
,
97 void stub_complete(struct urb
*urb
);
98 int stub_tx_loop(void *data
);
100 #endif /* __USBIP_STUB_H */