summaryrefslogtreecommitdiff
path: root/drivers/uio/uio.c
diff options
context:
space:
mode:
authorAndy Grover <agrover@redhat.com>2014-10-01 23:07:03 (GMT)
committerNicholas Bellinger <nab@linux-iscsi.org>2014-10-03 04:35:54 (GMT)
commitf14bb039a4e8206439d3e9abd92bc76bd142f243 (patch)
tree9b97b8aae139d6d26ecdbed0951959bd75c0ad7c /drivers/uio/uio.c
parent20959c4b4078847e629eed8918abb52bfe5f559a (diff)
downloadlinux-f14bb039a4e8206439d3e9abd92bc76bd142f243.tar.xz
uio: Export definition of struct uio_device
In order to prevent a O(n) search of the filesystem to link up its uio node with its target configuration, TCMU needs to know the minor number that UIO assigned. Expose the definition of this struct so TCMU can access this field. Signed-off-by: Andy Grover <agrover@redhat.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers/uio/uio.c')
-rw-r--r--drivers/uio/uio.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c
index a673e5b..60fa627 100644
--- a/drivers/uio/uio.c
+++ b/drivers/uio/uio.c
@@ -28,18 +28,6 @@
#define UIO_MAX_DEVICES (1U << MINORBITS)
-struct uio_device {
- struct module *owner;
- struct device *dev;
- int minor;
- atomic_t event;
- struct fasync_struct *async_queue;
- wait_queue_head_t wait;
- struct uio_info *info;
- struct kobject *map_dir;
- struct kobject *portio_dir;
-};
-
static int uio_major;
static struct cdev *uio_cdev;
static DEFINE_IDR(uio_idr);