[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20171226.174231.1806242838460429411.davem@davemloft.net>
Date: Tue, 26 Dec 2017 17:42:31 -0500 (EST)
From: David Miller <davem@...emloft.net>
To: colin.king@...onical.com
Cc: kuznet@....inr.ac.ru, yoshfuji@...ux-ipv6.org,
netdev@...r.kernel.org, kernel-janitors@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] tcp: make function tcp_recv_timestamp static
From: Colin King <colin.king@...onical.com>
Date: Fri, 22 Dec 2017 01:01:35 +0000
> From: Colin Ian King <colin.king@...onical.com>
>
> The function tcp_recv_timestamp is local to the source and does not
> need to be in global scope, so make it static.
>
> Cleans up sparse warning:
> symbol 'tcp_recv_timestamp' was not declared. Should it be static?
>
> Signed-off-by: Colin Ian King <colin.king@...onical.com>
This doesn't apply cleanly to any of my trees, please be explicit about
which tree you are targetting once you fix this up, also:
> @@ -1729,7 +1729,7 @@ static void tcp_update_recv_tstamps(struct sk_buff *skb,
> }
>
> /* Similar to __sock_recv_timestamp, but does not require an skb */
> -void tcp_recv_timestamp(struct msghdr *msg, const struct sock *sk,
> +static void tcp_recv_timestamp(struct msghdr *msg, const struct sock *sk,
> struct scm_timestamping *tss)
If you change where the openning parenthesis of a function definition
occurs, you have to adjust the indentation of the second line of
arguments so that it starts precisely at the first column after the
openning parenthesis.
Thank you.
Powered by blists - more mailing lists