mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
7988613b0e
More prep work for immutable biovecs - with immutable bvecs drivers won't be able to use the biovec directly, they'll need to use helpers that take into account bio->bi_iter.bi_bvec_done. This updates callers for the new usage without changing the implementation yet. Signed-off-by: Kent Overstreet <kmo@daterainc.com> Cc: Jens Axboe <axboe@kernel.dk> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: "Ed L. Cashin" <ecashin@coraid.com> Cc: Nick Piggin <npiggin@kernel.dk> Cc: Lars Ellenberg <drbd-dev@lists.linbit.com> Cc: Jiri Kosina <jkosina@suse.cz> Cc: Paul Clements <Paul.Clements@steeleye.com> Cc: Jim Paris <jim@jtan.com> Cc: Geoff Levand <geoff@infradead.org> Cc: Yehuda Sadeh <yehuda@inktank.com> Cc: Sage Weil <sage@inktank.com> Cc: Alex Elder <elder@inktank.com> Cc: ceph-devel@vger.kernel.org Cc: Joshua Morris <josh.h.morris@us.ibm.com> Cc: Philip Kelleher <pjk1939@linux.vnet.ibm.com> Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> Cc: Jeremy Fitzhardinge <jeremy@goop.org> Cc: Neil Brown <neilb@suse.de> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: linux390@de.ibm.com Cc: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com> Cc: Sreekanth Reddy <Sreekanth.Reddy@lsi.com> Cc: support@lsi.com Cc: "James E.J. Bottomley" <JBottomley@parallels.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Alexander Viro <viro@zeniv.linux.org.uk> Cc: Steven Whitehouse <swhiteho@redhat.com> Cc: Herton Ronaldo Krzesinski <herton.krzesinski@canonical.com> Cc: Tejun Heo <tj@kernel.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Guo Chao <yan@linux.vnet.ibm.com> Cc: Asai Thambi S P <asamymuthupa@micron.com> Cc: Selvan Mani <smani@micron.com> Cc: Sam Bradshaw <sbradshaw@micron.com> Cc: Matthew Wilcox <matthew.r.wilcox@intel.com> Cc: Keith Busch <keith.busch@intel.com> Cc: Stephen Hemminger <shemminger@vyatta.com> Cc: Quoc-Son Anh <quoc-sonx.anh@intel.com> Cc: Sebastian Ott <sebott@linux.vnet.ibm.com> Cc: Nitin Gupta <ngupta@vflare.org> Cc: Minchan Kim <minchan@kernel.org> Cc: Jerome Marchand <jmarchan@redhat.com> Cc: Seth Jennings <sjenning@linux.vnet.ibm.com> Cc: "Martin K. Petersen" <martin.petersen@oracle.com> Cc: Mike Snitzer <snitzer@redhat.com> Cc: Vivek Goyal <vgoyal@redhat.com> Cc: "Darrick J. Wong" <darrick.wong@oracle.com> Cc: Chris Metcalf <cmetcalf@tilera.com> Cc: Jan Kara <jack@suse.cz> Cc: linux-m68k@lists.linux-m68k.org Cc: linuxppc-dev@lists.ozlabs.org Cc: drbd-user@lists.linbit.com Cc: nbd-general@lists.sourceforge.net Cc: cbe-oss-dev@lists.ozlabs.org Cc: xen-devel@lists.xensource.com Cc: virtualization@lists.linux-foundation.org Cc: linux-raid@vger.kernel.org Cc: linux-s390@vger.kernel.org Cc: DL-MPTFusionLinux@lsi.com Cc: linux-scsi@vger.kernel.org Cc: devel@driverdev.osuosl.org Cc: linux-fsdevel@vger.kernel.org Cc: cluster-devel@redhat.com Cc: linux-mm@kvack.org Acked-by: Geoff Levand <geoff@infradead.org>
196 lines
4.1 KiB
C
196 lines
4.1 KiB
C
/*
|
|
* ARAnyM block device driver
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of this archive
|
|
* for more details.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/moduleparam.h>
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/types.h>
|
|
#include <linux/genhd.h>
|
|
#include <linux/blkdev.h>
|
|
#include <linux/hdreg.h>
|
|
#include <linux/slab.h>
|
|
|
|
#include <asm/natfeat.h>
|
|
|
|
static long nfhd_id;
|
|
|
|
enum {
|
|
/* emulation entry points */
|
|
NFHD_READ_WRITE = 10,
|
|
NFHD_GET_CAPACITY = 14,
|
|
|
|
/* skip ACSI devices */
|
|
NFHD_DEV_OFFSET = 8,
|
|
};
|
|
|
|
static inline s32 nfhd_read_write(u32 major, u32 minor, u32 rwflag, u32 recno,
|
|
u32 count, u32 buf)
|
|
{
|
|
return nf_call(nfhd_id + NFHD_READ_WRITE, major, minor, rwflag, recno,
|
|
count, buf);
|
|
}
|
|
|
|
static inline s32 nfhd_get_capacity(u32 major, u32 minor, u32 *blocks,
|
|
u32 *blocksize)
|
|
{
|
|
return nf_call(nfhd_id + NFHD_GET_CAPACITY, major, minor,
|
|
virt_to_phys(blocks), virt_to_phys(blocksize));
|
|
}
|
|
|
|
static LIST_HEAD(nfhd_list);
|
|
|
|
static int major_num;
|
|
module_param(major_num, int, 0);
|
|
|
|
struct nfhd_device {
|
|
struct list_head list;
|
|
int id;
|
|
u32 blocks, bsize;
|
|
int bshift;
|
|
struct request_queue *queue;
|
|
struct gendisk *disk;
|
|
};
|
|
|
|
static void nfhd_make_request(struct request_queue *queue, struct bio *bio)
|
|
{
|
|
struct nfhd_device *dev = queue->queuedata;
|
|
struct bio_vec bvec;
|
|
struct bvec_iter iter;
|
|
int dir, len, shift;
|
|
sector_t sec = bio->bi_iter.bi_sector;
|
|
|
|
dir = bio_data_dir(bio);
|
|
shift = dev->bshift;
|
|
bio_for_each_segment(bvec, bio, iter) {
|
|
len = bvec.bv_len;
|
|
len >>= 9;
|
|
nfhd_read_write(dev->id, 0, dir, sec >> shift, len >> shift,
|
|
bvec_to_phys(&bvec));
|
|
sec += len;
|
|
}
|
|
bio_endio(bio, 0);
|
|
}
|
|
|
|
static int nfhd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
|
{
|
|
struct nfhd_device *dev = bdev->bd_disk->private_data;
|
|
|
|
geo->cylinders = dev->blocks >> (6 - dev->bshift);
|
|
geo->heads = 4;
|
|
geo->sectors = 16;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct block_device_operations nfhd_ops = {
|
|
.owner = THIS_MODULE,
|
|
.getgeo = nfhd_getgeo,
|
|
};
|
|
|
|
static int __init nfhd_init_one(int id, u32 blocks, u32 bsize)
|
|
{
|
|
struct nfhd_device *dev;
|
|
int dev_id = id - NFHD_DEV_OFFSET;
|
|
|
|
pr_info("nfhd%u: found device with %u blocks (%u bytes)\n", dev_id,
|
|
blocks, bsize);
|
|
|
|
if (bsize < 512 || (bsize & (bsize - 1))) {
|
|
pr_warn("nfhd%u: invalid block size\n", dev_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
dev = kmalloc(sizeof(struct nfhd_device), GFP_KERNEL);
|
|
if (!dev)
|
|
goto out;
|
|
|
|
dev->id = id;
|
|
dev->blocks = blocks;
|
|
dev->bsize = bsize;
|
|
dev->bshift = ffs(bsize) - 10;
|
|
|
|
dev->queue = blk_alloc_queue(GFP_KERNEL);
|
|
if (dev->queue == NULL)
|
|
goto free_dev;
|
|
|
|
dev->queue->queuedata = dev;
|
|
blk_queue_make_request(dev->queue, nfhd_make_request);
|
|
blk_queue_logical_block_size(dev->queue, bsize);
|
|
|
|
dev->disk = alloc_disk(16);
|
|
if (!dev->disk)
|
|
goto free_queue;
|
|
|
|
dev->disk->major = major_num;
|
|
dev->disk->first_minor = dev_id * 16;
|
|
dev->disk->fops = &nfhd_ops;
|
|
dev->disk->private_data = dev;
|
|
sprintf(dev->disk->disk_name, "nfhd%u", dev_id);
|
|
set_capacity(dev->disk, (sector_t)blocks * (bsize / 512));
|
|
dev->disk->queue = dev->queue;
|
|
|
|
add_disk(dev->disk);
|
|
|
|
list_add_tail(&dev->list, &nfhd_list);
|
|
|
|
return 0;
|
|
|
|
free_queue:
|
|
blk_cleanup_queue(dev->queue);
|
|
free_dev:
|
|
kfree(dev);
|
|
out:
|
|
return -ENOMEM;
|
|
}
|
|
|
|
static int __init nfhd_init(void)
|
|
{
|
|
u32 blocks, bsize;
|
|
int i;
|
|
|
|
nfhd_id = nf_get_id("XHDI");
|
|
if (!nfhd_id)
|
|
return -ENODEV;
|
|
|
|
major_num = register_blkdev(major_num, "nfhd");
|
|
if (major_num <= 0) {
|
|
pr_warn("nfhd: unable to get major number\n");
|
|
return major_num;
|
|
}
|
|
|
|
for (i = NFHD_DEV_OFFSET; i < 24; i++) {
|
|
if (nfhd_get_capacity(i, 0, &blocks, &bsize))
|
|
continue;
|
|
nfhd_init_one(i, blocks, bsize);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void __exit nfhd_exit(void)
|
|
{
|
|
struct nfhd_device *dev, *next;
|
|
|
|
list_for_each_entry_safe(dev, next, &nfhd_list, list) {
|
|
list_del(&dev->list);
|
|
del_gendisk(dev->disk);
|
|
put_disk(dev->disk);
|
|
blk_cleanup_queue(dev->queue);
|
|
kfree(dev);
|
|
}
|
|
unregister_blkdev(major_num, "nfhd");
|
|
}
|
|
|
|
module_init(nfhd_init);
|
|
module_exit(nfhd_exit);
|
|
|
|
MODULE_LICENSE("GPL");
|