From: Christoph Hellwig <hch@infradead.org>
To: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Cc: Jens Axboe <axboe@kernel.dk>,
Christoph Hellwig <hch@infradead.org>,
linux-block <linux-block@vger.kernel.org>,
Damien Le Moal <Damien.LeMoal@wdc.com>,
Keith Busch <kbusch@kernel.org>,
"linux-scsi @ vger . kernel . org" <linux-scsi@vger.kernel.org>,
"Martin K . Petersen" <martin.petersen@oracle.com>,
"linux-fsdevel @ vger . kernel . org"
<linux-fsdevel@vger.kernel.org>,
"Darrick J . Wong" <darrick.wong@oracle.com>
Subject: Re: [PATCH v2 10/11] iomap: Add support for zone append writes
Date: Tue, 24 Mar 2020 08:41:31 -0700 [thread overview]
Message-ID: <20200324154131.GA32087@infradead.org> (raw)
In-Reply-To: <20200324152454.4954-11-johannes.thumshirn@wdc.com>
On Wed, Mar 25, 2020 at 12:24:53AM +0900, Johannes Thumshirn wrote:
> @@ -39,6 +40,7 @@ struct iomap_dio {
> struct task_struct *waiter;
> struct request_queue *last_queue;
> blk_qc_t cookie;
> + sector_t sector;
> } submit;
>
> /* used for aio completion: */
> @@ -151,6 +153,9 @@ static void iomap_dio_bio_end_io(struct bio *bio)
> if (bio->bi_status)
> iomap_dio_set_error(dio, blk_status_to_errno(bio->bi_status));
>
> + if (dio->flags & IOMAP_DIO_ZONE_APPEND)
> + dio->submit.sector = bio->bi_iter.bi_sector;
The submit member in struct iomap_dio is for submit-time information,
while this is used in the completion path..
> nr_pages = iov_iter_npages(dio->submit.iter, BIO_MAX_PAGES);
> iomap_dio_submit_bio(dio, iomap, bio);
> +
> + /*
> + * Issuing multiple BIOs for a large zone append write can
> + * result in reordering of the write fragments and to data
> + * corruption. So always stop after the first BIO is issued.
> + */
> + if (zone_append)
> + break;
At least for a normal file system that is absolutely not true. If
zonefs is so special it might be better of just using a slightly tweaked
copy of blkdev_direct_IO rather than using iomap.
> @@ -446,6 +486,11 @@ iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter,
> flags |= IOMAP_WRITE;
> dio->flags |= IOMAP_DIO_WRITE;
>
> + if (iocb->ki_flags & IOCB_ZONE_APPEND) {
> + flags |= IOMAP_ZONE_APPEND;
> + dio->flags |= IOMAP_DIO_ZONE_APPEND;
> + }
> +
> /* for data sync or sync, we need sync completion processing */
> if (iocb->ki_flags & IOCB_DSYNC)
> dio->flags |= IOMAP_DIO_NEED_SYNC;
> @@ -516,6 +561,15 @@ iomap_dio_rw(struct kiocb *iocb, struct iov_iter *iter,
> iov_iter_revert(iter, pos - dio->i_size);
> break;
> }
> +
> + /*
> + * Zone append writes cannot be split and be shorted. Break
> + * here to let the user know instead of sending more IOs which
> + * could get reordered and corrupt the written data.
> + */
> + if (flags & IOMAP_ZONE_APPEND)
> + break;
But that isn't what we do here. You exit after a single apply iteration
which is perfectly fine - at at least for a normal file system, zonefs
is rather weird.
> +
> } while ((count = iov_iter_count(iter)) > 0);
> blk_finish_plug(&plug);
>
> diff --git a/include/linux/fs.h b/include/linux/fs.h
> index 3cd4fe6b845e..aa4ad705e549 100644
> --- a/include/linux/fs.h
> +++ b/include/linux/fs.h
> @@ -314,6 +314,7 @@ enum rw_hint {
> #define IOCB_SYNC (1 << 5)
> #define IOCB_WRITE (1 << 6)
> #define IOCB_NOWAIT (1 << 7)
> +#define IOCB_ZONE_APPEND (1 << 8)
I don't think the iocb is the right interface for passing this
kind of information. We currently pass a bool wait to iomap_dio_rw
which really should be flags. I have a pending patch for that.
> diff --git a/include/linux/iomap.h b/include/linux/iomap.h
> index 8b09463dae0d..16c17a79e53d 100644
> --- a/include/linux/iomap.h
> +++ b/include/linux/iomap.h
> @@ -68,7 +68,6 @@ struct vm_fault;
> */
> #define IOMAP_F_PRIVATE 0x1000
>
> -
Spurious whitespace change.
> /*
> * Magic value for addr:
> */
> @@ -95,6 +94,17 @@ iomap_sector(struct iomap *iomap, loff_t pos)
> return (iomap->addr + pos - iomap->offset) >> SECTOR_SHIFT;
> }
>
> +/*
> + * Flags for iomap_begin / iomap_end. No flag implies a read.
> + */
> +#define IOMAP_WRITE (1 << 0) /* writing, must allocate blocks */
> +#define IOMAP_ZERO (1 << 1) /* zeroing operation, may skip holes */
> +#define IOMAP_REPORT (1 << 2) /* report extent status, e.g. FIEMAP */
> +#define IOMAP_FAULT (1 << 3) /* mapping for page fault */
> +#define IOMAP_DIRECT (1 << 4) /* direct I/O */
> +#define IOMAP_NOWAIT (1 << 5) /* do not block */
> +#define IOMAP_ZONE_APPEND (1 << 6) /* Use zone append for writes */
Why is this moved around?
next prev parent reply other threads:[~2020-03-24 15:41 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-24 15:24 [PATCH v2 00/11] Introduce Zone Append for writing to zoned block devices Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 01/11] block: factor out requeue handling from dispatch code Johannes Thumshirn
2020-03-25 8:40 ` Christoph Hellwig
2020-03-25 15:40 ` Jens Axboe
2020-03-24 15:24 ` [PATCH v2 02/11] block: provide fallbacks for blk_queue_zone_is_seq and blk_queue_zone_no Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 03/11] block: Introduce REQ_OP_ZONE_APPEND Johannes Thumshirn
2020-03-24 16:07 ` Johannes Thumshirn
2020-03-25 16:24 ` Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 04/11] block: introduce blk_req_zone_write_trylock Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 05/11] block: Introduce zone write pointer offset caching Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 06/11] scsi: sd_zbc: factor out sanity checks for zoned commands Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 07/11] scsi: sd_zbc: emulate ZONE_APPEND commands Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 08/11] null_blk: Cleanup zoned device initialization Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 09/11] null_blk: Support REQ_OP_ZONE_APPEND Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 10/11] iomap: Add support for zone append writes Johannes Thumshirn
2020-03-24 15:41 ` Christoph Hellwig [this message]
2020-03-25 5:27 ` Damien Le Moal
2020-03-25 6:25 ` hch
2020-03-25 9:45 ` Johannes Thumshirn
2020-03-25 9:48 ` hch
2020-03-25 9:54 ` Johannes Thumshirn
2020-03-25 9:59 ` Damien Le Moal
2020-03-25 10:01 ` hch
2020-03-25 10:15 ` Johannes Thumshirn
2020-03-24 22:45 ` Dave Chinner
2020-03-25 5:38 ` Damien Le Moal
2020-03-25 8:32 ` Johannes Thumshirn
2020-03-24 15:24 ` [PATCH v2 11/11] zonefs: use zone-append for sequential zones Johannes Thumshirn
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200324154131.GA32087@infradead.org \
--to=hch@infradead.org \
--cc=Damien.LeMoal@wdc.com \
--cc=axboe@kernel.dk \
--cc=darrick.wong@oracle.com \
--cc=johannes.thumshirn@wdc.com \
--cc=kbusch@kernel.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).