diff options
author | Alexei Starovoitov <ast@plumgrid.com> | 2014-07-30 23:34:13 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-08-02 18:02:38 -0400 |
commit | 009937e78a45553a86d26654f192b2fd9ebe289d (patch) | |
tree | e51182b31749cecad8f1a0749969c79815aeefe7 /net | |
parent | 278571baca2aecf5fb5cb5c8b002dbfa0a6c524c (diff) |
net: filter: rename sk_filter_proglen -> bpf_classic_proglen
trivial rename to better match semantics of macro
Signed-off-by: Alexei Starovoitov <ast@plumgrid.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/core/filter.c | 8 | ||||
-rw-r--r-- | net/core/sock_diag.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/net/core/filter.c b/net/core/filter.c index 5a6aeb1d40b8..d6cb287e4f59 100644 --- a/net/core/filter.c +++ b/net/core/filter.c | |||
@@ -813,7 +813,7 @@ EXPORT_SYMBOL(sk_chk_filter); | |||
813 | static int sk_store_orig_filter(struct sk_filter *fp, | 813 | static int sk_store_orig_filter(struct sk_filter *fp, |
814 | const struct sock_fprog *fprog) | 814 | const struct sock_fprog *fprog) |
815 | { | 815 | { |
816 | unsigned int fsize = sk_filter_proglen(fprog); | 816 | unsigned int fsize = bpf_classic_proglen(fprog); |
817 | struct sock_fprog_kern *fkprog; | 817 | struct sock_fprog_kern *fkprog; |
818 | 818 | ||
819 | fp->orig_prog = kmalloc(sizeof(*fkprog), GFP_KERNEL); | 819 | fp->orig_prog = kmalloc(sizeof(*fkprog), GFP_KERNEL); |
@@ -1001,7 +1001,7 @@ static struct sk_filter *__sk_prepare_filter(struct sk_filter *fp) | |||
1001 | int sk_unattached_filter_create(struct sk_filter **pfp, | 1001 | int sk_unattached_filter_create(struct sk_filter **pfp, |
1002 | struct sock_fprog_kern *fprog) | 1002 | struct sock_fprog_kern *fprog) |
1003 | { | 1003 | { |
1004 | unsigned int fsize = sk_filter_proglen(fprog); | 1004 | unsigned int fsize = bpf_classic_proglen(fprog); |
1005 | struct sk_filter *fp; | 1005 | struct sk_filter *fp; |
1006 | 1006 | ||
1007 | /* Make sure new filter is there and in the right amounts. */ | 1007 | /* Make sure new filter is there and in the right amounts. */ |
@@ -1053,7 +1053,7 @@ EXPORT_SYMBOL_GPL(sk_unattached_filter_destroy); | |||
1053 | int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk) | 1053 | int sk_attach_filter(struct sock_fprog *fprog, struct sock *sk) |
1054 | { | 1054 | { |
1055 | struct sk_filter *fp, *old_fp; | 1055 | struct sk_filter *fp, *old_fp; |
1056 | unsigned int fsize = sk_filter_proglen(fprog); | 1056 | unsigned int fsize = bpf_classic_proglen(fprog); |
1057 | unsigned int sk_fsize = sk_filter_size(fprog->len); | 1057 | unsigned int sk_fsize = sk_filter_size(fprog->len); |
1058 | int err; | 1058 | int err; |
1059 | 1059 | ||
@@ -1154,7 +1154,7 @@ int sk_get_filter(struct sock *sk, struct sock_filter __user *ubuf, | |||
1154 | goto out; | 1154 | goto out; |
1155 | 1155 | ||
1156 | ret = -EFAULT; | 1156 | ret = -EFAULT; |
1157 | if (copy_to_user(ubuf, fprog->filter, sk_filter_proglen(fprog))) | 1157 | if (copy_to_user(ubuf, fprog->filter, bpf_classic_proglen(fprog))) |
1158 | goto out; | 1158 | goto out; |
1159 | 1159 | ||
1160 | /* Instead of bytes, the API requests to return the number | 1160 | /* Instead of bytes, the API requests to return the number |
diff --git a/net/core/sock_diag.c b/net/core/sock_diag.c index a4216a4c9572..57d922320c59 100644 --- a/net/core/sock_diag.c +++ b/net/core/sock_diag.c | |||
@@ -69,7 +69,7 @@ int sock_diag_put_filterinfo(bool may_report_filterinfo, struct sock *sk, | |||
69 | goto out; | 69 | goto out; |
70 | 70 | ||
71 | fprog = filter->orig_prog; | 71 | fprog = filter->orig_prog; |
72 | flen = sk_filter_proglen(fprog); | 72 | flen = bpf_classic_proglen(fprog); |
73 | 73 | ||
74 | attr = nla_reserve(skb, attrtype, flen); | 74 | attr = nla_reserve(skb, attrtype, flen); |
75 | if (attr == NULL) { | 75 | if (attr == NULL) { |