2 * bsg.c - block layer implementation of the sg v3 interface
4 * Copyright (C) 2004 Jens Axboe <axboe@suse.de> SUSE Labs
5 * Copyright (C) 2004 Peter M. Jones <pjones@redhat.com>
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License version 2. See the file "COPYING" in the main directory of this
9 * archive for more details.
14 * - Should this get merged, block/scsi_ioctl.c will be migrated into
15 * this file. To keep maintenance down, it's easier to have them
16 * seperated right now.
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/file.h>
22 #include <linux/blkdev.h>
23 #include <linux/poll.h>
24 #include <linux/cdev.h>
25 #include <linux/percpu.h>
26 #include <linux/uio.h>
27 #include <linux/bsg.h>
29 #include <scsi/scsi.h>
30 #include <scsi/scsi_ioctl.h>
31 #include <scsi/scsi_cmnd.h>
32 #include <scsi/scsi_device.h>
33 #include <scsi/scsi_driver.h>
36 const static char bsg_version[] = "block layer sg (bsg) 0.4";
39 request_queue_t *queue;
41 struct list_head busy_list;
42 struct list_head done_list;
43 struct hlist_node dev_list;
48 wait_queue_head_t wq_done;
49 wait_queue_head_t wq_free;
50 char name[BUS_ID_SIZE];
60 #define BSG_DEFAULT_CMDS 64
61 #define BSG_MAX_DEVS 32768
66 #define dprintk(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ##args)
68 #define dprintk(fmt, args...)
71 static DEFINE_MUTEX(bsg_mutex);
72 static int bsg_device_nr, bsg_minor_idx;
74 #define BSG_LIST_ARRAY_SIZE 8
75 #define bsg_list_idx(minor) ((minor) & (BSG_LIST_ARRAY_SIZE - 1))
76 static struct hlist_head bsg_device_list[BSG_LIST_ARRAY_SIZE];
78 static struct class *bsg_class;
79 static LIST_HEAD(bsg_class_list);
82 static struct kmem_cache *bsg_cmd_cachep;
85 * our internal command type
88 struct bsg_device *bd;
89 struct list_head list;
95 struct sg_io_v4 __user *uhdr;
96 char sense[SCSI_SENSE_BUFFERSIZE];
99 static void bsg_free_command(struct bsg_command *bc)
101 struct bsg_device *bd = bc->bd;
104 kmem_cache_free(bsg_cmd_cachep, bc);
106 spin_lock_irqsave(&bd->lock, flags);
108 spin_unlock_irqrestore(&bd->lock, flags);
110 wake_up(&bd->wq_free);
113 static struct bsg_command *bsg_alloc_command(struct bsg_device *bd)
115 struct bsg_command *bc = ERR_PTR(-EINVAL);
117 spin_lock_irq(&bd->lock);
119 if (bd->queued_cmds >= bd->max_queue)
123 spin_unlock_irq(&bd->lock);
125 bc = kmem_cache_zalloc(bsg_cmd_cachep, GFP_KERNEL);
127 spin_lock_irq(&bd->lock);
129 bc = ERR_PTR(-ENOMEM);
134 INIT_LIST_HEAD(&bc->list);
135 dprintk("%s: returning free cmd %p\n", bd->name, bc);
138 spin_unlock_irq(&bd->lock);
143 bsg_add_done_cmd(struct bsg_device *bd, struct bsg_command *bc)
147 static int bsg_io_schedule(struct bsg_device *bd)
152 spin_lock_irq(&bd->lock);
154 BUG_ON(bd->done_cmds > bd->queued_cmds);
157 * -ENOSPC or -ENODATA? I'm going for -ENODATA, meaning "I have no
158 * work to do", even though we return -ENOSPC after this same test
159 * during bsg_write() -- there, it means our buffer can't have more
160 * bsg_commands added to it, thus has no space left.
162 if (bd->done_cmds == bd->queued_cmds) {
167 if (!test_bit(BSG_F_BLOCK, &bd->flags)) {
172 prepare_to_wait(&bd->wq_done, &wait, TASK_UNINTERRUPTIBLE);
173 spin_unlock_irq(&bd->lock);
175 finish_wait(&bd->wq_done, &wait);
179 spin_unlock_irq(&bd->lock);
183 static int blk_fill_sgv4_hdr_rq(request_queue_t *q, struct request *rq,
184 struct sg_io_v4 *hdr, int has_write_perm)
186 memset(rq->cmd, 0, BLK_MAX_CDB); /* ATAPI hates garbage after CDB */
188 if (copy_from_user(rq->cmd, (void *)(unsigned long)hdr->request,
192 if (hdr->subprotocol == BSG_SUB_PROTOCOL_SCSI_CMD) {
193 if (blk_verify_command(rq->cmd, has_write_perm))
195 } else if (!capable(CAP_SYS_RAWIO))
199 * fill in request structure
201 rq->cmd_len = hdr->request_len;
202 rq->cmd_type = REQ_TYPE_BLOCK_PC;
204 rq->timeout = (hdr->timeout * HZ) / 1000;
206 rq->timeout = q->sg_timeout;
208 rq->timeout = BLK_DEFAULT_SG_TIMEOUT;
214 * Check if sg_io_v4 from user is allowed and valid
217 bsg_validate_sgv4_hdr(request_queue_t *q, struct sg_io_v4 *hdr, int *rw)
221 if (hdr->guard != 'Q')
223 if (hdr->request_len > BLK_MAX_CDB)
225 if (hdr->dout_xfer_len > (q->max_sectors << 9) ||
226 hdr->din_xfer_len > (q->max_sectors << 9))
229 switch (hdr->protocol) {
230 case BSG_PROTOCOL_SCSI:
231 switch (hdr->subprotocol) {
232 case BSG_SUB_PROTOCOL_SCSI_CMD:
233 case BSG_SUB_PROTOCOL_SCSI_TRANSPORT:
243 *rw = hdr->dout_xfer_len ? WRITE : READ;
248 * map sg_io_v4 to a request.
250 static struct request *
251 bsg_map_hdr(struct bsg_device *bd, struct sg_io_v4 *hdr)
253 request_queue_t *q = bd->queue;
254 struct request *rq, *next_rq = NULL;
256 unsigned int dxfer_len;
259 dprintk("map hdr %llx/%u %llx/%u\n", (unsigned long long) hdr->dout_xferp,
260 hdr->dout_xfer_len, (unsigned long long) hdr->din_xferp,
263 ret = bsg_validate_sgv4_hdr(q, hdr, &rw);
268 * map scatter-gather elements seperately and string them to request
270 rq = blk_get_request(q, rw, GFP_KERNEL);
272 return ERR_PTR(-ENOMEM);
273 ret = blk_fill_sgv4_hdr_rq(q, rq, hdr, test_bit(BSG_F_WRITE_PERM,
278 if (rw == WRITE && hdr->din_xfer_len) {
279 if (!test_bit(QUEUE_FLAG_BIDI, &q->queue_flags)) {
284 next_rq = blk_get_request(q, READ, GFP_KERNEL);
289 rq->next_rq = next_rq;
291 dxferp = (void*)(unsigned long)hdr->din_xferp;
292 ret = blk_rq_map_user(q, next_rq, dxferp, hdr->din_xfer_len);
297 if (hdr->dout_xfer_len) {
298 dxfer_len = hdr->dout_xfer_len;
299 dxferp = (void*)(unsigned long)hdr->dout_xferp;
300 } else if (hdr->din_xfer_len) {
301 dxfer_len = hdr->din_xfer_len;
302 dxferp = (void*)(unsigned long)hdr->din_xferp;
307 ret = blk_rq_map_user(q, rq, dxferp, dxfer_len);
315 blk_rq_unmap_user(next_rq->bio);
316 blk_put_request(next_rq);
322 * async completion call-back from the block layer, when scsi/ide/whatever
323 * calls end_that_request_last() on a request
325 static void bsg_rq_end_io(struct request *rq, int uptodate)
327 struct bsg_command *bc = rq->end_io_data;
328 struct bsg_device *bd = bc->bd;
331 dprintk("%s: finished rq %p bc %p, bio %p stat %d\n",
332 bd->name, rq, bc, bc->bio, uptodate);
334 bc->hdr.duration = jiffies_to_msecs(jiffies - bc->hdr.duration);
336 spin_lock_irqsave(&bd->lock, flags);
337 list_move_tail(&bc->list, &bd->done_list);
339 spin_unlock_irqrestore(&bd->lock, flags);
341 wake_up(&bd->wq_done);
345 * do final setup of a 'bc' and submit the matching 'rq' to the block
348 static void bsg_add_command(struct bsg_device *bd, request_queue_t *q,
349 struct bsg_command *bc, struct request *rq)
351 rq->sense = bc->sense;
355 * add bc command to busy queue and submit rq for io
360 bc->bidi_bio = rq->next_rq->bio;
361 bc->hdr.duration = jiffies;
362 spin_lock_irq(&bd->lock);
363 list_add_tail(&bc->list, &bd->busy_list);
364 spin_unlock_irq(&bd->lock);
366 dprintk("%s: queueing rq %p, bc %p\n", bd->name, rq, bc);
368 rq->end_io_data = bc;
369 blk_execute_rq_nowait(q, NULL, rq, 1, bsg_rq_end_io);
372 static struct bsg_command *bsg_next_done_cmd(struct bsg_device *bd)
374 struct bsg_command *bc = NULL;
376 spin_lock_irq(&bd->lock);
378 bc = list_entry(bd->done_list.next, struct bsg_command, list);
382 spin_unlock_irq(&bd->lock);
388 * Get a finished command from the done list
390 static struct bsg_command *bsg_get_done_cmd(struct bsg_device *bd)
392 struct bsg_command *bc;
396 bc = bsg_next_done_cmd(bd);
400 if (!test_bit(BSG_F_BLOCK, &bd->flags)) {
401 bc = ERR_PTR(-EAGAIN);
405 ret = wait_event_interruptible(bd->wq_done, bd->done_cmds);
407 bc = ERR_PTR(-ERESTARTSYS);
412 dprintk("%s: returning done %p\n", bd->name, bc);
417 static int blk_complete_sgv4_hdr_rq(struct request *rq, struct sg_io_v4 *hdr,
418 struct bio *bio, struct bio *bidi_bio)
422 dprintk("rq %p bio %p %u\n", rq, bio, rq->errors);
424 * fill in all the output members
426 hdr->device_status = status_byte(rq->errors);
427 hdr->transport_status = host_byte(rq->errors);
428 hdr->driver_status = driver_byte(rq->errors);
430 if (hdr->device_status || hdr->transport_status || hdr->driver_status)
431 hdr->info |= SG_INFO_CHECK;
432 hdr->din_resid = rq->data_len;
433 hdr->response_len = 0;
435 if (rq->sense_len && hdr->response) {
436 int len = min_t(unsigned int, hdr->max_response_len,
439 ret = copy_to_user((void*)(unsigned long)hdr->response,
442 hdr->response_len = len;
448 blk_rq_unmap_user(bidi_bio);
449 blk_put_request(rq->next_rq);
452 blk_rq_unmap_user(bio);
458 static int bsg_complete_all_commands(struct bsg_device *bd)
460 struct bsg_command *bc;
463 dprintk("%s: entered\n", bd->name);
465 set_bit(BSG_F_BLOCK, &bd->flags);
468 * wait for all commands to complete
472 ret = bsg_io_schedule(bd);
474 * look for -ENODATA specifically -- we'll sometimes get
475 * -ERESTARTSYS when we've taken a signal, but we can't
476 * return until we're done freeing the queue, so ignore
477 * it. The signal will get handled when we're done freeing
480 } while (ret != -ENODATA);
483 * discard done commands
487 spin_lock_irq(&bd->lock);
488 if (!bd->queued_cmds) {
489 spin_unlock_irq(&bd->lock);
492 spin_unlock_irq(&bd->lock);
494 bc = bsg_get_done_cmd(bd);
498 tret = blk_complete_sgv4_hdr_rq(bc->rq, &bc->hdr, bc->bio,
503 bsg_free_command(bc);
510 __bsg_read(char __user *buf, size_t count, struct bsg_device *bd,
511 const struct iovec *iov, ssize_t *bytes_read)
513 struct bsg_command *bc;
514 int nr_commands, ret;
516 if (count % sizeof(struct sg_io_v4))
520 nr_commands = count / sizeof(struct sg_io_v4);
521 while (nr_commands) {
522 bc = bsg_get_done_cmd(bd);
529 * this is the only case where we need to copy data back
530 * after completing the request. so do that here,
531 * bsg_complete_work() cannot do that for us
533 ret = blk_complete_sgv4_hdr_rq(bc->rq, &bc->hdr, bc->bio,
536 if (copy_to_user(buf, &bc->hdr, sizeof(bc->hdr)))
539 bsg_free_command(bc);
544 buf += sizeof(struct sg_io_v4);
545 *bytes_read += sizeof(struct sg_io_v4);
552 static inline void bsg_set_block(struct bsg_device *bd, struct file *file)
554 if (file->f_flags & O_NONBLOCK)
555 clear_bit(BSG_F_BLOCK, &bd->flags);
557 set_bit(BSG_F_BLOCK, &bd->flags);
560 static inline void bsg_set_write_perm(struct bsg_device *bd, struct file *file)
562 if (file->f_mode & FMODE_WRITE)
563 set_bit(BSG_F_WRITE_PERM, &bd->flags);
565 clear_bit(BSG_F_WRITE_PERM, &bd->flags);
569 * Check if the error is a "real" error that we should return.
571 static inline int err_block_err(int ret)
573 if (ret && ret != -ENOSPC && ret != -ENODATA && ret != -EAGAIN)
580 bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos)
582 struct bsg_device *bd = file->private_data;
586 dprintk("%s: read %Zd bytes\n", bd->name, count);
588 bsg_set_block(bd, file);
590 ret = __bsg_read(buf, count, bd, NULL, &bytes_read);
593 if (!bytes_read || (bytes_read && err_block_err(ret)))
599 static int __bsg_write(struct bsg_device *bd, const char __user *buf,
600 size_t count, ssize_t *bytes_written)
602 struct bsg_command *bc;
604 int ret, nr_commands;
606 if (count % sizeof(struct sg_io_v4))
609 nr_commands = count / sizeof(struct sg_io_v4);
613 while (nr_commands) {
614 request_queue_t *q = bd->queue;
616 bc = bsg_alloc_command(bd);
623 bc->uhdr = (struct sg_io_v4 __user *) buf;
624 if (copy_from_user(&bc->hdr, buf, sizeof(bc->hdr))) {
630 * get a request, fill in the blanks, and add to request queue
632 rq = bsg_map_hdr(bd, &bc->hdr);
639 bsg_add_command(bd, q, bc, rq);
643 buf += sizeof(struct sg_io_v4);
644 *bytes_written += sizeof(struct sg_io_v4);
648 bsg_free_command(bc);
654 bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
656 struct bsg_device *bd = file->private_data;
657 ssize_t bytes_written;
660 dprintk("%s: write %Zd bytes\n", bd->name, count);
662 bsg_set_block(bd, file);
663 bsg_set_write_perm(bd, file);
666 ret = __bsg_write(bd, buf, count, &bytes_written);
667 *ppos = bytes_written;
670 * return bytes written on non-fatal errors
672 if (!bytes_written || (bytes_written && err_block_err(ret)))
675 dprintk("%s: returning %Zd\n", bd->name, bytes_written);
676 return bytes_written;
679 static struct bsg_device *bsg_alloc_device(void)
681 struct bsg_device *bd;
683 bd = kzalloc(sizeof(struct bsg_device), GFP_KERNEL);
687 spin_lock_init(&bd->lock);
689 bd->max_queue = BSG_DEFAULT_CMDS;
691 INIT_LIST_HEAD(&bd->busy_list);
692 INIT_LIST_HEAD(&bd->done_list);
693 INIT_HLIST_NODE(&bd->dev_list);
695 init_waitqueue_head(&bd->wq_free);
696 init_waitqueue_head(&bd->wq_done);
700 static int bsg_put_device(struct bsg_device *bd)
704 mutex_lock(&bsg_mutex);
706 if (!atomic_dec_and_test(&bd->ref_count))
709 dprintk("%s: tearing down\n", bd->name);
712 * close can always block
714 set_bit(BSG_F_BLOCK, &bd->flags);
717 * correct error detection baddies here again. it's the responsibility
718 * of the app to properly reap commands before close() if it wants
719 * fool-proof error detection
721 ret = bsg_complete_all_commands(bd);
723 blk_put_queue(bd->queue);
724 hlist_del(&bd->dev_list);
727 mutex_unlock(&bsg_mutex);
731 static struct bsg_device *bsg_add_device(struct inode *inode,
732 struct request_queue *rq,
735 struct bsg_device *bd;
737 unsigned char buf[32];
740 bd = bsg_alloc_device();
742 return ERR_PTR(-ENOMEM);
745 kobject_get(&rq->kobj);
746 bsg_set_block(bd, file);
748 atomic_set(&bd->ref_count, 1);
749 bd->minor = iminor(inode);
750 mutex_lock(&bsg_mutex);
751 hlist_add_head(&bd->dev_list,
752 &bsg_device_list[bd->minor & (BSG_LIST_ARRAY_SIZE - 1)]);
754 strncpy(bd->name, rq->bsg_dev.class_dev->class_id, sizeof(bd->name) - 1);
755 dprintk("bound to <%s>, max queue %d\n",
756 format_dev_t(buf, inode->i_rdev), bd->max_queue);
758 mutex_unlock(&bsg_mutex);
762 static struct bsg_device *__bsg_get_device(int minor)
764 struct hlist_head *list;
765 struct bsg_device *bd = NULL;
766 struct hlist_node *entry;
768 mutex_lock(&bsg_mutex);
770 list = &bsg_device_list[minor & (BSG_LIST_ARRAY_SIZE - 1)];
771 hlist_for_each(entry, list) {
772 bd = hlist_entry(entry, struct bsg_device, dev_list);
773 if (bd->minor == minor) {
774 atomic_inc(&bd->ref_count);
781 mutex_unlock(&bsg_mutex);
785 static struct bsg_device *bsg_get_device(struct inode *inode, struct file *file)
787 struct bsg_device *bd = __bsg_get_device(iminor(inode));
788 struct bsg_class_device *bcd, *__bcd;
794 * find the class device
797 mutex_lock(&bsg_mutex);
798 list_for_each_entry(__bcd, &bsg_class_list, list) {
799 if (__bcd->minor == iminor(inode)) {
804 mutex_unlock(&bsg_mutex);
807 return ERR_PTR(-ENODEV);
809 return bsg_add_device(inode, bcd->queue, file);
812 static int bsg_open(struct inode *inode, struct file *file)
814 struct bsg_device *bd = bsg_get_device(inode, file);
819 file->private_data = bd;
823 static int bsg_release(struct inode *inode, struct file *file)
825 struct bsg_device *bd = file->private_data;
827 file->private_data = NULL;
828 return bsg_put_device(bd);
831 static unsigned int bsg_poll(struct file *file, poll_table *wait)
833 struct bsg_device *bd = file->private_data;
834 unsigned int mask = 0;
836 poll_wait(file, &bd->wq_done, wait);
837 poll_wait(file, &bd->wq_free, wait);
839 spin_lock_irq(&bd->lock);
840 if (!list_empty(&bd->done_list))
841 mask |= POLLIN | POLLRDNORM;
842 if (bd->queued_cmds >= bd->max_queue)
844 spin_unlock_irq(&bd->lock);
849 static long bsg_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
851 struct bsg_device *bd = file->private_data;
852 int __user *uarg = (int __user *) arg;
858 case SG_GET_COMMAND_Q:
859 return put_user(bd->max_queue, uarg);
860 case SG_SET_COMMAND_Q: {
863 if (get_user(queue, uarg))
868 spin_lock_irq(&bd->lock);
869 bd->max_queue = queue;
870 spin_unlock_irq(&bd->lock);
877 case SG_GET_VERSION_NUM:
878 case SCSI_IOCTL_GET_IDLUN:
879 case SCSI_IOCTL_GET_BUS_NUMBER:
882 case SG_GET_RESERVED_SIZE:
883 case SG_SET_RESERVED_SIZE:
884 case SG_EMULATED_HOST:
885 case SCSI_IOCTL_SEND_COMMAND: {
886 void __user *uarg = (void __user *) arg;
887 return scsi_cmd_ioctl(file, bd->queue, NULL, cmd, uarg);
891 struct bio *bio, *bidi_bio = NULL;
894 if (copy_from_user(&hdr, uarg, sizeof(hdr)))
897 rq = bsg_map_hdr(bd, &hdr);
903 bidi_bio = rq->next_rq->bio;
904 blk_execute_rq(bd->queue, NULL, rq, 0);
905 blk_complete_sgv4_hdr_rq(rq, &hdr, bio, bidi_bio);
907 if (copy_to_user(uarg, &hdr, sizeof(hdr)))
913 * block device ioctls
917 return ioctl_by_bdev(bd->bdev, cmd, arg);
924 static struct file_operations bsg_fops = {
929 .release = bsg_release,
930 .unlocked_ioctl = bsg_ioctl,
931 .owner = THIS_MODULE,
934 void bsg_unregister_queue(struct request_queue *q)
936 struct bsg_class_device *bcd = &q->bsg_dev;
938 WARN_ON(!bcd->class_dev);
940 mutex_lock(&bsg_mutex);
941 sysfs_remove_link(&q->kobj, "bsg");
942 class_device_destroy(bsg_class, MKDEV(bsg_major, bcd->minor));
943 bcd->class_dev = NULL;
944 list_del_init(&bcd->list);
946 mutex_unlock(&bsg_mutex);
948 EXPORT_SYMBOL_GPL(bsg_unregister_queue);
950 int bsg_register_queue(struct request_queue *q, const char *name)
952 struct bsg_class_device *bcd, *__bcd;
955 struct class_device *class_dev = NULL;
958 * we need a proper transport to send commands, not a stacked device
964 memset(bcd, 0, sizeof(*bcd));
965 INIT_LIST_HEAD(&bcd->list);
967 mutex_lock(&bsg_mutex);
968 if (bsg_device_nr == BSG_MAX_DEVS) {
969 printk(KERN_ERR "bsg: too many bsg devices\n");
974 list_for_each_entry(__bcd, &bsg_class_list, list) {
975 if (__bcd->minor == bsg_minor_idx) {
977 if (bsg_minor_idx == BSG_MAX_DEVS)
983 bcd->minor = bsg_minor_idx++;
984 if (bsg_minor_idx == BSG_MAX_DEVS)
988 dev = MKDEV(bsg_major, bcd->minor);
989 class_dev = class_device_create(bsg_class, NULL, dev, bcd->dev, "%s", name);
990 if (IS_ERR(class_dev)) {
991 ret = PTR_ERR(class_dev);
994 bcd->class_dev = class_dev;
997 ret = sysfs_create_link(&q->kobj, &bcd->class_dev->kobj, "bsg");
1002 list_add_tail(&bcd->list, &bsg_class_list);
1005 mutex_unlock(&bsg_mutex);
1009 class_device_destroy(bsg_class, MKDEV(bsg_major, bcd->minor));
1010 mutex_unlock(&bsg_mutex);
1013 EXPORT_SYMBOL_GPL(bsg_register_queue);
1015 static int bsg_add(struct class_device *cl_dev, struct class_interface *cl_intf)
1018 struct scsi_device *sdp = to_scsi_device(cl_dev->dev);
1019 struct request_queue *rq = sdp->request_queue;
1021 if (rq->kobj.parent)
1022 ret = bsg_register_queue(rq, kobject_name(rq->kobj.parent));
1024 ret = bsg_register_queue(rq, kobject_name(&sdp->sdev_gendev.kobj));
1028 static void bsg_remove(struct class_device *cl_dev, struct class_interface *cl_intf)
1030 bsg_unregister_queue(to_scsi_device(cl_dev->dev)->request_queue);
1033 static struct class_interface bsg_intf = {
1035 .remove = bsg_remove,
1038 static struct cdev bsg_cdev = {
1039 .kobj = {.name = "bsg", },
1040 .owner = THIS_MODULE,
1043 static int __init bsg_init(void)
1048 bsg_cmd_cachep = kmem_cache_create("bsg_cmd",
1049 sizeof(struct bsg_command), 0, 0, NULL, NULL);
1050 if (!bsg_cmd_cachep) {
1051 printk(KERN_ERR "bsg: failed creating slab cache\n");
1055 for (i = 0; i < BSG_LIST_ARRAY_SIZE; i++)
1056 INIT_HLIST_HEAD(&bsg_device_list[i]);
1058 bsg_class = class_create(THIS_MODULE, "bsg");
1059 if (IS_ERR(bsg_class)) {
1060 ret = PTR_ERR(bsg_class);
1061 goto destroy_kmemcache;
1064 ret = alloc_chrdev_region(&devid, 0, BSG_MAX_DEVS, "bsg");
1066 goto destroy_bsg_class;
1068 bsg_major = MAJOR(devid);
1070 cdev_init(&bsg_cdev, &bsg_fops);
1071 ret = cdev_add(&bsg_cdev, MKDEV(bsg_major, 0), BSG_MAX_DEVS);
1073 goto unregister_chrdev;
1075 ret = scsi_register_interface(&bsg_intf);
1079 printk(KERN_INFO "%s loaded (major %d)\n", bsg_version, bsg_major);
1082 printk(KERN_ERR "bsg: failed register scsi interface %d\n", ret);
1083 cdev_del(&bsg_cdev);
1085 unregister_chrdev_region(MKDEV(bsg_major, 0), BSG_MAX_DEVS);
1087 class_destroy(bsg_class);
1089 kmem_cache_destroy(bsg_cmd_cachep);
1093 MODULE_AUTHOR("Jens Axboe");
1094 MODULE_DESCRIPTION("Block layer SGSI generic (sg) driver");
1095 MODULE_LICENSE("GPL");
1097 device_initcall(bsg_init);