From: Pravin B Shelar <hidden> Date: 2013-01-22 22:55:48
Fixed code indentation according to comments from David Miller.
--8<--------------------------cut here-------------------------->8--
Due to GSO support, GRE can recieve non linear skb which
results in panic in case of GRE_CSUM.
Following patch fixes it by using correct csum API.
Signed-off-by: Pravin B Shelar <redacted>
---
net/ipv4/ip_gre.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
From: David Miller <davem@davemloft.net> Date: 2013-01-23 01:55:08
From: Pravin B Shelar <redacted>
Date: Tue, 22 Jan 2013 14:56:38 -0800
Fixed code indentation according to comments from David Miller.
--8<--------------------------cut here-------------------------->8--
This doesn't do what you think it does. No automated tool is going
to edit the commit message the way you think this will.
You should instead put your "what is different in this revision"
comments right after the "---" below.
Due to GSO support, GRE can recieve non linear skb which
results in panic in case of GRE_CSUM.
Following patch fixes it by using correct csum API.
Signed-off-by: Pravin B Shelar <redacted>
---
From: Ben Pfaff <hidden> Date: 2013-01-23 05:45:04
David Miller [off-list ref] writes:
From: Pravin B Shelar <redacted>
Date: Tue, 22 Jan 2013 14:56:38 -0800
quoted
Fixed code indentation according to comments from David Miller.
--8<--------------------------cut here-------------------------->8--
This doesn't do what you think it does. No automated tool is going
to edit the commit message the way you think this will.
"git am" does if you run with --scissors, see git-am(1):
-c, --scissors
Remove everything in body before a scissors line (see git-
mailinfo(1)).
and git-mailinfo(1);
--scissors
Remove everything in body before a scissors line. A line that
mainly consists of scissors (either ">8" or "8<") and perforation
(dash "-") marks is called a scissors line, and is used to request
the reader to cut the message at that line. If such a line appears
in the body of the message before the patch, everything before it
(including the scissors line itself) is ignored when this option is
used.
This is useful if you want to begin your message in a discussion
thread with comments and suggestions on the message you are
responding to, and to conclude it with a patch submission,
separating the discussion and the beginning of the proposed commit
log message with a scissors line.
This can enabled by default with the configuration option
mailinfo.scissors.
Fixed code indentation according to comments from David Miller.
--8<--------------------------cut here-------------------------->8--
Due to GSO support, GRE can recieve non linear skb which
results in panic in case of GRE_CSUM.
Following patch fixes it by using correct csum API.
Signed-off-by: Pravin B Shelar <redacted>
---
net/ipv4/ip_gre.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)