aboutsummaryrefslogtreecommitdiffstats
path: root/net/llc/llc_conn.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2014-12-10 09:43:57 -0800
committerDavid S. Miller <davem@davemloft.net>2014-12-10 15:21:24 -0500
commit9b373069350d747c4e7ad7ea59f0fa348e860383 (patch)
tree0dab53d75e131669137800f492bd6c3a831ab763 /net/llc/llc_conn.c
parentllc: Make function pointer arrays const (diff)
downloadlinux-dev-9b373069350d747c4e7ad7ea59f0fa348e860383.tar.xz
linux-dev-9b373069350d747c4e7ad7ea59f0fa348e860383.zip
llc: Make llc_conn_ev_qfyr_t function pointer arrays const
It's better when function pointer arrays aren't modifiable. Net change from original: $ size net/llc/built-in.o.* text data bss dec hex filename 61065 12886 1344 75295 1261f net/llc/built-in.o.new 47113 27030 1344 75487 126df net/llc/built-in.o.old Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/llc/llc_conn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/llc/llc_conn.c b/net/llc/llc_conn.c
index 75baa2b0574f..81a61fce3afb 100644
--- a/net/llc/llc_conn.c
+++ b/net/llc/llc_conn.c
@@ -406,7 +406,7 @@ static struct llc_conn_state_trans *llc_qualify_conn_ev(struct sock *sk,
struct sk_buff *skb)
{
struct llc_conn_state_trans **next_trans;
- llc_conn_ev_qfyr_t *next_qualifier;
+ const llc_conn_ev_qfyr_t *next_qualifier;
struct llc_conn_state_ev *ev = llc_conn_ev(skb);
struct llc_sock *llc = llc_sk(sk);
struct llc_conn_state *curr_state =