diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/mdio-gpio.h | 5 | ||||
| -rw-r--r-- | include/linux/phy.h | 3 | ||||
| -rw-r--r-- | include/net/flow.h | 10 | ||||
| -rw-r--r-- | include/net/net_namespace.h | 9 | ||||
| -rw-r--r-- | include/net/sctp/structs.h | 4 |
5 files changed, 21 insertions, 10 deletions
diff --git a/include/linux/mdio-gpio.h b/include/linux/mdio-gpio.h index 7c9fe3c2be73..66c30a763b10 100644 --- a/include/linux/mdio-gpio.h +++ b/include/linux/mdio-gpio.h | |||
| @@ -17,6 +17,11 @@ struct mdio_gpio_platform_data { | |||
| 17 | /* GPIO numbers for bus pins */ | 17 | /* GPIO numbers for bus pins */ |
| 18 | unsigned int mdc; | 18 | unsigned int mdc; |
| 19 | unsigned int mdio; | 19 | unsigned int mdio; |
| 20 | unsigned int mdo; | ||
| 21 | |||
| 22 | bool mdc_active_low; | ||
| 23 | bool mdio_active_low; | ||
| 24 | bool mdo_active_low; | ||
| 20 | 25 | ||
| 21 | unsigned int phy_mask; | 26 | unsigned int phy_mask; |
| 22 | int irqs[PHY_MAX_ADDR]; | 27 | int irqs[PHY_MAX_ADDR]; |
diff --git a/include/linux/phy.h b/include/linux/phy.h index 24126c4b27b5..4d0221fd0688 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
| @@ -75,6 +75,7 @@ typedef enum { | |||
| 75 | PHY_INTERFACE_MODE_SMII, | 75 | PHY_INTERFACE_MODE_SMII, |
| 76 | PHY_INTERFACE_MODE_XGMII, | 76 | PHY_INTERFACE_MODE_XGMII, |
| 77 | PHY_INTERFACE_MODE_MOCA, | 77 | PHY_INTERFACE_MODE_MOCA, |
| 78 | PHY_INTERFACE_MODE_QSGMII, | ||
| 78 | PHY_INTERFACE_MODE_MAX, | 79 | PHY_INTERFACE_MODE_MAX, |
| 79 | } phy_interface_t; | 80 | } phy_interface_t; |
| 80 | 81 | ||
| @@ -116,6 +117,8 @@ static inline const char *phy_modes(phy_interface_t interface) | |||
| 116 | return "xgmii"; | 117 | return "xgmii"; |
| 117 | case PHY_INTERFACE_MODE_MOCA: | 118 | case PHY_INTERFACE_MODE_MOCA: |
| 118 | return "moca"; | 119 | return "moca"; |
| 120 | case PHY_INTERFACE_MODE_QSGMII: | ||
| 121 | return "qsgmii"; | ||
| 119 | default: | 122 | default: |
| 120 | return "unknown"; | 123 | return "unknown"; |
| 121 | } | 124 | } |
diff --git a/include/net/flow.h b/include/net/flow.h index 64fd24836650..8109a159d1b3 100644 --- a/include/net/flow.h +++ b/include/net/flow.h | |||
| @@ -11,6 +11,14 @@ | |||
| 11 | #include <linux/in6.h> | 11 | #include <linux/in6.h> |
| 12 | #include <linux/atomic.h> | 12 | #include <linux/atomic.h> |
| 13 | 13 | ||
| 14 | /* | ||
| 15 | * ifindex generation is per-net namespace, and loopback is | ||
| 16 | * always the 1st device in ns (see net_dev_init), thus any | ||
| 17 | * loopback device should get ifindex 1 | ||
| 18 | */ | ||
| 19 | |||
| 20 | #define LOOPBACK_IFINDEX 1 | ||
| 21 | |||
| 14 | struct flowi_common { | 22 | struct flowi_common { |
| 15 | int flowic_oif; | 23 | int flowic_oif; |
| 16 | int flowic_iif; | 24 | int flowic_iif; |
| @@ -80,7 +88,7 @@ static inline void flowi4_init_output(struct flowi4 *fl4, int oif, | |||
| 80 | __be16 dport, __be16 sport) | 88 | __be16 dport, __be16 sport) |
| 81 | { | 89 | { |
| 82 | fl4->flowi4_oif = oif; | 90 | fl4->flowi4_oif = oif; |
| 83 | fl4->flowi4_iif = 0; | 91 | fl4->flowi4_iif = LOOPBACK_IFINDEX; |
| 84 | fl4->flowi4_mark = mark; | 92 | fl4->flowi4_mark = mark; |
| 85 | fl4->flowi4_tos = tos; | 93 | fl4->flowi4_tos = tos; |
| 86 | fl4->flowi4_scope = scope; | 94 | fl4->flowi4_scope = scope; |
diff --git a/include/net/net_namespace.h b/include/net/net_namespace.h index 79387f73f875..5f9eb260990f 100644 --- a/include/net/net_namespace.h +++ b/include/net/net_namespace.h | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #include <linux/list.h> | 9 | #include <linux/list.h> |
| 10 | #include <linux/sysctl.h> | 10 | #include <linux/sysctl.h> |
| 11 | 11 | ||
| 12 | #include <net/flow.h> | ||
| 12 | #include <net/netns/core.h> | 13 | #include <net/netns/core.h> |
| 13 | #include <net/netns/mib.h> | 14 | #include <net/netns/mib.h> |
| 14 | #include <net/netns/unix.h> | 15 | #include <net/netns/unix.h> |
| @@ -131,14 +132,6 @@ struct net { | |||
| 131 | atomic_t fnhe_genid; | 132 | atomic_t fnhe_genid; |
| 132 | }; | 133 | }; |
| 133 | 134 | ||
| 134 | /* | ||
| 135 | * ifindex generation is per-net namespace, and loopback is | ||
| 136 | * always the 1st device in ns (see net_dev_init), thus any | ||
| 137 | * loopback device should get ifindex 1 | ||
| 138 | */ | ||
| 139 | |||
| 140 | #define LOOPBACK_IFINDEX 1 | ||
| 141 | |||
| 142 | #include <linux/seq_file_net.h> | 135 | #include <linux/seq_file_net.h> |
| 143 | 136 | ||
| 144 | /* Init's network namespace */ | 137 | /* Init's network namespace */ |
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index d992ca3145fe..0dfcc92600e8 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h | |||
| @@ -1241,6 +1241,7 @@ struct sctp_endpoint { | |||
| 1241 | /* SCTP-AUTH: endpoint shared keys */ | 1241 | /* SCTP-AUTH: endpoint shared keys */ |
| 1242 | struct list_head endpoint_shared_keys; | 1242 | struct list_head endpoint_shared_keys; |
| 1243 | __u16 active_key_id; | 1243 | __u16 active_key_id; |
| 1244 | __u8 auth_enable; | ||
| 1244 | }; | 1245 | }; |
| 1245 | 1246 | ||
| 1246 | /* Recover the outter endpoint structure. */ | 1247 | /* Recover the outter endpoint structure. */ |
| @@ -1269,7 +1270,8 @@ struct sctp_endpoint *sctp_endpoint_is_match(struct sctp_endpoint *, | |||
| 1269 | int sctp_has_association(struct net *net, const union sctp_addr *laddr, | 1270 | int sctp_has_association(struct net *net, const union sctp_addr *laddr, |
| 1270 | const union sctp_addr *paddr); | 1271 | const union sctp_addr *paddr); |
| 1271 | 1272 | ||
| 1272 | int sctp_verify_init(struct net *net, const struct sctp_association *asoc, | 1273 | int sctp_verify_init(struct net *net, const struct sctp_endpoint *ep, |
| 1274 | const struct sctp_association *asoc, | ||
| 1273 | sctp_cid_t, sctp_init_chunk_t *peer_init, | 1275 | sctp_cid_t, sctp_init_chunk_t *peer_init, |
| 1274 | struct sctp_chunk *chunk, struct sctp_chunk **err_chunk); | 1276 | struct sctp_chunk *chunk, struct sctp_chunk **err_chunk); |
| 1275 | int sctp_process_init(struct sctp_association *, struct sctp_chunk *chunk, | 1277 | int sctp_process_init(struct sctp_association *, struct sctp_chunk *chunk, |
