From: Christian Schoenebeck <qemu_oss@crudebyte.com>
To: qemu-devel@nongnu.org
Cc: qemu-trivial@nongnu.org, Michael Tokarev <mjt@tls.msk.ru>
Subject: Re: [PATCH, trivial 07/29] tree-wide spelling fixes in comments and some messages: hw/9pfs
Date: Fri, 14 Jul 2023 14:39:16 +0200 [thread overview]
Message-ID: <5231587.LrHBZLct7H@silver> (raw)
In-Reply-To: <20230714113834.1186117-9-mjt@tls.msk.ru>
On Friday, July 14, 2023 1:38:12 PM CEST Michael Tokarev wrote:
> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
> ---
> hw/9pfs/9p-local.c | 8 ++++----
> hw/9pfs/9p-proxy.c | 2 +-
> hw/9pfs/9p-synth.c | 2 +-
> hw/9pfs/9p-util.h | 2 +-
> hw/9pfs/9p.c | 4 ++--
> hw/9pfs/9p.h | 2 +-
> 6 files changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/hw/9pfs/9p-local.c b/hw/9pfs/9p-local.c
> index 9d07620235..1b1f3b9ec8 100644
> --- a/hw/9pfs/9p-local.c
> +++ b/hw/9pfs/9p-local.c
> @@ -626,3 +626,3 @@ static ssize_t local_pwritev(FsContext *ctx, V9fsFidOpenState *fs,
> * We want to ensure that we don't leave dirty pages in the cache
> - * after write when writeout=immediate is sepcified.
> + * after write when writeout=immediate is specified.
> */
> @@ -845,3 +845,3 @@ static int local_open2(FsContext *fs_ctx, V9fsPath *dir_path, const char *name,
> if (fs_ctx->export_flags & V9FS_SM_MAPPED) {
> - /* Set cleint credentials in xattr */
> + /* Set client credentials in xattr */
> err = local_set_xattrat(dirfd, name, credp);
> @@ -914,3 +914,3 @@ static int local_symlink(FsContext *fs_ctx, const char *oldpath,
> }
> - /* Set cleint credentials in symlink's xattr */
> + /* Set client credentials in symlink's xattr */
> credp->fc_mode = credp->fc_mode | S_IFLNK;
> @@ -1420,3 +1420,3 @@ static int local_ioc_getversion_init(FsContext *ctx, LocalData *data, Error **er
> /*
> - * use ioc_getversion only if the ioctl is definied
> + * use ioc_getversion only if the ioctl is defined
> */
> diff --git a/hw/9pfs/9p-proxy.c b/hw/9pfs/9p-proxy.c
> index 905cae6992..7aac49ad4a 100644
> --- a/hw/9pfs/9p-proxy.c
> +++ b/hw/9pfs/9p-proxy.c
> @@ -769,3 +769,3 @@ static ssize_t proxy_pwritev(FsContext *ctx, V9fsFidOpenState *fs,
> * We want to ensure that we don't leave dirty pages in the cache
> - * after write when writeout=immediate is sepcified.
> + * after write when writeout=immediate is specified.
> */
> diff --git a/hw/9pfs/9p-synth.c b/hw/9pfs/9p-synth.c
> index f62c40b639..0ac79a500b 100644
> --- a/hw/9pfs/9p-synth.c
> +++ b/hw/9pfs/9p-synth.c
> @@ -495,3 +495,3 @@ static int synth_name_to_path(FsContext *ctx, V9fsPath *dir_path,
> }
> - /* search for the name in the childern */
> + /* search for the name in the children */
> rcu_read_lock();
> diff --git a/hw/9pfs/9p-util.h b/hw/9pfs/9p-util.h
> index df1b583a5e..51c94b0116 100644
> --- a/hw/9pfs/9p-util.h
> +++ b/hw/9pfs/9p-util.h
> @@ -50,3 +50,3 @@ static inline uint64_t makedev_dotl(uint32_t dev_major, uint32_t dev_minor)
> * device number format. As both the size of type dev_t and encoding of
> - * dev_t is system dependant, we have to convert them for Linux guests if
> + * dev_t is system dependent, we have to convert them for Linux guests if
> * host is not running Linux.
That particular one is American English vs. British English, but OK, patch
LGTM:
Reviewed-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
> diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c
> index 991645adca..323f042e65 100644
> --- a/hw/9pfs/9p.c
> +++ b/hw/9pfs/9p.c
> @@ -646,3 +646,3 @@ static inline uint64_t mirror64bit(uint64_t value)
> /*
> - * Parameter k for the Exponential Golomb algorihm to be used.
> + * Parameter k for the Exponential Golomb algorithm to be used.
> *
> @@ -1041,3 +1041,3 @@ static void coroutine_fn pdu_complete(V9fsPDU *pdu, ssize_t len)
> * rather than a consequence of the cancellation. However, if
> - * the operation completed (succesfully or with an error other
> + * the operation completed (successfully or with an error other
> * than caused be cancellation), we do send out that reply, both
> diff --git a/hw/9pfs/9p.h b/hw/9pfs/9p.h
> index 1b0d805b9c..a6f59abccb 100644
> --- a/hw/9pfs/9p.h
> +++ b/hw/9pfs/9p.h
> @@ -306,3 +306,3 @@ typedef struct VariLenAffix {
> /*
> - * Lenght of the affix, that is how many (of the lowest) bits of ``value``
> + * Length of the affix, that is how many (of the lowest) bits of ``value``
> * must be used for appending/prepending this affix to its final resulting,
>
next prev parent reply other threads:[~2023-07-14 12:39 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-14 11:38 [PATCH, trivial 00/29] tree-wide spelling fixes in comments and some messages Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 01/29] tree-wide spelling fixes in comments and some messages: block Michael Tokarev
2023-07-14 13:06 ` Michael Tokarev
2023-07-14 11:38 ` [PATCH] treewide: spelling fixes in comments and some strings Michael Tokarev
2023-07-14 11:41 ` Michael Tokarev
2023-07-14 18:22 ` Alex Williamson
2023-07-14 18:50 ` Michael Tokarev
2023-07-14 19:40 ` Alex Williamson
2023-07-14 19:50 ` Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 02/29] tree-wide spelling fixes in comments and some messages: bsd-user Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 03/29] tree-wide spelling fixes in comments and some messages: ui Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 04/29] tree-wide spelling fixes in comments and some messages: util Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 05/29] tree-wide spelling fixes in comments and some messages: tcg Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 06/29] tree-wide spelling fixes in comments and some messages: docs Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 07/29] tree-wide spelling fixes in comments and some messages: hw/9pfs Michael Tokarev
2023-07-14 12:39 ` Christian Schoenebeck [this message]
2023-07-14 11:38 ` [PATCH, trivial 08/29] tree-wide spelling fixes in comments and some messages: arm Michael Tokarev
2023-07-14 12:51 ` Peter Maydell
2023-07-14 11:38 ` [PATCH, trivial 09/29] tree-wide spelling fixes in comments and some messages: i386 Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 10/29] tree-wide spelling fixes in comments and some messages: mips Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 11/29] tree-wide spelling fixes in comments and some messages: ppc Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 12/29] tree-wide spelling fixes in comments and some messages: riscv Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 13/29] tree-wide spelling fixes in comments and some messages: s390x Michael Tokarev
2023-07-14 11:54 ` Thomas Huth
2023-07-14 11:38 ` [PATCH, trivial 14/29] tree-wide spelling fixes in comments and some messages: hexagon Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 15/29] tree-wide spelling fixes in comments and some messages: other architectures Michael Tokarev
2023-07-14 12:49 ` Peter Maydell
2023-07-14 13:14 ` Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 16/29] tree-wide spelling fixes in comments and some messages: hw/net Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 17/29] tree-wide spelling fixes in comments and some messages: hw/pci Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 18/29] tree-wide spelling fixes in comments and some messages: hw/tpm Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 19/29] tree-wide spelling fixes in comments and some messages: hw/usb hw/ide hw/i2c Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 20/29] tree-wide spelling fixes in comments and some messages: hw/display Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 21/29] tree-wide spelling fixes in comments and some messages: xen Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 22/29] tree-wide spelling fixes in comments and some messages: audio Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 23/29] tree-wide spelling fixes in comments and some messages: hw/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 24/29] tree-wide spelling fixes in comments and some messages: migration/ Michael Tokarev
2023-07-14 13:05 ` Fabiano Rosas
2023-07-14 13:10 ` Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 25/29] tree-wide spelling fixes in comments and some messages: include/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 26/29] tree-wide spelling fixes in comments and some messages: scripts/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 27/29] tree-wide spelling fixes in comments and some messages: tests/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 28/29] tree-wide spelling fixes in comments and some messages: qga/ Michael Tokarev
2023-07-14 11:38 ` [PATCH, trivial 29/29] tree-wide spelling fixes in comments and some messages: other Michael Tokarev
2023-07-14 12:44 ` [PATCH, trivial 00/29] tree-wide spelling fixes in comments and some messages Peter Maydell
2023-07-14 12:54 ` Michael Tokarev
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=5231587.LrHBZLct7H@silver \
--to=qemu_oss@crudebyte.com \
--cc=mjt@tls.msk.ru \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.