Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1200197 > unrolled thread
| Started by | Mike Snitzer <snitzer@redhat.com> |
|---|---|
| First post | 2015-08-04 20:10 +0200 |
| Last post | 2015-08-06 15:50 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 5/6] dm: split out a helper to find the ioctl target Mike Snitzer <snitzer@redhat.com> - 2015-08-04 20:10 +0200
Re: [PATCH 5/6] dm: split out a helper to find the ioctl target Christoph Hellwig <hch@lst.de> - 2015-08-06 15:50 +0200
| From | Mike Snitzer <snitzer@redhat.com> |
|---|---|
| Date | 2015-08-04 20:10 +0200 |
| Subject | Re: [PATCH 5/6] dm: split out a helper to find the ioctl target |
| Message-ID | <pTOP0-1jD-11@gated-at.bofh.it> |
On Tue, Aug 04 2015 at 3:11am -0400, Christoph Hellwig <hch@lst.de> wrote: > We want to reuse this code for the persistent reservation handling, > so move it into a helper. > > Signed-off-by: Christoph Hellwig <hch@lst.de> > --- > drivers/md/dm.c | 50 ++++++++++++++++++++++++++++++++------------------ > 1 file changed, 32 insertions(+), 18 deletions(-) > > diff --git a/drivers/md/dm.c b/drivers/md/dm.c > index c68eb91..8dfc760 100644 > --- a/drivers/md/dm.c > +++ b/drivers/md/dm.c > @@ -556,18 +556,16 @@ static int dm_blk_getgeo(struct block_device *bdev, struct hd_geometry *geo) > return dm_get_geometry(md, geo); > } > > -static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode, > - unsigned int cmd, unsigned long arg) > +static int dm_get_ioctl_table(struct mapped_device *md, > + struct dm_target **tgt, struct block_device **bdev, > + fmode_t *mode, int *srcu_idx) Would prefer to see something like: static int dm_get_live_table_for_ioctl(struct mapped_device *md, int *srcu_idx, struct dm_target **tgt, struct block_device **bdev, fmode_t *mode) Otherwise, looks good. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Christoph Hellwig <hch@lst.de> |
|---|---|
| Date | 2015-08-06 15:50 +0200 |
| Message-ID | <pUtIv-271-31@gated-at.bofh.it> |
| In reply to | #1200197 |
On Tue, Aug 04, 2015 at 02:05:59PM -0400, Mike Snitzer wrote: > static int dm_get_live_table_for_ioctl(struct mapped_device *md, int *srcu_idx, > struct dm_target **tgt, struct block_device **bdev, fmode_t *mode) > > Otherwise, looks good. I'll update it. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web