All of lore.kernel.org
 help / color / mirror / Atom feed
* Query: Failed to suppress CC while sending patchset
@ 2014-09-17  6:50 Pramod Gurav
  2014-09-17  6:59 ` Matthieu Moy
  0 siblings, 1 reply; 4+ messages in thread
From: Pramod Gurav @ 2014-09-17  6:50 UTC (permalink / raw)
  To: git

Hi,

I was trying to send a patchset to self just to test by suppressing
everyone in CC list of patch header. But it failed and the patch was
send to people in CC.

Is there anything wrong that I have done? My git verions is:

gpramod:git$ git --version
git version 1.7.9.5

Below is the command I used to send the patch and it follows the
messages until I pressed a Ctrl+c.

gpramod:linux-next$ git send-email --to=pramod.gurav.etc@gmail.com
--suppress-cc=cc --suppress-cc=self --suppress-cc=author 000*
0000-mmc-msm_sdcc-Cleanups.patch
0001-mmc-msm_sdcc-Switch-to-using-managed-resources.patch
0002-mmc-msm_sdcc-Add-support-for-platform_driver-remove-.patch
0003-mmc-msm_sdcc-Replace-pr_-with-dev_.patch
0004-mmc-msm_sdcc-Remove-duplicate-check-around-dmares.patch
0005-mmc-msm_sdcc-Remove-unwanted-initializations-in-prob.patch
OK. Log says:
Server: secure.emailsrvr.com
MAIL FROM:<pramod.gurav@smartplayin.com>
RCPT TO:<pramod.gurav.etc@gmail.com>
From: Pramod Gurav <pramod.gurav@smartplayin.com>
To: pramod.gurav.etc@gmail.com
Subject: [PATCH 0/5] mmc: msm_sdcc: Cleanups
Date: Tue, 16 Sep 2014 16:45:41 +0530
Message-Id: <1410866146-15144-1-git-send-email-pramod.gurav@smartplayin.com>
X-Mailer: git-send-email 1.7.9.5

Result: 250 2.0.0 Ok: queued as 1CD0F1802A2

In git 1.7.0, the default has changed to --no-chain-reply-to
Set sendemail.chainreplyto configuration variable to true if
you want to keep --chain-reply-to as your default.
(body) Adding cc: David Brown <davidb@codeaurora.org> from line 'Cc:
David Brown <davidb@codeaurora.org>'
(body) Adding cc: Daniel Walker <dwalker@fifo99.com> from line 'Cc:
Daniel Walker <dwalker@fifo99.com>'
(body) Adding cc: Bryan Huntsman <bryanh@codeaurora.org> from line
'Cc: Bryan Huntsman <bryanh@codeaurora.org>'
(body) Adding cc: Ulf Hansson <ulf.hansson@linaro.org> from line 'CC:
Ulf Hansson <ulf.hansson@linaro.org>'
(body) Adding cc: linux-mmc@vger.kernel.org from line 'CC:
linux-mmc@vger.kernel.org'
(body) Adding cc: linux-arm-msm@vger.kernel.org from line 'CC:
linux-arm-msm@vger.kernel.org'
OK. Log says:
Server: secure.emailsrvr.com
MAIL FROM:<pramod.gurav@smartplayin.com>
RCPT TO:<pramod.gurav.etc@gmail.com>
RCPT TO:<davidb@codeaurora.org>
RCPT TO:<dwalker@fifo99.com>
RCPT TO:<bryanh@codeaurora.org>
RCPT TO:<ulf.hansson@linaro.org>
RCPT TO:<linux-mmc@vger.kernel.org>
RCPT TO:<linux-arm-msm@vger.kernel.org>
From: Pramod Gurav <pramod.gurav@smartplayin.com>
To: pramod.gurav.etc@gmail.com
Cc: David Brown <davidb@codeaurora.org>,
Daniel Walker <dwalker@fifo99.com>,
Bryan Huntsman <bryanh@codeaurora.org>,
Ulf Hansson <ulf.hansson@linaro.org>,
linux-mmc@vger.kernel.org,
linux-arm-msm@vger.kernel.org
Subject: [PATCH 1/5] mmc: msm_sdcc: Switch to using managed resources
Date: Tue, 16 Sep 2014 16:45:42 +0530
Message-Id: <1410866146-15144-2-git-send-email-pramod.gurav@smartplayin.com>
X-Mailer: git-send-email 1.7.9.5
In-Reply-To: <1410866146-15144-1-git-send-email-pramod.gurav@smartplayin.com>
References: <1410866146-15144-1-git-send-email-pramod.gurav@smartplayin.com>

Result: 250 2.0.0 Ok: queued as B9A481803A0

(body) Adding cc: David Brown <davidb@codeaurora.org> from line 'Cc:
David Brown <davidb@codeaurora.org>'
(body) Adding cc: Daniel Walker <dwalker@fifo99.com> from line 'Cc:
Daniel Walker <dwalker@fifo99.com>'
(body) Adding cc: Bryan Huntsman <bryanh@codeaurora.org> from line
'Cc: Bryan Huntsman <bryanh@codeaurora.org>'
(body) Adding cc: Ulf Hansson <ulf.hansson@linaro.org> from line 'CC:
Ulf Hansson <ulf.hansson@linaro.org>'
(body) Adding cc: linux-mmc@vger.kernel.org from line 'CC:
linux-mmc@vger.kernel.org'
(body) Adding cc: linux-arm-msm@vger.kernel.org from line 'CC:
linux-arm-msm@vger.kernel.org'
^C

gpramod:linux-next$ stty: standard input: Input/output error

This is the header of my first patch:

>From f7ced72a85866e550ea2d76d8d7f9d1df88f5994 Mon Sep 17 00:00:00 2001
From: Pramod Gurav <pramod.gurav@smartplayin.com>
Date: Tue, 16 Sep 2014 15:41:37 +0530
Subject: [PATCH 1/5] mmc: msm_sdcc: Switch to using managed resources

This change makes changes to use managed version of ioremap, clk_get,
request_irq etc for clean unloading of modules. This does away with
lables to release these resources.

Cc: David Brown <davidb@codeaurora.org>
Cc: Daniel Walker <dwalker@fifo99.com>
Cc: Bryan Huntsman <bryanh@codeaurora.org>
CC: Ulf Hansson <ulf.hansson@linaro.org>
CC: linux-mmc@vger.kernel.org
CC: linux-arm-msm@vger.kernel.org
Signed-off-by: Pramod Gurav <pramod.gurav@smartplayin.com>
---
 drivers/mmc/host/msm_sdcc.c |   43 +++++++++++++++++--------------------------

-- 
Thanks and Regards
Pramod

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Query: Failed to suppress CC while sending patchset
  2014-09-17  6:50 Query: Failed to suppress CC while sending patchset Pramod Gurav
@ 2014-09-17  6:59 ` Matthieu Moy
  2014-09-17 11:29   ` Pramod Gurav
  0 siblings, 1 reply; 4+ messages in thread
From: Matthieu Moy @ 2014-09-17  6:59 UTC (permalink / raw)
  To: Pramod Gurav; +Cc: git

Pramod Gurav <pramod.gurav.etc@gmail.com> writes:

> gpramod:linux-next$ git send-email --to=pramod.gurav.etc@gmail.com
> --suppress-cc=cc --suppress-cc=self --suppress-cc=author 000*

I guess you lacked the --suppress-cc=bodycc.

-- 
Matthieu Moy
http://www-verimag.imag.fr/~moy/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Query: Failed to suppress CC while sending patchset
  2014-09-17  6:59 ` Matthieu Moy
@ 2014-09-17 11:29   ` Pramod Gurav
  2014-09-17 11:31     ` Matthieu Moy
  0 siblings, 1 reply; 4+ messages in thread
From: Pramod Gurav @ 2014-09-17 11:29 UTC (permalink / raw)
  To: Matthieu Moy; +Cc: git

Thanks Matthieu for suggestion.

On Wed, Sep 17, 2014 at 12:29 PM, Matthieu Moy
<Matthieu.Moy@grenoble-inp.fr> wrote:
> Pramod Gurav <pramod.gurav.etc@gmail.com> writes:
>
>> gpramod:linux-next$ git send-email --to=pramod.gurav.etc@gmail.com
>> --suppress-cc=cc --suppress-cc=self --suppress-cc=author 000*
>
> I guess you lacked the --suppress-cc=bodycc.

how does it differ from --suppress-cc=cc? from help I understand cc
avoids people in Cc lines in the patch header and bodycc avoids people
in Cc lines in the patch body?

Patch body is commit message, right? What is patch header?

>
> --
> Matthieu Moy
> http://www-verimag.imag.fr/~moy/



-- 
Thanks and Regards
Pramod

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Query: Failed to suppress CC while sending patchset
  2014-09-17 11:29   ` Pramod Gurav
@ 2014-09-17 11:31     ` Matthieu Moy
  0 siblings, 0 replies; 4+ messages in thread
From: Matthieu Moy @ 2014-09-17 11:31 UTC (permalink / raw)
  To: Pramod Gurav; +Cc: git

Pramod Gurav <pramod.gurav.etc@gmail.com> writes:

> Thanks Matthieu for suggestion.
>
> On Wed, Sep 17, 2014 at 12:29 PM, Matthieu Moy
> <Matthieu.Moy@grenoble-inp.fr> wrote:
>> Pramod Gurav <pramod.gurav.etc@gmail.com> writes:
>>
>>> gpramod:linux-next$ git send-email --to=pramod.gurav.etc@gmail.com
>>> --suppress-cc=cc --suppress-cc=self --suppress-cc=author 000*
>>
>> I guess you lacked the --suppress-cc=bodycc.
>
> how does it differ from --suppress-cc=cc? from help I understand cc
> avoids people in Cc lines in the patch header and bodycc avoids people
> in Cc lines in the patch body?
>
> Patch body is commit message, right? What is patch header?

I don't use these options, but I would guess the "header" are the
email-like headers at the top of the generated patch, and the body is
the part after the blank lines.

-- 
Matthieu Moy
http://www-verimag.imag.fr/~moy/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-09-17 11:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-17  6:50 Query: Failed to suppress CC while sending patchset Pramod Gurav
2014-09-17  6:59 ` Matthieu Moy
2014-09-17 11:29   ` Pramod Gurav
2014-09-17 11:31     ` Matthieu Moy

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.