[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20130122.162508.472486284426521608.davem@davemloft.net>
Date: Tue, 22 Jan 2013 16:25:08 -0500 (EST)
From: David Miller <davem@...emloft.net>
To: pshelar@...ira.com
Cc: netdev@...r.kernel.org, jesse@...ira.com
Subject: Re: [PATCH 1/2] IP_GRE: Fix kernel panic in IP_GRE with GRE csum.
From: Pravin B Shelar <pshelar@...ira.com>
Date: Tue, 22 Jan 2013 13:20:36 -0800
> - *(__sum16 *)ptr = ip_compute_csum((void *)(iph+1), skb->len - sizeof(struct iphdr));
> + *(__sum16 *)ptr = csum_fold(skb_checksum(skb,
> + skb_transport_offset(skb),
> + skb->len - skb_transport_offset(skb),
> + 0));
This is not the correct way to indent a multi-line function call.
The second and subsequent lines should be indented by a combination of
TAB and space characters, as needed, to make the first non-space
character line up with the first column after the openning parenthesis
of the first line.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists