Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7128
b: refs/heads/master
c: 1198ad0
h: refs/heads/master
v: v3
  • Loading branch information
Herbert Xu authored and David S. Miller committed Sep 6, 2005
1 parent 4893215 commit 278e799
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6baf1f417d092bd2de7c8892cecad456024c993f
refs/heads/master: 1198ad002ad36291817c7bf0308ab9c50ee2571d
6 changes: 3 additions & 3 deletions trunk/net/core/filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int flen)
A = ntohl(*(u32 *)ptr);
continue;
}
return 0;
break;
case BPF_LD|BPF_H|BPF_ABS:
k = fentry->k;
load_h:
Expand All @@ -191,7 +191,7 @@ int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int flen)
A = ntohs(*(u16 *)ptr);
continue;
}
return 0;
break;
case BPF_LD|BPF_B|BPF_ABS:
k = fentry->k;
load_b:
Expand All @@ -200,7 +200,7 @@ int sk_run_filter(struct sk_buff *skb, struct sock_filter *filter, int flen)
A = *(u8 *)ptr;
continue;
}
return 0;
break;
case BPF_LD|BPF_W|BPF_LEN:
A = skb->len;
continue;
Expand Down

0 comments on commit 278e799

Please sign in to comment.