From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.71) id 1fdiNH-0002Vs-FP for mharc-qemu-trivial@gnu.org; Thu, 12 Jul 2018 16:39:39 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34431) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fdiNE-0002UI-Kt for qemu-trivial@nongnu.org; Thu, 12 Jul 2018 16:39:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fdiND-0007uV-J2 for qemu-trivial@nongnu.org; Thu, 12 Jul 2018 16:39:36 -0400 Received: from mx1.redhat.com ([209.132.183.28]:60982) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fdiN4-0007ed-Np; Thu, 12 Jul 2018 16:39:26 -0400 Received: from smtp.corp.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.26]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 10A793081D80; Thu, 12 Jul 2018 20:39:25 +0000 (UTC) Received: from localhost (ovpn-116-27.phx2.redhat.com [10.3.116.27]) by smtp.corp.redhat.com (Postfix) with ESMTPS id A84593083326; Thu, 12 Jul 2018 20:39:24 +0000 (UTC) Date: Thu, 12 Jul 2018 16:39:24 -0400 From: Jeff Cody To: Stefan Weil Cc: QEMU Developer , QEMU Trivial , Kevin Wolf , Max Reitz , qemu-block@nongnu.org Message-ID: <20180712203924.GC3729096@localhost.localdomain> References: <20180712195120.27394-1-sw@weilnetz.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180712195120.27394-1-sw@weilnetz.de> User-Agent: Mutt/1.5.24 (2015-08-30) X-Scanned-By: MIMEDefang 2.84 on 10.5.11.26 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.43]); Thu, 12 Jul 2018 20:39:25 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 Subject: Re: [Qemu-trivial] [PATCH] block: Fix typos in comments (found by codespell) X-BeenThere: qemu-trivial@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jul 2018 20:39:37 -0000 On Thu, Jul 12, 2018 at 09:51:20PM +0200, Stefan Weil wrote: > Signed-off-by: Stefan Weil > --- > block.c | 2 +- > block/backup.c | 4 ++-- > block/curl.c | 2 +- > block/gluster.c | 2 +- > block/vhdx.c | 2 +- > 5 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/block.c b/block.c > index a2fe05ea96..39f373e035 100644 > --- a/block.c > +++ b/block.c > @@ -3002,7 +3002,7 @@ BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, > * > * Reopens all BDS specified in the queue, with the appropriate > * flags. All devices are prepared for reopen, and failure of any > - * device will cause all device changes to be abandonded, and intermediate > + * device will cause all device changes to be abandoned, and intermediate > * data cleaned up. > * > * If all devices prepare successfully, then the changes are committed > diff --git a/block/backup.c b/block/backup.c > index 319fc922e8..8630d32926 100644 > --- a/block/backup.c > +++ b/block/backup.c > @@ -91,7 +91,7 @@ static void cow_request_end(CowRequest *req) > } > > /* Copy range to target with a bounce buffer and return the bytes copied. If > - * error occured, return a negative error number */ > + * error occurred, return a negative error number */ > static int coroutine_fn backup_cow_with_bounce_buffer(BackupBlockJob *job, > int64_t start, > int64_t end, > @@ -148,7 +148,7 @@ fail: > > } > > -/* Copy range to target and return the bytes copied. If error occured, return a > +/* Copy range to target and return the bytes copied. If error occurred, return a > * negative error number. */ > static int coroutine_fn backup_cow_with_offload(BackupBlockJob *job, > int64_t start, > diff --git a/block/curl.c b/block/curl.c > index aa42535783..229bb84a27 100644 > --- a/block/curl.c > +++ b/block/curl.c > @@ -804,7 +804,7 @@ static int curl_open(BlockDriverState *bs, QDict *options, int flags, > } > /* Prior CURL 7.19.4 return value of 0 could mean that the file size is not > * know or the size is zero. From 7.19.4 CURL returns -1 if size is not > - * known and zero if it is realy zero-length file. */ > + * known and zero if it is really zero-length file. */ > #if LIBCURL_VERSION_NUM >= 0x071304 > if (d < 0) { > pstrcpy(state->errmsg, CURL_ERROR_SIZE, > diff --git a/block/gluster.c b/block/gluster.c > index a4e1c8ecd8..4fd55a9cc5 100644 > --- a/block/gluster.c > +++ b/block/gluster.c > @@ -1326,7 +1326,7 @@ static int qemu_gluster_has_zero_init(BlockDriverState *bs) > * If @start is in a trailing hole or beyond EOF, return -ENXIO. > * If we can't find out, return a negative errno other than -ENXIO. > * > - * (Shamefully copied from file-posix.c, only miniscule adaptions.) > + * (Shamefully copied from file-posix.c, only minuscule adaptions.) > */ > static int find_allocation(BlockDriverState *bs, off_t start, > off_t *data, off_t *hole) > diff --git a/block/vhdx.c b/block/vhdx.c > index 4d0819750f..0795ca1985 100644 > --- a/block/vhdx.c > +++ b/block/vhdx.c > @@ -185,7 +185,7 @@ uint32_t vhdx_checksum_calc(uint32_t crc, uint8_t *buf, size_t size, > /* Validates the checksum of the buffer, with an in-place CRC. > * > * Zero is substituted during crc calculation for the original crc field, > - * and the crc field is restored afterwards. But the buffer will be modifed > + * and the crc field is restored afterwards. But the buffer will be modified Oops, that one was mine. > * during the calculation, so this may not be not suitable for multi-threaded > * use. > * > -- > 2.11.0 > Reviewed-by: Jeff Cody From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fdiNC-0002Pg-9Y for qemu-devel@nongnu.org; Thu, 12 Jul 2018 16:39:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fdiNB-0007qS-8i for qemu-devel@nongnu.org; Thu, 12 Jul 2018 16:39:34 -0400 Date: Thu, 12 Jul 2018 16:39:24 -0400 From: Jeff Cody Message-ID: <20180712203924.GC3729096@localhost.localdomain> References: <20180712195120.27394-1-sw@weilnetz.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180712195120.27394-1-sw@weilnetz.de> Subject: Re: [Qemu-devel] [PATCH] block: Fix typos in comments (found by codespell) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: QEMU Developer , QEMU Trivial , Kevin Wolf , Max Reitz , qemu-block@nongnu.org On Thu, Jul 12, 2018 at 09:51:20PM +0200, Stefan Weil wrote: > Signed-off-by: Stefan Weil > --- > block.c | 2 +- > block/backup.c | 4 ++-- > block/curl.c | 2 +- > block/gluster.c | 2 +- > block/vhdx.c | 2 +- > 5 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/block.c b/block.c > index a2fe05ea96..39f373e035 100644 > --- a/block.c > +++ b/block.c > @@ -3002,7 +3002,7 @@ BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, > * > * Reopens all BDS specified in the queue, with the appropriate > * flags. All devices are prepared for reopen, and failure of any > - * device will cause all device changes to be abandonded, and intermediate > + * device will cause all device changes to be abandoned, and intermediate > * data cleaned up. > * > * If all devices prepare successfully, then the changes are committed > diff --git a/block/backup.c b/block/backup.c > index 319fc922e8..8630d32926 100644 > --- a/block/backup.c > +++ b/block/backup.c > @@ -91,7 +91,7 @@ static void cow_request_end(CowRequest *req) > } > > /* Copy range to target with a bounce buffer and return the bytes copied. If > - * error occured, return a negative error number */ > + * error occurred, return a negative error number */ > static int coroutine_fn backup_cow_with_bounce_buffer(BackupBlockJob *job, > int64_t start, > int64_t end, > @@ -148,7 +148,7 @@ fail: > > } > > -/* Copy range to target and return the bytes copied. If error occured, return a > +/* Copy range to target and return the bytes copied. If error occurred, return a > * negative error number. */ > static int coroutine_fn backup_cow_with_offload(BackupBlockJob *job, > int64_t start, > diff --git a/block/curl.c b/block/curl.c > index aa42535783..229bb84a27 100644 > --- a/block/curl.c > +++ b/block/curl.c > @@ -804,7 +804,7 @@ static int curl_open(BlockDriverState *bs, QDict *options, int flags, > } > /* Prior CURL 7.19.4 return value of 0 could mean that the file size is not > * know or the size is zero. From 7.19.4 CURL returns -1 if size is not > - * known and zero if it is realy zero-length file. */ > + * known and zero if it is really zero-length file. */ > #if LIBCURL_VERSION_NUM >= 0x071304 > if (d < 0) { > pstrcpy(state->errmsg, CURL_ERROR_SIZE, > diff --git a/block/gluster.c b/block/gluster.c > index a4e1c8ecd8..4fd55a9cc5 100644 > --- a/block/gluster.c > +++ b/block/gluster.c > @@ -1326,7 +1326,7 @@ static int qemu_gluster_has_zero_init(BlockDriverState *bs) > * If @start is in a trailing hole or beyond EOF, return -ENXIO. > * If we can't find out, return a negative errno other than -ENXIO. > * > - * (Shamefully copied from file-posix.c, only miniscule adaptions.) > + * (Shamefully copied from file-posix.c, only minuscule adaptions.) > */ > static int find_allocation(BlockDriverState *bs, off_t start, > off_t *data, off_t *hole) > diff --git a/block/vhdx.c b/block/vhdx.c > index 4d0819750f..0795ca1985 100644 > --- a/block/vhdx.c > +++ b/block/vhdx.c > @@ -185,7 +185,7 @@ uint32_t vhdx_checksum_calc(uint32_t crc, uint8_t *buf, size_t size, > /* Validates the checksum of the buffer, with an in-place CRC. > * > * Zero is substituted during crc calculation for the original crc field, > - * and the crc field is restored afterwards. But the buffer will be modifed > + * and the crc field is restored afterwards. But the buffer will be modified Oops, that one was mine. > * during the calculation, so this may not be not suitable for multi-threaded > * use. > * > -- > 2.11.0 > Reviewed-by: Jeff Cody