From: Michael Haggerty <mhagger@alum.mit.edu>
To: Faiz Kothari <faiz.off93@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] GSoC 2014 Microproject 1 rewrite skip_prefix() as loop
Date: Thu, 27 Feb 2014 12:32:08 +0100 [thread overview]
Message-ID: <530F2238.4090303@alum.mit.edu> (raw)
In-Reply-To: <1393433195.4629.4.camel@dj-pc>
On 02/26/2014 05:46 PM, Faiz Kothari wrote:
> I am Faiz Kothari, I am a GSoC aspirant and want to contribute to git.
> I am submitting the patch in reponse to Microproject 1,
> rewrite git-compat-util.h:skip_prefix() as a loop.
>
> Signed-off-by: Faiz Kothari <faiz.off93@gmail.com>
The subject of your email plus the part above the "---" line will be
taken directly to be used as the commit message. So it should not
include information that is inappropriate for a commit message.
You can put such information directly below the "---" line.
Please also see my comments below.
> ---
> git-compat-util.h | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/git-compat-util.h b/git-compat-util.h
> index cbd86c3..bb2582a 100644
> --- a/git-compat-util.h
> +++ b/git-compat-util.h
> @@ -357,8 +357,11 @@ extern int suffixcmp(const char *str, const char
> *suffix);
>
> static inline const char *skip_prefix(const char *str, const char
> *prefix)
The line above seems to have been broken by your email program. It is
important for efficiency reasons that patches be readable directly out
of emails (e.g., by using "git am"). Please practice by sending the
patch to yourself different ways until "git am" works on it correctly.
> {
> - size_t len = strlen(prefix);
> - return strncmp(str, prefix, len) ? NULL : str + len;
> + for (; ; str++, prefix++)
> + if (!*prefix)
> + return str;//code same as strbuf.c:starts_with()
We don't use "//" for comments, and please space things out the way
other code does it. But actually, IMO this particular comment doesn't
really belong permanently in the code. It rather belongs in the commit
message, or in the discussion (under the "---"), or maybe it should be
taken as an indication of a deeper problem (see below).
> + else if (*str != *prefix)
> + return NULL;
> }
>
> #if defined(NO_MMAP) || defined(USE_WIN32_MMAP)
>
The code itself looks correct.
But, considering your comment, would it be appropriate for one of the
functions to call the other?
Michael
--
Michael Haggerty
mhagger@alum.mit.edu
http://softwareswirl.blogspot.com/
next prev parent reply other threads:[~2014-02-27 11:39 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-26 16:46 [PATCH] GSoC 2014 Microproject 1 rewrite skip_prefix() as loop Faiz Kothari
2014-02-27 11:32 ` Michael Haggerty [this message]
2014-02-27 11:40 ` Faiz Kothari
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=530F2238.4090303@alum.mit.edu \
--to=mhagger@alum.mit.edu \
--cc=faiz.off93@gmail.com \
--cc=git@vger.kernel.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 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).