[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] Re: [PATCH] Support HDIO_GETGEO on device-mapper volumes
- From: Andrew Morton <akpm osdl org>
- To: "Darrick J. Wong" <djwong us ibm com>
- Cc: dm-devel redhat com, linux-kernel vger kernel org, lcm us ibm com
- Subject: [dm-devel] Re: [PATCH] Support HDIO_GETGEO on device-mapper volumes
- Date: Thu, 9 Feb 2006 18:58:55 -0800
"Darrick J. Wong" <djwong us ibm com> wrote:
>
> The attached patch implements a simple ioctl handler that supplies a
> compatible geometry when HDIO_GETGEO is called against a device-mapper
> device.
block_device_operations now has a standalone `getgeo' method.
> ...
> +static int dm_blk_ioctl(struct inode * inode, struct file * filp,
> + unsigned int cmd, unsigned long arg)
> +{
> + struct block_device *bdev = inode->i_bdev;
> + struct hd_geometry __user *loc = (void __user *)arg;
> + struct mapped_device *md;
> + int diskinfo[4];
> +
> + if (cmd == HDIO_GETGEO) {
> + if (!arg)
> + return -EINVAL;
I don't think we need that check? The -EFAULT should suffice.
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]