* Re: [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
@ 2007-09-11 15:17 ` Randy Dunlap
2007-09-11 16:06 ` liran tal
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Randy Dunlap @ 2007-09-11 15:17 UTC (permalink / raw)
To: kernel-janitors
On Tue, 11 Sep 2007 16:49:01 +0300 liran tal wrote:
> The patch removes an unnecessary cast in accordance to the rest of
> the code. Kernel version is 2.6.22 with latest patches.
>
>
> --- x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
> +++ x_tables.c 2007-09-11 11:22:11.000000000 +0300
> @@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
>
> static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
> {
> - struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
> + struct proc_dir_entry *pde = seq->private;
> u_int16_t af = (unsigned long)pde->data & 0xffff;
> u_int16_t type = (unsigned long)pde->data >> 16;
> struct list_head *list;
>
>
> Signed-off-by: Liran Tal <liran.tal@gmail.com>
Still several patch-process problems here.
a. send patches against the latest mainline kernel tree (probably
doesn't matter in this case)
b. The diff/patch file names should be such that the patch can be
applied by using 'patch -p1' when at the top of the kernel tree.
I.e., something like
--- linux/net/netfilter/x_tables.c.orig ...
+++ linux/net/netfilter/x_tables.c ...
c. Tabs in the file have been replaced by spaces, most likely by
your mail client or by using copy-and-paste.
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
2007-09-11 15:17 ` Randy Dunlap
@ 2007-09-11 16:06 ` liran tal
2007-09-11 16:53 ` liran tal
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: liran tal @ 2007-09-11 16:06 UTC (permalink / raw)
To: kernel-janitors
Thanks Randy, I will make the necessary changes.
I am working against latest kernel tree which is 2.6.22 with
patch-2.6.23-rc5 applied.
On 9/11/07, Randy Dunlap <rdunlap@xenotime.net> wrote:
> On Tue, 11 Sep 2007 16:49:01 +0300 liran tal wrote:
>
> > The patch removes an unnecessary cast in accordance to the rest of
> > the code. Kernel version is 2.6.22 with latest patches.
> >
> >
> > --- x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
> > +++ x_tables.c 2007-09-11 11:22:11.000000000 +0300
> > @@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
> >
> > static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
> > {
> > - struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
> > + struct proc_dir_entry *pde = seq->private;
> > u_int16_t af = (unsigned long)pde->data & 0xffff;
> > u_int16_t type = (unsigned long)pde->data >> 16;
> > struct list_head *list;
> >
> >
> > Signed-off-by: Liran Tal <liran.tal@gmail.com>
>
> Still several patch-process problems here.
>
> a. send patches against the latest mainline kernel tree (probably
> doesn't matter in this case)
> b. The diff/patch file names should be such that the patch can be
> applied by using 'patch -p1' when at the top of the kernel tree.
> I.e., something like
> --- linux/net/netfilter/x_tables.c.orig ...
> +++ linux/net/netfilter/x_tables.c ...
> c. Tabs in the file have been replaced by spaces, most likely by
> your mail client or by using copy-and-paste.
>
>
>
> ---
> ~Randy
> *** Remember to use Documentation/SubmitChecklist when testing your code ***
>
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread* [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
2007-09-11 15:17 ` Randy Dunlap
2007-09-11 16:06 ` liran tal
@ 2007-09-11 16:53 ` liran tal
2007-09-11 19:44 ` Randy Dunlap
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: liran tal @ 2007-09-11 16:53 UTC (permalink / raw)
To: kernel-janitors
The patch removes an unnecessary cast in accordance to the rest of
the code. Kernel version is 2.6.22 with latest patches.
against latest tree, appliable with patch -p1 and no tabs used (could
only be the gmail)
--- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
+++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000 +0300
@@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
{
- struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
+ struct proc_dir_entry *pde = seq->private;
u_int16_t af = (unsigned long)pde->data & 0xffff;
u_int16_t type = (unsigned long)pde->data >> 16;
struct list_head *list;
Signed-off-by: Liran Tal <liran.tal@gmail.com>
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
` (2 preceding siblings ...)
2007-09-11 16:53 ` liran tal
@ 2007-09-11 19:44 ` Randy Dunlap
2007-09-12 6:19 ` liran tal
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Randy Dunlap @ 2007-09-11 19:44 UTC (permalink / raw)
To: kernel-janitors
On Tue, 11 Sep 2007 19:53:07 +0300 liran tal wrote:
> The patch removes an unnecessary cast in accordance to the rest of
> the code. Kernel version is 2.6.22 with latest patches.
>
> against latest tree, appliable with patch -p1 and no tabs used (could
> only be the gmail)
The "+" lines has spaces instead of a tab.
Yes, gmail is known to do that if you use the web interface.
Are you using web interface or an email client + SMTP?
>
> --- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
> +++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000 +0300
> @@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
>
> static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
> {
> - struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
> + struct proc_dir_entry *pde = seq->private;
> u_int16_t af = (unsigned long)pde->data & 0xffff;
> u_int16_t type = (unsigned long)pde->data >> 16;
> struct list_head *list;
>
> Signed-off-by: Liran Tal <liran.tal@gmail.com>
> _______________________________________________
> REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
> To resubscribe, send email to majordomo@vger.kernel.org with
> "subscribe kernel-janitors" in message body and follow instructions.
>
> Kernel-janitors mailing list
> Kernel-janitors@lists.linux-foundation.org
> https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
Note above: Please begin using the mailing list
kernel-janitors@vger.kernel.org
instead of kernel-janitors@lists.osdl.org
Thanks.
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
` (3 preceding siblings ...)
2007-09-11 19:44 ` Randy Dunlap
@ 2007-09-12 6:19 ` liran tal
2007-09-12 15:25 ` Randy Dunlap
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: liran tal @ 2007-09-12 6:19 UTC (permalink / raw)
To: kernel-janitors
Hey Randy,
> >
> > against latest tree, appliable with patch -p1 and no tabs used (could
> > only be the gmail)
>
> The "+" lines has spaces instead of a tab.
> Yes, gmail is known to do that if you use the web interface.
> Are you using web interface or an email client + SMTP?
Yeah, I'm using the gmail web interface.
I even disabled the "rich formatting" and enabled "plain text" mode.
Maybe we should try it with "rich formatting" mode and see if that works.
This is a copy&paste with rich formatting mode enabled:
--- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
+++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000 +0300
@@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
{
- struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
+ struct proc_dir_entry *pde = seq->private;
u_int16_t af = (unsigned long)pde->data & 0xffff;
u_int16_t type = (unsigned long)pde->data >> 16;
struct list_head *list;
Signed-off-by: Liran Tal <liran.tal@gmail.com>
> >
> > --- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:44.000000000+0300
> > +++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000+0300
> > @@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
> >
> > static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
> > {
> > - struct proc_dir_entry *pde = (struct proc_dir_entry *)
seq->private;
> > + struct proc_dir_entry *pde = seq->private;
> > u_int16_t af = (unsigned long)pde->data & 0xffff;
> > u_int16_t type = (unsigned long)pde->data >> 16;
> > struct list_head *list;
> >
> > Signed-off-by: Liran Tal <liran.tal@gmail.com>
> > _______________________________________________
> > REMINDER: this mailing list moved to vger.kernel.org and current one
will be discontinued soon.
> > To resubscribe, send email to majordomo@vger.kernel.org with
> > "subscribe kernel-janitors" in message body and follow
instructions.
> >
> > Kernel-janitors mailing list
> > Kernel-janitors@lists.linux-foundation.org
> > https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
>
>
> Note above: Please begin using the mailing list
> kernel-janitors@vger.kernel.org
> instead of kernel-janitors@lists.osdl.org
>
> Thanks.
>
> ---
> ~Randy
> *** Remember to use Documentation/SubmitChecklist when testing your code
***
>
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
` (4 preceding siblings ...)
2007-09-12 6:19 ` liran tal
@ 2007-09-12 15:25 ` Randy Dunlap
2007-09-17 12:37 ` Liran Tal
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Randy Dunlap @ 2007-09-12 15:25 UTC (permalink / raw)
To: kernel-janitors
On Wed, 12 Sep 2007 09:19:52 +0300 liran tal wrote:
> Hey Randy,
>
> > >
> > > against latest tree, appliable with patch -p1 and no tabs used (could
> > > only be the gmail)
> >
> > The "+" lines has spaces instead of a tab.
> > Yes, gmail is known to do that if you use the web interface.
> > Are you using web interface or an email client + SMTP?
>
> Yeah, I'm using the gmail web interface.
> I even disabled the "rich formatting" and enabled "plain text" mode.
>
> Maybe we should try it with "rich formatting" mode and see if that works.
> This is a copy&paste with rich formatting mode enabled:
All of these leading spaces should be tabs.
I'm not aware of anyone getting the gmail web interface to work
for patches, other than by using attachments, which is certainly
not preferred, but may be your only choice, if you are limited
to gmail + web interface.
Also, the Signed-off-by: line should come after the patch description
but before the actual patch.
> --- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
> +++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000 +0300
> @@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
>
> static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
> {
> - struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
> + struct proc_dir_entry *pde = seq->private;
> u_int16_t af = (unsigned long)pde->data & 0xffff;
> u_int16_t type = (unsigned long)pde->data >> 16;
> struct list_head *list;
>
>
> Signed-off-by: Liran Tal <liran.tal@gmail.com>
---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread* [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
` (5 preceding siblings ...)
2007-09-12 15:25 ` Randy Dunlap
@ 2007-09-17 12:37 ` Liran Tal
2007-09-19 7:32 ` Liran Tal
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: Liran Tal @ 2007-09-17 12:37 UTC (permalink / raw)
To: kernel-janitors
The patch removes an unnecessary cast in accordance to the rest of
the code. Kernel version is 2.6.22 with latest patches.
The spaces that appeared before have been replaced with tabs,
hopefully this version of the patch is compliant.
Signed-off-by: Liran Tal <liran.tal@gmail.com>
--- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
+++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000 +0300
@@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
{
- struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
+ struct proc_dir_entry *pde = seq->private;
u_int16_t af = (unsigned long)pde->data & 0xffff;
u_int16_t type = (unsigned long)pde->data >> 16;
struct list_head *list;
^ permalink raw reply [flat|nested] 11+ messages in thread* [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
` (6 preceding siblings ...)
2007-09-17 12:37 ` Liran Tal
@ 2007-09-19 7:32 ` Liran Tal
2007-10-09 19:32 ` Ahmed S. Darwish
2007-10-09 19:43 ` liran tal
9 siblings, 0 replies; 11+ messages in thread
From: Liran Tal @ 2007-09-19 7:32 UTC (permalink / raw)
To: kernel-janitors
The patch removes an unnecessary cast in accordance to the rest of
the code. Kernel version is 2.6.22 with latest patches.
The spaces that appeared before have been replaced with tabs,
hopefully this version of the patch is compliant.
Signed-off-by: Liran Tal <liran.tal@gmail.com>
--- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
+++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000 +0300
@@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
{
- struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
+ struct proc_dir_entry *pde = seq->private;
u_int16_t af = (unsigned long)pde->data & 0xffff;
u_int16_t type = (unsigned long)pde->data >> 16;
struct list_head *list;
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
` (7 preceding siblings ...)
2007-09-19 7:32 ` Liran Tal
@ 2007-10-09 19:32 ` Ahmed S. Darwish
2007-10-09 19:43 ` liran tal
9 siblings, 0 replies; 11+ messages in thread
From: Ahmed S. Darwish @ 2007-10-09 19:32 UTC (permalink / raw)
To: kernel-janitors
On Wed, Sep 19, 2007 at 09:32:56AM +0200, Liran Tal wrote:
>
> The patch removes an unnecessary cast in accordance to the rest of
> the code. Kernel version is 2.6.22 with latest patches.
>
> The spaces that appeared before have been replaced with tabs,
> hopefully this version of the patch is compliant.
>
> Signed-off-by: Liran Tal <liran.tal@gmail.com>
>
> --- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:44.000000000 +0300
> +++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000 +0300
> @@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
>
> static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
> {
> - struct proc_dir_entry *pde = (struct proc_dir_entry *) seq->private;
> + struct proc_dir_entry *pde = seq->private;
> u_int16_t af = (unsigned long)pde->data & 0xffff;
> u_int16_t type = (unsigned long)pde->data >> 16;
> struct list_head *list;
>
Patch was applied with no problems. Just some minor notes:
1- a "---" string below the Signed-off-by line
2- Take care that most of the sentences above the signed-off-by line are
written in the git logs. so don't put unwanted text.
3- you can write any info that's not appropriate for the logs under the
"---" line and before the patch (like the kernel version).
That's all :).
Regards,
--
Ahmed S. Darwish
HomePage: http://darwish.07.googlepages.com
Blog: http://darwish-07.blogspot.com
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts
2007-09-11 13:49 [KJ] [PATCH-RESUBMIT] net/netfilter/x_tables.c unnecessary casts liran tal
` (8 preceding siblings ...)
2007-10-09 19:32 ` Ahmed S. Darwish
@ 2007-10-09 19:43 ` liran tal
9 siblings, 0 replies; 11+ messages in thread
From: liran tal @ 2007-10-09 19:43 UTC (permalink / raw)
To: kernel-janitors
Thanks Ahmed, notes taken :-)
Have a good day,
Liran Tal.
On 10/9/07, Ahmed S. Darwish <darwish.07@gmail.com> wrote:
>
> On Wed, Sep 19, 2007 at 09:32:56AM +0200, Liran Tal wrote:
> >
> > The patch removes an unnecessary cast in accordance to the rest of
> > the code. Kernel version is 2.6.22 with latest patches.
> >
> > The spaces that appeared before have been replaced with tabs,
> > hopefully this version of the patch is compliant.
> >
> > Signed-off-by: Liran Tal <liran.tal@gmail.com>
> >
> > --- linux/net/netfilter/x_tables.c.orig 2007-09-11 11:21:
> 44.000000000 +0300
> > +++ linux/net/netfilter/x_tables.c 2007-09-11 11:22:11.000000000+0300
> > @@ -691,7 +691,7 @@ static struct list_head *type2list(u_int
> >
> > static void *xt_tgt_seq_start(struct seq_file *seq, loff_t *pos)
> > {
> > - struct proc_dir_entry *pde = (struct proc_dir_entry *)
> seq->private;
> > + struct proc_dir_entry *pde = seq->private;
> > u_int16_t af = (unsigned long)pde->data & 0xffff;
> > u_int16_t type = (unsigned long)pde->data >> 16;
> > struct list_head *list;
> >
>
> Patch was applied with no problems. Just some minor notes:
> 1- a "---" string below the Signed-off-by line
> 2- Take care that most of the sentences above the signed-off-by line are
> written in the git logs. so don't put unwanted text.
> 3- you can write any info that's not appropriate for the logs under the
> "---" line and before the patch (like the kernel version).
>
> That's all :).
>
> Regards,
>
> --
> Ahmed S. Darwish
> HomePage: http://darwish.07.googlepages.com
> Blog: http://darwish-07.blogspot.com
>
_______________________________________________
REMINDER: this mailing list moved to vger.kernel.org and current one will be discontinued soon.
To resubscribe, send email to majordomo@vger.kernel.org with
"subscribe kernel-janitors" in message body and follow instructions.
Kernel-janitors mailing list
Kernel-janitors@lists.linux-foundation.org
https://lists.linux-foundation.org/mailman/listinfo/kernel-janitors
^ permalink raw reply [flat|nested] 11+ messages in thread