diff mbox series

[1/3] xfs_scrub: implement background mode for phase 6

Message ID 156774123948.2646704.14264815195950334701.stgit@magnolia (mailing list archive)
State Superseded
Headers show
Series xfs_scrub: media scan entire disks | expand

Commit Message

Darrick J. Wong Sept. 6, 2019, 3:40 a.m. UTC
From: Darrick J. Wong <darrick.wong@oracle.com>

Phase 6 doesn't implement background mode, which means that it doesn't
run in single-threaded mode with one -b and it doesn't sleep between
calls with multiple -b like every other phase does.  Wire up the
necessary pieces to make it behave like the man page says it should.

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
 scrub/read_verify.c |   21 +++++++++++++++++----
 1 file changed, 17 insertions(+), 4 deletions(-)

Comments

Allison Henderson Sept. 12, 2019, 11:42 p.m. UTC | #1
Looks ok to me.
Reviewed-by: Allison Collins <allison.henderson@oracle.com>

On 9/5/19 8:40 PM, Darrick J. Wong wrote:
> From: Darrick J. Wong <darrick.wong@oracle.com>
> 
> Phase 6 doesn't implement background mode, which means that it doesn't
> run in single-threaded mode with one -b and it doesn't sleep between
> calls with multiple -b like every other phase does.  Wire up the
> necessary pieces to make it behave like the man page says it should.
> 
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
> ---
>   scrub/read_verify.c |   21 +++++++++++++++++----
>   1 file changed, 17 insertions(+), 4 deletions(-)
> 
> 
> diff --git a/scrub/read_verify.c b/scrub/read_verify.c
> index 834571a7..414d25a6 100644
> --- a/scrub/read_verify.c
> +++ b/scrub/read_verify.c
> @@ -32,7 +32,19 @@
>    * because that's the biggest SCSI VERIFY(16) we dare to send.
>    */
>   #define RVP_IO_MAX_SIZE		(33554432)
> -#define RVP_IO_MAX_SECTORS	(RVP_IO_MAX_SIZE >> BBSHIFT)
> +
> +/*
> + * If we're running in the background then we perform IO in 128k chunks
> + * to reduce the load on the IO subsystem.
> + */
> +#define RVP_BACKGROUND_IO_MAX_SIZE	(131072)
> +
> +/* What's the real maximum IO size? */
> +static inline unsigned int
> +rvp_io_max_size(void)
> +{
> +	return bg_mode > 0 ? RVP_BACKGROUND_IO_MAX_SIZE : RVP_IO_MAX_SIZE;
> +}
>   
>   /* Tolerate 64k holes in adjacent read verify requests. */
>   #define RVP_IO_BATCH_LOCALITY	(65536)
> @@ -84,7 +96,7 @@ read_verify_pool_alloc(
>   	 */
>   	if (miniosz % disk->d_lbasize)
>   		return EINVAL;
> -	if (RVP_IO_MAX_SIZE % miniosz)
> +	if (rvp_io_max_size() % miniosz)
>   		return EINVAL;
>   
>   	rvp = calloc(1, sizeof(struct read_verify_pool));
> @@ -92,7 +104,7 @@ read_verify_pool_alloc(
>   		return errno;
>   
>   	ret = posix_memalign((void **)&rvp->readbuf, page_size,
> -			RVP_IO_MAX_SIZE);
> +			rvp_io_max_size());
>   	if (ret)
>   		goto out_free;
>   	ret = ptcounter_alloc(verifier_threads, &rvp->verified_bytes);
> @@ -177,7 +189,7 @@ read_verify(
>   	if (rvp->errors_seen)
>   		return;
>   
> -	io_max_size = RVP_IO_MAX_SIZE;
> +	io_max_size = rvp_io_max_size();
>   
>   	while (rv->io_length > 0) {
>   		io_error = 0;
> @@ -253,6 +265,7 @@ read_verify(
>   			verified += sz;
>   		rv->io_start += sz;
>   		rv->io_length -= sz;
> +		background_sleep();
>   	}
>   
>   	free(rv);
>
diff mbox series

Patch

diff --git a/scrub/read_verify.c b/scrub/read_verify.c
index 834571a7..414d25a6 100644
--- a/scrub/read_verify.c
+++ b/scrub/read_verify.c
@@ -32,7 +32,19 @@ 
  * because that's the biggest SCSI VERIFY(16) we dare to send.
  */
 #define RVP_IO_MAX_SIZE		(33554432)
-#define RVP_IO_MAX_SECTORS	(RVP_IO_MAX_SIZE >> BBSHIFT)
+
+/*
+ * If we're running in the background then we perform IO in 128k chunks
+ * to reduce the load on the IO subsystem.
+ */
+#define RVP_BACKGROUND_IO_MAX_SIZE	(131072)
+
+/* What's the real maximum IO size? */
+static inline unsigned int
+rvp_io_max_size(void)
+{
+	return bg_mode > 0 ? RVP_BACKGROUND_IO_MAX_SIZE : RVP_IO_MAX_SIZE;
+}
 
 /* Tolerate 64k holes in adjacent read verify requests. */
 #define RVP_IO_BATCH_LOCALITY	(65536)
@@ -84,7 +96,7 @@  read_verify_pool_alloc(
 	 */
 	if (miniosz % disk->d_lbasize)
 		return EINVAL;
-	if (RVP_IO_MAX_SIZE % miniosz)
+	if (rvp_io_max_size() % miniosz)
 		return EINVAL;
 
 	rvp = calloc(1, sizeof(struct read_verify_pool));
@@ -92,7 +104,7 @@  read_verify_pool_alloc(
 		return errno;
 
 	ret = posix_memalign((void **)&rvp->readbuf, page_size,
-			RVP_IO_MAX_SIZE);
+			rvp_io_max_size());
 	if (ret)
 		goto out_free;
 	ret = ptcounter_alloc(verifier_threads, &rvp->verified_bytes);
@@ -177,7 +189,7 @@  read_verify(
 	if (rvp->errors_seen)
 		return;
 
-	io_max_size = RVP_IO_MAX_SIZE;
+	io_max_size = rvp_io_max_size();
 
 	while (rv->io_length > 0) {
 		io_error = 0;
@@ -253,6 +265,7 @@  read_verify(
 			verified += sz;
 		rv->io_start += sz;
 		rv->io_length -= sz;
+		background_sleep();
 	}
 
 	free(rv);