mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
Merge tag 'pull-getgeo' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs into for-6.18/block
Pull struct block_device getgeo changes from Al. "switching ->getgeo() from struct block_device to struct gendisk Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>" * tag 'pull-getgeo' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: block: switch ->getgeo() to struct gendisk scsi: switch ->bios_param() to passing gendisk scsi: switch scsi_bios_ptable() and scsi_partsize() to gendisk
This commit is contained in:
@@ -443,7 +443,7 @@ prototypes::
|
||||
int (*direct_access) (struct block_device *, sector_t, void **,
|
||||
unsigned long *);
|
||||
void (*unlock_native_capacity) (struct gendisk *);
|
||||
int (*getgeo)(struct block_device *, struct hd_geometry *);
|
||||
int (*getgeo)(struct gendisk *, struct hd_geometry *);
|
||||
void (*swap_slot_free_notify) (struct block_device *, unsigned long);
|
||||
|
||||
locking rules:
|
||||
|
||||
@@ -380,7 +380,7 @@ Details::
|
||||
|
||||
/**
|
||||
* scsi_bios_ptable - return copy of block device's partition table
|
||||
* @dev: pointer to block device
|
||||
* @dev: pointer to gendisk
|
||||
*
|
||||
* Returns pointer to partition table, or NULL for failure
|
||||
*
|
||||
@@ -390,7 +390,7 @@ Details::
|
||||
*
|
||||
* Defined in: drivers/scsi/scsicam.c
|
||||
**/
|
||||
unsigned char *scsi_bios_ptable(struct block_device *dev)
|
||||
unsigned char *scsi_bios_ptable(struct gendisk *dev)
|
||||
|
||||
|
||||
/**
|
||||
@@ -623,7 +623,7 @@ Details::
|
||||
* bios_param - fetch head, sector, cylinder info for a disk
|
||||
* @sdev: pointer to scsi device context (defined in
|
||||
* include/scsi/scsi_device.h)
|
||||
* @bdev: pointer to block device context (defined in fs.h)
|
||||
* @disk: pointer to gendisk (defined in blkdev.h)
|
||||
* @capacity: device size (in 512 byte sectors)
|
||||
* @params: three element array to place output:
|
||||
* params[0] number of heads (max 255)
|
||||
@@ -643,7 +643,7 @@ Details::
|
||||
*
|
||||
* Optionally defined in: LLD
|
||||
**/
|
||||
int bios_param(struct scsi_device * sdev, struct block_device *bdev,
|
||||
int bios_param(struct scsi_device * sdev, struct gendisk *disk,
|
||||
sector_t capacity, int params[3])
|
||||
|
||||
|
||||
|
||||
@@ -77,9 +77,9 @@ static void nfhd_submit_bio(struct bio *bio)
|
||||
bio_endio(bio);
|
||||
}
|
||||
|
||||
static int nfhd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
static int nfhd_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
struct nfhd_device *dev = bdev->bd_disk->private_data;
|
||||
struct nfhd_device *dev = disk->private_data;
|
||||
|
||||
geo->cylinders = dev->blocks >> (6 - dev->bshift);
|
||||
geo->heads = 4;
|
||||
|
||||
@@ -108,7 +108,7 @@ static DEFINE_MUTEX(ubd_lock);
|
||||
|
||||
static int ubd_ioctl(struct block_device *bdev, blk_mode_t mode,
|
||||
unsigned int cmd, unsigned long arg);
|
||||
static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo);
|
||||
static int ubd_getgeo(struct gendisk *disk, struct hd_geometry *geo);
|
||||
|
||||
#define MAX_DEV (16)
|
||||
|
||||
@@ -1324,9 +1324,9 @@ static blk_status_t ubd_queue_rq(struct blk_mq_hw_ctx *hctx,
|
||||
return res;
|
||||
}
|
||||
|
||||
static int ubd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
static int ubd_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
struct ubd *ubd_dev = bdev->bd_disk->private_data;
|
||||
struct ubd *ubd_dev = disk->private_data;
|
||||
|
||||
geo->heads = 128;
|
||||
geo->sectors = 32;
|
||||
|
||||
+2
-2
@@ -481,7 +481,7 @@ static int blkdev_getgeo(struct block_device *bdev,
|
||||
*/
|
||||
memset(&geo, 0, sizeof(geo));
|
||||
geo.start = get_start_sect(bdev);
|
||||
ret = disk->fops->getgeo(bdev, &geo);
|
||||
ret = disk->fops->getgeo(disk, &geo);
|
||||
if (ret)
|
||||
return ret;
|
||||
if (copy_to_user(argp, &geo, sizeof(geo)))
|
||||
@@ -515,7 +515,7 @@ static int compat_hdio_getgeo(struct block_device *bdev,
|
||||
* want to override it.
|
||||
*/
|
||||
geo.start = get_start_sect(bdev);
|
||||
ret = disk->fops->getgeo(bdev, &geo);
|
||||
ret = disk->fops->getgeo(disk, &geo);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
||||
@@ -358,7 +358,7 @@ int ibm_partition(struct parsed_partitions *state)
|
||||
goto out_nolab;
|
||||
/* set start if not filled by getgeo function e.g. virtblk */
|
||||
geo->start = get_start_sect(bdev);
|
||||
if (disk->fops->getgeo(bdev, geo))
|
||||
if (disk->fops->getgeo(disk, geo))
|
||||
goto out_freeall;
|
||||
if (!fn || fn(disk, info)) {
|
||||
kfree(info);
|
||||
|
||||
@@ -351,7 +351,7 @@ EXPORT_SYMBOL_GPL(ata_common_sdev_groups);
|
||||
/**
|
||||
* ata_std_bios_param - generic bios head/sector/cylinder calculator used by sd.
|
||||
* @sdev: SCSI device for which BIOS geometry is to be determined
|
||||
* @bdev: block device associated with @sdev
|
||||
* @unused: gendisk associated with @sdev
|
||||
* @capacity: capacity of SCSI device
|
||||
* @geom: location to which geometry will be output
|
||||
*
|
||||
@@ -366,7 +366,7 @@ EXPORT_SYMBOL_GPL(ata_common_sdev_groups);
|
||||
* RETURNS:
|
||||
* Zero.
|
||||
*/
|
||||
int ata_std_bios_param(struct scsi_device *sdev, struct block_device *bdev,
|
||||
int ata_std_bios_param(struct scsi_device *sdev, struct gendisk *unused,
|
||||
sector_t capacity, int geom[])
|
||||
{
|
||||
geom[0] = 255;
|
||||
|
||||
@@ -1523,13 +1523,13 @@ static blk_status_t amiflop_queue_rq(struct blk_mq_hw_ctx *hctx,
|
||||
return BLK_STS_OK;
|
||||
}
|
||||
|
||||
static int fd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
static int fd_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
int drive = MINOR(bdev->bd_dev) & 3;
|
||||
struct amiga_floppy_struct *p = disk->private_data;
|
||||
|
||||
geo->heads = unit[drive].type->heads;
|
||||
geo->sectors = unit[drive].dtype->sects * unit[drive].type->sect_mult;
|
||||
geo->cylinders = unit[drive].type->tracks;
|
||||
geo->heads = p->type->heads;
|
||||
geo->sectors = p->dtype->sects * p->type->sect_mult;
|
||||
geo->cylinders = p->type->tracks;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -269,9 +269,9 @@ static blk_status_t aoeblk_queue_rq(struct blk_mq_hw_ctx *hctx,
|
||||
}
|
||||
|
||||
static int
|
||||
aoeblk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
aoeblk_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
struct aoedev *d = bdev->bd_disk->private_data;
|
||||
struct aoedev *d = disk->private_data;
|
||||
|
||||
if ((d->flags & DEVFL_UP) == 0) {
|
||||
printk(KERN_ERR "aoe: disk not up\n");
|
||||
|
||||
@@ -3361,9 +3361,9 @@ static int get_floppy_geometry(int drive, int type, struct floppy_struct **g)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int fd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
static int fd_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
int drive = (long)bdev->bd_disk->private_data;
|
||||
int drive = (long)disk->private_data;
|
||||
int type = ITYPE(drive_state[drive].fd_device);
|
||||
struct floppy_struct *g;
|
||||
int ret;
|
||||
|
||||
@@ -3148,17 +3148,17 @@ static int mtip_block_compat_ioctl(struct block_device *dev,
|
||||
* that each partition is also 4KB aligned. Non-aligned partitions adversely
|
||||
* affects performance.
|
||||
*
|
||||
* @dev Pointer to the block_device strucutre.
|
||||
* @disk Pointer to the gendisk strucutre.
|
||||
* @geo Pointer to a hd_geometry structure.
|
||||
*
|
||||
* return value
|
||||
* 0 Operation completed successfully.
|
||||
* -ENOTTY An error occurred while reading the drive capacity.
|
||||
*/
|
||||
static int mtip_block_getgeo(struct block_device *dev,
|
||||
static int mtip_block_getgeo(struct gendisk *disk,
|
||||
struct hd_geometry *geo)
|
||||
{
|
||||
struct driver_data *dd = dev->bd_disk->private_data;
|
||||
struct driver_data *dd = disk->private_data;
|
||||
sector_t capacity;
|
||||
|
||||
if (!dd)
|
||||
|
||||
@@ -942,11 +942,11 @@ static void rnbd_client_release(struct gendisk *gen)
|
||||
rnbd_clt_put_dev(dev);
|
||||
}
|
||||
|
||||
static int rnbd_client_getgeo(struct block_device *block_device,
|
||||
static int rnbd_client_getgeo(struct gendisk *disk,
|
||||
struct hd_geometry *geo)
|
||||
{
|
||||
u64 size;
|
||||
struct rnbd_clt_dev *dev = block_device->bd_disk->private_data;
|
||||
struct rnbd_clt_dev *dev = disk->private_data;
|
||||
struct queue_limits *limit = &dev->queue->limits;
|
||||
|
||||
size = dev->size * (limit->logical_block_size / SECTOR_SIZE);
|
||||
|
||||
@@ -119,9 +119,8 @@ static inline u32 vdc_tx_dring_avail(struct vio_dring_state *dr)
|
||||
return vio_dring_avail(dr, VDC_TX_RING_SIZE);
|
||||
}
|
||||
|
||||
static int vdc_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
static int vdc_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
struct gendisk *disk = bdev->bd_disk;
|
||||
sector_t nsect = get_capacity(disk);
|
||||
sector_t cylinders = nsect;
|
||||
|
||||
|
||||
@@ -711,9 +711,9 @@ static int floppy_ioctl(struct block_device *bdev, blk_mode_t mode,
|
||||
return -ENOTTY;
|
||||
}
|
||||
|
||||
static int floppy_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
static int floppy_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
struct floppy_state *fs = bdev->bd_disk->private_data;
|
||||
struct floppy_state *fs = disk->private_data;
|
||||
struct floppy_struct *g;
|
||||
int ret;
|
||||
|
||||
|
||||
@@ -829,9 +829,9 @@ out:
|
||||
}
|
||||
|
||||
/* We provide getgeo only to please some old bootloader/partitioning tools */
|
||||
static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
|
||||
static int virtblk_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
struct virtio_blk *vblk = bd->bd_disk->private_data;
|
||||
struct virtio_blk *vblk = disk->private_data;
|
||||
int ret = 0;
|
||||
|
||||
mutex_lock(&vblk->vdev_mutex);
|
||||
@@ -853,7 +853,7 @@ static int virtblk_getgeo(struct block_device *bd, struct hd_geometry *geo)
|
||||
/* some standard values, similar to sd */
|
||||
geo->heads = 1 << 6;
|
||||
geo->sectors = 1 << 5;
|
||||
geo->cylinders = get_capacity(bd->bd_disk) >> 11;
|
||||
geo->cylinders = get_capacity(disk) >> 11;
|
||||
}
|
||||
out:
|
||||
mutex_unlock(&vblk->vdev_mutex);
|
||||
|
||||
@@ -493,11 +493,11 @@ static void blkif_restart_queue_callback(void *arg)
|
||||
schedule_work(&rinfo->work);
|
||||
}
|
||||
|
||||
static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
|
||||
static int blkif_getgeo(struct gendisk *disk, struct hd_geometry *hg)
|
||||
{
|
||||
/* We don't have real geometry info, but let's at least return
|
||||
values consistent with the size of the device */
|
||||
sector_t nsect = get_capacity(bd->bd_disk);
|
||||
sector_t nsect = get_capacity(disk);
|
||||
sector_t cylinders = nsect;
|
||||
|
||||
hg->heads = 0xff;
|
||||
|
||||
+2
-2
@@ -403,9 +403,9 @@ static void do_deferred_remove(struct work_struct *w)
|
||||
dm_deferred_remove();
|
||||
}
|
||||
|
||||
static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
static int dm_blk_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
struct mapped_device *md = bdev->bd_disk->private_data;
|
||||
struct mapped_device *md = disk->private_data;
|
||||
|
||||
return dm_get_geometry(md, geo);
|
||||
}
|
||||
|
||||
+2
-2
@@ -7747,9 +7747,9 @@ static int set_disk_faulty(struct mddev *mddev, dev_t dev)
|
||||
* 4 sectors (with a BIG number of cylinders...). This drives
|
||||
* dosfs just mad... ;-)
|
||||
*/
|
||||
static int md_getgeo(struct block_device *bdev, struct hd_geometry *geo)
|
||||
static int md_getgeo(struct gendisk *disk, struct hd_geometry *geo)
|
||||
{
|
||||
struct mddev *mddev = bdev->bd_disk->private_data;
|
||||
struct mddev *mddev = disk->private_data;
|
||||
|
||||
geo->heads = 2;
|
||||
geo->sectors = 4;
|
||||
|
||||
@@ -1953,10 +1953,10 @@ static void msb_data_clear(struct msb_data *msb)
|
||||
msb->card = NULL;
|
||||
}
|
||||
|
||||
static int msb_bd_getgeo(struct block_device *bdev,
|
||||
static int msb_bd_getgeo(struct gendisk *disk,
|
||||
struct hd_geometry *geo)
|
||||
{
|
||||
struct msb_data *msb = bdev->bd_disk->private_data;
|
||||
struct msb_data *msb = disk->private_data;
|
||||
*geo = msb->geometry;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -189,10 +189,10 @@ static void mspro_block_bd_free_disk(struct gendisk *disk)
|
||||
kfree(msb);
|
||||
}
|
||||
|
||||
static int mspro_block_bd_getgeo(struct block_device *bdev,
|
||||
static int mspro_block_bd_getgeo(struct gendisk *disk,
|
||||
struct hd_geometry *geo)
|
||||
{
|
||||
struct mspro_block_data *msb = bdev->bd_disk->private_data;
|
||||
struct mspro_block_data *msb = disk->private_data;
|
||||
|
||||
geo->heads = msb->heads;
|
||||
geo->sectors = msb->sectors_per_track;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user