blob: 8bcc514ec8b6212e1f9b1913977d29e48ba5c24f [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_iblock.c
3 *
4 * This file contains the Storage Engine <-> Linux BlockIO transport
5 * specific functions.
6 *
Nicholas Bellingerfd9a11d2012-11-09 14:51:48 -08007 * (c) Copyright 2003-2012 RisingTide Systems LLC.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08008 *
9 * Nicholas A. Bellinger <nab@kernel.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 ******************************************************************************/
26
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080027#include <linux/string.h>
28#include <linux/parser.h>
29#include <linux/timer.h>
30#include <linux/fs.h>
31#include <linux/blkdev.h>
32#include <linux/slab.h>
33#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080034#include <linux/bio.h>
35#include <linux/genhd.h>
36#include <linux/file.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040037#include <linux/module.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080038#include <scsi/scsi.h>
39#include <scsi/scsi_host.h>
Christoph Hellwig14150a62012-06-17 18:40:55 -040040#include <asm/unaligned.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080041
42#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050043#include <target/target_core_backend.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080044
45#include "target_core_iblock.h"
46
Christoph Hellwigd5b4a212011-12-21 14:20:31 -050047#define IBLOCK_MAX_BIO_PER_TASK 32 /* max # of bios to submit at a time */
48#define IBLOCK_BIO_POOL_SIZE 128
49
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040050static inline struct iblock_dev *IBLOCK_DEV(struct se_device *dev)
51{
52 return container_of(dev, struct iblock_dev, dev);
53}
54
55
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080056static struct se_subsystem_api iblock_template;
57
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080058/* iblock_attach_hba(): (Part of se_subsystem_api_t template)
59 *
60 *
61 */
62static int iblock_attach_hba(struct se_hba *hba, u32 host_id)
63{
Andy Grover6708bb22011-06-08 10:36:43 -070064 pr_debug("CORE_HBA[%d] - TCM iBlock HBA Driver %s on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080065 " Generic Target Core Stack %s\n", hba->hba_id,
66 IBLOCK_VERSION, TARGET_CORE_MOD_VERSION);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067 return 0;
68}
69
70static void iblock_detach_hba(struct se_hba *hba)
71{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080072}
73
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040074static struct se_device *iblock_alloc_device(struct se_hba *hba, const char *name)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075{
76 struct iblock_dev *ib_dev = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080077
78 ib_dev = kzalloc(sizeof(struct iblock_dev), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -070079 if (!ib_dev) {
80 pr_err("Unable to allocate struct iblock_dev\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080081 return NULL;
82 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080083
Andy Grover6708bb22011-06-08 10:36:43 -070084 pr_debug( "IBLOCK: Allocated ib_dev for %s\n", name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080085
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040086 return &ib_dev->dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080087}
88
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040089static int iblock_configure_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080090{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040091 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080092 struct request_queue *q;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040093 struct block_device *bd = NULL;
Andy Grover44bfd012012-06-07 10:38:51 -070094 fmode_t mode;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040095 int ret = -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080096
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040097 if (!(ib_dev->ibd_flags & IBDF_HAS_UDEV_PATH)) {
98 pr_err("Missing udev_path= parameters for IBLOCK\n");
99 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800100 }
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500101
102 ib_dev->ibd_bio_set = bioset_create(IBLOCK_BIO_POOL_SIZE, 0);
Andy Grover6708bb22011-06-08 10:36:43 -0700103 if (!ib_dev->ibd_bio_set) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400104 pr_err("IBLOCK: Unable to create bioset\n");
105 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800106 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400107
Andy Grover6708bb22011-06-08 10:36:43 -0700108 pr_debug( "IBLOCK: Claiming struct block_device: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800109 ib_dev->ibd_udev_path);
110
Andy Grover44bfd012012-06-07 10:38:51 -0700111 mode = FMODE_READ|FMODE_EXCL;
112 if (!ib_dev->ibd_readonly)
113 mode |= FMODE_WRITE;
114
115 bd = blkdev_get_by_path(ib_dev->ibd_udev_path, mode, ib_dev);
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700116 if (IS_ERR(bd)) {
117 ret = PTR_ERR(bd);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400118 goto out_free_bioset;
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700119 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800120 ib_dev->ibd_bd = bd;
121
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400122 q = bdev_get_queue(bd);
123
124 dev->dev_attrib.hw_block_size = bdev_logical_block_size(bd);
125 dev->dev_attrib.hw_max_sectors = UINT_MAX;
126 dev->dev_attrib.hw_queue_depth = q->nr_requests;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800127
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800128 /*
129 * Check if the underlying struct block_device request_queue supports
130 * the QUEUE_FLAG_DISCARD bit for UNMAP/WRITE_SAME in SCSI + TRIM
131 * in ATA and we need to set TPE=1
132 */
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700133 if (blk_queue_discard(q)) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400134 dev->dev_attrib.max_unmap_lba_count =
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800135 q->limits.max_discard_sectors;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400136
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800137 /*
138 * Currently hardcoded to 1 in Linux/SCSI code..
139 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400140 dev->dev_attrib.max_unmap_block_desc_count = 1;
141 dev->dev_attrib.unmap_granularity =
Marco Sanvido7347b5f2012-01-20 15:49:27 -0800142 q->limits.discard_granularity >> 9;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400143 dev->dev_attrib.unmap_granularity_alignment =
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800144 q->limits.discard_alignment;
145
Andy Grover6708bb22011-06-08 10:36:43 -0700146 pr_debug("IBLOCK: BLOCK Discard support available,"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800147 " disabled by default\n");
148 }
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800149 /*
150 * Enable write same emulation for IBLOCK and use 0xFFFF as
151 * the smaller WRITE_SAME(10) only has a two-byte block count.
152 */
153 dev->dev_attrib.max_write_same_len = 0xFFFF;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800154
Roland Dreiere22a7f02011-07-05 13:34:52 -0700155 if (blk_queue_nonrot(q))
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400156 dev->dev_attrib.is_nonrot = 1;
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800157
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400158 return 0;
Roland Dreiere22a7f02011-07-05 13:34:52 -0700159
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400160out_free_bioset:
161 bioset_free(ib_dev->ibd_bio_set);
162 ib_dev->ibd_bio_set = NULL;
163out:
164 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800165}
166
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400167static void iblock_free_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800168{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400169 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800170
Nicholas Bellingerbc665522011-02-09 15:34:38 -0800171 if (ib_dev->ibd_bd != NULL)
172 blkdev_put(ib_dev->ibd_bd, FMODE_WRITE|FMODE_READ|FMODE_EXCL);
173 if (ib_dev->ibd_bio_set != NULL)
174 bioset_free(ib_dev->ibd_bio_set);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800175 kfree(ib_dev);
176}
177
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800178static unsigned long long iblock_emulate_read_cap_with_block_size(
179 struct se_device *dev,
180 struct block_device *bd,
181 struct request_queue *q)
182{
183 unsigned long long blocks_long = (div_u64(i_size_read(bd->bd_inode),
184 bdev_logical_block_size(bd)) - 1);
185 u32 block_size = bdev_logical_block_size(bd);
186
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400187 if (block_size == dev->dev_attrib.block_size)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800188 return blocks_long;
189
190 switch (block_size) {
191 case 4096:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400192 switch (dev->dev_attrib.block_size) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800193 case 2048:
194 blocks_long <<= 1;
195 break;
196 case 1024:
197 blocks_long <<= 2;
198 break;
199 case 512:
200 blocks_long <<= 3;
201 default:
202 break;
203 }
204 break;
205 case 2048:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400206 switch (dev->dev_attrib.block_size) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800207 case 4096:
208 blocks_long >>= 1;
209 break;
210 case 1024:
211 blocks_long <<= 1;
212 break;
213 case 512:
214 blocks_long <<= 2;
215 break;
216 default:
217 break;
218 }
219 break;
220 case 1024:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400221 switch (dev->dev_attrib.block_size) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800222 case 4096:
223 blocks_long >>= 2;
224 break;
225 case 2048:
226 blocks_long >>= 1;
227 break;
228 case 512:
229 blocks_long <<= 1;
230 break;
231 default:
232 break;
233 }
234 break;
235 case 512:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400236 switch (dev->dev_attrib.block_size) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800237 case 4096:
238 blocks_long >>= 3;
239 break;
240 case 2048:
241 blocks_long >>= 2;
242 break;
243 case 1024:
244 blocks_long >>= 1;
245 break;
246 default:
247 break;
248 }
249 break;
250 default:
251 break;
252 }
253
254 return blocks_long;
255}
256
Nicholas Bellinger3a41d852012-11-17 14:27:55 -0800257static void iblock_complete_cmd(struct se_cmd *cmd)
258{
259 struct iblock_req *ibr = cmd->priv;
260 u8 status;
261
262 if (!atomic_dec_and_test(&ibr->pending))
263 return;
264
265 if (atomic_read(&ibr->ib_bio_err_cnt))
266 status = SAM_STAT_CHECK_CONDITION;
267 else
268 status = SAM_STAT_GOOD;
269
270 target_complete_cmd(cmd, status);
271 kfree(ibr);
272}
273
274static void iblock_bio_done(struct bio *bio, int err)
275{
276 struct se_cmd *cmd = bio->bi_private;
277 struct iblock_req *ibr = cmd->priv;
278
279 /*
280 * Set -EIO if !BIO_UPTODATE and the passed is still err=0
281 */
282 if (!test_bit(BIO_UPTODATE, &bio->bi_flags) && !err)
283 err = -EIO;
284
285 if (err != 0) {
286 pr_err("test_bit(BIO_UPTODATE) failed for bio: %p,"
287 " err: %d\n", bio, err);
288 /*
289 * Bump the ib_bio_err_cnt and release bio.
290 */
291 atomic_inc(&ibr->ib_bio_err_cnt);
292 smp_mb__after_atomic_inc();
293 }
294
295 bio_put(bio);
296
297 iblock_complete_cmd(cmd);
298}
299
300static struct bio *
301iblock_get_bio(struct se_cmd *cmd, sector_t lba, u32 sg_num)
302{
303 struct iblock_dev *ib_dev = IBLOCK_DEV(cmd->se_dev);
304 struct bio *bio;
305
306 /*
307 * Only allocate as many vector entries as the bio code allows us to,
308 * we'll loop later on until we have handled the whole request.
309 */
310 if (sg_num > BIO_MAX_PAGES)
311 sg_num = BIO_MAX_PAGES;
312
313 bio = bio_alloc_bioset(GFP_NOIO, sg_num, ib_dev->ibd_bio_set);
314 if (!bio) {
315 pr_err("Unable to allocate memory for bio\n");
316 return NULL;
317 }
318
319 bio->bi_bdev = ib_dev->ibd_bd;
320 bio->bi_private = cmd;
321 bio->bi_end_io = &iblock_bio_done;
322 bio->bi_sector = lba;
323
324 return bio;
325}
326
327static void iblock_submit_bios(struct bio_list *list, int rw)
328{
329 struct blk_plug plug;
330 struct bio *bio;
331
332 blk_start_plug(&plug);
333 while ((bio = bio_list_pop(list)))
334 submit_bio(rw, bio);
335 blk_finish_plug(&plug);
336}
337
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400338static void iblock_end_io_flush(struct bio *bio, int err)
339{
340 struct se_cmd *cmd = bio->bi_private;
341
342 if (err)
343 pr_err("IBLOCK: cache flush failed: %d\n", err);
344
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400345 if (cmd) {
Christoph Hellwigde103c92012-11-06 12:24:09 -0800346 if (err)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400347 target_complete_cmd(cmd, SAM_STAT_CHECK_CONDITION);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800348 else
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400349 target_complete_cmd(cmd, SAM_STAT_GOOD);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400350 }
351
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400352 bio_put(bio);
353}
354
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800355/*
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400356 * Implement SYCHRONIZE CACHE. Note that we can't handle lba ranges and must
357 * always flush the whole cache.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800358 */
Christoph Hellwigde103c92012-11-06 12:24:09 -0800359static sense_reason_t
360iblock_execute_sync_cache(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800361{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400362 struct iblock_dev *ib_dev = IBLOCK_DEV(cmd->se_dev);
Andy Grovera1d8b492011-05-02 17:12:10 -0700363 int immed = (cmd->t_task_cdb[1] & 0x2);
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400364 struct bio *bio;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800365
366 /*
367 * If the Immediate bit is set, queue up the GOOD response
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400368 * for this SYNCHRONIZE_CACHE op.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800369 */
370 if (immed)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400371 target_complete_cmd(cmd, SAM_STAT_GOOD);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800372
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400373 bio = bio_alloc(GFP_KERNEL, 0);
374 bio->bi_end_io = iblock_end_io_flush;
375 bio->bi_bdev = ib_dev->ibd_bd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800376 if (!immed)
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400377 bio->bi_private = cmd;
378 submit_bio(WRITE_FLUSH, bio);
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400379 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800380}
381
Christoph Hellwigde103c92012-11-06 12:24:09 -0800382static sense_reason_t
383iblock_execute_unmap(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800384{
Christoph Hellwig14150a62012-06-17 18:40:55 -0400385 struct se_device *dev = cmd->se_dev;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400386 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
Christoph Hellwig14150a62012-06-17 18:40:55 -0400387 unsigned char *buf, *ptr = NULL;
Christoph Hellwig14150a62012-06-17 18:40:55 -0400388 sector_t lba;
Paolo Bonzini0d7f1292012-09-07 17:30:33 +0200389 int size;
Roland Dreierb7fc7f32012-07-16 15:34:24 -0700390 u32 range;
Christoph Hellwigde103c92012-11-06 12:24:09 -0800391 sense_reason_t ret = 0;
392 int dl, bd_dl, err;
Christoph Hellwig14150a62012-06-17 18:40:55 -0400393
Roland Dreierbb992e72013-02-08 15:18:39 -0800394 /* We never set ANC_SUP */
395 if (cmd->t_task_cdb[1])
396 return TCM_INVALID_CDB_FIELD;
397
398 if (cmd->data_length == 0) {
399 target_complete_cmd(cmd, SAM_STAT_GOOD);
400 return 0;
401 }
402
Paolo Bonzini0d7f1292012-09-07 17:30:33 +0200403 if (cmd->data_length < 8) {
404 pr_warn("UNMAP parameter list length %u too small\n",
405 cmd->data_length);
Roland Dreierbb992e72013-02-08 15:18:39 -0800406 return TCM_PARAMETER_LIST_LENGTH_ERROR;
Paolo Bonzini0d7f1292012-09-07 17:30:33 +0200407 }
408
Christoph Hellwig14150a62012-06-17 18:40:55 -0400409 buf = transport_kmap_data_sg(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800410 if (!buf)
411 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwig14150a62012-06-17 18:40:55 -0400412
Roland Dreier1a5fa452012-07-16 15:34:23 -0700413 dl = get_unaligned_be16(&buf[0]);
414 bd_dl = get_unaligned_be16(&buf[2]);
415
Paolo Bonzini0d7f1292012-09-07 17:30:33 +0200416 size = cmd->data_length - 8;
417 if (bd_dl > size)
418 pr_warn("UNMAP parameter list length %u too small, ignoring bd_dl %u\n",
419 cmd->data_length, bd_dl);
420 else
421 size = bd_dl;
422
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400423 if (size / 16 > dev->dev_attrib.max_unmap_block_desc_count) {
Christoph Hellwigde103c92012-11-06 12:24:09 -0800424 ret = TCM_INVALID_PARAMETER_LIST;
Roland Dreier7409a662012-07-16 15:34:25 -0700425 goto err;
426 }
Roland Dreierb7fc7f32012-07-16 15:34:24 -0700427
428 /* First UNMAP block descriptor starts at 8 byte offset */
429 ptr = &buf[8];
430 pr_debug("UNMAP: Sub: %s Using dl: %u bd_dl: %u size: %u"
Christoph Hellwig14150a62012-06-17 18:40:55 -0400431 " ptr: %p\n", dev->transport->name, dl, bd_dl, size, ptr);
432
Roland Dreierb7fc7f32012-07-16 15:34:24 -0700433 while (size >= 16) {
Christoph Hellwig14150a62012-06-17 18:40:55 -0400434 lba = get_unaligned_be64(&ptr[0]);
435 range = get_unaligned_be32(&ptr[8]);
436 pr_debug("UNMAP: Using lba: %llu and range: %u\n",
437 (unsigned long long)lba, range);
438
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400439 if (range > dev->dev_attrib.max_unmap_lba_count) {
Christoph Hellwigde103c92012-11-06 12:24:09 -0800440 ret = TCM_INVALID_PARAMETER_LIST;
Roland Dreier2594e292012-07-16 15:34:22 -0700441 goto err;
442 }
443
444 if (lba + range > dev->transport->get_blocks(dev) + 1) {
Christoph Hellwigde103c92012-11-06 12:24:09 -0800445 ret = TCM_ADDRESS_OUT_OF_RANGE;
Roland Dreier2594e292012-07-16 15:34:22 -0700446 goto err;
447 }
448
Christoph Hellwigde103c92012-11-06 12:24:09 -0800449 err = blkdev_issue_discard(ib_dev->ibd_bd, lba, range,
Christoph Hellwig14150a62012-06-17 18:40:55 -0400450 GFP_KERNEL, 0);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800451 if (err < 0) {
Christoph Hellwig14150a62012-06-17 18:40:55 -0400452 pr_err("blkdev_issue_discard() failed: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -0800453 err);
454 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwig14150a62012-06-17 18:40:55 -0400455 goto err;
456 }
457
458 ptr += 16;
459 size -= 16;
460 }
461
462err:
463 transport_kunmap_data_sg(cmd);
464 if (!ret)
465 target_complete_cmd(cmd, GOOD);
466 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800467}
468
Christoph Hellwigde103c92012-11-06 12:24:09 -0800469static sense_reason_t
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800470iblock_execute_write_same_unmap(struct se_cmd *cmd)
Christoph Hellwig6f974e82012-06-17 18:40:54 -0400471{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400472 struct iblock_dev *ib_dev = IBLOCK_DEV(cmd->se_dev);
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800473 int rc;
Christoph Hellwig6f974e82012-06-17 18:40:54 -0400474
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800475 rc = blkdev_issue_discard(ib_dev->ibd_bd, cmd->t_task_lba,
Roland Dreier972b29c82013-02-22 09:52:57 -0800476 sbc_get_write_same_sectors(cmd), GFP_KERNEL, 0);
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800477 if (rc < 0) {
478 pr_warn("blkdev_issue_discard() failed: %d\n", rc);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800479 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwig6f974e82012-06-17 18:40:54 -0400480 }
481
482 target_complete_cmd(cmd, GOOD);
483 return 0;
484}
485
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800486static sense_reason_t
487iblock_execute_write_same(struct se_cmd *cmd)
488{
489 struct iblock_req *ibr;
490 struct scatterlist *sg;
491 struct bio *bio;
492 struct bio_list list;
493 sector_t block_lba = cmd->t_task_lba;
Roland Dreier972b29c82013-02-22 09:52:57 -0800494 sector_t sectors = sbc_get_write_same_sectors(cmd);
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800495
496 sg = &cmd->t_data_sg[0];
497
498 if (cmd->t_data_nents > 1 ||
499 sg->length != cmd->se_dev->dev_attrib.block_size) {
500 pr_err("WRITE_SAME: Illegal SGL t_data_nents: %u length: %u"
501 " block_size: %u\n", cmd->t_data_nents, sg->length,
502 cmd->se_dev->dev_attrib.block_size);
503 return TCM_INVALID_CDB_FIELD;
504 }
505
506 ibr = kzalloc(sizeof(struct iblock_req), GFP_KERNEL);
507 if (!ibr)
508 goto fail;
509 cmd->priv = ibr;
510
511 bio = iblock_get_bio(cmd, block_lba, 1);
512 if (!bio)
513 goto fail_free_ibr;
514
515 bio_list_init(&list);
516 bio_list_add(&list, bio);
517
518 atomic_set(&ibr->pending, 1);
519
520 while (sectors) {
521 while (bio_add_page(bio, sg_page(sg), sg->length, sg->offset)
522 != sg->length) {
523
524 bio = iblock_get_bio(cmd, block_lba, 1);
525 if (!bio)
526 goto fail_put_bios;
527
528 atomic_inc(&ibr->pending);
529 bio_list_add(&list, bio);
530 }
531
532 /* Always in 512 byte units for Linux/Block */
533 block_lba += sg->length >> IBLOCK_LBA_SHIFT;
534 sectors -= 1;
535 }
536
537 iblock_submit_bios(&list, WRITE);
538 return 0;
539
540fail_put_bios:
541 while ((bio = bio_list_pop(&list)))
542 bio_put(bio);
543fail_free_ibr:
544 kfree(ibr);
545fail:
546 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
547}
548
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549enum {
Andy Grover44bfd012012-06-07 10:38:51 -0700550 Opt_udev_path, Opt_readonly, Opt_force, Opt_err
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800551};
552
553static match_table_t tokens = {
554 {Opt_udev_path, "udev_path=%s"},
Andy Grover44bfd012012-06-07 10:38:51 -0700555 {Opt_readonly, "readonly=%d"},
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800556 {Opt_force, "force=%d"},
557 {Opt_err, NULL}
558};
559
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400560static ssize_t iblock_set_configfs_dev_params(struct se_device *dev,
561 const char *page, ssize_t count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800562{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400563 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
Jesper Juhl6d180252011-03-14 04:05:56 -0700564 char *orig, *ptr, *arg_p, *opts;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800565 substring_t args[MAX_OPT_ARGS];
Roland Dreier21bca312011-07-05 15:35:02 -0700566 int ret = 0, token;
Andy Grover44bfd012012-06-07 10:38:51 -0700567 unsigned long tmp_readonly;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800568
569 opts = kstrdup(page, GFP_KERNEL);
570 if (!opts)
571 return -ENOMEM;
572
573 orig = opts;
574
Sebastian Andrzej Siewior90c161b2011-11-23 20:53:17 +0100575 while ((ptr = strsep(&opts, ",\n")) != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800576 if (!*ptr)
577 continue;
578
579 token = match_token(ptr, tokens, args);
580 switch (token) {
581 case Opt_udev_path:
582 if (ib_dev->ibd_bd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700583 pr_err("Unable to set udev_path= while"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800584 " ib_dev->ibd_bd exists\n");
585 ret = -EEXIST;
586 goto out;
587 }
Nicholas Bellinger852b6ed2012-08-22 18:45:11 -0700588 if (match_strlcpy(ib_dev->ibd_udev_path, &args[0],
589 SE_UDEV_PATH_LEN) == 0) {
590 ret = -EINVAL;
Jesper Juhl6d180252011-03-14 04:05:56 -0700591 break;
592 }
Andy Grover6708bb22011-06-08 10:36:43 -0700593 pr_debug("IBLOCK: Referencing UDEV path: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800594 ib_dev->ibd_udev_path);
595 ib_dev->ibd_flags |= IBDF_HAS_UDEV_PATH;
596 break;
Andy Grover44bfd012012-06-07 10:38:51 -0700597 case Opt_readonly:
598 arg_p = match_strdup(&args[0]);
599 if (!arg_p) {
600 ret = -ENOMEM;
601 break;
602 }
603 ret = strict_strtoul(arg_p, 0, &tmp_readonly);
604 kfree(arg_p);
605 if (ret < 0) {
606 pr_err("strict_strtoul() failed for"
607 " readonly=\n");
608 goto out;
609 }
610 ib_dev->ibd_readonly = tmp_readonly;
611 pr_debug("IBLOCK: readonly: %d\n", ib_dev->ibd_readonly);
612 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800613 case Opt_force:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800614 break;
615 default:
616 break;
617 }
618 }
619
620out:
621 kfree(orig);
622 return (!ret) ? count : ret;
623}
624
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400625static ssize_t iblock_show_configfs_dev_params(struct se_device *dev, char *b)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800626{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400627 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
628 struct block_device *bd = ib_dev->ibd_bd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800629 char buf[BDEVNAME_SIZE];
630 ssize_t bl = 0;
631
632 if (bd)
633 bl += sprintf(b + bl, "iBlock device: %s",
634 bdevname(bd, buf));
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400635 if (ib_dev->ibd_flags & IBDF_HAS_UDEV_PATH)
Andy Grover44bfd012012-06-07 10:38:51 -0700636 bl += sprintf(b + bl, " UDEV PATH: %s",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400637 ib_dev->ibd_udev_path);
638 bl += sprintf(b + bl, " readonly: %d\n", ib_dev->ibd_readonly);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800639
640 bl += sprintf(b + bl, " ");
641 if (bd) {
642 bl += sprintf(b + bl, "Major: %d Minor: %d %s\n",
Roland Dreier21bca312011-07-05 15:35:02 -0700643 MAJOR(bd->bd_dev), MINOR(bd->bd_dev), (!bd->bd_contains) ?
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400644 "" : (bd->bd_holder == ib_dev) ?
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800645 "CLAIMED: IBLOCK" : "CLAIMED: OS");
646 } else {
Roland Dreier21bca312011-07-05 15:35:02 -0700647 bl += sprintf(b + bl, "Major: 0 Minor: 0\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800648 }
649
650 return bl;
651}
652
Christoph Hellwigde103c92012-11-06 12:24:09 -0800653static sense_reason_t
654iblock_execute_rw(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800655{
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400656 struct scatterlist *sgl = cmd->t_data_sg;
657 u32 sgl_nents = cmd->t_data_nents;
658 enum dma_data_direction data_direction = cmd->data_direction;
Andy Grover5951146d2011-07-19 10:26:37 +0000659 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400660 struct iblock_req *ibr;
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400661 struct bio *bio;
662 struct bio_list list;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800663 struct scatterlist *sg;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400664 u32 sg_num = sgl_nents;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800665 sector_t block_lba;
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500666 unsigned bio_cnt;
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800667 int rw = 0;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400668 int i;
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400669
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400670 if (data_direction == DMA_TO_DEVICE) {
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800671 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
672 struct request_queue *q = bdev_get_queue(ib_dev->ibd_bd);
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400673 /*
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800674 * Force writethrough using WRITE_FUA if a volatile write cache
675 * is not enabled, or if initiator set the Force Unit Access bit.
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400676 */
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800677 if (q->flush_flags & REQ_FUA) {
678 if (cmd->se_cmd_flags & SCF_FUA)
679 rw = WRITE_FUA;
680 else if (!(q->flush_flags & REQ_FLUSH))
681 rw = WRITE_FUA;
682 } else {
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400683 rw = WRITE;
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800684 }
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400685 } else {
686 rw = READ;
687 }
688
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800689 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400690 * Convert the blocksize advertised to the initiator to the 512 byte
691 * units unconditionally used by the Linux block layer.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800692 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400693 if (dev->dev_attrib.block_size == 4096)
Christoph Hellwig72a0e5e2012-04-23 11:35:30 -0400694 block_lba = (cmd->t_task_lba << 3);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400695 else if (dev->dev_attrib.block_size == 2048)
Christoph Hellwig72a0e5e2012-04-23 11:35:30 -0400696 block_lba = (cmd->t_task_lba << 2);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400697 else if (dev->dev_attrib.block_size == 1024)
Christoph Hellwig72a0e5e2012-04-23 11:35:30 -0400698 block_lba = (cmd->t_task_lba << 1);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400699 else if (dev->dev_attrib.block_size == 512)
Christoph Hellwig72a0e5e2012-04-23 11:35:30 -0400700 block_lba = cmd->t_task_lba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800701 else {
Andy Grover6708bb22011-06-08 10:36:43 -0700702 pr_err("Unsupported SCSI -> BLOCK LBA conversion:"
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400703 " %u\n", dev->dev_attrib.block_size);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800704 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800705 }
706
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400707 ibr = kzalloc(sizeof(struct iblock_req), GFP_KERNEL);
708 if (!ibr)
709 goto fail;
710 cmd->priv = ibr;
711
Paolo Bonzinie0de4452012-09-07 17:30:41 +0200712 if (!sgl_nents) {
713 atomic_set(&ibr->pending, 1);
714 iblock_complete_cmd(cmd);
715 return 0;
716 }
717
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400718 bio = iblock_get_bio(cmd, block_lba, sgl_nents);
719 if (!bio)
720 goto fail_free_ibr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800721
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400722 bio_list_init(&list);
723 bio_list_add(&list, bio);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400724
725 atomic_set(&ibr->pending, 2);
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500726 bio_cnt = 1;
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400727
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400728 for_each_sg(sgl, sg, sgl_nents, i) {
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400729 /*
730 * XXX: if the length the device accepts is shorter than the
731 * length of the S/G list entry this will cause and
732 * endless loop. Better hope no driver uses huge pages.
733 */
734 while (bio_add_page(bio, sg_page(sg), sg->length, sg->offset)
735 != sg->length) {
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500736 if (bio_cnt >= IBLOCK_MAX_BIO_PER_TASK) {
737 iblock_submit_bios(&list, rw);
738 bio_cnt = 0;
739 }
740
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400741 bio = iblock_get_bio(cmd, block_lba, sg_num);
Andy Grover6708bb22011-06-08 10:36:43 -0700742 if (!bio)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400743 goto fail_put_bios;
744
745 atomic_inc(&ibr->pending);
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400746 bio_list_add(&list, bio);
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500747 bio_cnt++;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800748 }
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400749
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800750 /* Always in 512 byte units for Linux/Block */
751 block_lba += sg->length >> IBLOCK_LBA_SHIFT;
752 sg_num--;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800753 }
754
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500755 iblock_submit_bios(&list, rw);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400756 iblock_complete_cmd(cmd);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700757 return 0;
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400758
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400759fail_put_bios:
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400760 while ((bio = bio_list_pop(&list)))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800761 bio_put(bio);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400762fail_free_ibr:
763 kfree(ibr);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400764fail:
Christoph Hellwigde103c92012-11-06 12:24:09 -0800765 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800766}
767
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800768static sector_t iblock_get_blocks(struct se_device *dev)
769{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400770 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
771 struct block_device *bd = ib_dev->ibd_bd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800772 struct request_queue *q = bdev_get_queue(bd);
773
774 return iblock_emulate_read_cap_with_block_size(dev, bd, q);
775}
776
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400777static struct sbc_ops iblock_sbc_ops = {
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400778 .execute_rw = iblock_execute_rw,
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400779 .execute_sync_cache = iblock_execute_sync_cache,
Christoph Hellwig6f974e82012-06-17 18:40:54 -0400780 .execute_write_same = iblock_execute_write_same,
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800781 .execute_write_same_unmap = iblock_execute_write_same_unmap,
Christoph Hellwig14150a62012-06-17 18:40:55 -0400782 .execute_unmap = iblock_execute_unmap,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400783};
784
Christoph Hellwigde103c92012-11-06 12:24:09 -0800785static sense_reason_t
786iblock_parse_cdb(struct se_cmd *cmd)
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400787{
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400788 return sbc_parse_cdb(cmd, &iblock_sbc_ops);
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400789}
790
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800791bool iblock_get_write_cache(struct se_device *dev)
792{
793 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
794 struct block_device *bd = ib_dev->ibd_bd;
795 struct request_queue *q = bdev_get_queue(bd);
796
797 return q->flush_flags & REQ_FLUSH;
798}
799
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800800static struct se_subsystem_api iblock_template = {
801 .name = "iblock",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400802 .inquiry_prod = "IBLOCK",
803 .inquiry_rev = IBLOCK_VERSION,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800804 .owner = THIS_MODULE,
805 .transport_type = TRANSPORT_PLUGIN_VHBA_PDEV,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800806 .attach_hba = iblock_attach_hba,
807 .detach_hba = iblock_detach_hba,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400808 .alloc_device = iblock_alloc_device,
809 .configure_device = iblock_configure_device,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800810 .free_device = iblock_free_device,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400811 .parse_cdb = iblock_parse_cdb,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800812 .set_configfs_dev_params = iblock_set_configfs_dev_params,
813 .show_configfs_dev_params = iblock_show_configfs_dev_params,
Christoph Hellwig6f23ac82012-10-07 10:55:53 -0400814 .get_device_type = sbc_get_device_type,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800815 .get_blocks = iblock_get_blocks,
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800816 .get_write_cache = iblock_get_write_cache,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800817};
818
819static int __init iblock_module_init(void)
820{
821 return transport_subsystem_register(&iblock_template);
822}
823
Asias He63b91d52013-02-27 12:50:56 +0800824static void __exit iblock_module_exit(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800825{
826 transport_subsystem_release(&iblock_template);
827}
828
829MODULE_DESCRIPTION("TCM IBLOCK subsystem plugin");
830MODULE_AUTHOR("nab@Linux-iSCSI.org");
831MODULE_LICENSE("GPL");
832
833module_init(iblock_module_init);
834module_exit(iblock_module_exit);