aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/netdevice.h2
-rw-r--r--include/net/pkt_sched.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 9b7fbacb6296..910fb17ad148 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -2821,7 +2821,7 @@ int dev_set_mac_address(struct net_device *, struct sockaddr *);
2821int dev_change_carrier(struct net_device *, bool new_carrier); 2821int dev_change_carrier(struct net_device *, bool new_carrier);
2822int dev_get_phys_port_id(struct net_device *dev, 2822int dev_get_phys_port_id(struct net_device *dev,
2823 struct netdev_phys_port_id *ppid); 2823 struct netdev_phys_port_id *ppid);
2824struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev); 2824struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev);
2825struct sk_buff *dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev, 2825struct sk_buff *dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
2826 struct netdev_queue *txq, int *ret); 2826 struct netdev_queue *txq, int *ret);
2827int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb); 2827int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb);
diff --git a/include/net/pkt_sched.h b/include/net/pkt_sched.h
index 8bbe626e9ece..e4b3c828c1c2 100644
--- a/include/net/pkt_sched.h
+++ b/include/net/pkt_sched.h
@@ -99,7 +99,7 @@ void qdisc_put_stab(struct qdisc_size_table *tab);
99void qdisc_warn_nonwc(const char *txt, struct Qdisc *qdisc); 99void qdisc_warn_nonwc(const char *txt, struct Qdisc *qdisc);
100int sch_direct_xmit(struct sk_buff *skb, struct Qdisc *q, 100int sch_direct_xmit(struct sk_buff *skb, struct Qdisc *q,
101 struct net_device *dev, struct netdev_queue *txq, 101 struct net_device *dev, struct netdev_queue *txq,
102 spinlock_t *root_lock); 102 spinlock_t *root_lock, bool validate);
103 103
104void __qdisc_run(struct Qdisc *q); 104void __qdisc_run(struct Qdisc *q);
105 105