* [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
@ 2016-02-07 20:51 Emmanuel Grumbach
2016-02-07 21:00 ` Greg KH
0 siblings, 1 reply; 10+ messages in thread
From: Emmanuel Grumbach @ 2016-02-07 20:51 UTC (permalink / raw)
To: stable; +Cc: Arik Nemtsov, Arik Nemtsov, Emmanuel Grumbach
From: Arik Nemtsov <arik@wizery.com>
[commit fe45773b5baa154468416aac1304f6325939f775 upstream]
Toggle the LMPM_CHICK register when writing chunks into the FW's extended
SRAM. This tells the FW to put the chunk into a different memory space.
Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
---
backporting this patch to 3.18 fixes
https://bugzilla.kernel.org/show_bug.cgi?id=109531
---
drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
drivers/net/wireless/iwlwifi/pcie/trans.c | 26 ++++++++++++++++++++++----
2 files changed, 28 insertions(+), 4 deletions(-)
diff --git a/drivers/net/wireless/iwlwifi/iwl-prph.h b/drivers/net/wireless/iwlwifi/iwl-prph.h
index 1560f45..90011b1 100644
--- a/drivers/net/wireless/iwlwifi/iwl-prph.h
+++ b/drivers/net/wireless/iwlwifi/iwl-prph.h
@@ -368,4 +368,10 @@ enum secure_load_status_reg {
#define MON_BUFF_WRPTR (0xa03c44)
#define MON_BUFF_CYCLE_CNT (0xa03c48)
+/* FW chicken bits */
+#define LMPM_CHICK 0xA01FF8
+enum {
+ LMPM_CHICK_EXTENDED_ADDR_SPACE = BIT(0),
+};
+
#endif /* __iwl_prph_h__ */
diff --git a/drivers/net/wireless/iwlwifi/pcie/trans.c b/drivers/net/wireless/iwlwifi/pcie/trans.c
index c943baa..9dcb04f2 100644
--- a/drivers/net/wireless/iwlwifi/pcie/trans.c
+++ b/drivers/net/wireless/iwlwifi/pcie/trans.c
@@ -79,6 +79,10 @@
#include "iwl-fw-error-dump.h"
#include "internal.h"
+/* extended range in FW SRAM */
+#define IWL_FW_MEM_EXTENDED_START 0x40000
+#define IWL_FW_MEM_EXTENDED_END 0x57FFF
+
static void iwl_pcie_free_fw_monitor(struct iwl_trans *trans)
{
struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
@@ -625,14 +629,28 @@ static int iwl_pcie_load_section(struct iwl_trans *trans, u8 section_num,
}
for (offset = 0; offset < section->len; offset += chunk_sz) {
- u32 copy_size;
+ u32 copy_size, dst_addr;
+ bool extended_addr = false;
copy_size = min_t(u32, chunk_sz, section->len - offset);
+ dst_addr = section->offset + offset;
+
+ if (dst_addr >= IWL_FW_MEM_EXTENDED_START &&
+ dst_addr <= IWL_FW_MEM_EXTENDED_END)
+ extended_addr = true;
+
+ if (extended_addr)
+ iwl_set_bits_prph(trans, LMPM_CHICK,
+ LMPM_CHICK_EXTENDED_ADDR_SPACE);
memcpy(v_addr, (u8 *)section->data + offset, copy_size);
- ret = iwl_pcie_load_firmware_chunk(trans,
- section->offset + offset,
- p_addr, copy_size);
+ ret = iwl_pcie_load_firmware_chunk(trans, dst_addr, p_addr,
+ copy_size);
+
+ if (extended_addr)
+ iwl_clear_bits_prph(trans, LMPM_CHICK,
+ LMPM_CHICK_EXTENDED_ADDR_SPACE);
+
if (ret) {
IWL_ERR(trans,
"Could not load the [%d] uCode section\n",
--
2.5.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* Re: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-02-07 20:51 [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range Emmanuel Grumbach
@ 2016-02-07 21:00 ` Greg KH
2016-02-07 21:02 ` Grumbach, Emmanuel
0 siblings, 1 reply; 10+ messages in thread
From: Greg KH @ 2016-02-07 21:00 UTC (permalink / raw)
To: Emmanuel Grumbach; +Cc: stable, Arik Nemtsov, Arik Nemtsov
On Sun, Feb 07, 2016 at 10:51:08PM +0200, Emmanuel Grumbach wrote:
> From: Arik Nemtsov <arik@wizery.com>
>
> [commit fe45773b5baa154468416aac1304f6325939f775 upstream]
>
> Toggle the LMPM_CHICK register when writing chunks into the FW's extended
> SRAM. This tells the FW to put the chunk into a different memory space.
>
> Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
> ---
> backporting this patch to 3.18 fixes
> https://bugzilla.kernel.org/show_bug.cgi?id=109531
> ---
> drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
> drivers/net/wireless/iwlwifi/pcie/trans.c | 26 ++++++++++++++++++++++----
> 2 files changed, 28 insertions(+), 4 deletions(-)
What stable tree(s) do you want this to be applied to?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-02-07 21:00 ` Greg KH
@ 2016-02-07 21:02 ` Grumbach, Emmanuel
2016-02-07 21:19 ` Greg KH
0 siblings, 1 reply; 10+ messages in thread
From: Grumbach, Emmanuel @ 2016-02-07 21:02 UTC (permalink / raw)
To: Greg KH; +Cc: stable@vger.kernel.org, Arik Nemtsov, Nemtsov, ArikX
On 02/07/2016 11:00 PM, Greg KH wrote:
> On Sun, Feb 07, 2016 at 10:51:08PM +0200, Emmanuel Grumbach wrote:
>> From: Arik Nemtsov <arik@wizery.com>
>>
>> [commit fe45773b5baa154468416aac1304f6325939f775 upstream]
>>
>> Toggle the LMPM_CHICK register when writing chunks into the FW's extended
>> SRAM. This tells the FW to put the chunk into a different memory space.
>>
>> Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
>> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
>> ---
>> backporting this patch to 3.18 fixes
>> https://bugzilla.kernel.org/show_bug.cgi?id=109531
>> ---
>> drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
>> drivers/net/wireless/iwlwifi/pcie/trans.c | 26 ++++++++++++++++++++++----
>> 2 files changed, 28 insertions(+), 4 deletions(-)
> What stable tree(s) do you want this to be applied to?
That was fast :) 3.18 as said in the title of the patch. Do you have any
preference on how to indicate that?
> thanks,
>
> greg k-h
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-02-07 21:02 ` Grumbach, Emmanuel
@ 2016-02-07 21:19 ` Greg KH
2016-03-10 10:46 ` Grumbach, Emmanuel
0 siblings, 1 reply; 10+ messages in thread
From: Greg KH @ 2016-02-07 21:19 UTC (permalink / raw)
To: Grumbach, Emmanuel; +Cc: stable@vger.kernel.org, Arik Nemtsov, Nemtsov, ArikX
On Sun, Feb 07, 2016 at 09:02:28PM +0000, Grumbach, Emmanuel wrote:
>
>
> On 02/07/2016 11:00 PM, Greg KH wrote:
> > On Sun, Feb 07, 2016 at 10:51:08PM +0200, Emmanuel Grumbach wrote:
> >> From: Arik Nemtsov <arik@wizery.com>
> >>
> >> [commit fe45773b5baa154468416aac1304f6325939f775 upstream]
> >>
> >> Toggle the LMPM_CHICK register when writing chunks into the FW's extended
> >> SRAM. This tells the FW to put the chunk into a different memory space.
> >>
> >> Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
> >> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
> >> ---
> >> backporting this patch to 3.18 fixes
> >> https://bugzilla.kernel.org/show_bug.cgi?id=109531
> >> ---
> >> drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
> >> drivers/net/wireless/iwlwifi/pcie/trans.c | 26 ++++++++++++++++++++++----
> >> 2 files changed, 28 insertions(+), 4 deletions(-)
> > What stable tree(s) do you want this to be applied to?
>
> That was fast :) 3.18 as said in the title of the patch. Do you have any
> preference on how to indicate that?
Ugh, no, you did it right, I just didn't read the subject: my fault,
sorry for the noise...
^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-02-07 21:19 ` Greg KH
@ 2016-03-10 10:46 ` Grumbach, Emmanuel
2016-03-10 16:30 ` Greg KH
0 siblings, 1 reply; 10+ messages in thread
From: Grumbach, Emmanuel @ 2016-03-10 10:46 UTC (permalink / raw)
To: Greg KH; +Cc: stable@vger.kernel.org, gordan@bobich.net
Hi Greg,
> >
> >
> > On 02/07/2016 11:00 PM, Greg KH wrote:
> > > On Sun, Feb 07, 2016 at 10:51:08PM +0200, Emmanuel Grumbach wrote:
> > >> From: Arik Nemtsov <arik@wizery.com>
> > >>
> > >> [commit fe45773b5baa154468416aac1304f6325939f775 upstream]
> > >>
> > >> Toggle the LMPM_CHICK register when writing chunks into the FW's
> > >> extended SRAM. This tells the FW to put the chunk into a different
> memory space.
> > >>
> > >> Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
> > >> Signed-off-by: Emmanuel Grumbach
> <emmanuel.grumbach@intel.com>
> > >> ---
> > >> backporting this patch to 3.18 fixes
> > >> https://bugzilla.kernel.org/show_bug.cgi?id=109531
> > >> ---
> > >> drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
> > >> drivers/net/wireless/iwlwifi/pcie/trans.c | 26
> > >> ++++++++++++++++++++++----
> > >> 2 files changed, 28 insertions(+), 4 deletions(-)
> > > What stable tree(s) do you want this to be applied to?
> >
> > That was fast :) 3.18 as said in the title of the patch. Do you have
> > any preference on how to indicate that?
>
> Ugh, no, you did it right, I just didn't read the subject: my fault, sorry for the
> noise...
Any reason this was not picked up for v3.18.28?
Do I miss anything?
FWIW: this fixes https://bugzilla.kernel.org/show_bug.cgi?id=109531
Thanks!
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-03-10 10:46 ` Grumbach, Emmanuel
@ 2016-03-10 16:30 ` Greg KH
2016-03-10 17:02 ` Grumbach, Emmanuel
0 siblings, 1 reply; 10+ messages in thread
From: Greg KH @ 2016-03-10 16:30 UTC (permalink / raw)
To: Grumbach, Emmanuel; +Cc: stable@vger.kernel.org, gordan@bobich.net
On Thu, Mar 10, 2016 at 10:46:22AM +0000, Grumbach, Emmanuel wrote:
> Hi Greg,
>
> > >
> > >
> > > On 02/07/2016 11:00 PM, Greg KH wrote:
> > > > On Sun, Feb 07, 2016 at 10:51:08PM +0200, Emmanuel Grumbach wrote:
> > > >> From: Arik Nemtsov <arik@wizery.com>
> > > >>
> > > >> [commit fe45773b5baa154468416aac1304f6325939f775 upstream]
> > > >>
> > > >> Toggle the LMPM_CHICK register when writing chunks into the FW's
> > > >> extended SRAM. This tells the FW to put the chunk into a different
> > memory space.
> > > >>
> > > >> Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
> > > >> Signed-off-by: Emmanuel Grumbach
> > <emmanuel.grumbach@intel.com>
> > > >> ---
> > > >> backporting this patch to 3.18 fixes
> > > >> https://bugzilla.kernel.org/show_bug.cgi?id=109531
> > > >> ---
> > > >> drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
> > > >> drivers/net/wireless/iwlwifi/pcie/trans.c | 26
> > > >> ++++++++++++++++++++++----
> > > >> 2 files changed, 28 insertions(+), 4 deletions(-)
> > > > What stable tree(s) do you want this to be applied to?
> > >
> > > That was fast :) 3.18 as said in the title of the patch. Do you have
> > > any preference on how to indicate that?
> >
> > Ugh, no, you did it right, I just didn't read the subject: my fault, sorry for the
> > noise...
>
> Any reason this was not picked up for v3.18.28?
> Do I miss anything?
Why are you asking me about 3.18-stable?
confused,
greg k-h
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-03-10 16:30 ` Greg KH
@ 2016-03-10 17:02 ` Grumbach, Emmanuel
2016-03-10 18:51 ` Sasha Levin
0 siblings, 1 reply; 10+ messages in thread
From: Grumbach, Emmanuel @ 2016-03-10 17:02 UTC (permalink / raw)
To: Greg KH; +Cc: stable@vger.kernel.org, gordan@bobich.net, Sasha Levin
On 03/10/2016 06:31 PM, Greg KH wrote:
> On Thu, Mar 10, 2016 at 10:46:22AM +0000, Grumbach, Emmanuel wrote:
>> Hi Greg,
>>
>>>>
>>>>
>>>> On 02/07/2016 11:00 PM, Greg KH wrote:
>>>>> On Sun, Feb 07, 2016 at 10:51:08PM +0200, Emmanuel Grumbach wrote:
>>>>>> From: Arik Nemtsov <arik@wizery.com>
>>>>>>
>>>>>> [commit fe45773b5baa154468416aac1304f6325939f775 upstream]
>>>>>>
>>>>>> Toggle the LMPM_CHICK register when writing chunks into the FW's
>>>>>> extended SRAM. This tells the FW to put the chunk into a different
>>> memory space.
>>>>>>
>>>>>> Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
>>>>>> Signed-off-by: Emmanuel Grumbach
>>> <emmanuel.grumbach@intel.com>
>>>>>> ---
>>>>>> backporting this patch to 3.18 fixes
>>>>>> https://bugzilla.kernel.org/show_bug.cgi?id=109531
>>>>>> ---
>>>>>> drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
>>>>>> drivers/net/wireless/iwlwifi/pcie/trans.c | 26
>>>>>> ++++++++++++++++++++++----
>>>>>> 2 files changed, 28 insertions(+), 4 deletions(-)
>>>>> What stable tree(s) do you want this to be applied to?
>>>>
>>>> That was fast :) 3.18 as said in the title of the patch. Do you have
>>>> any preference on how to indicate that?
>>>
>>> Ugh, no, you did it right, I just didn't read the subject: my fault, sorry for the
>>> noise...
>>
>> Any reason this was not picked up for v3.18.28?
>> Do I miss anything?
>
> Why are you asking me about 3.18-stable?
>
> confused,
>
Ouch - somehow, I was convinced that you maintain all the stable
kernels, at least all those being listed in kernel.org. Sorry...
Sasha?
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-03-10 17:02 ` Grumbach, Emmanuel
@ 2016-03-10 18:51 ` Sasha Levin
2016-03-10 19:18 ` Grumbach, Emmanuel
0 siblings, 1 reply; 10+ messages in thread
From: Sasha Levin @ 2016-03-10 18:51 UTC (permalink / raw)
To: Grumbach, Emmanuel, Greg KH; +Cc: stable@vger.kernel.org, gordan@bobich.net
On 03/10/2016 12:02 PM, Grumbach, Emmanuel wrote:
>
> On 03/10/2016 06:31 PM, Greg KH wrote:
>> > On Thu, Mar 10, 2016 at 10:46:22AM +0000, Grumbach, Emmanuel wrote:
>>> >> Hi Greg,
>>> >>
>>>>> >>>>
>>>>> >>>>
>>>>> >>>> On 02/07/2016 11:00 PM, Greg KH wrote:
>>>>>> >>>>> On Sun, Feb 07, 2016 at 10:51:08PM +0200, Emmanuel Grumbach wrote:
>>>>>>> >>>>>> From: Arik Nemtsov <arik@wizery.com>
>>>>>>> >>>>>>
>>>>>>> >>>>>> [commit fe45773b5baa154468416aac1304f6325939f775 upstream]
>>>>>>> >>>>>>
>>>>>>> >>>>>> Toggle the LMPM_CHICK register when writing chunks into the FW's
>>>>>>> >>>>>> extended SRAM. This tells the FW to put the chunk into a different
>>>> >>> memory space.
>>>>>>> >>>>>>
>>>>>>> >>>>>> Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
>>>>>>> >>>>>> Signed-off-by: Emmanuel Grumbach
>>>> >>> <emmanuel.grumbach@intel.com>
>>>>>>> >>>>>> ---
>>>>>>> >>>>>> backporting this patch to 3.18 fixes
>>>>>>> >>>>>> https://bugzilla.kernel.org/show_bug.cgi?id=109531
>>>>>>> >>>>>> ---
>>>>>>> >>>>>> drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
>>>>>>> >>>>>> drivers/net/wireless/iwlwifi/pcie/trans.c | 26
>>>>>>> >>>>>> ++++++++++++++++++++++----
>>>>>>> >>>>>> 2 files changed, 28 insertions(+), 4 deletions(-)
>>>>>> >>>>> What stable tree(s) do you want this to be applied to?
>>>>> >>>>
>>>>> >>>> That was fast :) 3.18 as said in the title of the patch. Do you have
>>>>> >>>> any preference on how to indicate that?
>>>> >>>
>>>> >>> Ugh, no, you did it right, I just didn't read the subject: my fault, sorry for the
>>>> >>> noise...
>>> >>
>>> >> Any reason this was not picked up for v3.18.28?
>>> >> Do I miss anything?
>> >
>> > Why are you asking me about 3.18-stable?
>> >
>> > confused,
>> >
> Ouch - somehow, I was convinced that you maintain all the stable
> kernels, at least all those being listed in kernel.org. Sorry...
Sorry about that, my scripts skipped it because it didn't have a cc: stable@ tag. Fixed that and added it to the queue.
Thanks,
Sasha
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-03-10 18:51 ` Sasha Levin
@ 2016-03-10 19:18 ` Grumbach, Emmanuel
2016-03-10 19:34 ` Sasha Levin
0 siblings, 1 reply; 10+ messages in thread
From: Grumbach, Emmanuel @ 2016-03-10 19:18 UTC (permalink / raw)
To: Sasha Levin, Greg KH; +Cc: stable@vger.kernel.org, gordan@bobich.net
On 03/10/2016 08:51 PM, Sasha Levin wrote:
> On 03/10/2016 12:02 PM, Grumbach, Emmanuel wrote:
>>
>> On 03/10/2016 06:31 PM, Greg KH wrote:
>>>> On Thu, Mar 10, 2016 at 10:46:22AM +0000, Grumbach, Emmanuel wrote:
>>>>>> Hi Greg,
>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On 02/07/2016 11:00 PM, Greg KH wrote:
>>>>>>>>>>>> On Sun, Feb 07, 2016 at 10:51:08PM +0200, Emmanuel Grumbach wrote:
>>>>>>>>>>>>>> From: Arik Nemtsov <arik@wizery.com>
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> [commit fe45773b5baa154468416aac1304f6325939f775 upstream]
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Toggle the LMPM_CHICK register when writing chunks into the FW's
>>>>>>>>>>>>>> extended SRAM. This tells the FW to put the chunk into a different
>>>>>>>> memory space.
>>>>>>>>>>>>>>
>>>>>>>>>>>>>> Signed-off-by: Arik Nemtsov <arikx.nemtsov@intel.com>
>>>>>>>>>>>>>> Signed-off-by: Emmanuel Grumbach
>>>>>>>> <emmanuel.grumbach@intel.com>
>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>> backporting this patch to 3.18 fixes
>>>>>>>>>>>>>> https://bugzilla.kernel.org/show_bug.cgi?id=109531
>>>>>>>>>>>>>> ---
>>>>>>>>>>>>>> drivers/net/wireless/iwlwifi/iwl-prph.h | 6 ++++++
>>>>>>>>>>>>>> drivers/net/wireless/iwlwifi/pcie/trans.c | 26
>>>>>>>>>>>>>> ++++++++++++++++++++++----
>>>>>>>>>>>>>> 2 files changed, 28 insertions(+), 4 deletions(-)
>>>>>>>>>>>> What stable tree(s) do you want this to be applied to?
>>>>>>>>>>
>>>>>>>>>> That was fast :) 3.18 as said in the title of the patch. Do you have
>>>>>>>>>> any preference on how to indicate that?
>>>>>>>>
>>>>>>>> Ugh, no, you did it right, I just didn't read the subject: my fault, sorry for the
>>>>>>>> noise...
>>>>>>
>>>>>> Any reason this was not picked up for v3.18.28?
>>>>>> Do I miss anything?
>>>>
>>>> Why are you asking me about 3.18-stable?
>>>>
>>>> confused,
>>>>
>> Ouch - somehow, I was convinced that you maintain all the stable
>> kernels, at least all those being listed in kernel.org. Sorry...
>
> Sorry about that, my scripts skipped it because it didn't have a cc: stable@ tag. Fixed that and added it to the queue.
>
There are a few maintainers that don't want people to cc: stable@ in
their commit message but send patches to stable manually when these
commits hit Linus's tree. I doubt they send them to stable after having
add cc: stable@ to the commit message. So you may have missed quite a
few patches :)
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range
2016-03-10 19:18 ` Grumbach, Emmanuel
@ 2016-03-10 19:34 ` Sasha Levin
0 siblings, 0 replies; 10+ messages in thread
From: Sasha Levin @ 2016-03-10 19:34 UTC (permalink / raw)
To: Grumbach, Emmanuel, Greg KH; +Cc: stable@vger.kernel.org, gordan@bobich.net
On 03/10/2016 02:18 PM, Grumbach, Emmanuel wrote:
>> > Sorry about that, my scripts skipped it because it didn't have a cc: stable@ tag. Fixed that and added it to the queue.
>> >
> There are a few maintainers that don't want people to cc: stable@ in
> their commit message but send patches to stable manually when these
> commits hit Linus's tree. I doubt they send them to stable after having
> add cc: stable@ to the commit message. So you may have missed quite a
> few patches :)
Hm, you're right. Not too many missed, but still.
My scripts used to ignore mails that didn't have "cc: stable@" and were not
addressed directly to me. I handled the exception which is David Miller by
just doing it manually, but I guess that it isn't the only exception.
Thanks,
Sasha
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2016-03-10 19:34 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-07 20:51 [PATCH v3.18] iwlwifi: pcie: support loading FW with extended mem range Emmanuel Grumbach
2016-02-07 21:00 ` Greg KH
2016-02-07 21:02 ` Grumbach, Emmanuel
2016-02-07 21:19 ` Greg KH
2016-03-10 10:46 ` Grumbach, Emmanuel
2016-03-10 16:30 ` Greg KH
2016-03-10 17:02 ` Grumbach, Emmanuel
2016-03-10 18:51 ` Sasha Levin
2016-03-10 19:18 ` Grumbach, Emmanuel
2016-03-10 19:34 ` Sasha Levin
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).