diff options
49 files changed, 419 insertions, 175 deletions
diff --git a/Documentation/networking/ip-sysctl.txt b/Documentation/networking/ip-sysctl.txt index 9bffdfc648dc..85b022179104 100644 --- a/Documentation/networking/ip-sysctl.txt +++ b/Documentation/networking/ip-sysctl.txt | |||
| @@ -66,6 +66,8 @@ fwmark_reflect - BOOLEAN | |||
| 66 | route/max_size - INTEGER | 66 | route/max_size - INTEGER |
| 67 | Maximum number of routes allowed in the kernel. Increase | 67 | Maximum number of routes allowed in the kernel. Increase |
| 68 | this when using large numbers of interfaces and/or routes. | 68 | this when using large numbers of interfaces and/or routes. |
| 69 | From linux kernel 3.6 onwards, this is deprecated for ipv4 | ||
| 70 | as route cache is no longer used. | ||
| 69 | 71 | ||
| 70 | neigh/default/gc_thresh1 - INTEGER | 72 | neigh/default/gc_thresh1 - INTEGER |
| 71 | Minimum number of entries to keep. Garbage collector will not | 73 | Minimum number of entries to keep. Garbage collector will not |
diff --git a/MAINTAINERS b/MAINTAINERS index 8bed045c0c48..600d2aad8276 100644 --- a/MAINTAINERS +++ b/MAINTAINERS | |||
| @@ -4749,7 +4749,7 @@ S: Supported | |||
| 4749 | F: drivers/scsi/ipr.* | 4749 | F: drivers/scsi/ipr.* |
| 4750 | 4750 | ||
| 4751 | IBM Power Virtual Ethernet Device Driver | 4751 | IBM Power Virtual Ethernet Device Driver |
| 4752 | M: Santiago Leon <santil@linux.vnet.ibm.com> | 4752 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
| 4753 | L: netdev@vger.kernel.org | 4753 | L: netdev@vger.kernel.org |
| 4754 | S: Supported | 4754 | S: Supported |
| 4755 | F: drivers/net/ethernet/ibm/ibmveth.* | 4755 | F: drivers/net/ethernet/ibm/ibmveth.* |
diff --git a/arch/arm/boot/dts/imx6sx-sdb.dts b/arch/arm/boot/dts/imx6sx-sdb.dts index 1e6e5cc1c14c..8c1febd7e3f2 100644 --- a/arch/arm/boot/dts/imx6sx-sdb.dts +++ b/arch/arm/boot/dts/imx6sx-sdb.dts | |||
| @@ -159,13 +159,28 @@ | |||
| 159 | pinctrl-0 = <&pinctrl_enet1>; | 159 | pinctrl-0 = <&pinctrl_enet1>; |
| 160 | phy-supply = <®_enet_3v3>; | 160 | phy-supply = <®_enet_3v3>; |
| 161 | phy-mode = "rgmii"; | 161 | phy-mode = "rgmii"; |
| 162 | phy-handle = <ðphy1>; | ||
| 162 | status = "okay"; | 163 | status = "okay"; |
| 164 | |||
| 165 | mdio { | ||
| 166 | #address-cells = <1>; | ||
| 167 | #size-cells = <0>; | ||
| 168 | |||
| 169 | ethphy1: ethernet-phy@0 { | ||
| 170 | reg = <0>; | ||
| 171 | }; | ||
| 172 | |||
| 173 | ethphy2: ethernet-phy@1 { | ||
| 174 | reg = <1>; | ||
| 175 | }; | ||
| 176 | }; | ||
| 163 | }; | 177 | }; |
| 164 | 178 | ||
| 165 | &fec2 { | 179 | &fec2 { |
| 166 | pinctrl-names = "default"; | 180 | pinctrl-names = "default"; |
| 167 | pinctrl-0 = <&pinctrl_enet2>; | 181 | pinctrl-0 = <&pinctrl_enet2>; |
| 168 | phy-mode = "rgmii"; | 182 | phy-mode = "rgmii"; |
| 183 | phy-handle = <ðphy2>; | ||
| 169 | status = "okay"; | 184 | status = "okay"; |
| 170 | }; | 185 | }; |
| 171 | 186 | ||
diff --git a/arch/arm/boot/dts/vf610-twr.dts b/arch/arm/boot/dts/vf610-twr.dts index a0f762159cb2..f2b64b1b00fa 100644 --- a/arch/arm/boot/dts/vf610-twr.dts +++ b/arch/arm/boot/dts/vf610-twr.dts | |||
| @@ -129,13 +129,28 @@ | |||
| 129 | 129 | ||
| 130 | &fec0 { | 130 | &fec0 { |
| 131 | phy-mode = "rmii"; | 131 | phy-mode = "rmii"; |
| 132 | phy-handle = <ðphy0>; | ||
| 132 | pinctrl-names = "default"; | 133 | pinctrl-names = "default"; |
| 133 | pinctrl-0 = <&pinctrl_fec0>; | 134 | pinctrl-0 = <&pinctrl_fec0>; |
| 134 | status = "okay"; | 135 | status = "okay"; |
| 136 | |||
| 137 | mdio { | ||
| 138 | #address-cells = <1>; | ||
| 139 | #size-cells = <0>; | ||
| 140 | |||
| 141 | ethphy0: ethernet-phy@0 { | ||
| 142 | reg = <0>; | ||
| 143 | }; | ||
| 144 | |||
| 145 | ethphy1: ethernet-phy@1 { | ||
| 146 | reg = <1>; | ||
| 147 | }; | ||
| 148 | }; | ||
| 135 | }; | 149 | }; |
| 136 | 150 | ||
| 137 | &fec1 { | 151 | &fec1 { |
| 138 | phy-mode = "rmii"; | 152 | phy-mode = "rmii"; |
| 153 | phy-handle = <ðphy1>; | ||
| 139 | pinctrl-names = "default"; | 154 | pinctrl-names = "default"; |
| 140 | pinctrl-0 = <&pinctrl_fec1>; | 155 | pinctrl-0 = <&pinctrl_fec1>; |
| 141 | status = "okay"; | 156 | status = "okay"; |
diff --git a/drivers/isdn/hardware/eicon/message.c b/drivers/isdn/hardware/eicon/message.c index a82e542ffc21..0b380603a578 100644 --- a/drivers/isdn/hardware/eicon/message.c +++ b/drivers/isdn/hardware/eicon/message.c | |||
| @@ -4880,7 +4880,7 @@ static void sig_ind(PLCI *plci) | |||
| 4880 | byte SS_Ind[] = "\x05\x02\x00\x02\x00\x00"; /* Hold_Ind struct*/ | 4880 | byte SS_Ind[] = "\x05\x02\x00\x02\x00\x00"; /* Hold_Ind struct*/ |
| 4881 | byte CF_Ind[] = "\x09\x02\x00\x06\x00\x00\x00\x00\x00\x00"; | 4881 | byte CF_Ind[] = "\x09\x02\x00\x06\x00\x00\x00\x00\x00\x00"; |
| 4882 | byte Interr_Err_Ind[] = "\x0a\x02\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"; | 4882 | byte Interr_Err_Ind[] = "\x0a\x02\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"; |
| 4883 | byte CONF_Ind[] = "\x09\x16\x00\x06\x00\x00\0x00\0x00\0x00\0x00"; | 4883 | byte CONF_Ind[] = "\x09\x16\x00\x06\x00\x00\x00\x00\x00\x00"; |
| 4884 | byte force_mt_info = false; | 4884 | byte force_mt_info = false; |
| 4885 | byte dir; | 4885 | byte dir; |
| 4886 | dword d; | 4886 | dword d; |
diff --git a/drivers/net/ethernet/atheros/alx/main.c b/drivers/net/ethernet/atheros/alx/main.c index e398eda07298..c8af3ce3ea38 100644 --- a/drivers/net/ethernet/atheros/alx/main.c +++ b/drivers/net/ethernet/atheros/alx/main.c | |||
| @@ -184,15 +184,16 @@ static void alx_schedule_reset(struct alx_priv *alx) | |||
| 184 | schedule_work(&alx->reset_wk); | 184 | schedule_work(&alx->reset_wk); |
