From: Junio C Hamano <gitster@pobox.com>
To: pbonzini@redhat.com
Cc: git@vger.kernel.org, bfields@redhat.com
Subject: Re: [PATCH 2/4] am: convert "resume" variable to a struct
Date: Wed, 19 Feb 2020 11:19:09 -0800 [thread overview]
Message-ID: <xmqqv9o2e66q.fsf@gitster-ct.c.googlers.com> (raw)
In-Reply-To: <20200219161352.13562-3-pbonzini@redhat.com> (pbonzini@redhat.com's message of "Wed, 19 Feb 2020 17:13:50 +0100")
pbonzini@redhat.com writes:
> From: Paolo Bonzini <pbonzini@redhat.com>
>
> This will allow stashing the submode of --show-current-patch. Using
> a struct will allow accessing both fields from outside cmd_am (through
> container_of).
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> builtin/am.c | 32 ++++++++++++++++++--------------
> 1 file changed, 18 insertions(+), 14 deletions(-)
>
> diff --git a/builtin/am.c b/builtin/am.c
> index 8181c2aef3..a89e1a96ed 100644
> --- a/builtin/am.c
> +++ b/builtin/am.c
> @@ -2118,7 +2118,7 @@ static int parse_opt_patchformat(const struct option *opt, const char *arg, int
> return 0;
> }
>
> -enum resume_mode {
> +enum resume_type {
> RESUME_FALSE = 0,
> RESUME_APPLY,
> RESUME_RESOLVED,
> @@ -2128,6 +2128,10 @@ enum resume_mode {
> RESUME_SHOW_PATCH
> };
>
> +struct resume_mode {
> + enum resume_type mode;
> +};
> +
> static int git_am_config(const char *k, const char *v, void *cb)
> {
> int status;
> @@ -2145,7 +2149,7 @@ int cmd_am(int argc, const char **argv, const char *prefix)
> int binary = -1;
> int keep_cr = -1;
> int patch_format = PATCH_FORMAT_UNKNOWN;
> - enum resume_mode resume = RESUME_FALSE;
> + struct resume_mode resume = { . mode = RESUME_FALSE };
I do not think it makes a difference to compilers, but it seems that
existing code spells this without SP between dot and the field name.
> + struct resume_mode resume = { .mode = RESUME_FALSE };
The rest of the patch is quite straight-forward update that looks
correct.
Thanks.
next prev parent reply other threads:[~2020-02-19 19:19 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-19 16:13 [PATCH 0/4] am: provide a replacement for "cat .git/rebase-apply/patch" pbonzini
2020-02-19 16:13 ` [PATCH 1/4] parse-options: convert "command mode" to a flag pbonzini
2020-02-19 19:11 ` Eric Sunshine
2020-02-20 16:00 ` Johannes Schindelin
2020-02-19 19:15 ` Junio C Hamano
2020-02-19 21:05 ` Paolo Bonzini
2020-02-19 16:13 ` [PATCH 2/4] am: convert "resume" variable to a struct pbonzini
2020-02-19 19:19 ` Junio C Hamano [this message]
2020-02-19 21:05 ` Paolo Bonzini
2020-02-19 16:13 ` [PATCH 3/4] am: support --show-current-patch=raw as a synonym for--show-current-patch pbonzini
2020-02-19 19:34 ` Eric Sunshine
2020-02-19 20:17 ` Junio C Hamano
2020-02-19 20:53 ` Paolo Bonzini
2020-02-19 16:13 ` [PATCH 4/4] am: support --show-current-patch=diff to retrieve .git/rebase-apply/patch pbonzini
2020-02-19 19:49 ` Eric Sunshine
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=xmqqv9o2e66q.fsf@gitster-ct.c.googlers.com \
--to=gitster@pobox.com \
--cc=bfields@redhat.com \
--cc=git@vger.kernel.org \
--cc=pbonzini@redhat.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).