Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78305
b: refs/heads/master
c: f9d8928
h: refs/heads/master
i:
  78303: 2cf6fc5
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Jan 28, 2008
1 parent 0408d63 commit 9dfd0a3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 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: e3ac5298159c5286cef86f0865d4fa6a606bd391
refs/heads/master: f9d8928f8340ab8e76f1da4799cb19a6ff58b83d
3 changes: 1 addition & 2 deletions trunk/include/linux/netfilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,7 @@ int compat_nf_getsockopt(struct sock *sk, int pf, int optval,
/* Packet queuing */
struct nf_queue_handler {
int (*outfn)(struct sk_buff *skb, struct nf_info *info,
unsigned int queuenum, void *data);
void *data;
unsigned int queuenum);
char *name;
};
extern int nf_register_queue_handler(int pf,
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/ipv4/netfilter/ip_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ ipq_build_packet_message(struct ipq_queue_entry *entry, int *errp)

static int
ipq_enqueue_packet(struct sk_buff *skb, struct nf_info *info,
unsigned int queuenum, void *data)
unsigned int queuenum)
{
int status = -EINVAL;
struct sk_buff *nskb;
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/ipv6/netfilter/ip6_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ ipq_build_packet_message(struct ipq_queue_entry *entry, int *errp)

static int
ipq_enqueue_packet(struct sk_buff *skb, struct nf_info *info,
unsigned int queuenum, void *data)
unsigned int queuenum)
{
int status = -EINVAL;
struct sk_buff *nskb;
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/netfilter/nf_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ static int __nf_queue(struct sk_buff *skb,
}
#endif
afinfo->saveroute(skb, info);
status = qh->outfn(skb, info, queuenum, qh->data);
status = qh->outfn(skb, info, queuenum);

rcu_read_unlock();

Expand Down
2 changes: 1 addition & 1 deletion trunk/net/netfilter/nfnetlink_queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ nfqnl_build_packet_message(struct nfqnl_instance *queue,

static int
nfqnl_enqueue_packet(struct sk_buff *skb, struct nf_info *info,
unsigned int queuenum, void *data)
unsigned int queuenum)
{
int status = -EINVAL;
struct sk_buff *nskb;
Expand Down

0 comments on commit 9dfd0a3

Please sign in to comment.