LCOV - code coverage report
Current view: top level - drivers/md - dm-linear.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 0 67 0.0 %
Date: 2014-02-18 Functions: 0 9 0.0 %
Branches: 0 23 0.0 %

           Branch data     Line data    Source code
       1                 :            : /*
       2                 :            :  * Copyright (C) 2001-2003 Sistina Software (UK) Limited.
       3                 :            :  *
       4                 :            :  * This file is released under the GPL.
       5                 :            :  */
       6                 :            : 
       7                 :            : #include "dm.h"
       8                 :            : #include <linux/module.h>
       9                 :            : #include <linux/init.h>
      10                 :            : #include <linux/blkdev.h>
      11                 :            : #include <linux/bio.h>
      12                 :            : #include <linux/slab.h>
      13                 :            : #include <linux/device-mapper.h>
      14                 :            : 
      15                 :            : #define DM_MSG_PREFIX "linear"
      16                 :            : 
      17                 :            : /*
      18                 :            :  * Linear: maps a linear range of a device.
      19                 :            :  */
      20                 :            : struct linear_c {
      21                 :            :         struct dm_dev *dev;
      22                 :            :         sector_t start;
      23                 :            : };
      24                 :            : 
      25                 :            : /*
      26                 :            :  * Construct a linear mapping: <dev_path> <offset>
      27                 :            :  */
      28                 :          0 : static int linear_ctr(struct dm_target *ti, unsigned int argc, char **argv)
      29                 :            : {
      30                 :            :         struct linear_c *lc;
      31                 :            :         unsigned long long tmp;
      32                 :            :         char dummy;
      33                 :            : 
      34         [ #  # ]:          0 :         if (argc != 2) {
      35                 :          0 :                 ti->error = "Invalid argument count";
      36                 :          0 :                 return -EINVAL;
      37                 :            :         }
      38                 :            : 
      39                 :            :         lc = kmalloc(sizeof(*lc), GFP_KERNEL);
      40         [ #  # ]:          0 :         if (lc == NULL) {
      41                 :          0 :                 ti->error = "dm-linear: Cannot allocate linear context";
      42                 :          0 :                 return -ENOMEM;
      43                 :            :         }
      44                 :            : 
      45         [ #  # ]:          0 :         if (sscanf(argv[1], "%llu%c", &tmp, &dummy) != 1) {
      46                 :          0 :                 ti->error = "dm-linear: Invalid device sector";
      47                 :          0 :                 goto bad;
      48                 :            :         }
      49                 :          0 :         lc->start = tmp;
      50                 :            : 
      51         [ #  # ]:          0 :         if (dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev)) {
      52                 :          0 :                 ti->error = "dm-linear: Device lookup failed";
      53                 :          0 :                 goto bad;
      54                 :            :         }
      55                 :            : 
      56                 :          0 :         ti->num_flush_bios = 1;
      57                 :          0 :         ti->num_discard_bios = 1;
      58                 :          0 :         ti->num_write_same_bios = 1;
      59                 :          0 :         ti->private = lc;
      60                 :          0 :         return 0;
      61                 :            : 
      62                 :            :       bad:
      63                 :          0 :         kfree(lc);
      64                 :          0 :         return -EINVAL;
      65                 :            : }
      66                 :            : 
      67                 :          0 : static void linear_dtr(struct dm_target *ti)
      68                 :            : {
      69                 :          0 :         struct linear_c *lc = (struct linear_c *) ti->private;
      70                 :            : 
      71                 :          0 :         dm_put_device(ti, lc->dev);
      72                 :          0 :         kfree(lc);
      73                 :          0 : }
      74                 :            : 
      75                 :            : static sector_t linear_map_sector(struct dm_target *ti, sector_t bi_sector)
      76                 :            : {
      77                 :          0 :         struct linear_c *lc = ti->private;
      78                 :            : 
      79                 :          0 :         return lc->start + dm_target_offset(ti, bi_sector);
      80                 :            : }
      81                 :            : 
      82                 :            : static void linear_map_bio(struct dm_target *ti, struct bio *bio)
      83                 :            : {
      84                 :          0 :         struct linear_c *lc = ti->private;
      85                 :            : 
      86                 :          0 :         bio->bi_bdev = lc->dev->bdev;
      87         [ #  # ]:          0 :         if (bio_sectors(bio))
      88                 :          0 :                 bio->bi_sector = linear_map_sector(ti, bio->bi_sector);
      89                 :            : }
      90                 :            : 
      91                 :          0 : static int linear_map(struct dm_target *ti, struct bio *bio)
      92                 :            : {
      93                 :            :         linear_map_bio(ti, bio);
      94                 :            : 
      95                 :          0 :         return DM_MAPIO_REMAPPED;
      96                 :            : }
      97                 :            : 
      98                 :          0 : static void linear_status(struct dm_target *ti, status_type_t type,
      99                 :            :                           unsigned status_flags, char *result, unsigned maxlen)
     100                 :            : {
     101                 :          0 :         struct linear_c *lc = (struct linear_c *) ti->private;
     102                 :            : 
     103      [ #  #  # ]:          0 :         switch (type) {
     104                 :            :         case STATUSTYPE_INFO:
     105                 :          0 :                 result[0] = '\0';
     106                 :          0 :                 break;
     107                 :            : 
     108                 :            :         case STATUSTYPE_TABLE:
     109                 :          0 :                 snprintf(result, maxlen, "%s %llu", lc->dev->name,
     110                 :            :                                 (unsigned long long)lc->start);
     111                 :          0 :                 break;
     112                 :            :         }
     113                 :          0 : }
     114                 :            : 
     115                 :          0 : static int linear_ioctl(struct dm_target *ti, unsigned int cmd,
     116                 :            :                         unsigned long arg)
     117                 :            : {
     118                 :          0 :         struct linear_c *lc = (struct linear_c *) ti->private;
     119                 :          0 :         struct dm_dev *dev = lc->dev;
     120                 :            :         int r = 0;
     121                 :            : 
     122                 :            :         /*
     123                 :            :          * Only pass ioctls through if the device sizes match exactly.
     124                 :            :          */
     125 [ #  # ][ #  # ]:          0 :         if (lc->start ||
     126                 :          0 :             ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT)
     127                 :          0 :                 r = scsi_verify_blk_ioctl(NULL, cmd);
     128                 :            : 
     129         [ #  # ]:          0 :         return r ? : __blkdev_driver_ioctl(dev->bdev, dev->mode, cmd, arg);
     130                 :            : }
     131                 :            : 
     132                 :          0 : static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm,
     133                 :            :                         struct bio_vec *biovec, int max_size)
     134                 :            : {
     135                 :          0 :         struct linear_c *lc = ti->private;
     136                 :          0 :         struct request_queue *q = bdev_get_queue(lc->dev->bdev);
     137                 :            : 
     138         [ #  # ]:          0 :         if (!q->merge_bvec_fn)
     139                 :            :                 return max_size;
     140                 :            : 
     141                 :          0 :         bvm->bi_bdev = lc->dev->bdev;
     142                 :          0 :         bvm->bi_sector = linear_map_sector(ti, bvm->bi_sector);
     143                 :            : 
     144                 :          0 :         return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
     145                 :            : }
     146                 :            : 
     147                 :          0 : static int linear_iterate_devices(struct dm_target *ti,
     148                 :            :                                   iterate_devices_callout_fn fn, void *data)
     149                 :            : {
     150                 :          0 :         struct linear_c *lc = ti->private;
     151                 :            : 
     152                 :          0 :         return fn(ti, lc->dev, lc->start, ti->len, data);
     153                 :            : }
     154                 :            : 
     155                 :            : static struct target_type linear_target = {
     156                 :            :         .name   = "linear",
     157                 :            :         .version = {1, 2, 1},
     158                 :            :         .module = THIS_MODULE,
     159                 :            :         .ctr    = linear_ctr,
     160                 :            :         .dtr    = linear_dtr,
     161                 :            :         .map    = linear_map,
     162                 :            :         .status = linear_status,
     163                 :            :         .ioctl  = linear_ioctl,
     164                 :            :         .merge  = linear_merge,
     165                 :            :         .iterate_devices = linear_iterate_devices,
     166                 :            : };
     167                 :            : 
     168                 :          0 : int __init dm_linear_init(void)
     169                 :            : {
     170                 :          0 :         int r = dm_register_target(&linear_target);
     171                 :            : 
     172         [ #  # ]:          0 :         if (r < 0)
     173                 :          0 :                 DMERR("register failed %d", r);
     174                 :            : 
     175                 :          0 :         return r;
     176                 :            : }
     177                 :            : 
     178                 :          0 : void dm_linear_exit(void)
     179                 :            : {
     180                 :          0 :         dm_unregister_target(&linear_target);
     181                 :          0 : }

Generated by: LCOV version 1.9