diff options
author | David S. Miller <davem@davemloft.net> | 2013-02-12 18:58:28 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-12 18:58:28 -0500 |
commit | 9f6d98c298d48eec29a32ae8ed6f4d896eb4f634 (patch) | |
tree | 24a21ecbd80cd737ce0a4a21591340e6d7f51964 | |
parent | db98f081888cbdd995c7c4cfd407781da35e33ba (diff) | |
parent | 9c10f4115cc3722635d6e277385ec96003281784 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts:
drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
The bnx2x gso_type setting bug fix in 'net' conflicted with
changes in 'net-next' that broke the gso_* setting logic
out into a seperate function, which also fixes the bug in
question. Thus, use the 'net-next' version.
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 1 | ||||
-rw-r--r-- | drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c | 7 | ||||
-rw-r--r-- | drivers/net/ethernet/realtek/r8169.c | 86 | ||||
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 2 | ||||
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c | 10 | ||||
-rw-r--r-- | drivers/net/usb/qmi_wwan.c | 1 | ||||
-rw-r--r-- | drivers/net/wireless/mwl8k.c | 36 | ||||
-rw-r--r-- | net/bridge/br_stp_bpdu.c | 2 | ||||
-rw-r--r-- | net/core/datagram.c | 2 | ||||
-rw-r--r-- | net/ipv4/arp.c | 21 | ||||
-rw-r--r-- | net/ipv6/netfilter/ip6t_NPT.c | 18 | ||||
-rw-r--r-- | net/mac80211/cfg.c | 3 | ||||
-rw-r--r-- | net/mac80211/mlme.c | 11 | ||||
-rw-r--r-- | net/netfilter/ipvs/ip_vs_proto_sctp.c | 35 | ||||
-rw-r--r-- | net/netfilter/ipvs/ip_vs_sync.c | 2 | ||||
-rw-r--r-- | net/sched/sch_htb.c | 4 |
16 files changed, 111 insertions, 130 deletions
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c index 396e280c4373..6999269b3a4a 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | |||
@@ -1399,6 +1399,7 @@ static void ixgbe_set_rsc_gso_size(struct ixgbe_ring *ring, | |||
1399 | /* set gso_size to avoid messing up TCP MSS */ | 1399 | /* set gso_size to avoid messing up TCP MSS */ |
1400 | skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len), | 1400 | skb_shinfo(skb)->gso_size = DIV_ROUND_UP((skb->len - hdr_len), |
1401 | IXGBE_CB(skb)->append_cnt); | 1401 | IXGBE_CB(skb)->append_cnt); |
1402 | skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4; | ||
1402 | } | 1403 | } |
1403 | 1404 | ||
1404 | static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring, | 1405 | static void ixgbe_update_rsc_stats(struct ixgbe_ring *rx_ring, |
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c index bc38eaf89a93..93839f8a2f0f 100644 --- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c +++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_io.c | |||
@@ -1043,8 +1043,13 @@ qlcnic_process_lro(struct qlcnic_adapter *adapter, | |||
1043 | th->seq = htonl(seq_number); | 1043 | th->seq = htonl(seq_number); |
1044 | length = skb->len; | 1044 | length = skb->len; |
1045 | 1045 | ||
1046 | if (adapter->flags & QLCNIC_FW_LRO_MSS_CAP) | 1046 | if (adapter->flags & QLCNIC_FW_LRO_MSS_CAP) { |
1047 | skb_shinfo(skb)->gso_size = qlcnic_get_lro_sts_mss(sts_data1); | 1047 | skb_shinfo(skb)->gso_size = qlcnic_get_lro_sts_mss(sts_data1); |
1048 | if (skb->protocol == htons(ETH_P_IPV6)) | ||
1049 | skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6; | ||
1050 | else | ||
1051 | skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4; | ||
1052 | } | ||
1048 | 1053 | ||
1049 | if (vid != 0xffff) | 1054 | if (vid != 0xffff) |
1050 | __vlan_hwaccel_put_tag(skb, vid); | 1055 | __vlan_hwaccel_put_tag(skb, vid); |
diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c index 4208f28d5d19..8900398ba103 100644 --- a/drivers/net/ethernet/realtek/r8169.c +++ b/drivers/net/ethernet/realtek/r8169.c | |||
@@ -450,7 +450,6 @@ enum rtl8168_registers { | |||
450 | #define PWM_EN (1 << 22) | 450 | #define PWM_EN (1 << 22) |
451 | #define RXDV_GATED_EN (1 << 19) | 451 | #define RXDV_GATED_EN (1 << 19) |
452 | #define EARLY_TALLY_EN (1 << 16) | 452 | #define EARLY_TALLY_EN (1 << 16) |
453 | #define FORCE_CLK (1 << 15) /* force clock request */ | ||
454 | }; | 453 | }; |
455 | 454 | ||
456 | enum rtl_register_content { | 455 | enum rtl_register_content { |
@@ -514,7 +513,6 @@ enum rtl_register_content { | |||
514 | PMEnable = (1 << 0), /* Power Management Enable */ | 513 | PMEnable = (1 << 0), /* Power Management Enable */ |
515 | 514 | ||
516 | /* Config2 register p. 25 */ | 515 | /* Config2 register p. 25 */ |
517 | ClkReqEn = (1 << 7), /* Clock Request Enable */ | ||
518 | MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */ | 516 | MSIEnable = (1 << 5), /* 8169 only. Reserved in the 8168. */ |
519 | PCI_Clock_66MHz = 0x01, | 517 | PCI_Clock_66MHz = 0x01, |
520 | PCI_Clock_33MHz = 0x00, | 518 | PCI_Clock_33MHz = 0x00, |
@@ -535,7 +533,6 @@ enum rtl_register_content { | |||
535 | Spi_en = (1 << 3), | 533 | Spi_en = (1 << 3), |
536 | LanWake = (1 << 1), /* LanWake enable/disable */ | 534 | LanWake = (1 << 1), /* LanWake enable/disable */ |
537 | PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */ | 535 | PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */ |
538 | ASPM_en = (1 << 0), /* ASPM enable */ | ||
539 | 536 | ||
540 | /* TBICSR p.28 */ | 537 | /* TBICSR p.28 */ |
541 | TBIReset = 0x80000000, | 538 | TBIReset = 0x80000000, |
@@ -684,7 +681,6 @@ enum features { | |||
684 | RTL_FEATURE_WOL = (1 << 0), | 681 | RTL_FEATURE_WOL = (1 << 0), |
685 | RTL_FEATURE_MSI = (1 << 1), | 682 | RTL_FEATURE_MSI = (1 << 1), |
686 | RTL_FEATURE_GMII = (1 << 2), | 683 | RTL_FEATURE_GMII = (1 << 2), |
687 | RTL_FEATURE_FW_LOADED = (1 << 3), | ||
688 | }; | 684 | }; |
689 | 685 | ||
690 | struct rtl8169_counters { | 686 | struct rtl8169_counters { |
@@ -2388,10 +2384,8 @@ static void rtl_apply_firmware(struct rtl8169_private *tp) | |||
2388 | struct rtl_fw *rtl_fw = tp->rtl_fw; | 2384 | struct rtl_fw *rtl_fw = tp->rtl_fw; |
2389 | 2385 | ||
2390 | /* TODO: release firmware once rtl_phy_write_fw signals failures. */ | 2386 | /* TODO: release firmware once rtl_phy_write_fw signals failures. */ |
2391 | if (!IS_ERR_OR_NULL(rtl_fw)) { | 2387 | if (!IS_ERR_OR_NULL(rtl_fw)) |
2392 | rtl_phy_write_fw(tp, rtl_fw); | 2388 | rtl_phy_write_fw(tp, rtl_fw); |
2393 | tp->features |= RTL_FEATURE_FW_LOADED; | ||
2394 | } | ||
2395 | } | 2389 | } |
2396 | 2390 | ||
2397 | static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val) | 2391 | static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val) |
@@ -2402,31 +2396,6 @@ static void rtl_apply_firmware_cond(struct rtl8169_private *tp, u8 reg, u16 val) | |||
2402 | rtl_apply_firmware(tp); | 2396 | rtl_apply_firmware(tp); |
2403 | } | 2397 | } |
2404 | 2398 | ||
2405 | static void r810x_aldps_disable(struct rtl8169_private *tp) | ||
2406 | { | ||
2407 | rtl_writephy(tp, 0x1f, 0x0000); | ||
2408 | rtl_writephy(tp, 0x18, 0x0310); | ||
2409 | msleep(100); | ||
2410 | } | ||
2411 | |||
2412 | static void r810x_aldps_enable(struct rtl8169_private *tp) | ||
2413 | { | ||
2414 | if (!(tp->features & RTL_FEATURE_FW_LOADED)) | ||
2415 | return; | ||
2416 | |||
2417 | rtl_writephy(tp, 0x1f, 0x0000); | ||
2418 | rtl_writephy(tp, 0x18, 0x8310); | ||
2419 | } | ||
2420 | |||
2421 | static void r8168_aldps_enable_1(struct rtl8169_private *tp) | ||
2422 | { | ||
2423 | if (!(tp->features & RTL_FEATURE_FW_LOADED)) | ||
2424 | return; | ||
2425 | |||
2426 | rtl_writephy(tp, 0x1f, 0x0000); | ||
2427 | rtl_w1w0_phy(tp, 0x15, 0x1000, 0x0000); | ||
2428 | } | ||
2429 | |||
2430 | static void rtl8169s_hw_phy_config(struct rtl8169_private *tp) | 2399 | static void rtl8169s_hw_phy_config(struct rtl8169_private *tp) |
2431 | { | 2400 | { |
2432 | static const struct phy_reg phy_reg_init[] = { | 2401 | static const struct phy_reg phy_reg_init[] = { |
@@ -3217,8 +3186,6 @@ static void rtl8168e_2_hw_phy_config(struct rtl8169_private *tp) | |||
3217 | rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400); | 3186 | rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400); |
3218 | rtl_writephy(tp, 0x1f, 0x0000); | 3187 | rtl_writephy(tp, 0x1f, 0x0000); |
3219 | 3188 | ||
3220 | r8168_aldps_enable_1(tp); | ||
3221 | |||
3222 | /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */ | 3189 | /* Broken BIOS workaround: feed GigaMAC registers with MAC address. */ |
3223 | rtl_rar_exgmac_set(tp, tp->dev->dev_addr); | 3190 | rtl_rar_exgmac_set(tp, tp->dev->dev_addr); |
3224 | } | 3191 | } |
@@ -3293,8 +3260,6 @@ static void rtl8168f_1_hw_phy_config(struct rtl8169_private *tp) | |||
3293 | rtl_writephy(tp, 0x05, 0x8b85); | 3260 | rtl_writephy(tp, 0x05, 0x8b85); |
3294 | rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000); | 3261 | rtl_w1w0_phy(tp, 0x06, 0x4000, 0x0000); |
3295 | rtl_writephy(tp, 0x1f, 0x0000); | 3262 | rtl_writephy(tp, 0x1f, 0x0000); |
3296 | |||
3297 | r8168_aldps_enable_1(tp); | ||
3298 | } | 3263 | } |
3299 | 3264 | ||
3300 | static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp) | 3265 | static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp) |
@@ -3302,8 +3267,6 @@ static void rtl8168f_2_hw_phy_config(struct rtl8169_private *tp) | |||
3302 | rtl_apply_firmware(tp); | 3267 | rtl_apply_firmware(tp); |
3303 | 3268 | ||
3304 | rtl8168f_hw_phy_config(tp); | 3269 | rtl8168f_hw_phy_config(tp); |
3305 | |||
3306 | r8168_aldps_enable_1(tp); | ||
3307 | } | 3270 | } |
3308 | 3271 | ||
3309 | static void rtl8411_hw_phy_config(struct rtl8169_private *tp) | 3272 | static void rtl8411_hw_phy_config(struct rtl8169_private *tp) |
@@ -3401,8 +3364,6 @@ static void rtl8411_hw_phy_config(struct rtl8169_private *tp) | |||
3401 | rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001); | 3364 | rtl_w1w0_phy(tp, 0x19, 0x0000, 0x0001); |
3402 | rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400); | 3365 | rtl_w1w0_phy(tp, 0x10, 0x0000, 0x0400); |
3403 | rtl_writephy(tp, 0x1f, 0x0000); | 3366 | rtl_writephy(tp, 0x1f, 0x0000); |
3404 | |||
3405 | r8168_aldps_enable_1(tp); | ||
3406 | } | 3367 | } |
3407 | 3368 | ||
3408 | static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp) | 3369 | static void rtl8168g_1_hw_phy_config(struct rtl8169_private *tp) |
@@ -3488,19 +3449,21 @@ static void rtl8105e_hw_phy_config(struct rtl8169_private *tp) | |||
3488 | }; | 3449 | }; |
3489 | 3450 | ||
3490 | /* Disable ALDPS before ram code */ | 3451 | /* Disable ALDPS before ram code */ |
3491 | r810x_aldps_disable(tp); | 3452 | rtl_writephy(tp, 0x1f, 0x0000); |
3453 | rtl_writephy(tp, 0x18, 0x0310); | ||
3454 | msleep(100); | ||
3492 | 3455 | ||
3493 | rtl_apply_firmware(tp); | 3456 | rtl_apply_firmware(tp); |
3494 | 3457 | ||
3495 | rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init)); | 3458 | rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init)); |
3496 | |||
3497 | r810x_aldps_enable(tp); | ||
3498 | } | 3459 | } |
3499 | 3460 | ||
3500 | static void rtl8402_hw_phy_config(struct rtl8169_private *tp) | 3461 | static void rtl8402_hw_phy_config(struct rtl8169_private *tp) |
3501 | { | 3462 | { |
3502 | /* Disable ALDPS before setting firmware */ | 3463 | /* Disable ALDPS before setting firmware */ |
3503 | r810x_aldps_disable(tp); | 3464 | rtl_writephy(tp, 0x1f, 0x0000); |
3465 | rtl_writephy(tp, 0x18, 0x0310); | ||
3466 | msleep(20); | ||
3504 | 3467 | ||
3505 | rtl_apply_firmware(tp); | 3468 | rtl_apply_firmware(tp); |
3506 | 3469 | ||
@@ -3510,8 +3473,6 @@ static void rtl8402_hw_phy_config(struct rtl8169_private *tp) | |||
3510 | rtl_writephy(tp, 0x10, 0x401f); | 3473 | rtl_writephy(tp, 0x10, 0x401f); |
3511 | rtl_writephy(tp, 0x19, 0x7030); | 3474 | rtl_writephy(tp, 0x19, 0x7030); |
3512 | rtl_writephy(tp, 0x1f, 0x0000); | 3475 | rtl_writephy(tp, 0x1f, 0x0000); |
3513 | |||
3514 | r810x_aldps_enable(tp); | ||
3515 | } | 3476 | } |
3516 | 3477 | ||
3517 | static void rtl8106e_hw_phy_config(struct rtl8169_private *tp) | 3478 | static void rtl8106e_hw_phy_config(struct rtl8169_private *tp) |
@@ -3524,7 +3485,9 @@ static void rtl8106e_hw_phy_config(struct rtl8169_private *tp) | |||
3524 | }; | 3485 | }; |
3525 | 3486 | ||
3526 | /* Disable ALDPS before ram code */ | 3487 | /* Disable ALDPS before ram code */ |
3527 | r810x_aldps_disable(tp); | 3488 | rtl_writephy(tp, 0x1f, 0x0000); |
3489 | rtl_writephy(tp, 0x18, 0x0310); | ||
3490 | msleep(100); | ||
3528 | 3491 | ||
3529 | rtl_apply_firmware(tp); | 3492 | rtl_apply_firmware(tp); |
3530 | 3493 | ||
@@ -3532,8 +3495,6 @@ static void rtl8106e_hw_phy_config(struct rtl8169_private *tp) | |||
3532 | rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init)); | 3495 | rtl_writephy_batch(tp, phy_reg_init, ARRAY_SIZE(phy_reg_init)); |
3533 | 3496 | ||
3534 | rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC); | 3497 | rtl_eri_write(tp, 0x1d0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC); |
3535 | |||
3536 | r810x_aldps_enable(tp); | ||
3537 | } | 3498 | } |
3538 | 3499 | ||
3539 | static void rtl_hw_phy_config(struct net_device *dev) | 3500 | static void rtl_hw_phy_config(struct net_device *dev) |
@@ -5050,6 +5011,8 @@ static void rtl_hw_start_8168e_2(struct rtl8169_private *tp) | |||
5050 | 5011 | ||
5051 | RTL_W8(MaxTxPacketSize, EarlySize); | 5012 | RTL_W8(MaxTxPacketSize, EarlySize); |
5052 | 5013 | ||
5014 | rtl_disable_clock_request(pdev); | ||
5015 | |||
5053 | RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO); | 5016 | RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO); |
5054 | RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB); | 5017 | RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB); |
5055 | 5018 | ||
@@ -5058,8 +5021,7 @@ static void rtl_hw_start_8168e_2(struct rtl8169_private *tp) | |||
5058 | 5021 | ||
5059 | RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN); | 5022 | RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN); |
5060 | RTL_W32(MISC, RTL_R32(MISC) | PWM_EN); | 5023 | RTL_W32(MISC, RTL_R32(MISC) | PWM_EN); |
5061 | RTL_W8(Config5, (RTL_R8(Config5) & ~Spi_en) | ASPM_en); | 5024 | RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en); |
5062 | RTL_W8(Config2, RTL_R8(Config2) | ClkReqEn); | ||
5063 | } | 5025 | } |
5064 | 5026 | ||
5065 | static void rtl_hw_start_8168f(struct rtl8169_private *tp) | 5027 | static void rtl_hw_start_8168f(struct rtl8169_private *tp) |
@@ -5084,12 +5046,13 @@ static void rtl_hw_start_8168f(struct rtl8169_private *tp) | |||
5084 | 5046 | ||
5085 | RTL_W8(MaxTxPacketSize, EarlySize); | 5047 | RTL_W8(MaxTxPacketSize, EarlySize); |
5086 | 5048 | ||
5049 | rtl_disable_clock_request(pdev); | ||
5050 | |||
5087 | RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO); | 5051 | RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO); |
5088 | RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB); | 5052 | RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB); |
5089 | RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN); | 5053 | RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN); |
5090 | RTL_W32(MISC, RTL_R32(MISC) | PWM_EN | FORCE_CLK); | 5054 | RTL_W32(MISC, RTL_R32(MISC) | PWM_EN); |
5091 | RTL_W8(Config5, (RTL_R8(Config5) & ~Spi_en) | ASPM_en); | 5055 | RTL_W8(Config5, RTL_R8(Config5) & ~Spi_en); |
5092 | RTL_W8(Config2, RTL_R8(Config2) | ClkReqEn); | ||
5093 | } | 5056 | } |
5094 | 5057 | ||
5095 | static void rtl_hw_start_8168f_1(struct rtl8169_private *tp) | 5058 | static void rtl_hw_start_8168f_1(struct rtl8169_private *tp) |
@@ -5146,10 +5109,8 @@ static void rtl_hw_start_8168g_1(struct rtl8169_private *tp) | |||
5146 | rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC); | 5109 | rtl_w1w0_eri(tp, 0xdc, ERIAR_MASK_0001, 0x01, 0x00, ERIAR_EXGMAC); |
5147 | 5110 | ||
5148 | RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb); | 5111 | RTL_W8(ChipCmd, CmdTxEnb | CmdRxEnb); |
5149 | RTL_W32(MISC, (RTL_R32(MISC) | FORCE_CLK) & ~RXDV_GATED_EN); | 5112 | RTL_W32(MISC, RTL_R32(MISC) & ~RXDV_GATED_EN); |
5150 | RTL_W8(MaxTxPacketSize, EarlySize); | 5113 | RTL_W8(MaxTxPacketSize, EarlySize); |
5151 | RTL_W8(Config5, RTL_R8(Config5) | ASPM_en); | ||
5152 | RTL_W8(Config2, RTL_R8(Config2) | ClkReqEn); | ||
5153 | 5114 | ||
5154 | rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC); | 5115 | rtl_eri_write(tp, 0xc0, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC); |
5155 | rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC); | 5116 | rtl_eri_write(tp, 0xb8, ERIAR_MASK_0011, 0x0000, ERIAR_EXGMAC); |
@@ -5365,9 +5326,6 @@ static void rtl_hw_start_8105e_1(struct rtl8169_private *tp) | |||
5365 | 5326 | ||
5366 | RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET); | 5327 | RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET); |
5367 | RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN); | 5328 | RTL_W8(DLLPR, RTL_R8(DLLPR) | PFM_EN); |
5368 | RTL_W8(Config5, RTL_R8(Config5) | ASPM_en); | ||
5369 | RTL_W8(Config2, RTL_R8(Config2) | ClkReqEn); | ||
5370 | RTL_W32(MISC, RTL_R32(MISC) | FORCE_CLK); | ||
5371 | 5329 | ||
5372 | rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1)); | 5330 | rtl_ephy_init(tp, e_info_8105e_1, ARRAY_SIZE(e_info_8105e_1)); |
5373 | } | 5331 | } |
@@ -5393,9 +5351,6 @@ static void rtl_hw_start_8402(struct rtl8169_private *tp) | |||
5393 | 5351 | ||
5394 | RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO); | 5352 | RTL_W32(TxConfig, RTL_R32(TxConfig) | TXCFG_AUTO_FIFO); |
5395 | RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB); | 5353 | RTL_W8(MCU, RTL_R8(MCU) & ~NOW_IS_OOB); |
5396 | RTL_W8(Config5, RTL_R8(Config5) | ASPM_en); | ||
5397 | RTL_W8(Config2, RTL_R8(Config2) | ClkReqEn); | ||
5398 | RTL_W32(MISC, RTL_R32(MISC) | FORCE_CLK); | ||
5399 | 5354 | ||
5400 | rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402)); | 5355 | rtl_ephy_init(tp, e_info_8402, ARRAY_SIZE(e_info_8402)); |
5401 | 5356 | ||
@@ -5417,10 +5372,7 @@ static void rtl_hw_start_8106(struct rtl8169_private *tp) | |||
5417 | /* Force LAN exit from ASPM if Rx/Tx are not idle */ | 5372 | /* Force LAN exit from ASPM if Rx/Tx are not idle */ |
5418 | RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800); | 5373 | RTL_W32(FuncEvent, RTL_R32(FuncEvent) | 0x002800); |
5419 | 5374 | ||
5420 | RTL_W32(MISC, | 5375 | RTL_W32(MISC, (RTL_R32(MISC) | DISABLE_LAN_EN) & ~EARLY_TALLY_EN); |
5421 | (RTL_R32(MISC) | DISABLE_LAN_EN | FORCE_CLK) & ~EARLY_TALLY_EN); | ||
5422 | RTL_W8(Config5, RTL_R8(Config5) | ASPM_en); | ||
5423 | RTL_W8(Config2, RTL_R8(Config2) | ClkReqEn); | ||
5424 | RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET); | 5376 | RTL_W8(MCU, RTL_R8(MCU) | EN_NDP | EN_OOB_RESET); |
5425 | RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN); | 5377 | RTL_W8(DLLPR, RTL_R8(DLLPR) & ~PFM_EN); |
5426 | } | 5378 | } |
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c index fd4d659f0fac..d185a50870b2 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | |||
@@ -69,7 +69,7 @@ | |||
69 | 69 | ||
70 | #undef STMMAC_XMIT_DEBUG | 70 | #undef STMMAC_XMIT_DEBUG |
71 | /*#define STMMAC_XMIT_DEBUG*/ | 71 | /*#define STMMAC_XMIT_DEBUG*/ |
72 | #ifdef STMMAC_TX_DEBUG | 72 | #ifdef STMMAC_XMIT_DEBUG |
73 | #define TX_DBG(fmt, args...) printk(fmt, ## args) | 73 | #define TX_DBG(fmt, args...) printk(fmt, ## args) |
74 | #else | 74 | #else |
75 | #define TX_DBG(fmt, args...) do { } while (0) | 75 | #define TX_DBG(fmt, args...) do { } while (0) |
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c index 0376a5e6b2bf..0b9829fe3eea 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_mdio.c | |||
@@ -188,8 +188,6 @@ int stmmac_mdio_register(struct net_device *ndev) | |||
188 | goto bus_register_fail; | 188 | goto bus_register_fail; |
189 | } | 189 | } |
190 | 190 | ||
191 | priv->mii = new_bus; | ||
192 | |||
193 | found = 0; | 191 | found = 0; |
194 | for (addr = 0; addr < PHY_MAX_ADDR; addr++) { | 192 | for (addr = 0; addr < PHY_MAX_ADDR; addr++) { |
195 | struct phy_device *phydev = new_bus->phy_map[addr]; | 193 | struct phy_device *phydev = new_bus->phy_map[addr]; |
@@ -237,8 +235,14 @@ int stmmac_mdio_register(struct net_device *ndev) | |||
237 | } | 235 | } |
238 | } | 236 | } |
239 | 237 | ||
240 | if (!found) | 238 | if (!found) { |
241 | pr_warning("%s: No PHY found\n", ndev->name); | 239 | pr_warning("%s: No PHY found\n", ndev->name); |
240 | mdiobus_unregister(new_bus); | ||
241 | mdiobus_free(new_bus); | ||
242 | return -ENODEV; | ||
243 | } | ||
244 | |||
245 | priv->mii = new_bus; | ||
242 | 246 | ||
243 | return 0; | 247 | return 0; |
244 | 248 | ||
diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c index c8e05e27f38c..19d903598b0d 100644 --- a/drivers/net/usb/qmi_wwan.c +++ b/drivers/net/usb/qmi_wwan.c | |||
@@ -411,6 +411,7 @@ static const struct usb_device_id products[] = { | |||
411 | }, | 411 | }, |
412 | 412 | ||
413 | /* 3. Combined interface devices matching on interface number */ | 413 | /* 3. Combined interface devices matching on interface number */ |
414 | {QMI_FIXED_INTF(0x0408, 0xea42, 4)}, /* Yota / Megafon M100-1 */ | ||
414 | {QMI_FIXED_INTF(0x12d1, 0x140c, 1)}, /* Huawei E173 */ | 415 | {QMI_FIXED_INTF(0x12d1, 0x140c, 1)}, /* Huawei E173 */ |
415 | {QMI_FIXED_INTF(0x19d2, 0x0002, 1)}, | 416 | {QMI_FIXED_INTF(0x19d2, 0x0002, 1)}, |
416 | {QMI_FIXED_INTF(0x19d2, 0x0012, 1)}, | 417 | {QMI_FIXED_INTF(0x19d2, 0x0012, 1)}, |
diff --git a/drivers/net/wireless/mwl8k.c b/drivers/net/wireless/mwl8k.c index a79c9167117a..c86e4573798f 100644 --- a/drivers/net/wireless/mwl8k.c +++ b/drivers/net/wireless/mwl8k.c | |||
@@ -334,20 +334,20 @@ struct mwl8k_sta { | |||
334 | #define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv)) | 334 | #define MWL8K_STA(_sta) ((struct mwl8k_sta *)&((_sta)->drv_priv)) |
335 | 335 | ||
336 | static const struct ieee80211_channel mwl8k_channels_24[] = { | 336 | static const struct ieee80211_channel mwl8k_channels_24[] = { |
337 | { .center_freq = 2412, .hw_value = 1, }, | 337 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2412, .hw_value = 1, }, |
338 | { .center_freq = 2417, .hw_value = 2, }, | 338 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2417, .hw_value = 2, }, |
339 | { .center_freq = 2422, .hw_value = 3, }, | 339 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2422, .hw_value = 3, }, |
340 | { .center_freq = 2427, .hw_value = 4, }, | 340 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2427, .hw_value = 4, }, |
341 | { .center_freq = 2432, .hw_value = 5, }, | 341 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2432, .hw_value = 5, }, |
342 | { .center_freq = 2437, .hw_value = 6, }, | 342 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2437, .hw_value = 6, }, |
343 | { .center_freq = 2442, .hw_value = 7, }, | 343 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2442, .hw_value = 7, }, |
344 | { .center_freq = 2447, .hw_value = 8, }, | 344 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2447, .hw_value = 8, }, |
345 | { .center_freq = 2452, .hw_value = 9, }, | 345 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2452, .hw_value = 9, }, |
346 | { .center_freq = 2457, .hw_value = 10, }, | 346 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2457, .hw_value = 10, }, |
347 | { .center_freq = 2462, .hw_value = 11, }, | 347 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2462, .hw_value = 11, }, |
348 | { .center_freq = 2467, .hw_value = 12, }, | 348 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2467, .hw_value = 12, }, |
349 | { .center_freq = 2472, .hw_value = 13, }, | 349 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2472, .hw_value = 13, }, |
350 | { .center_freq = 2484, .hw_value = 14, }, | 350 | { .band = IEEE80211_BAND_2GHZ, .center_freq = 2484, .hw_value = 14, }, |
351 | }; | 351 | }; |
352 | 352 | ||
353 | static const struct ieee80211_rate mwl8k_rates_24[] = { | 353 | static const struct ieee80211_rate mwl8k_rates_24[] = { |
@@ -368,10 +368,10 @@ static const struct ieee80211_rate mwl8k_rates_24[] = { | |||
368 | }; | 368 | }; |
369 | 369 | ||
370 | static const struct ieee80211_channel mwl8k_channels_50[] = { | 370 | static const struct ieee80211_channel mwl8k_channels_50[] = { |
371 | { .center_freq = 5180, .hw_value = 36, }, | 371 | { .band = IEEE80211_BAND_5GHZ, .center_freq = 5180, .hw_value = 36, }, |
372 | { .center_freq = 5200, .hw_value = 40, }, | 372 | { .band = IEEE80211_BAND_5GHZ, .center_freq = 5200, .hw_value = 40, }, |
373 | { .center_freq = 5220, .hw_value = 44, }, | 373 | { .band = IEEE80211_BAND_5GHZ, .center_freq = 5220, .hw_value = 44, }, |
374 | { .center_freq = 5240, .hw_value = 48, }, | 374 | { .band = IEEE80211_BAND_5GHZ, .center_freq = 5240, .hw_value = 48, }, |
375 | }; | 375 | }; |
376 | 376 | ||
377 | static const struct ieee80211_rate mwl8k_rates_50[] = { | 377 | static const struct ieee80211_rate mwl8k_rates_50[] = { |
diff --git a/net/bridge/br_stp_bpdu.c b/net/bridge/br_stp_bpdu.c index 7f884e3fb955..8660ea3be705 100644 --- a/net/bridge/br_stp_bpdu.c +++ b/net/bridge/br_stp_bpdu.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/etherdevice.h> | 16 | #include <linux/etherdevice.h> |
17 | #include <linux/llc.h> | 17 | #include <linux/llc.h> |
18 | #include <linux/slab.h> | 18 | #include <linux/slab.h> |
19 | #include <linux/pkt_sched.h> | ||
19 | #include <net/net_namespace.h> | 20 | #include <net/net_namespace.h> |
20 | #include <net/llc.h> | 21 | #include <net/llc.h> |
21 | #include <net/llc_pdu.h> | 22 | #include <net/llc_pdu.h> |
@@ -40,6 +41,7 @@ static void br_send_bpdu(struct net_bridge_port *p, | |||
40 | 41 | ||
41 | skb->dev = p->dev; | 42 | skb->dev = p->dev; |
42 | skb->protocol = htons(ETH_P_802_2); | 43 | skb->protocol = htons(ETH_P_802_2); |
44 | skb->priority = TC_PRIO_CONTROL; | ||
43 | 45 | ||
44 | skb_reserve(skb, LLC_RESERVE); | 46 | skb_reserve(skb, LLC_RESERVE); |
45 | memcpy(__skb_put(skb, length), data, length); | 47 | memcpy(__skb_put(skb, length), data, length); |
diff --git a/net/core/datagram.c b/net/core/datagram.c index 0337e2b76862..368f9c3f9dc6 100644 --- a/net/core/datagram.c +++ b/net/core/datagram.c | |||
@@ -187,7 +187,7 @@ struct sk_buff *__skb_recv_datagram(struct sock *sk, unsigned int flags, | |||
187 | skb_queue_walk(queue, skb) { | 187 | skb_queue_walk(queue, skb) { |
188 | *peeked = skb->peeked; | 188 | *peeked = skb->peeked; |
189 | if (flags & MSG_PEEK) { | 189 | if (flags & MSG_PEEK) { |
190 | if (*off >= skb->len) { | 190 | if (*off >= skb->len && skb->len) { |
191 | *off -= skb->len; | 191 | *off -= skb->len; |
192 | continue; | 192 | continue; |
193 | } | 193 | } |
diff --git a/net/ipv4/arp.c b/net/ipv4/arp.c index 9547a273b9e9..ded146b217f1 100644 --- a/net/ipv4/arp.c +++ b/net/ipv4/arp.c | |||
@@ -928,24 +928,25 @@ static void parp_redo(struct sk_buff *skb) | |||
928 | static int arp_rcv(struct sk_buff *skb, struct net_device *dev, | 928 | static int arp_rcv(struct sk_buff *skb, struct net_device *dev, |
929 | struct packet_type *pt, struct net_device *orig_dev) | 929 | struct packet_type *pt, struct net_device *orig_dev) |
930 | { | 930 | { |
931 | struct arphdr *arp; | 931 | const struct arphdr *arp; |
932 | |||
933 | if (dev->flags & IFF_NOARP || | ||
934 | skb->pkt_type == PACKET_OTHERHOST || | ||
935 | skb->pkt_type == PACKET_LOOPBACK) | ||
936 | goto freeskb; | ||
937 | |||
938 | skb = skb_share_check(skb, GFP_ATOMIC); | ||
939 | if (!skb) | ||
940 | goto out_of_mem; | ||
932 | 941 | ||
933 | /* ARP header, plus 2 device addresses, plus 2 IP addresses. */ | 942 | /* ARP header, plus 2 device addresses, plus 2 IP addresses. */ |
934 | if (!pskb_may_pull(skb, arp_hdr_len(dev))) | 943 | if (!pskb_may_pull(skb, arp_hdr_len(dev))) |
935 | goto freeskb; | 944 | goto freeskb; |
936 | 945 | ||
937 | arp = arp_hdr(skb); | 946 | arp = arp_hdr(skb); |
938 | if (arp->ar_hln != dev->addr_len || | 947 | if (arp->ar_hln != dev->addr_len || arp->ar_pln != 4) |
939 | dev->flags & IFF_NOARP || | ||
940 | skb->pkt_type == PACKET_OTHERHOST || | ||
941 | skb->pkt_type == PACKET_LOOPBACK || | ||
942 | arp->ar_pln != 4) | ||
943 | goto freeskb; | 948 | goto freeskb; |
944 | 949 | ||
945 | skb = skb_share_check(skb, GFP_ATOMIC); | ||
946 | if (skb == NULL) | ||
947 | goto out_of_mem; | ||
948 | |||
949 | memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb)); | 950 | memset(NEIGH_CB(skb), 0, sizeof(struct neighbour_cb)); |
950 | 951 | ||
951 | return NF_HOOK(NFPROTO_ARP, NF_ARP_IN, skb, dev, NULL, arp_process); | 952 | return NF_HOOK(NFPROTO_ARP, NF_ARP_IN, skb, dev, NULL, arp_process); |
diff --git a/net/ipv6/netfilter/ip6t_NPT.c b/net/ipv6/netfilter/ip6t_NPT.c index 7302b0b7b642..83acc1405a18 100644 --- a/net/ipv6/netfilter/ip6t_NPT.c +++ b/net/ipv6/netfilter/ip6t_NPT.c | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <linux/module.h> | 9 | #include <linux/module.h> |
10 | #include <linux/skbuff.h> | 10 | #include <linux/skbuff.h> |
11 | #include <linux/ipv6.h> | 11 | #include <linux/ipv6.h> |
12 | #include <net/ipv6.h> | ||
12 | #include <linux/netfilter.h> | 13 | #include <linux/netfilter.h> |
13 | #include <linux/netfilter_ipv6.h> | 14 | #include <linux/netfilter_ipv6.h> |
14 | #include <linux/netfilter_ipv6/ip6t_NPT.h> | 15 | #include <linux/netfilter_ipv6/ip6t_NPT.h> |
@@ -18,11 +19,20 @@ static int ip6t_npt_checkentry(const struct xt_tgchk_param *par) | |||
18 | { | 19 | { |
19 | struct ip6t_npt_tginfo *npt = par->targinfo; | 20 | struct ip6t_npt_tginfo *npt = par->targinfo; |
20 | __wsum src_sum = 0, dst_sum = 0; | 21 | __wsum src_sum = 0, dst_sum = 0; |
22 | struct in6_addr pfx; | ||
21 | unsigned int i; | 23 | unsigned int i; |
22 | 24 | ||
23 | if (npt->src_pfx_len > 64 || npt->dst_pfx_len > 64) | 25 | if (npt->src_pfx_len > 64 || npt->dst_pfx_len > 64) |
24 | return -EINVAL; | 26 | return -EINVAL; |
25 | 27 | ||
28 | /* Ensure that LSB of prefix is zero */ | ||
29 | ipv6_addr_prefix(&pfx, &npt->src_pfx.in6, npt->src_pfx_len); | ||
30 | if (!ipv6_addr_equal(&pfx, &npt->src_pfx.in6)) | ||
31 | return -EINVAL; | ||
32 | ipv6_addr_prefix(&pfx, &npt->dst_pfx.in6, npt->dst_pfx_len); | ||
33 | if (!ipv6_addr_equal(&pfx, &npt->dst_pfx.in6)) | ||
34 | return -EINVAL; | ||
35 | |||
26 | for (i = 0; i < ARRAY_SIZE(npt->src_pfx.in6.s6_addr16); i++) { | 36 | for (i = 0; i < ARRAY_SIZE(npt->src_pfx.in6.s6_addr16); i++) { |
27 | src_sum = csum_add(src_sum, | 37 | src_sum = csum_add(src_sum, |
28 | (__force __wsum)npt->src_pfx.in6.s6_addr16[i]); | 38 | (__force __wsum)npt->src_pfx.in6.s6_addr16[i]); |
@@ -30,7 +40,7 @@ static int ip6t_npt_checkentry(const struct xt_tgchk_param *par) | |||
30 | (__force __wsum)npt->dst_pfx.in6.s6_addr16[i]); | 40 | (__force __wsum)npt->dst_pfx.in6.s6_addr16[i]); |
31 | } | 41 | } |
32 | 42 | ||
33 | npt->adjustment = (__force __sum16) csum_sub(src_sum, dst_sum); | 43 | npt->adjustment = ~csum_fold(csum_sub(src_sum, dst_sum)); |
34 | return 0; | 44 | return 0; |
35 | } | 45 | } |
36 | 46 | ||
@@ -51,7 +61,7 @@ static bool ip6t_npt_map_pfx(const struct ip6t_npt_tginfo *npt, | |||
51 | 61 | ||
52 | idx = i / 32; | 62 | idx = i / 32; |
53 | addr->s6_addr32[idx] &= mask; | 63 | addr->s6_addr32[idx] &= mask; |
54 | addr->s6_addr32[idx] |= npt->dst_pfx.in6.s6_addr32[idx]; | 64 | addr->s6_addr32[idx] |= ~mask & npt->dst_pfx.in6.s6_addr32[idx]; |
55 | } | 65 | } |
56 | 66 | ||
57 | if (pfx_len <= 48) | 67 | if (pfx_len <= 48) |
@@ -66,8 +76,8 @@ static bool ip6t_npt_map_pfx(const struct ip6t_npt_tginfo *npt, | |||
66 | return false; | 76 | return false; |
67 | } | 77 | } |
68 | 78 | ||
69 | sum = (__force __sum16) csum_add((__force __wsum)addr->s6_addr16[idx], | 79 | sum = ~csum_fold(csum_add(csum_unfold((__force __sum16)addr->s6_addr16[idx]), |
70 | npt->adjustment); | 80 | csum_unfold(npt->adjustment))); |
71 | if (sum == CSUM_MANGLED_0) | 81 | if (sum == CSUM_MANGLED_0) |
72 | sum = 0; | 82 | sum = 0; |
73 | *(__force __sum16 *)&addr->s6_addr16[idx] = sum; | 83 | *(__force __sum16 *)&addr->s6_addr16[idx] = sum; |
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c index 661b878bd19c..15d886c639e9 100644 --- a/net/mac80211/cfg.c +++ b/net/mac80211/cfg.c | |||
@@ -2058,7 +2058,8 @@ static int ieee80211_set_mcast_rate(struct wiphy *wiphy, struct net_device *dev, | |||
2058 | { | 2058 | { |
2059 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); | 2059 | struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); |
2060 | 2060 | ||
2061 | memcpy(sdata->vif.bss_conf.mcast_rate, rate, sizeof(rate)); | 2061 | memcpy(sdata->vif.bss_conf.mcast_rate, rate, |
2062 | sizeof(int) * IEEE80211_NUM_BANDS); | ||
2062 | 2063 | ||
2063 | return 0; | 2064 | return 0; |
2064 | } | 2065 | } |
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 5913fb924b12..72924399077e 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c | |||
@@ -3422,6 +3422,7 @@ ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata, | |||
3422 | 3422 | ||
3423 | ret = 0; | 3423 | ret = 0; |
3424 | 3424 | ||
3425 | out: | ||
3425 | while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef, | 3426 | while (!cfg80211_chandef_usable(sdata->local->hw.wiphy, chandef, |
3426 | IEEE80211_CHAN_DISABLED)) { | 3427 | IEEE80211_CHAN_DISABLED)) { |
3427 | if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) { | 3428 | if (WARN_ON(chandef->width == NL80211_CHAN_WIDTH_20_NOHT)) { |
@@ -3430,14 +3431,13 @@ ieee80211_determine_chantype(struct ieee80211_sub_if_data *sdata, | |||
3430 | goto out; | 3431 | goto out; |
3431 | } | 3432 | } |
3432 | 3433 | ||
3433 | ret = chandef_downgrade(chandef); | 3434 | ret |= chandef_downgrade(chandef); |
3434 | } | 3435 | } |
3435 | 3436 | ||
3436 | if (chandef->width != vht_chandef.width) | 3437 | if (chandef->width != vht_chandef.width) |
3437 | sdata_info(sdata, | 3438 | sdata_info(sdata, |
3438 | "local regulatory prevented using AP HT/VHT configuration, downgraded\n"); | 3439 | "capabilities/regulatory prevented using AP HT/VHT configuration, downgraded\n"); |
3439 | 3440 | ||
3440 | out: | ||
3441 | WARN_ON_ONCE(!cfg80211_chandef_valid(chandef)); | 3441 | WARN_ON_ONCE(!cfg80211_chandef_valid(chandef)); |
3442 | return ret; | 3442 | return ret; |
3443 | } | 3443 | } |
@@ -3551,8 +3551,11 @@ static int ieee80211_prep_channel(struct ieee80211_sub_if_data *sdata, | |||
3551 | */ | 3551 | */ |
3552 | ret = ieee80211_vif_use_channel(sdata, &chandef, | 3552 | ret = ieee80211_vif_use_channel(sdata, &chandef, |
3553 | IEEE80211_CHANCTX_SHARED); | 3553 | IEEE80211_CHANCTX_SHARED); |
3554 | while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) | 3554 | while (ret && chandef.width != NL80211_CHAN_WIDTH_20_NOHT) { |
3555 | ifmgd->flags |= chandef_downgrade(&chandef); | 3555 | ifmgd->flags |= chandef_downgrade(&chandef); |
3556 | ret = ieee80211_vif_use_channel(sdata, &chandef, | ||
3557 | IEEE80211_CHANCTX_SHARED); | ||
3558 | } | ||
3556 | return ret; | 3559 | return ret; |
3557 | } | 3560 | } |
3558 | 3561 | ||
diff --git a/net/netfilter/ipvs/ip_vs_proto_sctp.c b/net/netfilter/ipvs/ip_vs_proto_sctp.c index 746048b13ef3..ae8ec6f27688 100644 --- a/net/netfilter/ipvs/ip_vs_proto_sctp.c +++ b/net/netfilter/ipvs/ip_vs_proto_sctp.c | |||
@@ -61,14 +61,27 @@ sctp_conn_schedule(int af, struct sk_buff *skb, struct ip_vs_proto_data *pd, | |||
61 | return 1; | 61 | return 1; |
62 | } | 62 | } |
63 | 63 | ||
64 | static void sctp_nat_csum(struct sk_buff *skb, sctp_sctphdr_t *sctph, | ||
65 | unsigned int sctphoff) | ||
66 | { | ||
67 | __u32 crc32; | ||
68 | struct sk_buff *iter; | ||
69 | |||
70 | crc32 = sctp_start_cksum((__u8 *)sctph, skb_headlen(skb) - sctphoff); | ||
71 | skb_walk_frags(skb, iter) | ||
72 | crc32 = sctp_update_cksum((u8 *) iter->data, | ||
73 | skb_headlen(iter), crc32); | ||
74 | sctph->checksum = sctp_end_cksum(crc32); | ||
75 | |||
76 | skb->ip_summed = CHECKSUM_UNNECESSARY; | ||
77 | } | ||
78 | |||
64 | static int | 79 | static int |
65 | sctp_snat_handler(struct sk_buff *skb, struct ip_vs_protocol *pp, | 80 | sctp_snat_handler(struct sk_buff *skb, struct ip_vs_protocol *pp, |
66 | struct ip_vs_conn *cp, struct ip_vs_iphdr *iph) | 81 | struct ip_vs_conn *cp, struct ip_vs_iphdr *iph) |
67 | { | 82 | { |
68 | sctp_sctphdr_t *sctph; | 83 | sctp_sctphdr_t *sctph; |
69 | unsigned int sctphoff = iph->len; | 84 | unsigned int sctphoff = iph->len; |
70 | struct sk_buff *iter; | ||
71 | __be32 crc32; | ||
72 | 85 | ||
73 | #ifdef CONFIG_IP_VS_IPV6 | 86 | #ifdef CONFIG_IP_VS_IPV6 |
74 | if (cp->af == AF_INET6 && iph->fragoffs) | 87 | if (cp->af == AF_INET6 && iph->fragoffs) |
@@ -92,13 +105,7 @@ sctp_snat_handler(struct sk_buff *skb, struct ip_vs_protocol *pp, | |||
92 | sctph = (void *) skb_network_header(skb) + sctphoff; | 105 | sctph = (void *) skb_network_header(skb) + sctphoff; |
93 | sctph->source = cp->vport; | 106 | sctph->source = cp->vport; |
94 | 107 | ||
95 | /* Calculate the checksum */ | 108 | sctp_nat_csum(skb, sctph, sctphoff); |
96 | crc32 = sctp_start_cksum((u8 *) sctph, skb_headlen(skb) - sctphoff); | ||
97 | skb_walk_frags(skb, iter) | ||
98 | crc32 = sctp_update_cksum((u8 *) iter->data, skb_headlen(iter), | ||
99 | crc32); | ||
100 | crc32 = sctp_end_cksum(crc32); | ||
101 | sctph->checksum = crc32; | ||
102 | 109 | ||
103 | return 1; | 110 | return 1; |
104 | } | 111 | } |
@@ -109,8 +116,6 @@ sctp_dnat_handler(struct sk_buff *skb, struct ip_vs_protocol *pp, | |||
109 | { | 116 | { |
110 | sctp_sctphdr_t *sctph; | 117 | sctp_sctphdr_t *sctph; |
111 | unsigned int sctphoff = iph->len; | 118 | unsigned int sctphoff = iph->len; |
112 | struct sk_buff *iter; | ||
113 | __be32 crc32; | ||
114 | 119 | ||
115 | #ifdef CONFIG_IP_VS_IPV6 | 120 | #ifdef CONFIG_IP_VS_IPV6 |
116 | if (cp->af == AF_INET6 && iph->fragoffs) | 121 | if (cp->af == AF_INET6 && iph->fragoffs) |
@@ -134,13 +139,7 @@ sctp_dnat_handler(struct sk_buff *skb, struct ip_vs_protocol *pp, | |||
134 | sctph = (void *) skb_network_header(skb) + sctphoff; | 139 | sctph = (void *) skb_network_header(skb) + sctphoff; |
135 | sctph->dest = cp->dport; | 140 | sctph->dest = cp->dport; |
136 | 141 | ||
137 | /* Calculate the checksum */ | 142 | sctp_nat_csum(skb, sctph, sctphoff); |
138 | crc32 = sctp_start_cksum((u8 *) sctph, skb_headlen(skb) - sctphoff); | ||
139 | skb_walk_frags(skb, iter) | ||
140 | crc32 = sctp_update_cksum((u8 *) iter->data, skb_headlen(iter), | ||
141 | crc32); | ||
142 | crc32 = sctp_end_cksum(crc32); | ||
143 | sctph->checksum = crc32; | ||
144 | 143 | ||
145 | return 1; | 144 | return 1; |
146 | } | 145 | } |
diff --git a/net/netfilter/ipvs/ip_vs_sync.c b/net/netfilter/ipvs/ip_vs_sync.c index effa10c9e4e3..44fd10c539ac 100644 --- a/net/netfilter/ipvs/ip_vs_sync.c +++ b/net/netfilter/ipvs/ip_vs_sync.c | |||
@@ -1795,6 +1795,8 @@ int start_sync_thread(struct net *net, int state, char *mcast_ifn, __u8 syncid) | |||
1795 | GFP_KERNEL); | 1795 | GFP_KERNEL); |
1796 | if (!tinfo->buf) | 1796 | if (!tinfo->buf) |
1797 | goto outtinfo; | 1797 | goto outtinfo; |
1798 | } else { | ||
1799 | tinfo->buf = NULL; | ||
1798 | } | 1800 | } |
1799 | tinfo->id = id; | 1801 | tinfo->id = id; |
1800 | 1802 | ||
diff --git a/net/sched/sch_htb.c b/net/sched/sch_htb.c index 51561eafcb72..79e8ed4ac7ce 100644 --- a/net/sched/sch_htb.c +++ b/net/sched/sch_htb.c | |||
@@ -1135,9 +1135,9 @@ static int htb_dump_class(struct Qdisc *sch, unsigned long arg, | |||
1135 | memset(&opt, 0, sizeof(opt)); | 1135 | memset(&opt, 0, sizeof(opt)); |
1136 | 1136 | ||
1137 | opt.rate.rate = cl->rate.rate_bps >> 3; | 1137 | opt.rate.rate = cl->rate.rate_bps >> 3; |
1138 | opt.buffer = cl->buffer; | 1138 | opt.buffer = PSCHED_NS2TICKS(cl->buffer); |
1139 | opt.ceil.rate = cl->ceil.rate_bps >> 3; | 1139 | opt.ceil.rate = cl->ceil.rate_bps >> 3; |
1140 | opt.cbuffer = cl->cbuffer; | 1140 | opt.cbuffer = PSCHED_NS2TICKS(cl->cbuffer); |
1141 | opt.quantum = cl->quantum; | 1141 | opt.quantum = cl->quantum; |
1142 | opt.prio = cl->prio; | 1142 | opt.prio = cl->prio; |
1143 | opt.level = cl->level; | 1143 | opt.level = cl->level; |