[NET]: Fix whitespace issues in net/core/filter.c
This fixes some whitespace issues in net/core/filter.c Signed-off-by: Kris Katterjohn <kjak@users.sourceforge.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
dd914b4082
commit
e35bedf369
1 changed files with 6 additions and 7 deletions
|
@ -74,7 +74,6 @@ static inline void *load_pointer(struct sk_buff *skb, int k,
|
||||||
* filtering, filter is the array of filter instructions, and
|
* filtering, filter is the array of filter instructions, and
|
||||||
* len is the number of filter blocks in the array.
|
* len is the number of filter blocks in the array.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
unsigned int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int flen)
|
unsigned int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int flen)
|
||||||
{
|
{
|
||||||
struct sock_filter *fentry; /* We walk down these */
|
struct sock_filter *fentry; /* We walk down these */
|
||||||
|
@ -175,7 +174,7 @@ unsigned int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int
|
||||||
continue;
|
continue;
|
||||||
case BPF_LD|BPF_W|BPF_ABS:
|
case BPF_LD|BPF_W|BPF_ABS:
|
||||||
k = fentry->k;
|
k = fentry->k;
|
||||||
load_w:
|
load_w:
|
||||||
ptr = load_pointer(skb, k, 4, &tmp);
|
ptr = load_pointer(skb, k, 4, &tmp);
|
||||||
if (ptr != NULL) {
|
if (ptr != NULL) {
|
||||||
A = ntohl(*(u32 *)ptr);
|
A = ntohl(*(u32 *)ptr);
|
||||||
|
@ -184,7 +183,7 @@ unsigned int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int
|
||||||
break;
|
break;
|
||||||
case BPF_LD|BPF_H|BPF_ABS:
|
case BPF_LD|BPF_H|BPF_ABS:
|
||||||
k = fentry->k;
|
k = fentry->k;
|
||||||
load_h:
|
load_h:
|
||||||
ptr = load_pointer(skb, k, 2, &tmp);
|
ptr = load_pointer(skb, k, 2, &tmp);
|
||||||
if (ptr != NULL) {
|
if (ptr != NULL) {
|
||||||
A = ntohs(*(u16 *)ptr);
|
A = ntohs(*(u16 *)ptr);
|
||||||
|
|
Loading…
Reference in a new issue