* Re: [PATCH net-next] net: stmmac: add BQL support
From: Beniamino Galvani @ 2014-12-28 21:48 UTC (permalink / raw)
To: Dave Taht
Cc: Giuseppe Cavallaro, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
In-Reply-To: <CAA93jw7XMK0foH_Hf9PHitV+Xhwxu15xATFv-jnn8_1Tv+kFCA@mail.gmail.com>
On Sun, Dec 28, 2014 at 08:25:40AM -0800, Dave Taht wrote:
> On Sun, Dec 28, 2014 at 6:57 AM, Beniamino Galvani <b.galvani@gmail.com> wrote:
> > Add support for Byte Queue Limits to the STMicro MAC driver.
>
> Thank you!
>
> > Tested on a Amlogic S805 Cortex-A5 board, where the use of BQL
> > slightly decreases the ping latency from ~10ms to ~3ms when the
> > 100Mbps link is saturated by TCP streams. No difference is
> > observed at 1Gbps.
>
> I see the plural. With TSQ in place it is hard (without something like
> the rrul test driving multiple streams) to drive a driver to
> saturation with small numbers of flows. This was with pfifo_fast, not
> sch_fq, at 100mbit?
Hi Dave,
yes, this was with pfifo_fast and I used 4 iperf TCP streams. The total
throughput didn't seem to increase adding more streams.
>
> Can this board actually drive a full gigabit in the first place? Until
> now most of the low end arm boards I have seen only came with
> a 100mbit mac, and the gig ones lacking offloads seemed to peak
> out at about 600mbit.
I measured a throughput of 650mbit in rx and 600mbit in tx.
>
> Under my christmas tree landed a quad core A5 (odroid-c1), also an
> xgene and zedboard - both of the latter are a-needing BQL,
> and I haven't booted the udroid yet. Hopefully it is the
> same driver you just improved.
I'm using the odroid-c1 too, with this tree based on the recent
Amlogic mainline work:
https://github.com/bengal/linux/tree/meson8b
Unfortunately at the moment the support for the board is very basic
(for example, SMP is not working yet) but it's enough to do some NIC
tests.
Beniamino
^ permalink raw reply
* Re: [PATCH v2 2/6] GMAC: define clock ID used for GMAC
From: Heiko Stübner @ 2014-12-28 20:51 UTC (permalink / raw)
To: Roger Chen
Cc: peppe.cavallaro, netdev, linux-kernel, linux-rockchip, kever.yang,
eddie.cai
In-Reply-To: <1417056766-3678-1-git-send-email-roger.chen@rock-chips.com>
Hi Roger,
patches modifying the rockchip clock parts should have a subject like
clk: rockchip: .....
Same for the following patch
Am Donnerstag, 27. November 2014, 10:52:46 schrieb Roger Chen:
> Signed-off-by: Roger Chen <roger.chen@rock-chips.com>
> ---
> include/dt-bindings/clock/rk3288-cru.h | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/include/dt-bindings/clock/rk3288-cru.h
> b/include/dt-bindings/clock/rk3288-cru.h index 100a08c..f9496f5 100644
> --- a/include/dt-bindings/clock/rk3288-cru.h
> +++ b/include/dt-bindings/clock/rk3288-cru.h
> @@ -72,6 +72,10 @@
> #define SCLK_HEVC_CABAC 111
> #define SCLK_HEVC_CORE 112
>
> +#define SCLK_MAC_PLL 150
Why do you need to export the mac pll source selection?
I understand SCLK_MAC below, as you will want to select ext_gmac explicitly if
available. But otherwise, why would you need to explicitly select the pll
source?
The clock framework is intelligent enough that when you do a
clk_set_rate(sclk_mac, 50000000) for example that it will select the best pll
source + best divider to provide the most accurate frequency for this, so
there should be no need to handle the pll source manually.
Heiko
> +#define SCLK_MAC 151
> +#define SCLK_MACREF_OUT 152
> +
> #define DCLK_VOP0 190
> #define DCLK_VOP1 191
^ permalink raw reply
* Re: [PATCH v2 1/6] GMAC: add driver for Rockchip RK3288 SoCs integrated GMAC
From: Heiko Stübner @ 2014-12-28 20:28 UTC (permalink / raw)
To: Roger
Cc: peppe.cavallaro, netdev, linux-kernel, linux-rockchip, kever.yang,
eddie.cai
In-Reply-To: <549B5E50.2000501@rock-chips.com>
Am Donnerstag, 25. Dezember 2014, 08:46:08 schrieb Roger:
> Hi! Heiko
>
> Any suggestion?
Follow the suggestions from Chen-Yu Tsai (and me) :-) .
I.e. use the phy-reset support the stmmac already provides and control power
stuff using the regulator framework even if it's only a gpio-controlled switch.
See the vcc_host regulator in rk3288-evb.dtsi as an example on how these
switches should normally be handled.
Heiko
>
> On 2014/12/3 15:57, Roger wrote:
> > Hi! Heiko
> >
> > about regulator, power gpio, reset gpio and irq gpio
> > please refer to my comment inline, tks.
> >
> > On 2014/12/2 7:44, Heiko Stübner wrote:
> >> Hi Roger,
> >>
> >> the comments inline are a rough first review. I hope to get a clearer
> >> picture
> >> for the stuff I'm not sure about in v3 once the big issues are fixed.
> >>
> >> Am Donnerstag, 27. November 2014, 10:52:08 schrieb Roger Chen:
> >>> This driver is based on stmmac driver.
> >>>
> >>> modification based on Giuseppe CAVALLARO's suggestion:
> >>> 1. use BIT()
> >>>
> >>> > +/*RK3288_GRF_SOC_CON3*/
> >>> > +#define GMAC_TXCLK_DLY_ENABLE ((0x4000 << 16) | (0x4000))
> >>> > +#define GMAC_TXCLK_DLY_DISABLE ((0x4000 << 16) | (0x0000))
> >>>
> >>> ...
> >>>
> >>> why do not use BIT and BIT_MASK where possible?
> >>>
> >>> ===>after modification:
> >>>
> >>> #define GRF_BIT(nr) (BIT(nr) | BIT(nr+16))
> >>> #define GRF_CLR_BIT(nr) (BIT(nr+16))
> >>> #define GMAC_TXCLK_DLY_ENABLE GRF_BIT(14)
> >>> #define GMAC_TXCLK_DLY_DISABLE GRF_CLR_BIT(14)
> >>> ...
> >>>
> >>> 2.
> >>>
> >>> > + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> > + GMAC_PHY_INTF_SEL_RGMII);
> >>> > + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> > + GMAC_RMII_MODE_CLR);
> >>>
> >>> maybe you could perform just one write unless there is some HW
> >>> constraint.
> >>>
> >>> ===>after modification:
> >>>
> >>> regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>>
> >>> GMAC_PHY_INTF_SEL_RGMII | GMAC_RMII_MODE_CLR);
> >>>
> >>> 3. use macros
> >>>
> >>> > + regmap_write(bsp_priv->grf, RK3288_GRF_GPIO3D_E,
> >>>
> >>> 0xFFFFFFFF);
> >>>
> >>> > + regmap_write(bsp_priv->grf, RK3288_GRF_GPIO4B_E,
> >>> > + 0x3<<2<<16 | 0x3<<2);
> >>>
> >>> pls use macros, these shift sequence is really help to decode
> >>>
> >>> ===>after modification:
> >>>
> >>> regmap_write(bsp_priv->grf, RK3288_GRF_GPIO4A_E, GPIO4A_12MA);
> >>> regmap_write(bsp_priv->grf, RK3288_GRF_GPIO4B_E, GPIO4B_2_12MA);
> >>>
> >>> 4. remove grf fail check in rk_gmac_setup()
> >>>
> >>> > + if (IS_ERR(bsp_priv->grf))
> >>> > + dev_err(&pdev->dev, "Missing rockchip,grf property\n");
> >>>
> >>> I wonder if you can fail on here and save all the check in
> >>> set_rgmii_speed etc.
> >>> Maybe this can be considered a mandatory property for the
> >>>
> >>> glue-logic.
> >>>
> >>> 5. remove .tx_coe=1
> >>>
> >>> > +const struct stmmac_of_data rk_gmac_data = {
> >>> > + .has_gmac = 1,
> >>> > + .tx_coe = 1,
> >>>
> >>> FYI, on new gmac there is the HW capability register to dinamically
> >>> provide you if coe is supported.
> >>>
> >>> IMO you should add the OF "compatible" string and in case of mac
> >>> newer than the 3.50a you can remove coe.
> >>
> >> changelogs like these, should be compact and also not be in the
> >> commit message
> >> itself, but in the "comment"-section below the "---" and before the
> >> diffstat.
> >>
> >>> Signed-off-by: Roger Chen <roger.chen@rock-chips.com>
> >>> ---
> >>
> >> changelog here ... the commonly used pattern is something like
> >>
> >> changes since v2:
> >> - ...
> >> - ...
> >>
> >> changes since v1:
> >> - ...
> >>
> >>> drivers/net/ethernet/stmicro/stmmac/Makefile | 2 +-
> >>>
> >>> drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c | 636
> >>>
> >>> ++++++++++++++++++++
> >>> .../net/ethernet/stmicro/stmmac/stmmac_platform.c |
> >>>
> >>> 3 +
> >>> .../net/ethernet/stmicro/stmmac/stmmac_platform.h | 1 +
> >>> 4 files changed, 641 insertions(+), 1 deletion(-)
> >>> create mode 100644 drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c
> >>>
> >>> diff --git a/drivers/net/ethernet/stmicro/stmmac/Makefile
> >>> b/drivers/net/ethernet/stmicro/stmmac/Makefile index ac4d562..73c2715
> >>> 100644
> >>> --- a/drivers/net/ethernet/stmicro/stmmac/Makefile
> >>> +++ b/drivers/net/ethernet/stmicro/stmmac/Makefile
> >>> @@ -6,7 +6,7 @@ stmmac-objs:= stmmac_main.o stmmac_ethtool.o
> >>> stmmac_mdio.o
> >>> ring_mode.o \
> >>>
> >>> obj-$(CONFIG_STMMAC_PLATFORM) += stmmac-platform.o
> >>> stmmac-platform-objs:= stmmac_platform.o dwmac-meson.o
> >>>
> >>> dwmac-sunxi.o \
> >>> - dwmac-sti.o dwmac-socfpga.o
> >>> + dwmac-sti.o dwmac-socfpga.o dwmac-rk.o
> >>>
> >>> obj-$(CONFIG_STMMAC_PCI) += stmmac-pci.o
> >>> stmmac-pci-objs:= stmmac_pci.o
> >>>
> >>> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c
> >>> b/drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c new file mode 100644
> >>> index 0000000..870563f
> >>> --- /dev/null
> >>> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c
> >>> @@ -0,0 +1,636 @@
> >>> +/**
> >>> + * dwmac-rk.c - Rockchip RK3288 DWMAC specific glue layer
> >>> + *
> >>> + * Copyright (C) 2014 Chen-Zhi (Roger Chen)
> >>> + *
> >>> + * Chen-Zhi (Roger Chen) <roger.chen@rock-chips.com>
> >>> + *
> >>> + * This program is free software; you can redistribute it and/or
> >>> modify
> >>> + * it under the terms of the GNU General Public License as
> >>> published by
> >>> + * the Free Software Foundation; either version 2 of the License, or
> >>> + * (at your option) any later version.
> >>> + *
> >>> + * This program is distributed in the hope that it will be useful,
> >>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> >>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> >>> + * GNU General Public License for more details.
> >>> + */
> >>> +
> >>> +#include <linux/stmmac.h>
> >>> +#include <linux/bitops.h>
> >>> +#include <linux/clk.h>
> >>> +#include <linux/phy.h>
> >>> +#include <linux/of_net.h>
> >>> +#include <linux/gpio.h>
> >>> +#include <linux/of_gpio.h>
> >>> +#include <linux/of_device.h>
> >>> +#include <linux/regulator/consumer.h>
> >>> +#include <linux/delay.h>
> >>> +#include <linux/mfd/syscon.h>
> >>> +#include <linux/regmap.h>
> >>> +
> >>> +struct rk_priv_data {
> >>> + struct platform_device *pdev;
> >>> + int phy_iface;
> >>> + bool power_ctrl_by_pmu;
> >>> + char pmu_regulator[32];
> >>> + int pmu_enable_level;
> >>> +
> >>> + int power_io;
> >>> + int power_io_level;
> >>> + int reset_io;
> >>> + int reset_io_level;
> >>> + int phyirq_io;
> >>> + int phyirq_io_level;
> >>> +
> >>> + bool clk_enabled;
> >>> + bool clock_input;
> >>> +
> >>> + struct clk *clk_mac;
> >>> + struct clk *clk_mac_pll;
> >>> + struct clk *gmac_clkin;
> >>> + struct clk *mac_clk_rx;
> >>> + struct clk *mac_clk_tx;
> >>> + struct clk *clk_mac_ref;
> >>> + struct clk *clk_mac_refout;
> >>> + struct clk *aclk_mac;
> >>> + struct clk *pclk_mac;
> >>> +
> >>> + int tx_delay;
> >>> + int rx_delay;
> >>> +
> >>> + struct regmap *grf;
> >>> +};
> >>> +
> >>> +#define RK3288_GRF_SOC_CON1 0x0248
> >>> +#define RK3288_GRF_SOC_CON3 0x0250
> >>> +#define RK3288_GRF_GPIO3D_E 0x01ec
> >>> +#define RK3288_GRF_GPIO4A_E 0x01f0
> >>> +#define RK3288_GRF_GPIO4B_E 0x01f4
> >>
> >> here you're using a space instead of a tab, please select one pattern
> >> either
> >> tabs or space but do not mix them.
> >>
> >>> +#define GPIO3D_2MA 0xFFFF0000
> >>> +#define GPIO3D_4MA 0xFFFF5555
> >>> +#define GPIO3D_8MA 0xFFFFAAAA
> >>> +#define GPIO3D_12MA 0xFFFFFFFF
> >>> +
> >>> +#define GPIO4A_2MA 0xFFFF0000
> >>> +#define GPIO4A_4MA 0xFFFF5555
> >>> +#define GPIO4A_8MA 0xFFFFAAAA
> >>> +#define GPIO4A_12MA 0xFFFFFFFF
> >>
> >> see comment about pin settings below
> >>
> >>> +
> >>> +#define GRF_BIT(nr) (BIT(nr) | BIT(nr+16))
> >>> +#define GRF_CLR_BIT(nr) (BIT(nr+16))
> >>> +
> >>> +#define GPIO4B_2_2MA (GRF_CLR_BIT(2) | GRF_CLR_BIT(3))
> >>> +#define GPIO4B_2_4MA (GRF_BIT(2) | GRF_CLR_BIT(3))
> >>> +#define GPIO4B_2_8MA (GRF_CLR_BIT(2) | GRF_BIT(3))
> >>> +#define GPIO4B_2_12MA (GRF_BIT(2) | GRF_BIT(3))
> >>> +
> >>> +/*RK3288_GRF_SOC_CON1*/
> >>> +#define GMAC_PHY_INTF_SEL_RGMII (GRF_BIT(6) | GRF_CLR_BIT(7) |
> >>> GRF_CLR_BIT(8))
> >>> +#define GMAC_PHY_INTF_SEL_RMII (GRF_CLR_BIT(6) |
> >>> GRF_CLR_BIT(7) | GRF_BIT(8))
> >>> +#define GMAC_FLOW_CTRL GRF_BIT(9)
> >>> +#define GMAC_FLOW_CTRL_CLR GRF_CLR_BIT(9)
> >>> +#define GMAC_SPEED_10M GRF_CLR_BIT(10)
> >>> +#define GMAC_SPEED_100M GRF_BIT(10)
> >>> +#define GMAC_RMII_CLK_25M GRF_BIT(11)
> >>> +#define GMAC_RMII_CLK_2_5M GRF_CLR_BIT(11)
> >>> +#define GMAC_CLK_125M (GRF_CLR_BIT(12) | GRF_CLR_BIT(13))
> >>> +#define GMAC_CLK_25M (GRF_BIT(12) | GRF_BIT(13))
> >>> +#define GMAC_CLK_2_5M (GRF_CLR_BIT(12) | GRF_BIT(13))
> >>> +#define GMAC_RMII_MODE GRF_BIT(14)
> >>> +#define GMAC_RMII_MODE_CLR GRF_CLR_BIT(14)
> >>> +
> >>> +/*RK3288_GRF_SOC_CON3*/
> >>> +#define GMAC_TXCLK_DLY_ENABLE GRF_BIT(14)
> >>> +#define GMAC_TXCLK_DLY_DISABLE GRF_CLR_BIT(14)
> >>> +#define GMAC_RXCLK_DLY_ENABLE GRF_BIT(15)
> >>> +#define GMAC_RXCLK_DLY_DISABLE GRF_CLR_BIT(15)
> >>> +#define GMAC_CLK_RX_DL_CFG(val) ((0x7F<<7<<16) | (val<<7))
> >>> +#define GMAC_CLK_TX_DL_CFG(val) ((0x7F<<16) | (val))
> >>
> >> again mixed tabs and spaces as delimiters.
> >>
> >> Also the _CFG macros are not well abstracted. You could take a look
> >> at the
> >> HIWORD_UPDATE macro in drivers/clk/rockchip/clk.h:
> >>
> >> #define GMAC_CLK_DL_MASK 0x7f
> >> #define GMAC_CLK_RX_DL_CFG(val) HIWORD_UPDATE(val, GMAC_CLK_DL_MASK, 7)
> >> #define GMAC_CLK_TX_DL_CFG(val) HIWORD_UPDATE(val, GMAC_CLK_DL_MASK, 0)
> >>
> >>> +
> >>> +static void set_to_rgmii(struct rk_priv_data *bsp_priv,
> >>> + int tx_delay, int rx_delay)
> >>> +{
> >>> + if (IS_ERR(bsp_priv->grf)) {
> >>> + pr_err("%s: Missing rockchip,grf property\n", __func__);
> >>> + return;
> >>> + }
> >>> +
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> + GMAC_PHY_INTF_SEL_RGMII | GMAC_RMII_MODE_CLR);
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON3,
> >>> + GMAC_RXCLK_DLY_ENABLE | GMAC_TXCLK_DLY_ENABLE |
> >>> + GMAC_CLK_RX_DL_CFG(rx_delay) |
> >>> + GMAC_CLK_TX_DL_CFG(tx_delay));
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_GPIO3D_E, GPIO3D_12MA);
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_GPIO4A_E, GPIO4A_12MA);
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_GPIO4B_E, GPIO4B_2_12MA);
> >>
> >> please don't write to parts controlled by other drivers - here the drive
> >> strength settings of pins is controlled by the pinctrl driver.
> >> Instead you can
> >> just set the drive-strength in the pinctrl settings.
> >>
> >>> +
> >>> + pr_debug("%s: tx delay=0x%x; rx delay=0x%x;\n",
> >>> + __func__, tx_delay, rx_delay);
> >>> +}
> >>> +
> >>> +static void set_to_rmii(struct rk_priv_data *bsp_priv)
> >>> +{
> >>> + if (IS_ERR(bsp_priv->grf)) {
> >>> + pr_err("%s: Missing rockchip,grf property\n", __func__);
> >>
> >> you have a device-reference in rk_priv_data, so you could use dev_err
> >> here.
> >> Same for all other pr_err/pr_debug/pr_* calls in this file.
> >>
> >>> + return;
> >>> + }
> >>> +
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> + GMAC_PHY_INTF_SEL_RMII);
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> + GMAC_RMII_MODE);
> >>
> >> these two could be combined?
> >>
> >>> +}
> >>> +
> >>> +static void set_rgmii_speed(struct rk_priv_data *bsp_priv, int speed)
> >>> +{
> >>> + if (IS_ERR(bsp_priv->grf)) {
> >>> + pr_err("%s: Missing rockchip,grf property\n", __func__);
> >>> + return;
> >>> + }
> >>> +
> >>> + if (speed == 10)
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> GMAC_CLK_2_5M);
> >>> + else if (speed == 100)
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> GMAC_CLK_25M);
> >>> + else if (speed == 1000)
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> GMAC_CLK_125M);
> >>> + else
> >>> + pr_err("unknown speed value for RGMII! speed=%d", speed);
> >>> +}
> >>> +
> >>> +static void set_rmii_speed(struct rk_priv_data *bsp_priv, int speed)
> >>> +{
> >>> + if (IS_ERR(bsp_priv->grf)) {
> >>> + pr_err("%s: Missing rockchip,grf property\n", __func__);
> >>> + return;
> >>> + }
> >>> +
> >>> + if (speed == 10) {
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> + GMAC_RMII_CLK_2_5M);
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> + GMAC_SPEED_10M);
> >>
> >> combine into one write?
> >>
> >>> + } else if (speed == 100) {
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> + GMAC_RMII_CLK_25M);
> >>> + regmap_write(bsp_priv->grf, RK3288_GRF_SOC_CON1,
> >>> + GMAC_SPEED_100M);
> >>
> >> combine into one write?
> >>
> >>> + } else {
> >>> + pr_err("unknown speed value for RMII! speed=%d", speed);
> >>> + }
> >>> +}
> >>> +
> >>> +#define MAC_CLK_RX "mac_clk_rx"
> >>> +#define MAC_CLK_TX "mac_clk_tx"
> >>> +#define CLK_MAC_REF "clk_mac_ref"
> >>> +#define CLK_MAC_REF_OUT "clk_mac_refout"
> >>> +#define CLK_MAC_PLL "clk_mac_pll"
> >>> +#define ACLK_MAC "aclk_mac"
> >>> +#define PCLK_MAC "pclk_mac"
> >>> +#define MAC_CLKIN "ext_gmac"
> >>> +#define CLK_MAC "stmmaceth"
> >>
> >> why the need to extra constants for the clock names and not use the
> >> real names
> >> directly like most other drivers do?
> >>
> >>> +
> >>> +static int gmac_clk_init(struct rk_priv_data *bsp_priv)
> >>> +{
> >>> + struct device *dev = &bsp_priv->pdev->dev;
> >>> +
> >>> + bsp_priv->clk_enabled = false;
> >>> +
> >>> + bsp_priv->mac_clk_rx = clk_get(dev, MAC_CLK_RX);
> >>> + if (IS_ERR(bsp_priv->mac_clk_rx))
> >>> + pr_warn("%s: warning: cannot get clock %s\n",
> >>> + __func__, MAC_CLK_RX);
> >>> +
> >>> + bsp_priv->mac_clk_tx = clk_get(dev, MAC_CLK_TX);
> >>> + if (IS_ERR(bsp_priv->mac_clk_tx))
> >>> + pr_warn("%s: warning: cannot get clock %s\n",
> >>> + __func__, MAC_CLK_TX);
> >>> +
> >>> + bsp_priv->clk_mac_ref = clk_get(dev, CLK_MAC_REF);
> >>> + if (IS_ERR(bsp_priv->clk_mac_ref))
> >>> + pr_warn("%s: warning: cannot get clock %s\n",
> >>> + __func__, CLK_MAC_REF);
> >>> +
> >>> + bsp_priv->clk_mac_refout = clk_get(dev, CLK_MAC_REF_OUT);
> >>> + if (IS_ERR(bsp_priv->clk_mac_refout))
> >>> + pr_warn("%s: warning:cannot get clock %s\n",
> >>> + __func__, CLK_MAC_REF_OUT);
> >>> +
> >>> + bsp_priv->aclk_mac = clk_get(dev, ACLK_MAC);
> >>> + if (IS_ERR(bsp_priv->aclk_mac))
> >>> + pr_warn("%s: warning: cannot get clock %s\n",
> >>> + __func__, ACLK_MAC);
> >>> +
> >>> + bsp_priv->pclk_mac = clk_get(dev, PCLK_MAC);
> >>> + if (IS_ERR(bsp_priv->pclk_mac))
> >>> + pr_warn("%s: warning: cannot get clock %s\n",
> >>> + __func__, PCLK_MAC);
> >>> +
> >>> + bsp_priv->clk_mac_pll = clk_get(dev, CLK_MAC_PLL);
> >>> + if (IS_ERR(bsp_priv->clk_mac_pll))
> >>> + pr_warn("%s: warning: cannot get clock %s\n",
> >>> + __func__, CLK_MAC_PLL);
> >>> +
> >>> + bsp_priv->gmac_clkin = clk_get(dev, MAC_CLKIN);
> >>> + if (IS_ERR(bsp_priv->gmac_clkin))
> >>> + pr_warn("%s: warning: cannot get clock %s\n",
> >>> + __func__, MAC_CLKIN);
> >>> +
> >>> + bsp_priv->clk_mac = clk_get(dev, CLK_MAC);
> >>> + if (IS_ERR(bsp_priv->clk_mac))
> >>> + pr_warn("%s: warning: cannot get clock %s\n",
> >>> + __func__, CLK_MAC);
> >>
> >> there is not clk_put in the _remove case ... maybe you could simply use
> >> devm_clk_get here so that all clocks are put on device removal.
> >>
> >> Also you're warning on every missing clock. Below it looks like you
> >> need a
> >> different set of them for rgmii and rmii, so maybe you should simply
> >> error out
> >> when core clocks for the selected phy-mode are missing.
> >>
> >>> +
> >>> + if (bsp_priv->clock_input) {
> >>> + pr_info("%s: clock input from PHY\n", __func__);
> >>> + } else {
> >>> + if (bsp_priv->phy_iface == PHY_INTERFACE_MODE_RMII)
> >>> + clk_set_rate(bsp_priv->clk_mac_pll, 50000000);
> >>> +
> >>> + clk_set_parent(bsp_priv->clk_mac, bsp_priv->clk_mac_pll);
> >>
> >> why the explicit reparenting. The common clock-framework is
> >> intelligent enough
> >> to select the best suitable parent.
> >>
> >> In general I'm thinking the clock-handling inside this driver should be
> >> simplyfied, as the common-clock framework can handle most cases
> >> itself. I.e. if
> >> a 125MHz external clock is present and so on. But haven't looked to
> >> deep yet.
> >>
> >>> + }
> >>> +
> >>> + return 0;
> >>> +}
> >>> +
> >>> +static int gmac_clk_enable(struct rk_priv_data *bsp_priv, bool enable)
> >>> +{
> >>> + int phy_iface = phy_iface = bsp_priv->phy_iface;
> >>> +
> >>> + if (enable) {
> >>> + if (!bsp_priv->clk_enabled) {
> >>> + if (phy_iface == PHY_INTERFACE_MODE_RMII) {
> >>> + if (!IS_ERR(bsp_priv->mac_clk_rx))
> >>> + clk_prepare_enable(
> >>> + bsp_priv->mac_clk_rx);
> >>> +
> >>> + if (!IS_ERR(bsp_priv->clk_mac_ref))
> >>> + clk_prepare_enable(
> >>> + bsp_priv->clk_mac_ref);
> >>> +
> >>> + if (!IS_ERR(bsp_priv->clk_mac_refout))
> >>> + clk_prepare_enable(
> >>> + bsp_priv->clk_mac_refout);
> >>> + }
> >>> +
> >>> + if (!IS_ERR(bsp_priv->aclk_mac))
> >>> + clk_prepare_enable(bsp_priv->aclk_mac);
> >>> +
> >>> + if (!IS_ERR(bsp_priv->pclk_mac))
> >>> + clk_prepare_enable(bsp_priv->pclk_mac);
> >>> +
> >>> + if (!IS_ERR(bsp_priv->mac_clk_tx))
> >>> + clk_prepare_enable(bsp_priv->mac_clk_tx);
> >>> +
> >>> + /**
> >>> + * if (!IS_ERR(bsp_priv->clk_mac))
> >>> + * clk_prepare_enable(bsp_priv->clk_mac);
> >>> + */
> >>> + mdelay(5);
> >>> + bsp_priv->clk_enabled = true;
> >>> + }
> >>> + } else {
> >>> + if (bsp_priv->clk_enabled) {
> >>> + if (phy_iface == PHY_INTERFACE_MODE_RMII) {
> >>> + if (!IS_ERR(bsp_priv->mac_clk_rx))
> >>> + clk_disable_unprepare(
> >>> + bsp_priv->mac_clk_rx);
> >>> +
> >>> + if (!IS_ERR(bsp_priv->clk_mac_ref))
> >>> + clk_disable_unprepare(
> >>> + bsp_priv->clk_mac_ref);
> >>> +
> >>> + if (!IS_ERR(bsp_priv->clk_mac_refout))
> >>> + clk_disable_unprepare(
> >>> + bsp_priv->clk_mac_refout);
> >>> + }
> >>> +
> >>> + if (!IS_ERR(bsp_priv->aclk_mac))
> >>> + clk_disable_unprepare(bsp_priv->aclk_mac);
> >>> +
> >>> + if (!IS_ERR(bsp_priv->pclk_mac))
> >>> + clk_disable_unprepare(bsp_priv->pclk_mac);
> >>> +
> >>> + if (!IS_ERR(bsp_priv->mac_clk_tx))
> >>> + clk_disable_unprepare(bsp_priv->mac_clk_tx);
> >>> + /**
> >>> + * if (!IS_ERR(bsp_priv->clk_mac))
> >>> + * clk_disable_unprepare(bsp_priv->clk_mac);
> >>> + */
> >>> + bsp_priv->clk_enabled = false;
> >>> + }
> >>> + }
> >>> +
> >>> + return 0;
> >>> +}
> >>> +
> >>> +static int power_on_by_pmu(struct rk_priv_data *bsp_priv, bool enable)
> >>> +{
> >>> + struct regulator *ldo;
> >>> + char *ldostr = bsp_priv->pmu_regulator;
> >>> + int ret;
> >>> +
> >>> + if (!ldostr) {
> >>> + pr_err("%s: no ldo found\n", __func__);
> >>> + return -1;
> >>> + }
> >>> +
> >>> + ldo = regulator_get(NULL, ldostr);
> >>> + if (!ldo) {
> >>> + pr_err("\n%s get ldo %s failed\n", __func__, ldostr);
> >>> + } else {
> >>> + if (enable) {
> >>> + if (!regulator_is_enabled(ldo)) {
> >>> + regulator_set_voltage(ldo, 3300000, 3300000);
> >>> + ret = regulator_enable(ldo);
> >>> + if (ret != 0)
> >>> + pr_err("%s: fail to enable %s\n",
> >>> + __func__, ldostr);
> >>> + else
> >>> + pr_info("turn on ldo done.\n");
> >>> + } else {
> >>> + pr_warn("%s is enabled before enable", ldostr);
> >>> + }
> >>> + } else {
> >>> + if (regulator_is_enabled(ldo)) {
> >>> + ret = regulator_disable(ldo);
> >>> + if (ret != 0)
> >>> + pr_err("%s: fail to disable %s\n",
> >>> + __func__, ldostr);
> >>> + else
> >>> + pr_info("turn off ldo done.\n");
> >>> + } else {
> >>> + pr_warn("%s is disabled before disable",
> >>> + ldostr);
> >>> + }
> >>> + }
> >>> + regulator_put(ldo);
> >>> + }
> >>> +
> >>> + return 0;
> >>> +}
> >>> +
> >>> +static int power_on_by_gpio(struct rk_priv_data *bsp_priv, bool
> >>> enable)
> >>> +{
> >>> + if (enable) {
> >>> + /*power on*/
> >>> + if (gpio_is_valid(bsp_priv->power_io))
> >>> + gpio_direction_output(bsp_priv->power_io,
> >>> + bsp_priv->power_io_level);
> >>> + } else {
> >>> + /*power off*/
> >>> + if (gpio_is_valid(bsp_priv->power_io))
> >>> + gpio_direction_output(bsp_priv->power_io,
> >>> + !bsp_priv->power_io_level);
> >>> + }
> >>> +
> >>> + return 0;
> >>> +}
> >>> +
> >>> +static int phy_power_on(struct rk_priv_data *bsp_priv, bool enable)
> >>> +{
> >>> + int ret = -1;
> >>> +
> >>> + pr_info("Ethernet PHY power %s\n", enable == 1 ? "on" : "off");
> >>> +
> >>> + if (bsp_priv->power_ctrl_by_pmu)
> >>> + ret = power_on_by_pmu(bsp_priv, enable);
> >>> + else
> >>> + ret = power_on_by_gpio(bsp_priv, enable);
> >>
> >> this looks wrong. This should always be a regulator. Even a regulator
> >> + switch
> >> controlled by a gpio can still be modelled as regulator, so that you
> >> don't
> >> need this switch and assorted special handling - so just use the
> >> regulator API
> >
> > In some case, it would be a switching circuit to control the power for
> > PHY.
> > All I need to do is to control a GPIO to make switch on/off. So...
> >
> >>> +
> >>> + if (enable) {
> >>> + /*reset*/
> >>> + if (gpio_is_valid(bsp_priv->reset_io)) {
> >>> + gpio_direction_output(bsp_priv->reset_io,
> >>> + bsp_priv->reset_io_level);
> >>> + mdelay(5);
> >>> + gpio_direction_output(bsp_priv->reset_io,
> >>> + !bsp_priv->reset_io_level);
> >>> + }
> >>> + mdelay(30);
> >>> +
> >>> + } else {
> >>> + /*pull down reset*/
> >>> + if (gpio_is_valid(bsp_priv->reset_io)) {
> >>> + gpio_direction_output(bsp_priv->reset_io,
> >>> + bsp_priv->reset_io_level);
> >>> + }
> >>> + }
> >>
> >> I'm not sure yet if it would be better to use the reset framework for
> >> this.
> >> While it says it is also meant for reset-gpios, there does not seem a
> >> driver
> >> for this to exist yet.
> >
> > What should I do?
> >
> >>> +
> >>> + return ret;
> >>> +}
> >>> +
> >>> +#define GPIO_PHY_POWER "gmac_phy_power"
> >>> +#define GPIO_PHY_RESET "gmac_phy_reset"
> >>> +#define GPIO_PHY_IRQ "gmac_phy_irq"
> >>
> >> again I don't understand why these constants are necessary
> >>
> >>> +
> >>> +static void *rk_gmac_setup(struct platform_device *pdev)
> >>> +{
> >>> + struct rk_priv_data *bsp_priv;
> >>> + struct device *dev = &pdev->dev;
> >>> + enum of_gpio_flags flags;
> >>> + int ret;
> >>> + const char *strings = NULL;
> >>> + int value;
> >>> + int irq;
> >>> +
> >>> + bsp_priv = devm_kzalloc(dev, sizeof(*bsp_priv), GFP_KERNEL);
> >>> + if (!bsp_priv)
> >>> + return ERR_PTR(-ENOMEM);
> >>> +
> >>> + bsp_priv->phy_iface = of_get_phy_mode(dev->of_node);
> >>> +
> >>> + ret = of_property_read_string(dev->of_node, "pmu_regulator",
> >>> &strings);
> >>> + if (ret) {
> >>> + pr_err("%s: Can not read property: pmu_regulator.\n",
> >>> __func__);
> >>> + bsp_priv->power_ctrl_by_pmu = false;
> >>> + } else {
> >>> + pr_info("%s: ethernet phy power controlled by pmu(%s).\n",
> >>> + __func__, strings);
> >>> + bsp_priv->power_ctrl_by_pmu = true;
> >>> + strcpy(bsp_priv->pmu_regulator, strings);
> >>> + }
> >>
> >> There is a generic regulator-dt-binding for regulator-consumers
> >> available
> >> which you should of course use.
> >
> > The same explanation as above
> >
> >>> +
> >>> + ret = of_property_read_u32(dev->of_node, "pmu_enable_level",
> >>> &value);
> >>> + if (ret) {
> >>> + pr_err("%s: Can not read property: pmu_enable_level.\n",
> >>> + __func__);
> >>> + bsp_priv->power_ctrl_by_pmu = false;
> >>> + } else {
> >>> + pr_info("%s: PHY power controlled by pmu(level = %s).\n",
> >>> + __func__, (value == 1) ? "HIGH" : "LOW");
> >>> + bsp_priv->power_ctrl_by_pmu = true;
> >>> + bsp_priv->pmu_enable_level = value;
> >>> + }
> >>
> >> What is this used for? Enabling should of course be done via
> >> regulator_enable
> >> and disabling using regulator_disable.
> >>
> >>> +
> >>> + ret = of_property_read_string(dev->of_node, "clock_in_out",
> >>> &strings);
> >>> + if (ret) {
> >>> + pr_err("%s: Can not read property: clock_in_out.\n",
> >>> __func__);
> >>> + bsp_priv->clock_input = true;
> >>> + } else {
> >>> + pr_info("%s: clock input or output? (%s).\n",
> >>> + __func__, strings);
> >>> + if (!strcmp(strings, "input"))
> >>> + bsp_priv->clock_input = true;
> >>> + else
> >>> + bsp_priv->clock_input = false;
> >>> + }
> >>> +
> >>> + ret = of_property_read_u32(dev->of_node, "tx_delay", &value);
> >>> + if (ret) {
> >>> + bsp_priv->tx_delay = 0x30;
> >>> + pr_err("%s: Can not read property: tx_delay.", __func__);
> >>> + pr_err("%s: set tx_delay to 0x%x\n",
> >>> + __func__, bsp_priv->tx_delay);
> >>> + } else {
> >>> + pr_info("%s: TX delay(0x%x).\n", __func__, value);
> >>> + bsp_priv->tx_delay = value;
> >>> + }
> >>> +
> >>> + ret = of_property_read_u32(dev->of_node, "rx_delay", &value);
> >>> + if (ret) {
> >>> + bsp_priv->rx_delay = 0x10;
> >>> + pr_err("%s: Can not read property: rx_delay.", __func__);
> >>> + pr_err("%s: set rx_delay to 0x%x\n",
> >>> + __func__, bsp_priv->rx_delay);
> >>> + } else {
> >>> + pr_info("%s: RX delay(0x%x).\n", __func__, value);
> >>> + bsp_priv->rx_delay = value;
> >>> + }
> >>> +
> >>> + bsp_priv->grf = syscon_regmap_lookup_by_phandle(dev->of_node,
> >>> + "rockchip,grf");
> >>> + bsp_priv->phyirq_io =
> >>> + of_get_named_gpio_flags(dev->of_node,
> >>> + "phyirq-gpio", 0, &flags);
> >>> + bsp_priv->phyirq_io_level = (flags & OF_GPIO_ACTIVE_LOW) ? 0 : 1;
> >>> +
> >>> + bsp_priv->reset_io =
> >>> + of_get_named_gpio_flags(dev->of_node,
> >>> + "reset-gpio", 0, &flags);
> >>> + bsp_priv->reset_io_level = (flags & OF_GPIO_ACTIVE_LOW) ? 0 : 1;
> >>> +
> >>> + bsp_priv->power_io =
> >>> + of_get_named_gpio_flags(dev->of_node, "power-gpio", 0,
> >>> &flags);
> >>> + bsp_priv->power_io_level = (flags & OF_GPIO_ACTIVE_LOW) ? 0 : 1;
> >>> +
> >>> + /*power*/
> >>> + if (!gpio_is_valid(bsp_priv->power_io)) {
> >>> + pr_err("%s: Failed to get GPIO %s.\n",
> >>> + __func__, "power-gpio");
> >>> + } else {
> >>> + ret = gpio_request(bsp_priv->power_io, GPIO_PHY_POWER);
> >>> + if (ret)
> >>> + pr_err("%s: ERROR: Failed to request GPIO %s.\n",
> >>> + __func__, GPIO_PHY_POWER);
> >>> + }
> >>
> >> When everything power-related is handled using the regulator api, you
> >> don't
> >> need this
> >
> > The same explanation as above
> >
> >>> +
> >>> + if (!gpio_is_valid(bsp_priv->reset_io)) {
> >>> + pr_err("%s: ERROR: Get reset-gpio failed.\n", __func__);
> >>> + } else {
> >>> + ret = gpio_request(bsp_priv->reset_io, GPIO_PHY_RESET);
> >>> + if (ret)
> >>> + pr_err("%s: ERROR: Failed to request GPIO %s.\n",
> >>> + __func__, GPIO_PHY_RESET);
> >>> + }
> >>> +
> >>> + if (bsp_priv->phyirq_io > 0) {
> >>
> >> This is more for my understanding: why does the mac driver need to
> >> handle the
> >> phy interrupt - but I might be overlooking something.
> >
> > phy interrupt is not mandatory. In most of the time, in order to
> > find something happen in PHY, for example,
> > link is up or down, we just use polling method to read the phy's
> > register in a timer.
> > Buf if phy interrupt is in use, when link is up or down, phy
> > interrupt pin will be assert to inform the CPU.
> > I just implement the driver for phy interrupt gpio, not enable it as
> > default.
> >
> >>> + struct plat_stmmacenet_data *plat_dat;
> >>> +
> >>> + pr_info("PHY irq in use\n");
> >>> + ret = gpio_request(bsp_priv->phyirq_io, GPIO_PHY_IRQ);
> >>> + if (ret < 0) {
> >>> + pr_warn("%s: Failed to request GPIO %s\n",
> >>> + __func__, GPIO_PHY_IRQ);
> >>> + goto goon;
> >>> + }
> >>> +
> >>> + ret = gpio_direction_input(bsp_priv->phyirq_io);
> >>> + if (ret < 0) {
> >>> + pr_err("%s, Failed to set input for GPIO %s\n",
> >>> + __func__, GPIO_PHY_IRQ);
> >>> + gpio_free(bsp_priv->phyirq_io);
> >>> + goto goon;
> >>> + }
> >>> +
> >>> + irq = gpio_to_irq(bsp_priv->phyirq_io);
> >>> + if (irq < 0) {
> >>> + ret = irq;
> >>> + pr_err("Failed to set irq for %s\n",
> >>> + GPIO_PHY_IRQ);
> >>> + gpio_free(bsp_priv->phyirq_io);
> >>> + goto goon;
> >>> + }
> >>> +
> >>> + plat_dat = dev_get_platdata(&pdev->dev);
> >>> + if (plat_dat)
> >>> + plat_dat->mdio_bus_data->probed_phy_irq = irq;
> >>> + else
> >>> + pr_err("%s: plat_data is NULL\n", __func__);
> >>> + }
> >>> +
> >>> +goon:
> >>> + /*rmii or rgmii*/
> >>> + if (bsp_priv->phy_iface == PHY_INTERFACE_MODE_RGMII) {
> >>> + pr_info("%s: init for RGMII\n", __func__);
> >>> + set_to_rgmii(bsp_priv, bsp_priv->tx_delay,
> >>> bsp_priv->rx_delay);
> >>> + } else if (bsp_priv->phy_iface == PHY_INTERFACE_MODE_RMII) {
> >>> + pr_info("%s: init for RMII\n", __func__);
> >>> + set_to_rmii(bsp_priv);
> >>> + } else {
> >>> + pr_err("%s: ERROR: NO interface defined!\n", __func__);
> >>> + }
> >>> +
> >>> + bsp_priv->pdev = pdev;
> >>> +
> >>> + gmac_clk_init(bsp_priv);
> >>> +
> >>> + return bsp_priv;
> >>> +}
> >>> +
> >>> +static int rk_gmac_init(struct platform_device *pdev, void *priv)
> >>> +{
> >>> + struct rk_priv_data *bsp_priv = priv;
> >>> + int ret;
> >>> +
> >>> + ret = phy_power_on(bsp_priv, true);
> >>> + if (ret)
> >>> + return ret;
> >>> +
> >>> + ret = gmac_clk_enable(bsp_priv, true);
> >>> + if (ret)
> >>> + return ret;
> >>> +
> >>> + return 0;
> >>> +}
> >>> +
> >>> +static void rk_gmac_exit(struct platform_device *pdev, void *priv)
> >>> +{
> >>> + struct rk_priv_data *gmac = priv;
> >>> +
> >>> + phy_power_on(gmac, false);
> >>> + gmac_clk_enable(gmac, false);
> >>> +}
> >>> +
> >>> +static void rk_fix_speed(void *priv, unsigned int speed)
> >>> +{
> >>> + struct rk_priv_data *bsp_priv = priv;
> >>> +
> >>> + if (bsp_priv->phy_iface == PHY_INTERFACE_MODE_RGMII)
> >>> + set_rgmii_speed(bsp_priv, speed);
> >>> + else if (bsp_priv->phy_iface == PHY_INTERFACE_MODE_RMII)
> >>> + set_rmii_speed(bsp_priv, speed);
> >>> + else
> >>> + pr_err("unsupported interface %d", bsp_priv->phy_iface);
> >>> +}
> >>> +
> >>> +const struct stmmac_of_data rk_gmac_data = {
> >>> + .has_gmac = 1,
> >>> + .fix_mac_speed = rk_fix_speed,
> >>> + .setup = rk_gmac_setup,
> >>> + .init = rk_gmac_init,
> >>> + .exit = rk_gmac_exit,
> >>> +};
> >>> diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
> >>> b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c index
> >>> 15814b7..b4dee96 100644
> >>> --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
> >>> +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
> >>> @@ -33,6 +33,7 @@
> >>>
> >>> static const struct of_device_id stmmac_dt_ids[] = {
> >>>
> >>> /* SoC specific glue layers should come before generic
> >>>
> >>> bindings */
> >>> + { .compatible = "rockchip,rk3288-gmac", .data = &rk_gmac_data},
> >>
> >> please name that rk3288_gmac_data [of course the other occurences too]
> >> It makes it easier to see which soc it is meant for and it's also not
> >> save to
> >> assume that the next one will use the same register + bit positions
> >> in the
> >> grf.
> >>
> >>> { .compatible = "amlogic,meson6-dwmac", .data =
> >>>
> >>> &meson6_dwmac_data},
> >>>
> >>> { .compatible = "allwinner,sun7i-a20-gmac", .data =
> >>>
> >>> &sun7i_gmac_data},
> >>>
> >>> { .compatible = "st,stih415-dwmac", .data = &stih4xx_dwmac_data},
> >>>
> >>> @@ -291,6 +292,8 @@ static int stmmac_pltfr_probe(struct
> >>> platform_device
> >>> *pdev) return -ENOMEM;
> >>>
> >>> }
> >>>
> >>> + pdev->dev.platform_data = plat_dat;
> >>> +
> >>>
> >>> ret = stmmac_probe_config_dt(pdev, plat_dat, &mac);
> >>> if (ret) {
> >>>
> >>> pr_err("%s: main dt probe failed", __func__);
> >>>
> >>> diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.h
> >>> b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.h index
> >>> 25dd1f7..32a0516 100644
> >>> --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.h
> >>> +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.h
> >>> @@ -24,5 +24,6 @@ extern const struct stmmac_of_data sun7i_gmac_data;
> >>>
> >>> extern const struct stmmac_of_data stih4xx_dwmac_data;
> >>> extern const struct stmmac_of_data stid127_dwmac_data;
> >>> extern const struct stmmac_of_data socfpga_gmac_data;
> >>>
> >>> +extern const struct stmmac_of_data rk_gmac_data;
> >>>
> >>> #endif /* __STMMAC_PLATFORM_H__ */
^ permalink raw reply
* *****SPAM***** READ.
From: SK @ 2014-12-28 9:28 UTC (permalink / raw)
To: Recipients
This is to request your assistance to execute a lucrative project in Asia. Kindly respond.
^ permalink raw reply
* Re: [PATCH net-next] net: stmmac: add BQL support
From: Dave Taht @ 2014-12-28 16:25 UTC (permalink / raw)
To: Beniamino Galvani
Cc: Giuseppe Cavallaro, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
In-Reply-To: <1419778631-23067-1-git-send-email-b.galvani@gmail.com>
On Sun, Dec 28, 2014 at 6:57 AM, Beniamino Galvani <b.galvani@gmail.com> wrote:
> Add support for Byte Queue Limits to the STMicro MAC driver.
Thank you!
> Tested on a Amlogic S805 Cortex-A5 board, where the use of BQL
> slightly decreases the ping latency from ~10ms to ~3ms when the
> 100Mbps link is saturated by TCP streams. No difference is
> observed at 1Gbps.
I see the plural. With TSQ in place it is hard (without something like
the rrul test driving multiple streams) to drive a driver to
saturation with small numbers of flows. This was with pfifo_fast, not
sch_fq, at 100mbit?
Can this board actually drive a full gigabit in the first place? Until
now most of the low end arm boards I have seen only came with
a 100mbit mac, and the gig ones lacking offloads seemed to peak
out at about 600mbit.
Under my christmas tree landed a quad core A5 (odroid-c1), also an
xgene and zedboard - both of the latter are a-needing BQL,
and I haven't booted the udroid yet. Hopefully it is the
same driver you just improved.
(https://plus.google.com/u/0/107942175615993706558/posts/f1D43umhm7E )
> Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
> ---
> drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
> index 118a427..c5af3d8 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
> @@ -1097,6 +1097,7 @@ static int init_dma_desc_rings(struct net_device *dev, gfp_t flags)
>
> priv->dirty_tx = 0;
> priv->cur_tx = 0;
> + netdev_reset_queue(priv->dev);
>
> stmmac_clear_descriptors(priv);
>
> @@ -1300,6 +1301,7 @@ static void stmmac_dma_operation_mode(struct stmmac_priv *priv)
> static void stmmac_tx_clean(struct stmmac_priv *priv)
> {
> unsigned int txsize = priv->dma_tx_size;
> + unsigned int bytes_compl = 0, pkts_compl = 0;
>
> spin_lock(&priv->tx_lock);
>
> @@ -1356,6 +1358,8 @@ static void stmmac_tx_clean(struct stmmac_priv *priv)
> priv->hw->mode->clean_desc3(priv, p);
>
> if (likely(skb != NULL)) {
> + pkts_compl++;
> + bytes_compl += skb->len;
> dev_consume_skb_any(skb);
> priv->tx_skbuff[entry] = NULL;
> }
> @@ -1364,6 +1368,9 @@ static void stmmac_tx_clean(struct stmmac_priv *priv)
>
> priv->dirty_tx++;
> }
> +
> + netdev_completed_queue(priv->dev, pkts_compl, bytes_compl);
> +
> if (unlikely(netif_queue_stopped(priv->dev) &&
> stmmac_tx_avail(priv) > STMMAC_TX_THRESH(priv))) {
> netif_tx_lock(priv->dev);
> @@ -1418,6 +1425,7 @@ static void stmmac_tx_err(struct stmmac_priv *priv)
> (i == txsize - 1));
> priv->dirty_tx = 0;
> priv->cur_tx = 0;
> + netdev_reset_queue(priv->dev);
> priv->hw->dma->start_tx(priv->ioaddr);
>
> priv->dev->stats.tx_errors++;
> @@ -2049,6 +2057,7 @@ static netdev_tx_t stmmac_xmit(struct sk_buff *skb, struct net_device *dev)
> skb_tx_timestamp(skb);
>
> priv->hw->dma->enable_dma_transmission(priv->ioaddr);
> + netdev_sent_queue(dev, skb->len);
>
> spin_unlock(&priv->tx_lock);
> return NETDEV_TX_OK;
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Dave Täht
thttp://www.bufferbloat.net/projects/bloat/wiki/Upcoming_Talks
^ permalink raw reply
* RE: [scsi/net-next]Pull csiostor from net-next
From: Praveen Madhavan @ 2014-12-28 15:13 UTC (permalink / raw)
To: hch@infradead.org; +Cc: linux-scsi@vger.kernel.org, netdev@vger.kernel.org
In-Reply-To: <20141227150917.GA16964@infradead.org>
> How much do you plan to send for the 3.20 window? I'd rather avoid
> having to pull in the net-next tree and merge everything through Dave
> if that seems feasible.
I hv couple of patches fixes for 3.20 window. Can you please pull from linux-next tree ?
________________________________________
From: linux-scsi-owner@vger.kernel.org [linux-scsi-owner@vger.kernel.org] on behalf of hch@infradead.org [hch@infradead.org]
Sent: Saturday, December 27, 2014 8:39 PM
To: Praveen Madhavan
Cc: linux-scsi@vger.kernel.org; netdev@vger.kernel.org
Subject: Re: [scsi/net-next]Pull csiostor from net-next
[fixing the netdev address]
On Sat, Dec 27, 2014 at 06:59:56AM -0800, hch@infradead.org wrote:
> On Wed, Dec 24, 2014 at 05:51:27PM +0000, Praveen Madhavan wrote:
> > Hi Christoph,
> > Can u please pull the csiostor changes from net-next ?. I need these changes to submit next fixes in scsi tree.
>
> How much do you plan to send for the 3.20 window? I'd rather avoid
> having to pull in the net-next tree and merge everything through Dave
> if that seems feasible.
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
---end quoted text---
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* [PATCH net-next] net: stmmac: add BQL support
From: Beniamino Galvani @ 2014-12-28 14:57 UTC (permalink / raw)
To: David S. Miller
Cc: Giuseppe Cavallaro, netdev, linux-kernel, Beniamino Galvani
Add support for Byte Queue Limits to the STMicro MAC driver.
Tested on a Amlogic S805 Cortex-A5 board, where the use of BQL
slightly decreases the ping latency from ~10ms to ~3ms when the
100Mbps link is saturated by TCP streams. No difference is
observed at 1Gbps.
Signed-off-by: Beniamino Galvani <b.galvani@gmail.com>
---
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index 118a427..c5af3d8 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -1097,6 +1097,7 @@ static int init_dma_desc_rings(struct net_device *dev, gfp_t flags)
priv->dirty_tx = 0;
priv->cur_tx = 0;
+ netdev_reset_queue(priv->dev);
stmmac_clear_descriptors(priv);
@@ -1300,6 +1301,7 @@ static void stmmac_dma_operation_mode(struct stmmac_priv *priv)
static void stmmac_tx_clean(struct stmmac_priv *priv)
{
unsigned int txsize = priv->dma_tx_size;
+ unsigned int bytes_compl = 0, pkts_compl = 0;
spin_lock(&priv->tx_lock);
@@ -1356,6 +1358,8 @@ static void stmmac_tx_clean(struct stmmac_priv *priv)
priv->hw->mode->clean_desc3(priv, p);
if (likely(skb != NULL)) {
+ pkts_compl++;
+ bytes_compl += skb->len;
dev_consume_skb_any(skb);
priv->tx_skbuff[entry] = NULL;
}
@@ -1364,6 +1368,9 @@ static void stmmac_tx_clean(struct stmmac_priv *priv)
priv->dirty_tx++;
}
+
+ netdev_completed_queue(priv->dev, pkts_compl, bytes_compl);
+
if (unlikely(netif_queue_stopped(priv->dev) &&
stmmac_tx_avail(priv) > STMMAC_TX_THRESH(priv))) {
netif_tx_lock(priv->dev);
@@ -1418,6 +1425,7 @@ static void stmmac_tx_err(struct stmmac_priv *priv)
(i == txsize - 1));
priv->dirty_tx = 0;
priv->cur_tx = 0;
+ netdev_reset_queue(priv->dev);
priv->hw->dma->start_tx(priv->ioaddr);
priv->dev->stats.tx_errors++;
@@ -2049,6 +2057,7 @@ static netdev_tx_t stmmac_xmit(struct sk_buff *skb, struct net_device *dev)
skb_tx_timestamp(skb);
priv->hw->dma->enable_dma_transmission(priv->ioaddr);
+ netdev_sent_queue(dev, skb->len);
spin_unlock(&priv->tx_lock);
return NETDEV_TX_OK;
--
2.1.4
^ permalink raw reply related
* refactoring cdc_ncm
From: Enrico Mioso @ 2014-12-28 14:53 UTC (permalink / raw)
To: Bjørn Mork; +Cc: linux-usb@vger.kernel.org, netdev@vger.kernel.org
In-Reply-To: <8761dqjuuh.fsf@nemi.mork.no>
Hello everyone, hello Bjorn.
Sorry for my prevous private mail, didn't think about it.
So I was wondering how it could be possible to refactor the cdc_ncm.c driver to
queue frames and only when enough data was collected, generate a full NCM
packet.
so I am trying to get clear what's the way to go.
My idea was to try to not change the layout of the code so much: I would like
not breaking cdc_mbim.c and other code sharing some of these functions, so all
of the work would be done in the cdc_ncm_fill_tx_frame function.
Before starting with code, I would like to organize ideas:
- when an SKB comes in, if the queue isn't empty, I would queue it
Somethink like
if (skb_queue_empty(ctx->skb_tx_queue)){
skb_insert(skb);
} else {
ready2send=1;
}
- at this point, performs some check to see if we have enough data:how can I do
so? What should I check? Sizes of nth16 + ntb16 + ... ?
- if not enough data is present, exit the function returning NULL
else
- invoke some functions to prepare the NCM packet
I plan to move / rewrite the needed code to isolate it completely from the
queue logic: making it also a little bit more clear. I would like to have
separate functions for any parts of the NCM packet construction.
This would allow better flexibility and probably less maintenance burden in the
long run, and might open the road to extending the driver to support 32-bit NCM
and different signness handling.
In the current code, we are carrying around the "sign" variable in the
cdc_ncm_fill_tx_frame: why? Can different NCM packets have different sign
settings?
Thank you guys, waiting for your replies,
Enrico
^ permalink raw reply
* [PATCH iproute2] man ss: Add state filter description
From: Vadim Kochan @ 2014-12-28 11:39 UTC (permalink / raw)
To: netdev; +Cc: Vadim Kochan
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2191 bytes --]
From: Vadim Kochan <vadim4j@gmail.com>
Stolen from generated doc/ss.html
Also added reference to RFC 739 for TCP states.
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
---
man/man8/ss.8 | 41 +++++++++++++++++++++++++++++++++++++++--
1 file changed, 39 insertions(+), 2 deletions(-)
diff --git a/man/man8/ss.8 b/man/man8/ss.8
index 2a4bbc5..f4b709b 100644
--- a/man/man8/ss.8
+++ b/man/man8/ss.8
@@ -127,8 +127,41 @@ Do not display anything, just dump raw information about TCP sockets to FILE aft
Read filter information from FILE.
Each line of FILE is interpreted like single command line option. If FILE is - stdin is used.
.TP
-.B FILTER := [ state TCP-STATE ] [ EXPRESSION ]
+.B FILTER := [ state STATE-FILTER ] [ EXPRESSION ]
Please take a look at the official documentation (Debian package iproute-doc) for details regarding filters.
+
+.SH STATE-FILTER
+
+.B STATE-FILTER
+allows to construct arbitrary set of states to match. Its syntax is sequence of keywords state and exclude followed by identifier of state.
+.TP
+Available identifiers are:
+
+All standard TCP states:
+.BR established ", " syn-sent ", " syn-recv ", " fin-wait-1 ", " fin-wait-2 ", " time-wait ", " closed ", " close-wait ", " last-ack ", "
+.BR listen " and " closing.
+
+.B all
+- for all the states
+
+.B connected
+- all the states except for
+.BR listen " and " closed
+
+.B synchronized
+- all the
+.B connected
+states except for
+.B syn-sent
+
+.B bucket
+- states, which are maintained as minisockets, i.e.
+.BR time-wait " and " syn-recv
+
+.B big
+- opposite to
+.B bucket
+
.SH USAGE EXAMPLES
.TP
.B ss -t -a
@@ -150,7 +183,11 @@ Find all local processes connected to X server.
List all the tcp sockets in state FIN-WAIT-1 for our apache to network 193.233.7/24 and look at their timers.
.SH SEE ALSO
.BR ip (8),
-.BR /usr/share/doc/iproute-doc/ss.html " (package iproutedoc)"
+.BR /usr/share/doc/iproute-doc/ss.html " (package iproutedoc)",
+.br
+.BR RFC " 793 "
+- https://tools.ietf.org/rfc/rfc793.txt (TCP states)
+
.SH AUTHOR
.I ss
was written by Alexey Kuznetosv, <kuznet@ms2.inr.ac.ru>.
--
2.1.3
^ permalink raw reply related
* [PATCH iproute2] man tc: Add description for -graph option
From: Vadim Kochan @ 2014-12-28 10:33 UTC (permalink / raw)
To: netdev; +Cc: Vadim Kochan
From: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
---
man/man8/tc.8 | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/man/man8/tc.8 b/man/man8/tc.8
index d8f974f..a6aed0a 100644
--- a/man/man8/tc.8
+++ b/man/man8/tc.8
@@ -70,7 +70,8 @@ DEV
\fB\-d\fR[\fIetails\fR] |
\fB\-r\fR[\fIaw\fR] |
\fB\-p\fR[\fIretty\fR] |
-\fB\-i\fR[\fIec\fR] }
+\fB\-i\fR[\fIec\fR] |
+\fB\-g\fR[\fIraph\fR] }
.SH DESCRIPTION
.B Tc
@@ -475,6 +476,25 @@ decode filter offset and mask values to equivalent filter commands based on TCP/
.BR "\-iec"
print rates in IEC units (ie. 1K = 1024).
+.TP
+.BR "\-g", " \-graph"
+shows classes as ASCII graph. Prints generic stats info under each class if
+.BR "-s"
+option was specified. Classes can be filtered only by
+.BR "dev"
+option.
+
+.SH "EXAMPLES"
+.PP
+tc -g class show dev eth0
+.RS 4
+Shows classes as ASCII graph on eth0 interface.
+.RE
+.PP
+tc -g -s class show dev eth0
+.RS 4
+Shows classes as ASCII graph with stats info under each class.
+
.SH HISTORY
.B tc
was written by Alexey N. Kuznetsov and added in Linux 2.2.
--
2.1.3
^ permalink raw reply related
* [PATCH iproute2] ip: Small corrections of '-tshort' option in usage
From: Vadim Kochan @ 2014-12-28 9:47 UTC (permalink / raw)
To: netdev; +Cc: Vadim Kochan
From: Vadim Kochan <vadim4j@gmail.com>
Fixed -t[short] to -ts[hort] as '-t' is related to
-timestamp option.
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
---
ip/ip.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ip/ip.c b/ip/ip.c
index 61cc9c3..850a001 100644
--- a/ip/ip.c
+++ b/ip/ip.c
@@ -54,7 +54,7 @@ static void usage(void)
" -f[amily] { inet | inet6 | ipx | dnet | bridge | link } |\n"
" -4 | -6 | -I | -D | -B | -0 |\n"
" -l[oops] { maximum-addr-flush-attempts } |\n"
-" -o[neline] | -t[imestamp] | -t[short] | -b[atch] [filename] |\n"
+" -o[neline] | -t[imestamp] | -ts[hort] | -b[atch] [filename] |\n"
" -rc[vbuf] [size] | -n[etns] name }\n");
exit(-1);
}
--
2.1.3
^ permalink raw reply related
* Re: net.git: Call-trace after "Merge branch 'netlink_multicast'"
From: Sedat Dilek @ 2014-12-28 9:39 UTC (permalink / raw)
To: Johannes Berg; +Cc: netdev@vger.kernel.org, David S. Miller, Fengguang Wu
In-Reply-To: <CA+icZUWFq0FT5QQThKeeVw4=-41R7W0Q7zv53ZCY9=B6AJvf7w@mail.gmail.com>
On Sun, Dec 28, 2014 at 7:22 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Sun, Dec 28, 2014 at 6:39 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> [ ... ]
>> [ CCing Fengguang Wu who reported the same issue on LKML (see [0]) ]
>>
>> Was "netlink/genetlink: pass network namespace to bind/unbind" patch
>> [1] forgotten in this 'netlink_multicast' merge?
>
> OK, this patch is additional and on top of "[PATCH 0/5]
> netlink/genetlink cleanups & multicast improvements"
>
Thanks, now I can see that patch in net.git#master.
- Sedat -
[1] http://git.kernel.org/cgit/linux/kernel/git/davem/net.git/commit/?id=023e2cfa36c31b0ad28c159a1bb0d61ff57334c8
^ permalink raw reply
* Re: net.git: Call-trace after "Merge branch 'netlink_multicast'"
From: Sedat Dilek @ 2014-12-28 9:34 UTC (permalink / raw)
To: Johannes Berg; +Cc: netdev@vger.kernel.org, David S. Miller, Fengguang Wu
In-Reply-To: <CA+icZUU1-o7m9iYNpHyitpbS8W=+mk-ZbBXiK2Zgow2TDnBo1Q@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 398 bytes --]
On Sun, Dec 28, 2014 at 8:54 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> Just a small thing, if you look at this...
>
> With gcc-4.9.2 I see this warning in my logs...
>
> net/netlink/genetlink.c: In function 'genl_bind':
> net/netlink/genetlink.c:1018:2: warning: 'err' may be used
> uninitialized in this function [-Wmaybe-uninitialized]
>
Attached patch fixes the issue for me.
- Sedat -
[-- Attachment #2: 0002-genetlink-Fix-uninitialized-err-variable-in-genl_bin.patch --]
[-- Type: text/x-diff, Size: 1218 bytes --]
From af3eaa7a784be23db14a4a0f509ded474e6e0852 Mon Sep 17 00:00:00 2001
From: Sedat Dilek <sedat.dilek@gmail.com>
Date: Sun, 28 Dec 2014 09:21:12 +0100
Subject: [PATCH] genetlink: Fix uninitialized err variable in genl_bind()
This fixes the following compilere (here: gcc-4.9) warning:
net/netlink/genetlink.c: In function 'genl_bind':
net/netlink/genetlink.c:1018:2: warning: 'err' may be used uninitialized in this function [-Wmaybe-uninitialized]
CC: Johannes Berg <johannes.berg@intel.com>
CC: "David S. Miller" <davem@davemloft.net>
CC: "linux-netdev" <netdev@vger.kernel.org>
Fixes: c380d9a7afff ("genetlink: pass multicast bind/unbind to families")
Reported-by: Sedat Dilek <sedat.dilek@gmail.com>
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
---
net/netlink/genetlink.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c
index 5cfbcea..44ad6e3 100644
--- a/net/netlink/genetlink.c
+++ b/net/netlink/genetlink.c
@@ -985,7 +985,7 @@ static struct genl_multicast_group genl_ctrl_groups[] = {
static int genl_bind(struct net *net, int group)
{
- int i, err;
+ int err = 0, i;
bool found = false;
down_read(&cb_lock);
--
2.2.1
^ permalink raw reply related
* Re: net.git: Call-trace after "Merge branch 'netlink_multicast'"
From: Sedat Dilek @ 2014-12-28 7:54 UTC (permalink / raw)
To: Johannes Berg; +Cc: netdev@vger.kernel.org, David S. Miller, Fengguang Wu
In-Reply-To: <CA+icZUWFq0FT5QQThKeeVw4=-41R7W0Q7zv53ZCY9=B6AJvf7w@mail.gmail.com>
Just a small thing, if you look at this...
With gcc-4.9.2 I see this warning in my logs...
net/netlink/genetlink.c: In function 'genl_bind':
net/netlink/genetlink.c:1018:2: warning: 'err' may be used
uninitialized in this function [-Wmaybe-uninitialized]
- Sedat -
P.S.: Some gcc-4.9 outputs
$ cat /proc/version
Linux version 3.19.0-rc1-58.2-iniza-small
(sedat.dilek@gmail.com@fambox) (gcc version 4.9.2 (Ubuntu
4.9.2-0ubuntu1~12.04) ) #1 SMP Sun Dec 28 08:09:51 CET 2014
$ gcc-4.9 -v
Using built-in specs.
COLLECT_GCC=gcc-4.9
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.9/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu
4.9.2-0ubuntu1~12.04'
--with-bugurl=file:///usr/share/doc/gcc-4.9/README.Bugs
--enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr
--program-suffix=-4.9 --enable-shared --enable-linker-build-id
--libexecdir=/usr/lib --without-included-gettext
--enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.9
--libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu
--enable-libstdcxx-debug --enable-libstdcxx-time=yes
--enable-gnu-unique-object --disable-vtable-verify --enable-plugin
--with-system-zlib --disable-browser-plugin --enable-java-awt=gtk
--enable-gtk-cairo
--with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64/jre
--enable-java-home
--with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.9-amd64
--with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.9-amd64
--with-arch-directory=amd64
--with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc
--enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64
--with-multilib-list=m32,m64 --enable-multilib --with-tune=generic
--enable-checking=release --build=x86_64-linux-gnu
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.9.2 (Ubuntu 4.9.2-0ubuntu1~12.04)
^ permalink raw reply
* Re: [PATCH net] netlink: call cond_resched after broadcasting updates
From: Sedat Dilek @ 2014-12-28 7:28 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: David Miller, Johannes Berg, netdev@vger.kernel.org
[-- Attachment #1: Type: text/plain, Size: 3486 bytes --]
Hi,
with your patch on top of upstream.git (Linux-v3.19-rc1-58-g29169f8)
plus net.git#master and some patches from Johannes...
>From my patchset:
...
Johannes Berg (6):
netlink: rename netlink_unbind() to netlink_undo_bind()
genetlink: pass only network namespace to genl_has_listeners()
netlink: update listeners directly when removing socket
netlink: call unbind when releasing socket
genetlink: pass multicast bind/unbind to families
netlink/genetlink: pass network namespace to bind/unbind <---
>From jojojohill!
...
stephen hemminger (2):
in6: fix conflict with glibc
netlink: call cond_resched after broadcasting updates <--- Your patch!
...
...I get a call-trace like this...
[ 16.378240] BUG: sleeping function called from invalid context at
net/netlink/af_netlink.c:1989
[ 16.378312] in_atomic(): 1, irqs_disabled(): 0, pid: 1061, name: ifconfig
[ 16.378346] 2 locks held by ifconfig/1061:
[ 16.378348] #0: (rtnl_mutex){+.+.+.}, at: [<ffffffff81678287>]
rtnl_lock+0x17/0x20
[ 16.378358] #1: (rcu_read_lock_bh){......}, at:
[<ffffffff817091c5>] ipv6_ifa_notify+0x5/0xa0
[ 16.378367] CPU: 2 PID: 1061 Comm: ifconfig Not tainted
3.19.0-rc1-58.2-iniza-small #1
[ 16.378369] Hardware name: SAMSUNG ELECTRONICS CO., LTD.
530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
[ 16.378371] 0000000000000008 ffff8800c092fab8 ffffffff8175b5bc
0000000000000005
[ 16.378375] ffff88011a6c6800 ffff8800c092fac8 ffffffff8109c34a
ffff8800c092fb48
[ 16.378378] ffffffff8169500e ffff8800c47cc06c 0000000000000000
00000020cbdcd400
[ 16.378381] Call Trace:
[ 16.378387] [<ffffffff8175b5bc>] dump_stack+0x4c/0x65
[ 16.378391] [<ffffffff8109c34a>] ___might_sleep+0xfa/0x130
[ 16.378395] [<ffffffff8169500e>] netlink_broadcast_filtered+0x10e/0x3a0
[ 16.378399] [<ffffffff81696df5>] nlmsg_notify+0xd5/0xf0
[ 16.378402] [<ffffffff816786db>] rtnl_notify+0x3b/0x40
[ 16.378404] [<ffffffff81708fcb>] __ipv6_ifa_notify+0x15b/0x350
[ 16.378407] [<ffffffff81709226>] ipv6_ifa_notify+0x66/0xa0
[ 16.378410] [<ffffffff817091c5>] ? ipv6_ifa_notify+0x5/0xa0
[ 16.378414] [<ffffffff81764949>] ? _raw_spin_unlock_bh+0x39/0x40
[ 16.378417] [<ffffffff8170d072>] addrconf_notify+0x3b2/0x7f0
[ 16.378421] [<ffffffff8109736d>] notifier_call_chain+0x4d/0x80
[ 16.378424] [<ffffffff81097466>] raw_notifier_call_chain+0x16/0x20
[ 16.378427] [<ffffffff81662739>] call_netdevice_notifiers_info+0x39/0x70
[ 16.378431] [<ffffffff8166bbeb>] __dev_notify_flags+0x3b/0xc0
[ 16.378434] [<ffffffff8166c3e3>] dev_change_flags+0x53/0x70
[ 16.378437] [<ffffffff816dc9d9>] devinet_ioctl+0x609/0x6d0
[ 16.378441] [<ffffffff816dd955>] inet_ioctl+0x65/0x90
[ 16.378444] [<ffffffff8164a8c9>] sock_do_ioctl+0x29/0x60
[ 16.378447] [<ffffffff8164ae6b>] sock_ioctl+0x1bb/0x260
[ 16.378452] [<ffffffff8120a668>] do_vfs_ioctl+0x308/0x540
[ 16.378456] [<ffffffff810c2e5d>] ? trace_hardirqs_on_caller+0x15d/0x200
[ 16.378459] [<ffffffff810c2f0d>] ? trace_hardirqs_on+0xd/0x10
[ 16.378462] [<ffffffff8120a921>] SyS_ioctl+0x81/0xa0
[ 16.378466] [<ffffffff817654ad>] system_call_fastpath+0x16/0x1b
I am using here Ubuntu/precise (12.04.5 LTS) with Network-Manager
(0.9.4.0-0ubuntu4.4.2) to setup and configure my network.
Attached are my... kernel-config, dmesg and patchset on top of Linux v3.19-rc1.
If you need additional informations, please contact me.
Regards,
- Sedat -
[-- Attachment #2: dmesg_3.19.0-rc1-58.2-iniza-small.txt --]
[-- Type: text/plain, Size: 56675 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.19.0-rc1-58.2-iniza-small (sedat.dilek@gmail.com@fambox) (gcc version 4.9.2 (Ubuntu 4.9.2-0ubuntu1~12.04) ) #1 SMP Sun Dec 28 08:09:51 CET 2014
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.19.0-rc1-58.2-iniza-small root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Disabled fast string operations
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000d9c9efff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d9c9f000-0x00000000dae7efff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dae7f000-0x00000000daf9efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000db000000-0x00000000df9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fdfffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] e820: last_pfn = 0x11fe00 max_arch_pfn = 0x400000000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask F80000000 write-back
[ 0.000000] 1 base 080000000 mask FC0000000 write-back
[ 0.000000] 2 base 0C0000000 mask FE0000000 write-back
[ 0.000000] 3 base 0DC000000 mask FFC000000 uncachable
[ 0.000000] 4 base 0DB000000 mask FFF000000 uncachable
[ 0.000000] 5 base 100000000 mask FE0000000 write-back
[ 0.000000] 6 base 11FE00000 mask FFFE00000 uncachable
[ 0.000000] 7 base 0FFC00000 mask FFFC00000 write-protect
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] PAT configuration [0-7]: WB WC UC- UC WB WC UC- UC
[ 0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [mem 0x000f00e0-0x000f00ef] mapped at [ffff8800000f00e0]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[ 0.000000] reserving inaccessible SNB gfx pages
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x02caa000, 0x02caafff] PGTABLE
[ 0.000000] BRK [0x02cab000, 0x02cabfff] PGTABLE
[ 0.000000] BRK [0x02cac000, 0x02cacfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x11fc00000-0x11fdfffff]
[ 0.000000] [mem 0x11fc00000-0x11fdfffff] page 2M
[ 0.000000] BRK [0x02cad000, 0x02cadfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11fbfffff]
[ 0.000000] [mem 0x11c000000-0x11fbfffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff]
[ 0.000000] [mem 0x100000000-0x11bffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff]
[ 0.000000] [mem 0x00100000-0x001fffff] page 4k
[ 0.000000] [mem 0x00200000-0x1fffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x20200000-0x3fffffff]
[ 0.000000] [mem 0x20200000-0x3fffffff] page 2M
[ 0.000000] init_memory_mapping: [mem 0x40200000-0xd9c9efff]
[ 0.000000] [mem 0x40200000-0xd9bfffff] page 2M
[ 0.000000] [mem 0xd9c00000-0xd9c9efff] page 4k
[ 0.000000] BRK [0x02cae000, 0x02caefff] PGTABLE
[ 0.000000] BRK [0x02caf000, 0x02caffff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0xdafff000-0xdaffffff]
[ 0.000000] [mem 0xdafff000-0xdaffffff] page 4k
[ 0.000000] RAMDISK: [mem 0x37938000-0x37c93fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0100 000024 (v02 SECCSD)
[ 0.000000] ACPI: XSDT 0x00000000DAFFE170 00008C (v01 SECCSD LH43STAR 00000002 PTEC 00000002)
[ 0.000000] ACPI: FACP 0x00000000DAFEF000 00010C (v05 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: DSDT 0x00000000DAFF2000 0083AC (v02 SECCSD SNB-CPT 00000000 INTL 20061109)
[ 0.000000] ACPI: FACS 0x00000000DAF47000 000040
[ 0.000000] ACPI: SLIC 0x00000000DAFFD000 000176 (v01 SECCSD LH43STAR 00000002 PTEC 00000001)
[ 0.000000] ACPI: SSDT 0x00000000DAFFB000 001068 (v01 SECCSD PtidDevc 00001000 INTL 20061109)
[ 0.000000] ACPI: ASF! 0x00000000DAFF1000 0000A5 (v32 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: HPET 0x00000000DAFEE000 000038 (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: APIC 0x00000000DAFED000 000098 (v03 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: MCFG 0x00000000DAFEC000 00003C (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: SSDT 0x00000000DAFEB000 000804 (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
[ 0.000000] ACPI: SSDT 0x00000000DAFEA000 000996 (v01 PmRef CpuPm 00003000 INTL 20061109)
[ 0.000000] ACPI: UEFI 0x00000000DAFE9000 00003E (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: UEFI 0x00000000DAFE8000 000042 (v01 PTL COMBUF 00000001 PTL 00000001)
[ 0.000000] ACPI: UEFI 0x00000000DAFE7000 00026A (v01 SECCSD LH43STAR 00000002 PTL 00000002)
[ 0.000000] ACPI: SSDT 0x00000000DAFE6000 0000D0 (v01 Iffs IffsAsl 00003000 INTL 20061109)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011fdfffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x11fdf8000-0x11fdfcfff]
[ 0.000000] [ffffea0000000000-ffffea00047fffff] PMD -> [ffff88011b400000-ffff88011f3fffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
[ 0.000000] Normal [mem 0x100000000-0x11fdfffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009cfff]
[ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
[ 0.000000] node 0: [mem 0x20200000-0x3fffffff]
[ 0.000000] node 0: [mem 0x40200000-0xd9c9efff]
[ 0.000000] node 0: [mem 0xdafff000-0xdaffffff]
[ 0.000000] node 0: [mem 0x100000000-0x11fdfffff]
[ 0.000000] Initmem setup node 0 [mem 0x00001000-0x11fdfffff]
[ 0.000000] On node 0 totalpages: 1021500
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 156 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 13859 pages used for memmap
[ 0.000000] DMA32 zone: 886944 pages, LIFO batch:31
[ 0.000000] Normal zone: 2040 pages used for memmap
[ 0.000000] Normal zone: 130560 pages, LIFO batch:31
[ 0.000000] Reserving Intel graphics stolen memory at 0xdba00000-0xdf9fffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x0e] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 14, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xd9c9f000-0xdae7efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdae7f000-0xdaf9efff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[ 0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 32 pages/cpu @ffff88011fa00000 s91456 r8192 d31424 u262144
[ 0.000000] pcpu-alloc: s91456 r8192 d31424 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1005381
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.19.0-rc1-58.2-iniza-small root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form
[ 0.000000] AGP: Checking aperture...
[ 0.000000] AGP: No AGP bridge found
[ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
[ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.000000] Memory: 3919088K/4086000K available (7594K kernel code, 1284K rwdata, 3372K rodata, 1380K init, 14360K bss, 166912K reserved, 0K cma-reserved)
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.000000] NR_IRQS:16640 nr_irqs:488 16
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[ 0.000000] ... MAX_LOCKDEP_SUBCLASSES: 8
[ 0.000000] ... MAX_LOCK_DEPTH: 48
[ 0.000000] ... MAX_LOCKDEP_KEYS: 8191
[ 0.000000] ... CLASSHASH_SIZE: 4096
[ 0.000000] ... MAX_LOCKDEP_ENTRIES: 32768
[ 0.000000] ... MAX_LOCKDEP_CHAINS: 65536
[ 0.000000] ... CHAINHASH_SIZE: 32768
[ 0.000000] memory used by lock dependency info: 8159 kB
[ 0.000000] per task-struct memory footprint: 1920 bytes
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1596.498 MHz processor
[ 0.000075] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.99 BogoMIPS (lpj=6385992)
[ 0.000083] pid_max: default: 32768 minimum: 301
[ 0.000105] ACPI: Core revision 20141107
[ 0.018140] ACPI: All ACPI Tables successfully acquired
[ 0.030192] Security Framework initialized
[ 0.030205] AppArmor: AppArmor initialized
[ 0.030208] Yama: becoming mindful.
[ 0.031122] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.032427] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.032907] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.032927] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.033953] Initializing cgroup subsys memory
[ 0.033969] Initializing cgroup subsys devices
[ 0.033999] Initializing cgroup subsys freezer
[ 0.034026] Initializing cgroup subsys blkio
[ 0.034033] Initializing cgroup subsys perf_event
[ 0.034042] Initializing cgroup subsys hugetlb
[ 0.034116] Disabled fast string operations
[ 0.034120] CPU: Physical Processor ID: 0
[ 0.034123] CPU: Processor Core ID: 0
[ 0.034130] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.034130] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[ 0.034139] mce: CPU supports 7 MCE banks
[ 0.034154] CPU0: Thermal monitoring enabled (TM1)
[ 0.034175] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.034175] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.034374] Freeing SMP alternatives memory: 24K (ffffffff81e9c000 - ffffffff81ea2000)
[ 0.035653] ftrace: allocating 28200 entries in 111 pages
[ 0.052246] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.091938] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (fam: 06, model: 2a, stepping: 07)
[ 0.091953] TSC deadline timer enabled
[ 0.091995] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[ 0.092032] ... version: 3
[ 0.092035] ... bit width: 48
[ 0.092038] ... generic registers: 4
[ 0.092041] ... value mask: 0000ffffffffffff
[ 0.092044] ... max period: 0000ffffffffffff
[ 0.092047] ... fixed-purpose events: 3
[ 0.092050] ... event mask: 000000070000000f
[ 0.093601] x86: Booting SMP configuration:
[ 0.093606] .... node #0, CPUs: #1
[ 0.104559] Disabled fast string operations
[ 0.107015] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.107413] #2
[ 0.118361] Disabled fast string operations
[ 0.120835] #3<6>[ 0.131785] Disabled fast string operations
[ 0.133944] x86: Booted up 1 node, 4 CPUs
[ 0.133953] smpboot: Total of 4 processors activated (12771.98 BogoMIPS)
[ 0.138634] devtmpfs: initialized
[ 0.143963] evm: security.selinux
[ 0.143968] evm: security.SMACK64
[ 0.143970] evm: security.capability
[ 0.144113] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
[ 0.145526] NET: Registered protocol family 16
[ 0.158044] cpuidle: using governor ladder
[ 0.168521] cpuidle: using governor menu
[ 0.168691] ACPI: bus type PCI registered
[ 0.168944] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.168951] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.169082] PCI: Using configuration type 1 for base access
[ 0.185999] ACPI: Added _OSI(Module Device)
[ 0.186006] ACPI: Added _OSI(Processor Device)
[ 0.186009] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.186013] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.197747] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.204558] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[ 0.206170] ACPI: Dynamic OEM Table Load:
[ 0.206194] ACPI: SSDT 0xFFFF88011A4DD000 000688 (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
[ 0.208174] ACPI: Dynamic OEM Table Load:
[ 0.208195] ACPI: SSDT 0xFFFF88011A7B8400 000303 (v01 PmRef ApIst 00003000 INTL 20061109)
[ 0.210040] ACPI: Dynamic OEM Table Load:
[ 0.210060] ACPI: SSDT 0xFFFF88011A4DFA00 000119 (v01 PmRef ApCst 00003000 INTL 20061109)
[ 0.214501] ACPI: Interpreter enabled
[ 0.214522] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
[ 0.214572] ACPI: (supports S0 S1 S3 S4 S5)
[ 0.214575] ACPI: Using IOAPIC for interrupt routing
[ 0.214638] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.231745] ACPI: Power Resource [FN00] (off)
[ 0.232107] ACPI: Power Resource [FN01] (off)
[ 0.232376] ACPI: Power Resource [FN02] (off)
[ 0.232646] ACPI: Power Resource [FN03] (off)
[ 0.232911] ACPI: Power Resource [FN04] (off)
[ 0.234922] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.234933] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.235407] \_SB_.PCI0:_OSC invalid UUID
[ 0.235410] _OSC request data:1 1f 0
[ 0.235415] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[ 0.236587] PCI host bridge to bus 0000:00
[ 0.236594] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.236599] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.236603] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
[ 0.236607] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.236611] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff]
[ 0.236616] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
[ 0.236664] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[ 0.236997] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[ 0.237018] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[ 0.237029] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.237036] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.237421] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[ 0.237464] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
[ 0.237614] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.237922] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[ 0.237961] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
[ 0.238150] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.238416] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[ 0.238452] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
[ 0.238625] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.238786] pci 0000:00:1b.0: System wakeup disabled by ACPI
[ 0.238923] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[ 0.239099] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.239244] pci 0000:00:1c.0: System wakeup disabled by ACPI
[ 0.239382] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[ 0.239557] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.239690] pci 0000:00:1c.3: System wakeup disabled by ACPI
[ 0.239827] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[ 0.240006] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.240279] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[ 0.240317] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
[ 0.240496] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.240749] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
[ 0.241156] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[ 0.241199] pci 0000:00:1f.2: reg 0x10: [io 0x3088-0x308f]
[ 0.241216] pci 0000:00:1f.2: reg 0x14: [io 0x3094-0x3097]
[ 0.241232] pci 0000:00:1f.2: reg 0x18: [io 0x3080-0x3087]
[ 0.241249] pci 0000:00:1f.2: reg 0x1c: [io 0x3090-0x3093]
[ 0.241265] pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f]
[ 0.241282] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
[ 0.241397] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.241647] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[ 0.241679] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
[ 0.241728] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf]
[ 0.242414] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
[ 0.242774] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
[ 0.244483] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[ 0.244802] pci 0000:01:00.0: System wakeup disabled by ACPI
[ 0.250309] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.250323] pci 0000:00:1c.0: bridge window [mem 0xf0600000-0xf06fffff]
[ 0.250560] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[ 0.250652] pci 0000:02:00.0: reg 0x10: [io 0x2000-0x20ff]
[ 0.250789] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
[ 0.250873] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
[ 0.251346] pci 0000:02:00.0: supports D1 D2
[ 0.251348] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.251502] pci 0000:02:00.0: System wakeup disabled by ACPI
[ 0.258206] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.258215] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
[ 0.258230] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.258437] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[ 0.258485] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
[ 0.258757] pci 0000:03:00.0: PME# supported from D3hot D3cold
[ 0.259004] pci 0000:00:1c.4: PCI bridge to [bus 03]
[ 0.259017] pci 0000:00:1c.4: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.260732] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.260871] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.261010] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.261144] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[ 0.261276] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[ 0.261410] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[ 0.261543] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[ 0.261676] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[ 0.262764] ACPI: Enabled 4 GPEs in block 00 to 3F
[ 0.262888] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[ 0.263239] ACPI : EC: 0 stale EC events cleared
[ 0.263875] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.263880] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.263891] vgaarb: loaded
[ 0.263894] vgaarb: bridge control possible 0000:00:02.0
[ 0.264496] SCSI subsystem initialized
[ 0.264637] libata version 3.00 loaded.
[ 0.264721] ACPI: bus type USB registered
[ 0.264782] usbcore: registered new interface driver usbfs
[ 0.264813] usbcore: registered new interface driver hub
[ 0.264876] usbcore: registered new device driver usb
[ 0.265242] PCI: Using ACPI for IRQ routing
[ 0.268913] PCI: pci_cache_line_size set to 64 bytes
[ 0.269040] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[ 0.269048] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
[ 0.269050] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[ 0.269053] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
[ 0.269680] NetLabel: Initializing
[ 0.269684] NetLabel: domain hash size = 128
[ 0.269687] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.269734] NetLabel: unlabeled traffic allowed by default
[ 0.269900] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.269911] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.271999] Switched to clocksource hpet
[ 0.310348] AppArmor: AppArmor Filesystem Enabled
[ 0.310574] pnp: PnP ACPI init
[ 0.311180] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.311187] system 00:00: [io 0x1000-0x100f] has been reserved
[ 0.311192] system 00:00: [io 0x5000-0x5003] has been reserved
[ 0.311197] system 00:00: [io 0xffff] has been reserved
[ 0.311202] system 00:00: [io 0x0400-0x0453] could not be reserved
[ 0.311207] system 00:00: [io 0x0458-0x047f] has been reserved
[ 0.311212] system 00:00: [io 0x0500-0x057f] has been reserved
[ 0.311217] system 00:00: [io 0x0a00-0x0a0f] has been reserved
[ 0.311221] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.311227] system 00:00: [io 0x5000-0x500f] could not be reserved
[ 0.311258] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.311348] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.311478] system 00:02: [io 0x0454-0x0457] has been reserved
[ 0.311487] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.311577] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.311687] pnp 00:04: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
[ 0.312055] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.312061] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.312067] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.312071] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.312077] system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.312083] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.312088] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.312093] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.312101] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.312106] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.312114] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.312896] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.312953] pnp: PnP ACPI: found 7 devices
[ 0.323204] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.323218] pci 0000:00:1c.0: bridge window [mem 0xf0600000-0xf06fffff]
[ 0.323235] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.323241] pci 0000:00:1c.3: bridge window [io 0x2000-0x2fff]
[ 0.323256] pci 0000:00:1c.3: bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.323270] pci 0000:00:1c.4: PCI bridge to [bus 03]
[ 0.323280] pci 0000:00:1c.4: bridge window [mem 0xf0500000-0xf05fffff]
[ 0.323297] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.323300] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.323302] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.323304] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff]
[ 0.323306] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
[ 0.323308] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
[ 0.323310] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
[ 0.323312] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
[ 0.323314] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[ 0.323421] NET: Registered protocol family 2
[ 0.323846] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.324304] TCP bind hash table entries: 32768 (order: 9, 2097152 bytes)
[ 0.326614] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.326700] TCP: reno registered
[ 0.326764] UDP hash table entries: 2048 (order: 6, 327680 bytes)
[ 0.327120] UDP-Lite hash table entries: 2048 (order: 6, 327680 bytes)
[ 0.327694] NET: Registered protocol family 1
[ 0.327727] pci 0000:00:02.0: Video device with shadowed ROM
[ 0.329204] PCI: CLS 64 bytes, default 64
[ 0.329438] Trying to unpack rootfs image as initramfs...
[ 0.409225] Freeing initrd memory: 3440K (ffff880037938000 - ffff880037c94000)
[ 0.409243] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.409249] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
[ 0.409928] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
[ 0.410131] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
[ 0.410150] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
[ 0.410174] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
[ 0.410194] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
[ 0.410352] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 0.410418] Scanning for low memory corruption every 60 seconds
[ 0.411557] futex hash table entries: 2048 (order: 6, 262144 bytes)
[ 0.411720] Initialise system trusted keyring
[ 0.411848] audit: initializing netlink subsys (disabled)
[ 0.411948] audit: type=2000 audit(1419754371.400:1): initialized
[ 0.412814] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 0.413262] VFS: Disk quotas dquot_6.5.2
[ 0.413303] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.414103] fuse init (API version 7.23)
[ 0.415202] Key type asymmetric registered
[ 0.415222] Asymmetric key parser 'x509' registered
[ 0.415264] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 0.415401] io scheduler noop registered
[ 0.415407] io scheduler deadline registered (default)
[ 0.415436] io scheduler cfq registered
[ 0.415442] start plist test
[ 0.417265] end plist test
[ 0.418251] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.418377] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 0.418568] intel_idle: MWAIT substates: 0x21120
[ 0.418569] intel_idle: v0.4 model 0x2A
[ 0.418571] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.420030] ACPI: AC Adapter [ADP1] (on-line)
[ 0.420779] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[ 0.420821] ACPI: Lid Switch [LID0]
[ 0.420941] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.420982] ACPI: Power Button [PWRB]
[ 0.421105] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.421113] ACPI: Power Button [PWRF]
[ 0.424214] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.424219] ACPI: Thermal Zone [TZ00] (74 C)
[ 0.424739] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.424744] ACPI: Thermal Zone [TZ01] (30 C)
[ 0.424858] GHES: HEST is not enabled!
[ 0.425134] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.432885] ACPI: Battery Slot [BAT1] (battery present)
[ 0.433670] Linux agpgart interface v0.103
[ 0.438305] brd: module loaded
[ 0.441108] loop: module loaded
[ 0.444894] ahci 0000:00:1f.2: version 3.0
[ 0.445245] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 0.459919] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
[ 0.459929] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst
[ 0.485843] scsi host0: ahci
[ 0.486258] scsi host1: ahci
[ 0.486541] scsi host2: ahci
[ 0.486850] scsi host3: ahci
[ 0.487141] scsi host4: ahci
[ 0.487453] scsi host5: ahci
[ 0.487605] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 25
[ 0.487611] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 25
[ 0.487615] ata3: DUMMY
[ 0.487618] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 25
[ 0.487623] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 25
[ 0.487627] ata6: DUMMY
[ 0.488971] libphy: Fixed MDIO Bus: probed
[ 0.489299] tun: Universal TUN/TAP device driver, 1.6
[ 0.489303] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 0.489461] PPP generic driver version 2.4.2
[ 0.489788] xhci_hcd 0000:03:00.0: xHCI Host Controller
[ 0.489960] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 1
[ 0.495125] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.495130] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.495135] usb usb1: Product: xHCI Host Controller
[ 0.495139] usb usb1: Manufacturer: Linux 3.19.0-rc1-58.2-iniza-small xhci-hcd
[ 0.495144] usb usb1: SerialNumber: 0000:03:00.0
[ 0.495930] hub 1-0:1.0: USB hub found
[ 0.495998] hub 1-0:1.0: 2 ports detected
[ 0.496781] xhci_hcd 0000:03:00.0: xHCI Host Controller
[ 0.496794] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 2
[ 0.496961] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
[ 0.496967] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.496972] usb usb2: Product: xHCI Host Controller
[ 0.496975] usb usb2: Manufacturer: Linux 3.19.0-rc1-58.2-iniza-small xhci-hcd
[ 0.496980] usb usb2: SerialNumber: 0000:03:00.0
[ 0.497413] hub 2-0:1.0: USB hub found
[ 0.497457] hub 2-0:1.0: 2 ports detected
[ 0.497892] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.497900] ehci-pci: EHCI PCI platform driver
[ 0.498198] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 0.498222] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 0.498247] ehci-pci 0000:00:1a.0: debug port 2
[ 0.502171] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 0.502204] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
[ 0.511893] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 0.511998] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.512003] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.512008] usb usb3: Product: EHCI Host Controller
[ 0.512011] usb usb3: Manufacturer: Linux 3.19.0-rc1-58.2-iniza-small ehci_hcd
[ 0.512016] usb usb3: SerialNumber: 0000:00:1a.0
[ 0.512448] hub 3-0:1.0: USB hub found
[ 0.512469] hub 3-0:1.0: 2 ports detected
[ 0.513130] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.513146] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
[ 0.513173] ehci-pci 0000:00:1d.0: debug port 2
[ 0.517084] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 0.517112] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
[ 0.527834] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 0.527932] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.527937] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.527941] usb usb4: Product: EHCI Host Controller
[ 0.527945] usb usb4: Manufacturer: Linux 3.19.0-rc1-58.2-iniza-small ehci_hcd
[ 0.527950] usb usb4: SerialNumber: 0000:00:1d.0
[ 0.528323] hub 4-0:1.0: USB hub found
[ 0.528344] hub 4-0:1.0: 2 ports detected
[ 0.528719] ehci-platform: EHCI generic platform driver
[ 0.528750] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.528766] ohci-pci: OHCI PCI platform driver
[ 0.528799] ohci-platform: OHCI generic platform driver
[ 0.528826] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.528949] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
[ 0.535205] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.535254] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.535873] mousedev: PS/2 mouse device common for all mice
[ 0.537031] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[ 0.537073] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 0.537151] device-mapper: uevent: version 1.0.3
[ 0.537315] device-mapper: ioctl: 4.29.0-ioctl (2014-10-28) initialised: dm-devel@redhat.com
[ 0.537341] Intel P-state driver initializing.
[ 0.537812] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.537941] TCP: cubic registered
[ 0.538037] NET: Registered protocol family 10
[ 0.538630] NET: Registered protocol family 17
[ 0.538655] Key type dns_resolver registered
[ 0.539765] Loading compiled-in X.509 certificates
[ 0.541117] Loaded X.509 cert 'Magrathea: Glacier signing key: 91a84cd4264c16370b7d287bbd099d891b6033ac'
[ 0.541163] registered taskstats version 1
[ 0.546000] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 0.547430] Key type trusted registered
[ 0.557136] Key type encrypted registered
[ 0.557152] AppArmor: AppArmor sha1 policy hashing enabled
[ 0.557159] evm: HMAC attrs: 0x1
[ 0.557986] rtc_cmos 00:01: setting system clock to 2014-12-28 08:12:52 UTC (1419754372)
[ 0.558111] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 0.558115] EDD information not available.
[ 0.807790] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 0.809144] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
[ 0.809163] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 0.810536] ata1.00: configured for UDMA/133
[ 0.811428] scsi 0:0:0:0: Direct-Access ATA Hitachi HTS54505 A6C0 PQ: 0 ANSI: 5
[ 0.812471] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 0.812479] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 0.812700] sd 0:0:0:0: [sda] Write Protect is off
[ 0.812706] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 0.812783] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 0.812851] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 0.823675] usb 3-1: new high-speed USB device number 2 using ehci-pci
[ 0.823792] sda: sda1 sda2 sda3
[ 0.825089] sd 0:0:0:0: [sda] Attached SCSI disk
[ 0.839792] usb 4-1: new high-speed USB device number 2 using ehci-pci
[ 0.956732] usb 3-1: New USB device found, idVendor=8087, idProduct=0024
[ 0.956741] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.957627] hub 3-1:1.0: USB hub found
[ 0.957815] hub 3-1:1.0: 6 ports detected
[ 0.972281] usb 4-1: New USB device found, idVendor=8087, idProduct=0024
[ 0.972290] usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.972881] hub 4-1:1.0: USB hub found
[ 0.973246] hub 4-1:1.0: 6 ports detected
[ 1.131571] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.132164] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
[ 1.132172] ata2.00: 31277232 sectors, multi 1: LBA48
[ 1.132880] ata2.00: configured for UDMA/133
[ 1.133223] scsi 1:0:0:0: Direct-Access ATA SanDisk iSSD P4 9.14 PQ: 0 ANSI: 5
[ 1.133891] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[ 1.133990] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 1.134016] sd 1:0:0:0: [sdb] Write Protect is off
[ 1.134021] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.134057] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.135086] sdb: sdb1 sdb2
[ 1.135836] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 1.231835] usb 3-1.2: new high-speed USB device number 3 using ehci-pci
[ 1.247767] usb 4-1.4: new low-speed USB device number 3 using ehci-pci
[ 1.326814] usb 3-1.2: New USB device found, idVendor=12d1, idProduct=140c
[ 1.326824] usb 3-1.2: New USB device strings: Mfr=3, Product=2, SerialNumber=0
[ 1.326829] usb 3-1.2: Product: HUAWEI Mobile
[ 1.326833] usb 3-1.2: Manufacturer: HUAWEI Technology
[ 1.346582] usb 4-1.4: New USB device found, idVendor=046d, idProduct=c00e
[ 1.346591] usb 4-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.346595] usb 4-1.4: Product: USB-PS/2 Optical Mouse
[ 1.346599] usb 4-1.4: Manufacturer: Logitech
[ 1.403680] usb 3-1.4: new high-speed USB device number 4 using ehci-pci
[ 1.407328] tsc: Refined TSC clocksource calibration: 1596.374 MHz
[ 1.419668] usb 4-1.5: new full-speed USB device number 4 using ehci-pci
[ 1.451338] ata4: SATA link down (SStatus 0 SControl 300)
[ 1.516617] usb 4-1.5: New USB device found, idVendor=8086, idProduct=0189
[ 1.516626] usb 4-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.659748] usb 3-1.4: New USB device found, idVendor=2232, idProduct=1018
[ 1.659758] usb 3-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.659764] usb 3-1.4: Product: WebCam SC-13HDL11431N
[ 1.659767] usb 3-1.4: Manufacturer: 123
[ 1.771104] ata5: SATA link down (SStatus 0 SControl 300)
[ 1.771946] Freeing unused kernel memory: 1380K (ffffffff81d43000 - ffffffff81e9c000)
[ 1.771953] Write protecting the kernel read-only data: 12288k
[ 1.772665] Freeing unused kernel memory: 584K (ffff88000176e000 - ffff880001800000)
[ 1.773108] Freeing unused kernel memory: 724K (ffff880001b4b000 - ffff880001c00000)
[ 1.805588] udevd[129]: starting version 175
[ 2.007751] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 2.007780] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 2.038518] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc9000067e000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 31
[ 2.038534] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 2.038938] usb-storage 3-1.2:1.0: USB Mass Storage device detected
[ 2.040437] usb-storage 3-1.2:1.1: USB Mass Storage device detected
[ 2.041575] usb-storage 3-1.2:1.2: USB Mass Storage device detected
[ 2.045788] usb-storage 3-1.2:1.3: USB Mass Storage device detected
[ 2.050023] usb-storage 3-1.2:1.4: USB Mass Storage device detected
[ 2.051387] scsi host10: usb-storage 3-1.2:1.4
[ 2.051657] usb-storage 3-1.2:1.5: USB Mass Storage device detected
[ 2.052229] scsi host11: usb-storage 3-1.2:1.5
[ 2.053786] usbcore: registered new interface driver usb-storage
[ 2.059592] usbcore: registered new interface driver usbhid
[ 2.059600] usbhid: USB HID core driver
[ 2.165838] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.4/4-1.4:1.0/0003:046D:C00E.0001/input/input6
[ 2.166249] hid-generic 0003:046D:C00E.0001: input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.0-1.4/input0
[ 2.407108] Switched to clocksource tsc
[ 2.986972] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[ 3.052156] scsi 10:0:0:0: CD-ROM HUAWEI Mass Storage 2.31 PQ: 0 ANSI: 2
[ 3.052259] scsi 11:0:0:0: Direct-Access HUAWEI SD Storage 2.31 PQ: 0 ANSI: 2
[ 3.054409] sd 11:0:0:0: Attached scsi generic sg2 type 0
[ 3.057510] sd 11:0:0:0: [sdc] Attached SCSI removable disk
[ 3.061579] sr 10:0:0:0: [sr0] scsi-1 drive
[ 3.061587] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 3.066240] sr 10:0:0:0: Attached scsi CD-ROM sr0
[ 3.069641] sr 10:0:0:0: Attached scsi generic sg3 type 5
[ 3.533879] random: nonblocking pool is initialized
[ 5.093436] init: ureadahead main process (395) terminated with status 5
[ 8.958579] Adding 262140k swap on /host/ubuntu/disks/swap.disk. Priority:-1 extents:1 across:262140k FS
[ 9.124623] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
[ 9.359938] udevd[640]: starting version 175
[ 10.597521] lp: driver loaded but no devices found
[ 12.467031] wmi: Mapper loaded
[ 12.652875] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20141107/utaddress-258)
[ 12.652889] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 12.652896] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20141107/utaddress-258)
[ 12.652901] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 12.652903] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20141107/utaddress-258)
[ 12.652907] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 12.652909] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20141107/utaddress-258)
[ 12.652913] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 12.652914] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 12.684624] cfg80211: Calling CRDA to update world regulatory domain
[ 12.761839] samsung_laptop: detected SABI interface: SwSmi@
[ 12.761845] samsung_laptop: Backlight controlled by ACPI video driver
[ 12.781756] [drm] Initialized drm 1.1.0 20060810
[ 13.517219] Intel(R) Wireless WiFi driver for Linux, in-tree:
[ 13.517223] Copyright(c) 2003- 2014 Intel Corporation
[ 13.517553] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 13.523901] Bluetooth: Core ver 2.20
[ 13.523997] NET: Registered protocol family 31
[ 13.524001] Bluetooth: HCI device and connection manager initialized
[ 13.524069] Bluetooth: HCI socket layer initialized
[ 13.524078] Bluetooth: L2CAP socket layer initialized
[ 13.524117] Bluetooth: SCO socket layer initialized
[ 13.964207] usbcore: registered new interface driver btusb
[ 14.108245] ppdev: user-space parallel port driver
[ 14.238346] usbcore: registered new interface driver usbserial
[ 14.327517] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
[ 14.343110] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
[ 14.349912] Linux video capture interface: v2.00
[ 14.419327] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input7
[ 14.759487] usbcore: registered new interface driver option
[ 14.760274] usbserial: USB Serial support registered for GSM modem (1-port)
[ 14.760527] option 3-1.2:1.0: GSM modem (1-port) converter detected
[ 14.761105] usb 3-1.2: GSM modem (1-port) converter now attached to ttyUSB0
[ 14.761343] option 3-1.2:1.2: GSM modem (1-port) converter detected
[ 14.761874] usb 3-1.2: GSM modem (1-port) converter now attached to ttyUSB1
[ 14.762143] option 3-1.2:1.3: GSM modem (1-port) converter detected
[ 14.762509] usb 3-1.2: GSM modem (1-port) converter now attached to ttyUSB2
[ 14.807279] [drm] Memory usable by graphics device = 2048M
[ 14.807334] [drm] Replacing VGA console driver
[ 14.829961] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 14.829964] [drm] Driver supports precise vblank timestamp query.
[ 14.830565] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 14.842778] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 14.843326] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8
[ 14.844309] [drm] Initialized i915 1.6.0 20141121 for 0000:00:02.0 on minor 0
[ 14.856146] fbcon: inteldrmfb (fb0) is primary device
[ 14.859712] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[ 15.161811] cfg80211: World regulatory domain updated:
[ 15.161814] cfg80211: DFS Master region: unset
[ 15.161814] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 15.161817] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[ 15.161819] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[ 15.161820] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[ 15.161821] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[ 15.161822] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[ 15.857816] Console: switching to colour frame buffer device 170x48
[ 15.861253] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 15.861256] i915 0000:00:02.0: registered panic notifier
[ 16.135524] audit: type=1400 audit(1419750788.084:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=978 comm="apparmor_parser"
[ 16.135535] audit: type=1400 audit(1419750788.084:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=978 comm="apparmor_parser"
[ 16.135541] audit: type=1400 audit(1419750788.084:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=978 comm="apparmor_parser"
[ 16.136183] audit: type=1400 audit(1419750788.084:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=978 comm="apparmor_parser"
[ 16.136190] audit: type=1400 audit(1419750788.084:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=978 comm="apparmor_parser"
[ 16.136526] audit: type=1400 audit(1419750788.084:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=978 comm="apparmor_parser"
[ 16.137499] audit: type=1400 audit(1419750788.088:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=950 comm="apparmor_parser"
[ 16.137510] audit: type=1400 audit(1419750788.088:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=950 comm="apparmor_parser"
[ 16.137516] audit: type=1400 audit(1419750788.088:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=950 comm="apparmor_parser"
[ 16.138208] audit: type=1400 audit(1419750788.088:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=950 comm="apparmor_parser"
[ 16.378240] BUG: sleeping function called from invalid context at net/netlink/af_netlink.c:1989
[ 16.378312] in_atomic(): 1, irqs_disabled(): 0, pid: 1061, name: ifconfig
[ 16.378346] 2 locks held by ifconfig/1061:
[ 16.378348] #0: (rtnl_mutex){+.+.+.}, at: [<ffffffff81678287>] rtnl_lock+0x17/0x20
[ 16.378358] #1: (rcu_read_lock_bh){......}, at: [<ffffffff817091c5>] ipv6_ifa_notify+0x5/0xa0
[ 16.378367] CPU: 2 PID: 1061 Comm: ifconfig Not tainted 3.19.0-rc1-58.2-iniza-small #1
[ 16.378369] Hardware name: SAMSUNG ELECTRONICS CO., LTD. 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
[ 16.378371] 0000000000000008 ffff8800c092fab8 ffffffff8175b5bc 0000000000000005
[ 16.378375] ffff88011a6c6800 ffff8800c092fac8 ffffffff8109c34a ffff8800c092fb48
[ 16.378378] ffffffff8169500e ffff8800c47cc06c 0000000000000000 00000020cbdcd400
[ 16.378381] Call Trace:
[ 16.378387] [<ffffffff8175b5bc>] dump_stack+0x4c/0x65
[ 16.378391] [<ffffffff8109c34a>] ___might_sleep+0xfa/0x130
[ 16.378395] [<ffffffff8169500e>] netlink_broadcast_filtered+0x10e/0x3a0
[ 16.378399] [<ffffffff81696df5>] nlmsg_notify+0xd5/0xf0
[ 16.378402] [<ffffffff816786db>] rtnl_notify+0x3b/0x40
[ 16.378404] [<ffffffff81708fcb>] __ipv6_ifa_notify+0x15b/0x350
[ 16.378407] [<ffffffff81709226>] ipv6_ifa_notify+0x66/0xa0
[ 16.378410] [<ffffffff817091c5>] ? ipv6_ifa_notify+0x5/0xa0
[ 16.378414] [<ffffffff81764949>] ? _raw_spin_unlock_bh+0x39/0x40
[ 16.378417] [<ffffffff8170d072>] addrconf_notify+0x3b2/0x7f0
[ 16.378421] [<ffffffff8109736d>] notifier_call_chain+0x4d/0x80
[ 16.378424] [<ffffffff81097466>] raw_notifier_call_chain+0x16/0x20
[ 16.378427] [<ffffffff81662739>] call_netdevice_notifiers_info+0x39/0x70
[ 16.378431] [<ffffffff8166bbeb>] __dev_notify_flags+0x3b/0xc0
[ 16.378434] [<ffffffff8166c3e3>] dev_change_flags+0x53/0x70
[ 16.378437] [<ffffffff816dc9d9>] devinet_ioctl+0x609/0x6d0
[ 16.378441] [<ffffffff816dd955>] inet_ioctl+0x65/0x90
[ 16.378444] [<ffffffff8164a8c9>] sock_do_ioctl+0x29/0x60
[ 16.378447] [<ffffffff8164ae6b>] sock_ioctl+0x1bb/0x260
[ 16.378452] [<ffffffff8120a668>] do_vfs_ioctl+0x308/0x540
[ 16.378456] [<ffffffff810c2e5d>] ? trace_hardirqs_on_caller+0x15d/0x200
[ 16.378459] [<ffffffff810c2f0d>] ? trace_hardirqs_on+0xd/0x10
[ 16.378462] [<ffffffff8120a921>] SyS_ioctl+0x81/0xa0
[ 16.378466] [<ffffffff817654ad>] system_call_fastpath+0x16/0x1b
[ 17.743610] init: failsafe main process (1068) killed by TERM signal
[ 17.754942] Bluetooth: RFCOMM TTY layer initialized
[ 17.754962] Bluetooth: RFCOMM socket layer initialized
[ 17.754991] Bluetooth: RFCOMM ver 1.11
[ 17.778107] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 17.778113] Bluetooth: BNEP filters: protocol multicast
[ 17.778124] Bluetooth: BNEP socket layer initialized
[ 18.172718] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 18.172723] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 18.172726] sound hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[ 18.172728] sound hdaudioC0D0: mono: mono_out=0x0
[ 18.172730] sound hdaudioC0D0: inputs:
[ 18.172734] sound hdaudioC0D0: Internal Mic=0x19
[ 18.172737] sound hdaudioC0D0: Mic=0x18
[ 18.254820] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 18.256249] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 18.257077] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 18.389537] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
[ 18.409242] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.4/3-1.4:1.0/input/input12
[ 18.409641] usbcore: registered new interface driver uvcvideo
[ 18.409645] USB Video Class driver (1.1.1)
[ 18.484171] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG disabled
[ 18.484176] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[ 18.484178] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[ 18.484181] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[ 18.484636] iwlwifi 0000:01:00.0: L1 Enabled - LTR Disabled
[ 18.637339] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 22.438486] r8169 0000:02:00.0 eth0: link down
[ 22.438542] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 56.798862] usb 4-1.5: USB disconnect, device number 4
[ 66.046862] PPP BSD Compression module registered
[ 66.057506] PPP Deflate Compression module registered
[-- Attachment #3: config-3.19.0-rc1-58.2-iniza-small --]
[-- Type: application/octet-stream, Size: 124049 bytes --]
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 3.19.0-rc1 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_PERF_EVENTS_INTEL_UNCORE=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_HAVE_INTEL_TXT=y
CONFIG_X86_64_SMP=y
CONFIG_X86_HT=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y
#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=""
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
# CONFIG_KERNEL_GZIP is not set
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
CONFIG_KERNEL_XZ=y
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_FHANDLE=y
CONFIG_USELIB=y
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_WATCH=y
CONFIG_AUDIT_TREE=y
#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_IRQ_DOMAIN=y
CONFIG_GENERIC_MSI_IRQ=y
# CONFIG_IRQ_DOMAIN_DEBUG is not set
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
# CONFIG_NO_HZ is not set
CONFIG_HIGH_RES_TIMERS=y
#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
# CONFIG_TICK_CPU_ACCOUNTING is not set
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_TASKS_RCU is not set
CONFIG_RCU_STALL_COMMON=y
CONFIG_CONTEXT_TRACKING=y
CONFIG_RCU_USER_QS=y
CONFIG_CONTEXT_TRACKING_FORCE=y
CONFIG_RCU_FANOUT=64
CONFIG_RCU_FANOUT_LEAF=16
# CONFIG_RCU_FANOUT_EXACT is not set
# CONFIG_RCU_FAST_NO_HZ is not set
# CONFIG_TREE_RCU_TRACE is not set
CONFIG_RCU_NOCB_CPU=y
CONFIG_RCU_NOCB_CPU_NONE=y
# CONFIG_RCU_NOCB_CPU_ZERO is not set
# CONFIG_RCU_NOCB_CPU_ALL is not set
CONFIG_BUILD_BIN2C=y
CONFIG_IKCONFIG=m
# CONFIG_IKCONFIG_PROC is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_SUPPORTS_INT128=y
# CONFIG_NUMA_BALANCING is not set
CONFIG_CGROUPS=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_PAGE_COUNTER=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
# CONFIG_MEMCG_SWAP_ENABLED is not set
# CONFIG_MEMCG_KMEM is not set
CONFIG_CGROUP_HUGETLB=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
CONFIG_RT_GROUP_SCHED=y
CONFIG_BLK_CGROUP=y
# CONFIG_DEBUG_BLK_CGROUP is not set
CONFIG_CHECKPOINT_RESTORE=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
# CONFIG_USER_NS is not set
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_SCHED_AUTOGROUP=y
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_INIT_FALLBACK=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BPF=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_SGETMASK_SYSCALL=y
CONFIG_SYSFS_SYSCALL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
# CONFIG_BPF_SYSCALL is not set
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_PCI_QUIRKS=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
CONFIG_VM_EVENT_COUNTERS=y
# CONFIG_COMPAT_BRK is not set
CONFIG_SLAB=y
# CONFIG_SLUB is not set
# CONFIG_SLOB is not set
CONFIG_SYSTEM_TRUSTED_KEYRING=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
# CONFIG_OPROFILE is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
CONFIG_OPTPROBES=y
CONFIG_KPROBES_ON_FTRACE=y
CONFIG_UPROBES=y
# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_KRETPROBES=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_ATTRS=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_CC_STACKPROTECTOR=y
# CONFIG_CC_STACKPROTECTOR is not set
CONFIG_CC_STACKPROTECTOR_NONE=y
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
# CONFIG_CC_STACKPROTECTOR_STRONG is not set
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_MODVERSIONS=y
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_MODULE_SIG=y
# CONFIG_MODULE_SIG_FORCE is not set
CONFIG_MODULE_SIG_ALL=y
# CONFIG_MODULE_SIG_SHA1 is not set
# CONFIG_MODULE_SIG_SHA224 is not set
# CONFIG_MODULE_SIG_SHA256 is not set
# CONFIG_MODULE_SIG_SHA384 is not set
CONFIG_MODULE_SIG_SHA512=y
CONFIG_MODULE_SIG_HASH="sha512"
# CONFIG_MODULE_COMPRESS is not set
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_THROTTLING=y
# CONFIG_BLK_CMDLINE_PARSER is not set
#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
CONFIG_ACORN_PARTITION=y
# CONFIG_ACORN_PARTITION_CUMANA is not set
# CONFIG_ACORN_PARTITION_EESOX is not set
CONFIG_ACORN_PARTITION_ICS=y
# CONFIG_ACORN_PARTITION_ADFS is not set
# CONFIG_ACORN_PARTITION_POWERTEC is not set
CONFIG_ACORN_PARTITION_RISCIX=y
# CONFIG_AIX_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
CONFIG_ATARI_PARTITION=y
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
CONFIG_SYSV68_PARTITION=y
# CONFIG_CMDLINE_PARTITION is not set
CONFIG_BLOCK_COMPAT=y
#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_CFQ_GROUP_IOSCHED=y
CONFIG_DEFAULT_DEADLINE=y
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="deadline"
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUE_RWLOCK=y
CONFIG_QUEUE_RWLOCK=y
CONFIG_FREEZER=y
#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
CONFIG_X86_FEATURE_NAMES=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
CONFIG_X86_EXTENDED_PLATFORM=y
CONFIG_X86_NUMACHIP=y
# CONFIG_X86_VSMP is not set
# CONFIG_X86_UV is not set
# CONFIG_X86_GOLDFISH is not set
# CONFIG_X86_INTEL_LPSS is not set
# CONFIG_IOSF_MBI is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_DEBUG is not set
CONFIG_PARAVIRT_SPINLOCKS=y
CONFIG_XEN=y
CONFIG_XEN_DOM0=y
CONFIG_XEN_PVHVM=y
CONFIG_XEN_MAX_DOMAIN_MEMORY=500
CONFIG_XEN_SAVE_RESTORE=y
# CONFIG_XEN_DEBUG_FS is not set
# CONFIG_XEN_PVH is not set
CONFIG_KVM_GUEST=y
# CONFIG_KVM_DEBUG_FS is not set
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
CONFIG_PARAVIRT_CLOCK=y
CONFIG_NO_BOOTMEM=y
CONFIG_MEMTEST=y
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_PROCESSOR_SELECT=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=256
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_COUNT=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_AMD=y
CONFIG_X86_MCE_THRESHOLD=y
# CONFIG_X86_MCE_INJECT is not set
CONFIG_X86_THERMAL_VECTOR=y
CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
CONFIG_X86_VSYSCALL_EMULATION=y
# CONFIG_I8K is not set
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_MICROCODE_INTEL_EARLY=y
CONFIG_MICROCODE_AMD_EARLY=y
CONFIG_MICROCODE_EARLY=y
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_DIRECT_GBPAGES=y
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
# CONFIG_NUMA_EMU is not set
CONFIG_NODES_SHIFT=6
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_MEMORY_PROBE=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
CONFIG_MEMORY_ISOLATION=y
# CONFIG_MOVABLE_NODE is not set
CONFIG_HAVE_BOOTMEM_INFO_NODE=y
CONFIG_MEMORY_HOTPLUG=y
CONFIG_MEMORY_HOTPLUG_SPARSE=y
CONFIG_MEMORY_HOTREMOVE=y
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
# CONFIG_HWPOISON_INJECT is not set
CONFIG_TRANSPARENT_HUGEPAGE=y
# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
CONFIG_CLEANCACHE=y
CONFIG_FRONTSWAP=y
# CONFIG_CMA is not set
# CONFIG_MEM_SOFT_DIRTY is not set
# CONFIG_ZSWAP is not set
# CONFIG_ZPOOL is not set
# CONFIG_ZBUD is not set
CONFIG_ZSMALLOC=y
# CONFIG_PGTABLE_MAPPING is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
# CONFIG_X86_INTEL_MPX is not set
CONFIG_EFI=y
CONFIG_EFI_STUB=y
# CONFIG_EFI_MIXED is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
# CONFIG_KEXEC_FILE is not set
CONFIG_CRASH_DUMP=y
CONFIG_KEXEC_JUMP=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
# CONFIG_RANDOMIZE_BASE is not set
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_HOTPLUG_CPU=y
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_COMPAT_VDSO is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y
#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS_POWER is not set
# CONFIG_ACPI_EC_DEBUGFS is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_NUMA=y
CONFIG_ACPI_CUSTOM_DSDT_FILE=""
# CONFIG_ACPI_CUSTOM_DSDT is not set
# CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
# CONFIG_ACPI_HOTPLUG_MEMORY is not set
# CONFIG_ACPI_SBS is not set
CONFIG_ACPI_HED=y
# CONFIG_ACPI_CUSTOM_METHOD is not set
CONFIG_ACPI_BGRT=y
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
CONFIG_ACPI_APEI=y
CONFIG_ACPI_APEI_GHES=y
CONFIG_ACPI_APEI_PCIEAER=y
CONFIG_ACPI_APEI_MEMORY_FAILURE=y
# CONFIG_ACPI_APEI_EINJ is not set
# CONFIG_ACPI_APEI_ERST_DEBUG is not set
# CONFIG_ACPI_EXTLOG is not set
# CONFIG_PMIC_OPREGION is not set
CONFIG_SFI=y
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_COMMON=y
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_STAT_DETAILS=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
#
# CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
CONFIG_X86_PCC_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ_CPB=y
CONFIG_X86_POWERNOW_K8=y
# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set
CONFIG_X86_SPEEDSTEP_CENTRINO=y
# CONFIG_X86_P4_CLOCKMOD is not set
#
# shared options
#
# CONFIG_X86_SPEEDSTEP_LIB is not set
#
# CPU Idle
#
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
CONFIG_INTEL_IDLE=y
#
# Memory power savings
#
# CONFIG_I7300_IDLE is not set
#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
CONFIG_PCIEPORTBUS=y
CONFIG_HOTPLUG_PCI_PCIE=y
CONFIG_PCIEAER=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIEASPM=y
# CONFIG_PCIEASPM_DEBUG is not set
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
CONFIG_PCI_REALLOC_ENABLE_AUTO=y
# CONFIG_PCI_STUB is not set
# CONFIG_XEN_PCIDEV_FRONTEND is not set
CONFIG_HT_IRQ=y
CONFIG_PCI_ATS=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
CONFIG_PCI_LABEL=y
#
# PCI host controller drivers
#
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
# CONFIG_PCCARD is not set
CONFIG_HOTPLUG_PCI=y
# CONFIG_HOTPLUG_PCI_ACPI is not set
CONFIG_HOTPLUG_PCI_CPCI=y
# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set
# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set
CONFIG_RAPIDIO=y
CONFIG_RAPIDIO_TSI721=y
CONFIG_RAPIDIO_DISC_TIMEOUT=30
# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set
CONFIG_RAPIDIO_DMA_ENGINE=y
# CONFIG_RAPIDIO_DEBUG is not set
# CONFIG_RAPIDIO_ENUM_BASIC is not set
#
# RapidIO Switch drivers
#
CONFIG_RAPIDIO_TSI57X=y
CONFIG_RAPIDIO_CPS_XX=y
CONFIG_RAPIDIO_TSI568=y
CONFIG_RAPIDIO_CPS_GEN2=y
# CONFIG_X86_SYSFB is not set
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_BINFMT_SCRIPT=y
# CONFIG_HAVE_AOUT is not set
CONFIG_BINFMT_MISC=m
CONFIG_COREDUMP=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_X86_X32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_KEYS_COMPAT=y
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_PMC_ATOM=y
CONFIG_NET=y
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_XFRM_USER is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_FIB_TRIE_STATS=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
# CONFIG_IP_PNP_RARP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
# CONFIG_NET_IP_TUNNEL is not set
CONFIG_IP_MROUTE=y
# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_SYN_COOKIES=y
# CONFIG_NET_UDP_TUNNEL is not set
# CONFIG_NET_FOU is not set
# CONFIG_GENEVE is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_BEET is not set
CONFIG_INET_LRO=y
# CONFIG_INET_DIAG is not set
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
CONFIG_TCP_CONG_CUBIC=y
# CONFIG_TCP_CONG_WESTWOOD is not set
# CONFIG_TCP_CONG_HTCP is not set
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
# CONFIG_TCP_CONG_VEGAS is not set
# CONFIG_TCP_CONG_SCALABLE is not set
# CONFIG_TCP_CONG_LP is not set
# CONFIG_TCP_CONG_VENO is not set
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_TCP_CONG_DCTCP is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=y
CONFIG_IPV6_ROUTER_PREF=y
CONFIG_IPV6_ROUTE_INFO=y
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET6_XFRM_MODE_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
# CONFIG_IPV6_SIT is not set
# CONFIG_IPV6_TUNNEL is not set
# CONFIG_IPV6_GRE is not set
CONFIG_IPV6_MULTIPLE_TABLES=y
CONFIG_IPV6_SUBTREES=y
CONFIG_IPV6_MROUTE=y
CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
CONFIG_IPV6_PIMSM_V2=y
CONFIG_NETLABEL=y
CONFIG_NETWORK_SECMARK=y
# CONFIG_NET_PTP_CLASSIFY is not set
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_NETFILTER_ADVANCED=y
#
# Core Netfilter Configuration
#
# CONFIG_NETFILTER_NETLINK_ACCT is not set
# CONFIG_NETFILTER_NETLINK_QUEUE is not set
# CONFIG_NETFILTER_NETLINK_LOG is not set
# CONFIG_NF_CONNTRACK is not set
# CONFIG_NF_TABLES is not set
# CONFIG_NETFILTER_XTABLES is not set
# CONFIG_IP_SET is not set
# CONFIG_IP_VS is not set
#
# IP: Netfilter Configuration
#
# CONFIG_NF_DEFRAG_IPV4 is not set
# CONFIG_NF_LOG_ARP is not set
# CONFIG_NF_LOG_IPV4 is not set
# CONFIG_NF_REJECT_IPV4 is not set
# CONFIG_IP_NF_IPTABLES is not set
# CONFIG_IP_NF_ARPTABLES is not set
#
# IPv6: Netfilter Configuration
#
# CONFIG_NF_DEFRAG_IPV6 is not set
# CONFIG_NF_REJECT_IPV6 is not set
# CONFIG_NF_LOG_IPV6 is not set
# CONFIG_IP6_NF_IPTABLES is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
# CONFIG_BRIDGE is not set
CONFIG_HAVE_NET_DSA=y
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y
#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
CONFIG_NET_SCH_HTB=m
# CONFIG_NET_SCH_HFSC is not set
# CONFIG_NET_SCH_PRIO is not set
# CONFIG_NET_SCH_MULTIQ is not set
# CONFIG_NET_SCH_RED is not set
# CONFIG_NET_SCH_SFB is not set
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_NETEM is not set
# CONFIG_NET_SCH_DRR is not set
# CONFIG_NET_SCH_MQPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
CONFIG_NET_SCH_CODEL=m
CONFIG_NET_SCH_FQ_CODEL=m
# CONFIG_NET_SCH_FQ is not set
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_SCH_PLUG is not set
#
# Classification
#
CONFIG_NET_CLS=y
# CONFIG_NET_CLS_BASIC is not set
# CONFIG_NET_CLS_TCINDEX is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
# CONFIG_NET_CLS_U32 is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
# CONFIG_NET_CLS_CGROUP is not set
# CONFIG_NET_CLS_BPF is not set
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_EMATCH_TEXT is not set
CONFIG_NET_CLS_ACT=y
# CONFIG_NET_ACT_POLICE is not set
# CONFIG_NET_ACT_GACT is not set
# CONFIG_NET_ACT_MIRRED is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
# CONFIG_NET_ACT_VLAN is not set
CONFIG_NET_SCH_FIFO=y
CONFIG_DCB=y
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
# CONFIG_VSOCKETS is not set
# CONFIG_NETLINK_MMAP is not set
# CONFIG_NETLINK_DIAG is not set
# CONFIG_NET_MPLS_GSO is not set
# CONFIG_HSR is not set
# CONFIG_NET_SWITCHDEV is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_CGROUP_NET_PRIO is not set
# CONFIG_CGROUP_NET_CLASSID is not set
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_BPF_JIT=y
CONFIG_NET_FLOW_LIMIT=y
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
# CONFIG_NET_DROP_MONITOR is not set
CONFIG_HAMRADIO=y
#
# Packet Radio protocols
#
# CONFIG_AX25 is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
CONFIG_BT=m
CONFIG_BT_BREDR=y
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
# CONFIG_BT_HIDP is not set
CONFIG_BT_LE=y
#
# Bluetooth device drivers
#
CONFIG_BT_HCIBTUSB=m
# CONFIG_BT_HCIBTSDIO is not set
# CONFIG_BT_HCIUART is not set
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBPA10X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIVHCI is not set
# CONFIG_BT_MRVL is not set
# CONFIG_BT_ATH3K is not set
# CONFIG_AF_RXRPC is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=m
CONFIG_NL80211_TESTMODE=y
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_REG_DEBUG is not set
# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
CONFIG_CFG80211_DEFAULT_PS=y
CONFIG_CFG80211_DEBUGFS=y
# CONFIG_CFG80211_INTERNAL_REGDB is not set
# CONFIG_LIB80211 is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_MINSTREL_HT=y
# CONFIG_MAC80211_RC_MINSTREL_VHT is not set
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
CONFIG_MAC80211_MESH=y
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
# CONFIG_WIMAX is not set
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
# CONFIG_RFKILL_REGULATOR is not set
# CONFIG_RFKILL_GPIO is not set
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
CONFIG_HAVE_BPF_JIT=y
#
# Device Drivers
#
#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER=y
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
# CONFIG_STANDALONE is not set
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
CONFIG_SYS_HYPERVISOR=y
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_REGMAP_SPI=y
CONFIG_REGMAP_IRQ=y
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_FENCE_TRACE is not set
#
# Bus devices
#
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
# CONFIG_PARPORT_SERIAL is not set
CONFIG_PARPORT_PC_FIFO=y
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_GSC is not set
# CONFIG_PARPORT_AX88796 is not set
CONFIG_PARPORT_1284=y
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set
#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_NULL_BLK is not set
# CONFIG_BLK_DEV_FD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_ZRAM is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_BLK_DEV_SKD is not set
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=65536
# CONFIG_BLK_DEV_XIP is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_XEN_BLKDEV_FRONTEND=y
# CONFIG_XEN_BLKDEV_BACKEND is not set
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_HD is not set
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set
#
# Misc devices
#
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1780 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_TI_DAC7512 is not set
# CONFIG_VMWARE_BALLOON is not set
# CONFIG_BMP085_I2C is not set
# CONFIG_BMP085_SPI is not set
# CONFIG_USB_SWITCH_FSA9480 is not set
# CONFIG_LATTICE_ECP3_CONFIG is not set
# CONFIG_SRAM is not set
# CONFIG_C2PORT is not set
#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_AT25 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_EEPROM_93XX46 is not set
# CONFIG_CB710_CORE is not set
#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# CONFIG_SENSORS_LIS3_I2C is not set
#
# Altera FPGA firmware download module
#
# CONFIG_ALTERA_STAPL is not set
CONFIG_INTEL_MEI=y
CONFIG_INTEL_MEI_ME=y
# CONFIG_INTEL_MEI_TXE is not set
# CONFIG_VMWARE_VMCI is not set
#
# Intel MIC Bus Driver
#
# CONFIG_INTEL_MIC_BUS is not set
#
# Intel MIC Host Driver
#
#
# Intel MIC Card Driver
#
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_CXL_BASE is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_NETLINK is not set
# CONFIG_SCSI_MQ_DEFAULT is not set
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y
#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_ISCSI_BOOT_SYSFS is not set
# CONFIG_SCSI_CXGB3_ISCSI is not set
# CONFIG_SCSI_CXGB4_ISCSI is not set
# CONFIG_SCSI_BNX2_ISCSI is not set
# CONFIG_BE2ISCSI is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_SCSI_ESAS2R is not set
CONFIG_MEGARAID_NEWGEN=y
# CONFIG_MEGARAID_MM is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_MPT3SAS is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_VMWARE_PVSCSI is not set
# CONFIG_XEN_SCSI_FRONTEND is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_ISCI is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
# CONFIG_SCSI_VIRTIO is not set
# CONFIG_SCSI_DH is not set
# CONFIG_SCSI_OSD_INITIATOR is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_ACPI=y
# CONFIG_SATA_ZPODD is not set
CONFIG_SATA_PMP=y
#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
# CONFIG_SATA_AHCI_PLATFORM is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y
#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y
#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set
#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
CONFIG_PATA_SIS=y
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set
#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_RZ1000 is not set
#
# Generic fallback / legacy drivers
#
CONFIG_PATA_ACPI=y
CONFIG_ATA_GENERIC=y
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_THIN_PROVISIONING is not set
# CONFIG_DM_CACHE is not set
# CONFIG_DM_ERA is not set
# CONFIG_DM_MIRROR is not set
# CONFIG_DM_RAID is not set
# CONFIG_DM_ZERO is not set
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
CONFIG_DM_UEVENT=y
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_DM_SWITCH is not set
# CONFIG_TARGET_CORE is not set
CONFIG_FUSION=y
# CONFIG_FUSION_SPI is not set
# CONFIG_FUSION_SAS is not set
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_LOGGING=y
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# CONFIG_I2O is not set
CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=m
CONFIG_NETDEVICES=y
CONFIG_MII=m
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_EQUALIZER is not set
CONFIG_NET_FC=y
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_IPVLAN is not set
# CONFIG_VXLAN is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_RIONET is not set
CONFIG_TUN=y
# CONFIG_VETH is not set
CONFIG_VIRTIO_NET=y
# CONFIG_NLMON is not set
# CONFIG_ARCNET is not set
#
# CAIF transport drivers
#
# CONFIG_VHOST_NET is not set
#
# Distributed Switch Architecture drivers
#
# CONFIG_NET_DSA_MV88E6XXX is not set
# CONFIG_NET_DSA_MV88E6060 is not set
# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
# CONFIG_NET_DSA_MV88E6131 is not set
# CONFIG_NET_DSA_MV88E6123_61_65 is not set
# CONFIG_NET_DSA_MV88E6171 is not set
# CONFIG_NET_DSA_MV88E6352 is not set
# CONFIG_NET_DSA_BCM_SF2 is not set
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
# CONFIG_NET_XGENE is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BCMGENET is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
# CONFIG_CX_ECAT is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
# CONFIG_TULIP is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EXAR=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_HP=y
# CONFIG_HP100 is not set
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
# CONFIG_I40E is not set
# CONFIG_I40EVF is not set
# CONFIG_FM10K is not set
CONFIG_NET_VENDOR_I825XX=y
# CONFIG_IP1000 is not set
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX4_CORE is not set
# CONFIG_MLX5_CORE is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MICROCHIP=y
# CONFIG_ENC28J60 is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_NE2K_PCI is not set
CONFIG_NET_VENDOR_NVIDIA=y
# CONFIG_FORCEDETH is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
CONFIG_NET_PACKET_ENGINE=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_QLGE is not set
# CONFIG_NETXEN_NIC is not set
CONFIG_NET_VENDOR_QUALCOMM=y
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_ATP is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
CONFIG_R8169=m
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_ROCKER=y
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
# CONFIG_SFC is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_FDDI=y
# CONFIG_DEFXX is not set
# CONFIG_SKFP is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLIB=y
#
# MII PHY device drivers
#
CONFIG_AT803X_PHY=y
CONFIG_AMD_PHY=y
CONFIG_MARVELL_PHY=y
CONFIG_DAVICOM_PHY=y
CONFIG_QSEMI_PHY=y
CONFIG_LXT_PHY=y
CONFIG_CICADA_PHY=y
CONFIG_VITESSE_PHY=y
CONFIG_SMSC_PHY=y
CONFIG_BROADCOM_PHY=y
# CONFIG_BCM7XXX_PHY is not set
CONFIG_BCM87XX_PHY=y
CONFIG_ICPLUS_PHY=y
CONFIG_REALTEK_PHY=y
CONFIG_NATIONAL_PHY=y
CONFIG_STE10XP=y
CONFIG_LSI_ET1011C_PHY=y
CONFIG_MICREL_PHY=y
CONFIG_FIXED_PHY=y
CONFIG_MDIO_BITBANG=y
CONFIG_MDIO_GPIO=y
# CONFIG_MDIO_BCM_UNIMAC is not set
# CONFIG_MICREL_KS8995MA is not set
# CONFIG_PLIP is not set
CONFIG_PPP=y
CONFIG_PPP_BSDCOMP=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_FILTER=y
# CONFIG_PPP_MPPE is not set
CONFIG_PPP_MULTILINK=y
# CONFIG_PPPOE is not set
CONFIG_PPP_ASYNC=m
# CONFIG_PPP_SYNC_TTY is not set
# CONFIG_SLIP is not set
CONFIG_SLHC=y
CONFIG_USB_NET_DRIVERS=y
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_RTL8152 is not set
CONFIG_USB_USBNET=m
# CONFIG_USB_NET_AX8817X is not set
# CONFIG_USB_NET_AX88179_178A is not set
CONFIG_USB_NET_CDCETHER=m
# CONFIG_USB_NET_CDC_EEM is not set
# CONFIG_USB_NET_CDC_NCM is not set
# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
# CONFIG_USB_NET_CDC_MBIM is not set
# CONFIG_USB_NET_DM9601 is not set
# CONFIG_USB_NET_SR9700 is not set
# CONFIG_USB_NET_SR9800 is not set
# CONFIG_USB_NET_SMSC75XX is not set
# CONFIG_USB_NET_SMSC95XX is not set
# CONFIG_USB_NET_GL620A is not set
# CONFIG_USB_NET_NET1080 is not set
# CONFIG_USB_NET_PLUSB is not set
# CONFIG_USB_NET_MCS7830 is not set
# CONFIG_USB_NET_RNDIS_HOST is not set
# CONFIG_USB_NET_CDC_SUBSET is not set
# CONFIG_USB_NET_ZAURUS is not set
# CONFIG_USB_NET_CX82310_ETH is not set
# CONFIG_USB_NET_KALMIA is not set
# CONFIG_USB_NET_QMI_WWAN is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_NET_INT51X1 is not set
# CONFIG_USB_IPHETH is not set
# CONFIG_USB_SIERRA_NET is not set
# CONFIG_USB_VL600 is not set
CONFIG_WLAN=y
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_AIRO is not set
# CONFIG_ATMEL is not set
# CONFIG_AT76C50X_USB is not set
# CONFIG_PRISM54 is not set
# CONFIG_USB_ZD1201 is not set
# CONFIG_USB_NET_RNDIS_WLAN is not set
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
# CONFIG_ADM8211 is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_MWL8K is not set
# CONFIG_ATH_CARDS is not set
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMSMAC is not set
# CONFIG_BRCMFMAC is not set
# CONFIG_HOSTAP is not set
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
CONFIG_IWLWIFI=m
CONFIG_IWLWIFI_LEDS=y
CONFIG_IWLDVM=m
# CONFIG_IWLMVM is not set
CONFIG_IWLWIFI_OPMODE_MODULAR=y
#
# Debugging Options
#
# CONFIG_IWLWIFI_DEBUG is not set
CONFIG_IWLWIFI_DEBUGFS=y
CONFIG_IWLWIFI_DEVICE_TRACING=y
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
# CONFIG_LIBERTAS is not set
# CONFIG_P54_COMMON is not set
# CONFIG_RT2X00 is not set
# CONFIG_RTL_CARDS is not set
CONFIG_WL_TI=y
# CONFIG_WL1251 is not set
# CONFIG_WL12XX is not set
# CONFIG_WL18XX is not set
# CONFIG_WLCORE is not set
# CONFIG_ZD1211RW is not set
# CONFIG_MWIFIEX is not set
# CONFIG_CW1200 is not set
# CONFIG_RSI_91X is not set
#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
CONFIG_WAN=y
# CONFIG_HDLC is not set
# CONFIG_DLCI is not set
# CONFIG_SBNI is not set
CONFIG_XEN_NETDEV_FRONTEND=y
# CONFIG_XEN_NETDEV_BACKEND is not set
# CONFIG_VMXNET3 is not set
CONFIG_ISDN=y
# CONFIG_ISDN_I4L is not set
# CONFIG_ISDN_CAPI is not set
# CONFIG_ISDN_DRV_GIGASET is not set
# CONFIG_HYSDN is not set
# CONFIG_MISDN is not set
#
# Input device support
#
CONFIG_INPUT=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set
# CONFIG_INPUT_SPARSEKMAP is not set
# CONFIG_INPUT_MATRIXKMAP is not set
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5520 is not set
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_GPIO_POLLED is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_MATRIX is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_TC3589X is not set
# CONFIG_KEYBOARD_XTKBD is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
CONFIG_MOUSE_PS2_ELANTECH=y
CONFIG_MOUSE_PS2_SENTELIC=y
CONFIG_MOUSE_PS2_TOUCHKIT=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_CYAPA is not set
# CONFIG_MOUSE_ELAN_I2C is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_GPIO is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_DB9 is not set
# CONFIG_JOYSTICK_GAMECON is not set
# CONFIG_JOYSTICK_TURBOGRAFX is not set
# CONFIG_JOYSTICK_AS5011 is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
# CONFIG_JOYSTICK_WALKERA0701 is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_SERIAL_WACOM4 is not set
CONFIG_INPUT_TOUCHSCREEN=y
# CONFIG_TOUCHSCREEN_88PM860X is not set
# CONFIG_TOUCHSCREEN_ADS7846 is not set
# CONFIG_TOUCHSCREEN_AD7877 is not set
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
# CONFIG_TOUCHSCREEN_DA9034 is not set
# CONFIG_TOUCHSCREEN_DA9052 is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_GOODIX is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_ELAN is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_WACOM_I2C is not set
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MCS5000 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_WM831X is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2005 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_PCAP is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_SUR40 is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
# CONFIG_TOUCHSCREEN_ZFORCE is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_88PM860X_ONKEY is not set
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_MAX77693_HAPTIC is not set
# CONFIG_INPUT_MAX8925_ONKEY is not set
# CONFIG_INPUT_MAX8997_HAPTIC is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_MPU3050 is not set
# CONFIG_INPUT_APANEL is not set
# CONFIG_INPUT_GP2A is not set
# CONFIG_INPUT_GPIO_BEEPER is not set
# CONFIG_INPUT_GPIO_TILT_POLLED is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_TWL6040_VIBRA is not set
CONFIG_INPUT_UINPUT=y
# CONFIG_INPUT_PALMAS_PWRBUTTON is not set
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_PWM_BEEPER is not set
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
# CONFIG_INPUT_DA9052_ONKEY is not set
# CONFIG_INPUT_DA9055_ONKEY is not set
# CONFIG_INPUT_WM831X_ON is not set
# CONFIG_INPUT_PCAP is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IMS_PCU is not set
# CONFIG_INPUT_CMA3000 is not set
# CONFIG_INPUT_XEN_KBDDEV_FRONTEND is not set
# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
# CONFIG_INPUT_DRV260X_HAPTICS is not set
# CONFIG_INPUT_DRV2667_HAPTICS is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=m
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_GAMEPORT is not set
#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=0
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_ROCKETPORT is not set
# CONFIG_CYCLADES is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
# CONFIG_SYNCLINK_GT is not set
# CONFIG_NOZOMI is not set
# CONFIG_ISI is not set
# CONFIG_N_HDLC is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
# CONFIG_DEVKMEM is not set
#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_NR_UARTS=48
CONFIG_SERIAL_8250_RUNTIME_UARTS=32
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y
# CONFIG_SERIAL_8250_DW is not set
# CONFIG_SERIAL_8250_FINTEK is not set
#
# Non-8250 serial port support
#
CONFIG_SERIAL_KGDB_NMI=y
# CONFIG_SERIAL_MAX3100 is not set
CONFIG_SERIAL_MAX310X=y
# CONFIG_SERIAL_MFD_HSU is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_CONSOLE_POLL=y
# CONFIG_SERIAL_JSM is not set
CONFIG_SERIAL_SCCNXP=y
CONFIG_SERIAL_SCCNXP_CONSOLE=y
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_IFX6X60 is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
CONFIG_TTY_PRINTK=y
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
CONFIG_PPDEV=m
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_HVC_XEN_FRONTEND=y
# CONFIG_VIRTIO_CONSOLE is not set
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_VIA is not set
# CONFIG_HW_RANDOM_VIRTIO is not set
# CONFIG_HW_RANDOM_TPM is not set
# CONFIG_NVRAM is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
CONFIG_HPET_MMAP=y
CONFIG_HPET_MMAP_DEFAULT=y
# CONFIG_HANGCHECK_TIMER is not set
CONFIG_TCG_TPM=y
# CONFIG_TCG_TIS is not set
# CONFIG_TCG_TIS_I2C_ATMEL is not set
# CONFIG_TCG_TIS_I2C_INFINEON is not set
# CONFIG_TCG_TIS_I2C_NUVOTON is not set
# CONFIG_TCG_NSC is not set
# CONFIG_TCG_ATMEL is not set
# CONFIG_TCG_INFINEON is not set
# CONFIG_TCG_ST33_I2C is not set
# CONFIG_TCG_XEN is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
# CONFIG_XILLYBUS is not set
#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
CONFIG_I2C_MUX=m
#
# Multiplexer I2C Chip support
#
# CONFIG_I2C_MUX_GPIO is not set
# CONFIG_I2C_MUX_PCA9541 is not set
# CONFIG_I2C_MUX_PCA954x is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=m
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_ISMT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_CBUS_GPIO is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_GPIO is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_PXA_PCI is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set
#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
CONFIG_SPI=y
# CONFIG_SPI_DEBUG is not set
CONFIG_SPI_MASTER=y
#
# SPI Master Controller Drivers
#
# CONFIG_SPI_ALTERA is not set
# CONFIG_SPI_BITBANG is not set
# CONFIG_SPI_BUTTERFLY is not set
# CONFIG_SPI_GPIO is not set
# CONFIG_SPI_LM70_LLP is not set
# CONFIG_SPI_OC_TINY is not set
# CONFIG_SPI_PXA2XX is not set
# CONFIG_SPI_PXA2XX_PCI is not set
# CONFIG_SPI_SC18IS602 is not set
# CONFIG_SPI_XCOMM is not set
# CONFIG_SPI_XILINX is not set
# CONFIG_SPI_DESIGNWARE is not set
#
# SPI Protocol Masters
#
# CONFIG_SPI_SPIDEV is not set
# CONFIG_SPI_TLE62X0 is not set
# CONFIG_SPMI is not set
# CONFIG_HSI is not set
#
# PPS support
#
# CONFIG_PPS is not set
#
# PPS generators support
#
#
# PTP clock support
#
# CONFIG_PTP_1588_CLOCK is not set
#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
CONFIG_GPIOLIB=y
CONFIG_GPIO_DEVRES=y
CONFIG_GPIO_ACPI=y
CONFIG_GPIOLIB_IRQCHIP=y
# CONFIG_DEBUG_GPIO is not set
# CONFIG_GPIO_SYSFS is not set
# CONFIG_GPIO_DA9052 is not set
# CONFIG_GPIO_DA9055 is not set
#
# Memory mapped GPIO drivers:
#
# CONFIG_GPIO_GENERIC_PLATFORM is not set
# CONFIG_GPIO_IT8761E is not set
# CONFIG_GPIO_F7188X is not set
# CONFIG_GPIO_SCH311X is not set
# CONFIG_GPIO_SCH is not set
# CONFIG_GPIO_ICH is not set
# CONFIG_GPIO_VX855 is not set
# CONFIG_GPIO_LYNXPOINT is not set
#
# I2C GPIO expanders:
#
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
# CONFIG_GPIO_PCA953X is not set
# CONFIG_GPIO_PCF857X is not set
CONFIG_GPIO_RC5T583=y
CONFIG_GPIO_SX150X=y
CONFIG_GPIO_TC3589X=y
# CONFIG_GPIO_TPS65912 is not set
# CONFIG_GPIO_TWL6040 is not set
# CONFIG_GPIO_WM831X is not set
# CONFIG_GPIO_WM8350 is not set
# CONFIG_GPIO_WM8994 is not set
# CONFIG_GPIO_ADP5520 is not set
# CONFIG_GPIO_ADP5588 is not set
#
# PCI GPIO expanders:
#
# CONFIG_GPIO_BT8XX is not set
# CONFIG_GPIO_AMD8111 is not set
# CONFIG_GPIO_INTEL_MID is not set
# CONFIG_GPIO_ML_IOH is not set
# CONFIG_GPIO_RDC321X is not set
#
# SPI GPIO expanders:
#
# CONFIG_GPIO_MAX7301 is not set
# CONFIG_GPIO_MCP23S08 is not set
# CONFIG_GPIO_MC33880 is not set
#
# AC97 GPIO expanders:
#
#
# LPC GPIO expanders:
#
#
# MODULbus GPIO expanders:
#
# CONFIG_GPIO_PALMAS is not set
CONFIG_GPIO_TPS6586X=y
CONFIG_GPIO_TPS65910=y
#
# USB GPIO expanders:
#
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_MAX8925_POWER is not set
# CONFIG_WM831X_BACKUP is not set
# CONFIG_WM831X_POWER is not set
# CONFIG_WM8350_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_88PM860X is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_BATTERY_BQ27x00 is not set
# CONFIG_BATTERY_DA9030 is not set
# CONFIG_BATTERY_DA9052 is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_GPIO is not set
CONFIG_CHARGER_MANAGER=y
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_BQ24190 is not set
# CONFIG_CHARGER_BQ24735 is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_CHARGER_TPS65090 is not set
# CONFIG_POWER_RESET is not set
CONFIG_POWER_AVS=y
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_HWMON_DEBUG_CHIP is not set
#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7314 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7310 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
# CONFIG_SENSORS_APPLESMC is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_DA9052_ADC is not set
# CONFIG_SENSORS_DA9055 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_GPIO_FAN is not set
# CONFIG_SENSORS_HIH6130 is not set
# CONFIG_SENSORS_CORETEMP is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_POWR1220 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4222 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4260 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_MAX1111 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
# CONFIG_SENSORS_HTU21 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_ADCXX is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM70 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_NCT6683 is not set
# CONFIG_SENSORS_NCT6775 is not set
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SHT15 is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SHTC1 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH56XX_COMMON is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_ADC128D818 is not set
# CONFIG_SENSORS_ADS1015 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_ADS7871 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA209 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_WM831X is not set
# CONFIG_SENSORS_WM8350 is not set
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_THERMAL_GOV_FAIR_SHARE is not set
CONFIG_THERMAL_GOV_STEP_WISE=y
# CONFIG_THERMAL_GOV_BANG_BANG is not set
CONFIG_THERMAL_GOV_USER_SPACE=y
# CONFIG_THERMAL_EMULATION is not set
# CONFIG_INTEL_POWERCLAMP is not set
# CONFIG_X86_PKG_TEMP_THERMAL is not set
# CONFIG_INT340X_THERMAL is not set
#
# Texas Instruments thermal drivers
#
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
# CONFIG_WATCHDOG_NOWAYOUT is not set
#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_DA9052_WATCHDOG is not set
# CONFIG_DA9055_WATCHDOG is not set
# CONFIG_WM831X_WATCHDOG is not set
# CONFIG_WM8350_WATCHDOG is not set
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_ITCO_WDT is not set
# CONFIG_IT8712F_WDT is not set
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_CPU5_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
# CONFIG_MEN_A21_WDT is not set
# CONFIG_XEN_WDT is not set
#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set
#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y
#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
#
# Broadcom specific AMBA
#
# CONFIG_BCMA is not set
#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_AS3711 is not set
CONFIG_PMIC_ADP5520=y
CONFIG_MFD_AAT2870_CORE=y
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_AXP20X is not set
# CONFIG_MFD_CROS_EC is not set
CONFIG_PMIC_DA903X=y
CONFIG_PMIC_DA9052=y
CONFIG_MFD_DA9052_SPI=y
CONFIG_MFD_DA9052_I2C=y
CONFIG_MFD_DA9055=y
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DLN2 is not set
# CONFIG_MFD_MC13XXX_SPI is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_HTC_PASIC3 is not set
CONFIG_HTC_I2CPLD=y
CONFIG_LPC_ICH=m
# CONFIG_LPC_SCH is not set
# CONFIG_INTEL_SOC_PMIC is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
CONFIG_MFD_88PM860X=y
# CONFIG_MFD_MAX14577 is not set
CONFIG_MFD_MAX77686=y
CONFIG_MFD_MAX77693=y
# CONFIG_MFD_MAX8907 is not set
CONFIG_MFD_MAX8925=y
CONFIG_MFD_MAX8997=y
CONFIG_MFD_MAX8998=y
# CONFIG_MFD_MENF21BMC is not set
CONFIG_EZX_PCAP=y
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RTSX_PCI is not set
# CONFIG_MFD_RTSX_USB is not set
CONFIG_MFD_RC5T583=y
# CONFIG_MFD_RN5T618 is not set
CONFIG_MFD_SEC_CORE=y
# CONFIG_MFD_SI476X_CORE is not set
# CONFIG_MFD_SM501 is not set
CONFIG_MFD_SMSC=y
CONFIG_ABX500_CORE=y
CONFIG_AB3100_CORE=y
# CONFIG_AB3100_OTP is not set
# CONFIG_MFD_SYSCON is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
CONFIG_MFD_LP8788=y
CONFIG_MFD_PALMAS=y
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
CONFIG_MFD_TPS65090=y
# CONFIG_MFD_TPS65217 is not set
# CONFIG_MFD_TPS65218 is not set
CONFIG_MFD_TPS6586X=y
CONFIG_MFD_TPS65910=y
CONFIG_MFD_TPS65912=y
CONFIG_MFD_TPS65912_I2C=y
CONFIG_MFD_TPS65912_SPI=y
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
CONFIG_TWL6040_CORE=y
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
CONFIG_MFD_TC3589X=y
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_ARIZONA_SPI is not set
CONFIG_MFD_WM8400=y
CONFIG_MFD_WM831X=y
CONFIG_MFD_WM831X_I2C=y
CONFIG_MFD_WM831X_SPI=y
CONFIG_MFD_WM8350=y
CONFIG_MFD_WM8350_I2C=y
CONFIG_MFD_WM8994=y
CONFIG_REGULATOR=y
# CONFIG_REGULATOR_DEBUG is not set
# CONFIG_REGULATOR_FIXED_VOLTAGE is not set
# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
CONFIG_REGULATOR_88PM8607=y
# CONFIG_REGULATOR_ACT8865 is not set
# CONFIG_REGULATOR_AD5398 is not set
# CONFIG_REGULATOR_AAT2870 is not set
# CONFIG_REGULATOR_AB3100 is not set
# CONFIG_REGULATOR_DA903X is not set
# CONFIG_REGULATOR_DA9052 is not set
# CONFIG_REGULATOR_DA9055 is not set
# CONFIG_REGULATOR_DA9210 is not set
# CONFIG_REGULATOR_DA9211 is not set
# CONFIG_REGULATOR_FAN53555 is not set
# CONFIG_REGULATOR_GPIO is not set
# CONFIG_REGULATOR_ISL9305 is not set
# CONFIG_REGULATOR_ISL6271A is not set
# CONFIG_REGULATOR_LP3971 is not set
# CONFIG_REGULATOR_LP3972 is not set
CONFIG_REGULATOR_LP872X=y
# CONFIG_REGULATOR_LP8755 is not set
CONFIG_REGULATOR_LP8788=y
# CONFIG_REGULATOR_LTC3589 is not set
# CONFIG_REGULATOR_MAX1586 is not set
# CONFIG_REGULATOR_MAX8649 is not set
# CONFIG_REGULATOR_MAX8660 is not set
# CONFIG_REGULATOR_MAX8925 is not set
# CONFIG_REGULATOR_MAX8952 is not set
# CONFIG_REGULATOR_MAX8973 is not set
# CONFIG_REGULATOR_MAX8997 is not set
# CONFIG_REGULATOR_MAX8998 is not set
# CONFIG_REGULATOR_MAX77686 is not set
# CONFIG_REGULATOR_MAX77693 is not set
# CONFIG_REGULATOR_MAX77802 is not set
# CONFIG_REGULATOR_PALMAS is not set
# CONFIG_REGULATOR_PCAP is not set
# CONFIG_REGULATOR_PFUZE100 is not set
# CONFIG_REGULATOR_PWM is not set
# CONFIG_REGULATOR_RC5T583 is not set
# CONFIG_REGULATOR_S2MPA01 is not set
# CONFIG_REGULATOR_S2MPS11 is not set
# CONFIG_REGULATOR_S5M8767 is not set
# CONFIG_REGULATOR_TPS51632 is not set
# CONFIG_REGULATOR_TPS62360 is not set
# CONFIG_REGULATOR_TPS65023 is not set
# CONFIG_REGULATOR_TPS6507X is not set
# CONFIG_REGULATOR_TPS65090 is not set
# CONFIG_REGULATOR_TPS6524X is not set
# CONFIG_REGULATOR_TPS6586X is not set
# CONFIG_REGULATOR_TPS65910 is not set
# CONFIG_REGULATOR_TPS65912 is not set
# CONFIG_REGULATOR_WM831X is not set
# CONFIG_REGULATOR_WM8350 is not set
# CONFIG_REGULATOR_WM8400 is not set
# CONFIG_REGULATOR_WM8994 is not set
CONFIG_MEDIA_SUPPORT=m
#
# Multimedia core support
#
CONFIG_MEDIA_CAMERA_SUPPORT=y
CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
CONFIG_MEDIA_RADIO_SUPPORT=y
# CONFIG_MEDIA_SDR_SUPPORT is not set
CONFIG_MEDIA_RC_SUPPORT=y
# CONFIG_MEDIA_CONTROLLER is not set
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2=m
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_VMALLOC=m
CONFIG_DVB_CORE=m
CONFIG_DVB_NET=y
# CONFIG_TTPCI_EEPROM is not set
CONFIG_DVB_MAX_ADAPTERS=8
CONFIG_DVB_DYNAMIC_MINORS=y
#
# Media drivers
#
CONFIG_RC_CORE=m
# CONFIG_RC_MAP is not set
CONFIG_RC_DECODERS=y
# CONFIG_LIRC is not set
# CONFIG_IR_NEC_DECODER is not set
# CONFIG_IR_RC5_DECODER is not set
# CONFIG_IR_RC6_DECODER is not set
# CONFIG_IR_JVC_DECODER is not set
# CONFIG_IR_SONY_DECODER is not set
# CONFIG_IR_SANYO_DECODER is not set
# CONFIG_IR_SHARP_DECODER is not set
# CONFIG_IR_MCE_KBD_DECODER is not set
# CONFIG_IR_XMP_DECODER is not set
CONFIG_RC_DEVICES=y
# CONFIG_RC_ATI_REMOTE is not set
# CONFIG_IR_ENE is not set
# CONFIG_IR_HIX5HD2 is not set
# CONFIG_IR_IMON is not set
# CONFIG_IR_MCEUSB is not set
# CONFIG_IR_ITE_CIR is not set
# CONFIG_IR_FINTEK is not set
# CONFIG_IR_NUVOTON is not set
# CONFIG_IR_REDRAT3 is not set
# CONFIG_IR_STREAMZAP is not set
# CONFIG_IR_WINBOND_CIR is not set
# CONFIG_IR_IGORPLUGUSB is not set
# CONFIG_IR_IGUANA is not set
# CONFIG_IR_TTUSBIR is not set
# CONFIG_RC_LOOPBACK is not set
# CONFIG_IR_GPIO_CIR is not set
CONFIG_MEDIA_USB_SUPPORT=y
#
# Webcam devices
#
CONFIG_USB_VIDEO_CLASS=m
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
# CONFIG_USB_GSPCA is not set
# CONFIG_USB_PWC is not set
# CONFIG_VIDEO_CPIA2 is not set
# CONFIG_USB_ZR364XX is not set
# CONFIG_USB_STKWEBCAM is not set
# CONFIG_USB_S2255 is not set
# CONFIG_VIDEO_USBTV is not set
#
# Analog TV USB devices
#
# CONFIG_VIDEO_PVRUSB2 is not set
# CONFIG_VIDEO_HDPVR is not set
# CONFIG_VIDEO_USBVISION is not set
# CONFIG_VIDEO_STK1160_COMMON is not set
# CONFIG_VIDEO_GO7007 is not set
#
# Analog/digital TV USB devices
#
# CONFIG_VIDEO_AU0828 is not set
# CONFIG_VIDEO_CX231XX is not set
# CONFIG_VIDEO_TM6000 is not set
#
# Digital TV USB devices
#
# CONFIG_DVB_USB is not set
# CONFIG_DVB_USB_V2 is not set
# CONFIG_DVB_TTUSB_BUDGET is not set
# CONFIG_DVB_TTUSB_DEC is not set
# CONFIG_SMS_USB_DRV is not set
# CONFIG_DVB_B2C2_FLEXCOP_USB is not set
# CONFIG_DVB_AS102 is not set
#
# Webcam, TV (analog/digital) USB devices
#
# CONFIG_VIDEO_EM28XX is not set
CONFIG_MEDIA_PCI_SUPPORT=y
#
# Media capture support
#
#
# Media capture/analog TV support
#
# CONFIG_VIDEO_IVTV is not set
# CONFIG_VIDEO_ZORAN is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_SOLO6X10 is not set
# CONFIG_VIDEO_TW68 is not set
#
# Media capture/analog/hybrid TV support
#
# CONFIG_VIDEO_CX18 is not set
# CONFIG_VIDEO_CX23885 is not set
# CONFIG_VIDEO_CX25821 is not set
# CONFIG_VIDEO_CX88 is not set
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_SAA7134 is not set
# CONFIG_VIDEO_SAA7164 is not set
#
# Media digital TV PCI Adapters
#
# CONFIG_DVB_AV7110 is not set
# CONFIG_DVB_BUDGET_CORE is not set
# CONFIG_DVB_B2C2_FLEXCOP_PCI is not set
# CONFIG_DVB_PLUTO2 is not set
# CONFIG_DVB_DM1105 is not set
# CONFIG_DVB_PT1 is not set
# CONFIG_DVB_PT3 is not set
# CONFIG_MANTIS_CORE is not set
# CONFIG_DVB_NGENE is not set
# CONFIG_DVB_DDBRIDGE is not set
# CONFIG_DVB_SMIPCIE is not set
CONFIG_V4L_PLATFORM_DRIVERS=y
# CONFIG_VIDEO_CAFE_CCIC is not set
# CONFIG_SOC_CAMERA is not set
CONFIG_V4L_MEM2MEM_DRIVERS=y
# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set
# CONFIG_VIDEO_SH_VEU is not set
CONFIG_V4L_TEST_DRIVERS=y
# CONFIG_VIDEO_VIVID is not set
# CONFIG_VIDEO_VIM2M is not set
#
# Supported MMC/SDIO adapters
#
# CONFIG_SMS_SDIO_DRV is not set
CONFIG_RADIO_ADAPTERS=y
CONFIG_RADIO_SI470X=y
# CONFIG_USB_SI470X is not set
# CONFIG_I2C_SI470X is not set
# CONFIG_RADIO_SI4713 is not set
# CONFIG_USB_MR800 is not set
# CONFIG_USB_DSBR is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_SHARK is not set
# CONFIG_RADIO_SHARK2 is not set
# CONFIG_USB_KEENE is not set
# CONFIG_USB_RAREMONO is not set
# CONFIG_USB_MA901 is not set
# CONFIG_RADIO_TEA5764 is not set
# CONFIG_RADIO_SAA7706H is not set
# CONFIG_RADIO_TEF6862 is not set
# CONFIG_RADIO_WL1273 is not set
#
# Texas Instruments WL128x FM driver (ST based)
#
# CONFIG_RADIO_WL128X is not set
# CONFIG_CYPRESS_FIRMWARE is not set
#
# Media ancillary drivers (tuners, sensors, i2c, frontends)
#
CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
CONFIG_MEDIA_ATTACH=y
CONFIG_VIDEO_IR_I2C=m
#
# Audio decoders, processors and mixers
#
#
# RDS decoders
#
#
# Video decoders
#
#
# Video and audio decoders
#
#
# Video encoders
#
#
# Camera sensor devices
#
#
# Flash devices
#
#
# Video improvement chips
#
#
# Audio/Video compression chips
#
#
# Miscellaneous helper chips
#
#
# Sensors used on soc_camera driver
#
CONFIG_MEDIA_TUNER=m
CONFIG_MEDIA_TUNER_SIMPLE=m
CONFIG_MEDIA_TUNER_TDA8290=m
CONFIG_MEDIA_TUNER_TDA827X=m
CONFIG_MEDIA_TUNER_TDA18271=m
CONFIG_MEDIA_TUNER_TDA9887=m
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MT20XX=m
CONFIG_MEDIA_TUNER_XC2028=m
CONFIG_MEDIA_TUNER_XC5000=m
CONFIG_MEDIA_TUNER_XC4000=m
CONFIG_MEDIA_TUNER_MC44S803=m
#
# Multistandard (satellite) frontends
#
#
# Multistandard (cable + terrestrial) frontends
#
#
# DVB-S (satellite) frontends
#
#
# DVB-T (terrestrial) frontends
#
# CONFIG_DVB_AS102_FE is not set
#
# DVB-C (cable) frontends
#
#
# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
#
#
# ISDB-T (terrestrial) frontends
#
#
# ISDB-S (satellite) & ISDB-T (terrestrial) frontends
#
#
# Digital terrestrial only tuners/PLL
#
#
# SEC control devices for DVB-S
#
#
# Tools to develop new frontends
#
# CONFIG_DVB_DUMMY_FE is not set
#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
CONFIG_AGP_VIA=y
CONFIG_INTEL_GTT=y
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
CONFIG_VGA_SWITCHEROO=y
#
# Direct Rendering Manager
#
CONFIG_DRM=m
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_KMS_FB_HELPER=y
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_ADV7511 is not set
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I2C_NXP_TDA998X is not set
# CONFIG_DRM_PTN3460 is not set
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_NOUVEAU is not set
# CONFIG_DRM_I810 is not set
CONFIG_DRM_I915=m
CONFIG_DRM_I915_KMS=y
CONFIG_DRM_I915_FBDEV=y
# CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT is not set
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_DRM_QXL is not set
# CONFIG_DRM_BOCHS is not set
#
# Frame buffer Devices
#
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_CMDLINE=y
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
# CONFIG_FB_SYS_FILLRECT is not set
# CONFIG_FB_SYS_COPYAREA is not set
# CONFIG_FB_SYS_IMAGEBLIT is not set
# CONFIG_FB_FOREIGN_ENDIAN is not set
# CONFIG_FB_SYS_FOPS is not set
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
CONFIG_FB_ASILIANT=y
CONFIG_FB_IMSTT=y
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
# CONFIG_FB_VESA is not set
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_XEN_FBDEV_FRONTEND is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_BROADSHEET is not set
# CONFIG_FB_AUO_K190X is not set
# CONFIG_FB_SIMPLE is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_GENERIC is not set
# CONFIG_BACKLIGHT_PWM is not set
# CONFIG_BACKLIGHT_DA903X is not set
# CONFIG_BACKLIGHT_DA9052 is not set
# CONFIG_BACKLIGHT_MAX8925 is not set
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_WM831X is not set
# CONFIG_BACKLIGHT_ADP5520 is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_88PM860X is not set
# CONFIG_BACKLIGHT_AAT2870 is not set
# CONFIG_BACKLIGHT_LM3630A is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_LP855X is not set
# CONFIG_BACKLIGHT_LP8788 is not set
# CONFIG_BACKLIGHT_GPIO is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_VGASTATE is not set
CONFIG_HDMI=y
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VGACON_SOFT_SCROLLBACK is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_LOGO is not set
CONFIG_SOUND=m
# CONFIG_SOUND_OSS_CORE is not set
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_JACK=y
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
# CONFIG_SND_MIXER_OSS is not set
# CONFIG_SND_PCM_OSS is not set
# CONFIG_SND_SEQUENCER_OSS is not set
# CONFIG_SND_HRTIMER is not set
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_VMASTER=y
CONFIG_SND_KCTL_JACK=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_RAWMIDI_SEQ=m
# CONFIG_SND_OPL3_LIB_SEQ is not set
# CONFIG_SND_OPL4_LIB_SEQ is not set
# CONFIG_SND_SBAWE_SEQ is not set
# CONFIG_SND_EMU10K1_SEQ is not set
CONFIG_SND_DRIVERS=y
# CONFIG_SND_PCSP is not set
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_ALOOP is not set
CONFIG_SND_VIRMIDI=m
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_MTS64 is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
# CONFIG_SND_PORTMAN2X4 is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
#
# HD-Audio
#
CONFIG_SND_HDA=m
CONFIG_SND_HDA_INTEL=m
CONFIG_SND_HDA_PREALLOC_SIZE=64
CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_RECONFIG=y
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_INPUT_BEEP_MODE=0
CONFIG_SND_HDA_INPUT_JACK=y
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=m
# CONFIG_SND_HDA_CODEC_ANALOG is not set
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
# CONFIG_SND_HDA_CODEC_VIA is not set
CONFIG_SND_HDA_CODEC_HDMI=m
CONFIG_SND_HDA_I915=y
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
# CONFIG_SND_HDA_CODEC_CA0110 is not set
# CONFIG_SND_HDA_CODEC_CA0132 is not set
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
# CONFIG_SND_HDA_CODEC_SI3054 is not set
CONFIG_SND_HDA_GENERIC=m
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
CONFIG_SND_SPI=y
CONFIG_SND_USB=y
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_US122L is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_USB_HIFACE is not set
# CONFIG_SND_BCD2000 is not set
# CONFIG_SND_SOC is not set
# CONFIG_SOUND_PRIME is not set
#
# HID support
#
CONFIG_HID=m
# CONFIG_HIDRAW is not set
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=m
#
# Special HID drivers
#
# CONFIG_HID_A4TECH is not set
# CONFIG_HID_ACRUX is not set
# CONFIG_HID_APPLE is not set
# CONFIG_HID_APPLEIR is not set
# CONFIG_HID_AUREAL is not set
# CONFIG_HID_BELKIN is not set
# CONFIG_HID_CHERRY is not set
# CONFIG_HID_CHICONY is not set
# CONFIG_HID_PRODIKEYS is not set
# CONFIG_HID_CP2112 is not set
# CONFIG_HID_CYPRESS is not set
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_ELO is not set
# CONFIG_HID_EZKEY is not set
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_GT683R is not set
# CONFIG_HID_HUION is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_ICADE is not set
# CONFIG_HID_TWINHAN is not set
# CONFIG_HID_KENSINGTON is not set
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LENOVO is not set
# CONFIG_HID_LOGITECH is not set
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MICROSOFT is not set
# CONFIG_HID_MONTEREY is not set
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTRIG is not set
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PENMOUNT is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PLANTRONICS is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SAMSUNG is not set
# CONFIG_HID_SONY is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEELSERIES is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_RMI is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_THINGM is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_WACOM is not set
# CONFIG_HID_WIIMOTE is not set
# CONFIG_HID_XINMO is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set
#
# USB HID support
#
CONFIG_USB_HID=m
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y
#
# USB HID Boot Protocol drivers
#
CONFIG_USB_KBD=m
CONFIG_USB_MOUSE=m
#
# I2C HID support
#
# CONFIG_I2C_HID is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y
#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
CONFIG_USB_DYNAMIC_MINORS=y
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
# CONFIG_USB_OTG_FSM is not set
# CONFIG_USB_MON is not set
# CONFIG_USB_WUSB_CBAF is not set
#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
CONFIG_USB_XHCI_PCI=y
CONFIG_USB_EHCI_HCD=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_EHCI_PCI=y
CONFIG_USB_EHCI_HCD_PLATFORM=y
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1760_HCD is not set
# CONFIG_USB_ISP1362_HCD is not set
# CONFIG_USB_FUSBH200_HCD is not set
# CONFIG_USB_FOTG210_HCD is not set
# CONFIG_USB_MAX3421_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
CONFIG_USB_OHCI_HCD_PLATFORM=y
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_TEST_MODE is not set
#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=m
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set
#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#
#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_REALTEK is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
# CONFIG_USB_STORAGE_ENE_UB6250 is not set
# CONFIG_USB_UAS is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_CHIPIDEA is not set
#
# USB port drivers
#
# CONFIG_USB_USS720 is not set
CONFIG_USB_SERIAL=m
# CONFIG_USB_SERIAL_GENERIC is not set
# CONFIG_USB_SERIAL_SIMPLE is not set
# CONFIG_USB_SERIAL_AIRCABLE is not set
# CONFIG_USB_SERIAL_ARK3116 is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_CH341 is not set
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_CP210X is not set
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_F81232 is not set
# CONFIG_USB_SERIAL_GARMIN is not set
# CONFIG_USB_SERIAL_IPW is not set
# CONFIG_USB_SERIAL_IUU is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_METRO is not set
# CONFIG_USB_SERIAL_MOS7720 is not set
# CONFIG_USB_SERIAL_MOS7840 is not set
# CONFIG_USB_SERIAL_MXUPORT is not set
# CONFIG_USB_SERIAL_NAVMAN is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_OTI6858 is not set
# CONFIG_USB_SERIAL_QCAUX is not set
# CONFIG_USB_SERIAL_QUALCOMM is not set
# CONFIG_USB_SERIAL_SPCP8X5 is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
# CONFIG_USB_SERIAL_SYMBOL is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
CONFIG_USB_SERIAL_WWAN=m
CONFIG_USB_SERIAL_OPTION=m
# CONFIG_USB_SERIAL_OMNINET is not set
# CONFIG_USB_SERIAL_OPTICON is not set
# CONFIG_USB_SERIAL_XSENS_MT is not set
# CONFIG_USB_SERIAL_WISHBONE is not set
# CONFIG_USB_SERIAL_SSU100 is not set
# CONFIG_USB_SERIAL_QT2 is not set
# CONFIG_USB_SERIAL_DEBUG is not set
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_EHSET_TEST_FIXTURE is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set
# CONFIG_USB_HSIC_USB3503 is not set
# CONFIG_USB_LINK_LAYER_TEST is not set
#
# USB Physical Layer drivers
#
# CONFIG_USB_PHY is not set
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_GPIO_VBUS is not set
# CONFIG_USB_ISP1301 is not set
# CONFIG_USB_GADGET is not set
# CONFIG_USB_LED_TRIG is not set
# CONFIG_UWB is not set
CONFIG_MMC=y
# CONFIG_MMC_DEBUG is not set
# CONFIG_MMC_CLKGATE is not set
#
# MMC/SD/SDIO Card Drivers
#
CONFIG_MMC_BLOCK=m
CONFIG_MMC_BLOCK_MINORS=8
CONFIG_MMC_BLOCK_BOUNCE=y
# CONFIG_SDIO_UART is not set
# CONFIG_MMC_TEST is not set
#
# MMC/SD/SDIO Host Controller Drivers
#
CONFIG_MMC_SDHCI=m
# CONFIG_MMC_SDHCI_PCI is not set
# CONFIG_MMC_SDHCI_ACPI is not set
# CONFIG_MMC_SDHCI_PLTFM is not set
# CONFIG_MMC_WBSD is not set
# CONFIG_MMC_TIFM_SD is not set
# CONFIG_MMC_SPI is not set
# CONFIG_MMC_CB710 is not set
# CONFIG_MMC_VIA_SDMMC is not set
# CONFIG_MMC_VUB300 is not set
# CONFIG_MMC_USHC is not set
# CONFIG_MMC_USDHI6ROL0 is not set
# CONFIG_MMC_TOSHIBA_PCI is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
#
# LED drivers
#
# CONFIG_LEDS_88PM860X is not set
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_GPIO is not set
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_LP5521 is not set
# CONFIG_LEDS_LP5523 is not set
# CONFIG_LEDS_LP5562 is not set
# CONFIG_LEDS_LP8501 is not set
# CONFIG_LEDS_LP8788 is not set
# CONFIG_LEDS_LP8860 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA963X is not set
# CONFIG_LEDS_WM831X_STATUS is not set
# CONFIG_LEDS_WM8350 is not set
# CONFIG_LEDS_DA903X is not set
# CONFIG_LEDS_DA9052 is not set
# CONFIG_LEDS_DAC124S085 is not set
# CONFIG_LEDS_PWM is not set
# CONFIG_LEDS_REGULATOR is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
# CONFIG_LEDS_LT3593 is not set
# CONFIG_LEDS_ADP5520 is not set
# CONFIG_LEDS_DELL_NETBOOKS is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_MAX8997 is not set
# CONFIG_LEDS_LM355x is not set
#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
# CONFIG_LEDS_BLINKM is not set
#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
CONFIG_LEDS_TRIGGER_CPU=y
# CONFIG_LEDS_TRIGGER_GPIO is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
# CONFIG_LEDS_TRIGGER_CAMERA is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC=y
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
# CONFIG_EDAC_DECODE_MCE is not set
# CONFIG_EDAC_MM_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set
#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set
#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_88PM860X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_LP8788 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_MAX8925 is not set
# CONFIG_RTC_DRV_MAX8998 is not set
# CONFIG_RTC_DRV_MAX8997 is not set
# CONFIG_RTC_DRV_MAX77686 is not set
# CONFIG_RTC_DRV_MAX77802 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_ISL12057 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PALMAS is not set
# CONFIG_RTC_DRV_PCF2127 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_TPS6586X is not set
# CONFIG_RTC_DRV_TPS65910 is not set
# CONFIG_RTC_DRV_RC5T583 is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set
# CONFIG_RTC_DRV_S5M is not set
#
# SPI RTC drivers
#
# CONFIG_RTC_DRV_M41T93 is not set
# CONFIG_RTC_DRV_M41T94 is not set
# CONFIG_RTC_DRV_DS1305 is not set
# CONFIG_RTC_DRV_DS1343 is not set
# CONFIG_RTC_DRV_DS1347 is not set
# CONFIG_RTC_DRV_DS1390 is not set
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_R9701 is not set
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_DS3234 is not set
# CONFIG_RTC_DRV_PCF2123 is not set
# CONFIG_RTC_DRV_RX4581 is not set
# CONFIG_RTC_DRV_MCP795 is not set
#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_DA9052 is not set
# CONFIG_RTC_DRV_DA9055 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_WM831X is not set
# CONFIG_RTC_DRV_WM8350 is not set
# CONFIG_RTC_DRV_AB3100 is not set
#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_PCAP is not set
# CONFIG_RTC_DRV_XGENE is not set
#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set
#
# DMA Devices
#
# CONFIG_INTEL_MID_DMAC is not set
# CONFIG_INTEL_IOATDMA is not set
# CONFIG_DW_DMAC_CORE is not set
# CONFIG_DW_DMAC is not set
# CONFIG_DW_DMAC_PCI is not set
CONFIG_DMA_ENGINE=y
CONFIG_DMA_ACPI=y
#
# DMA Clients
#
# CONFIG_ASYNC_TX_DMA is not set
# CONFIG_DMATEST is not set
CONFIG_AUXDISPLAY=y
# CONFIG_KS0108 is not set
# CONFIG_UIO is not set
# CONFIG_VFIO is not set
CONFIG_VIRT_DRIVERS=y
CONFIG_VIRTIO=y
#
# Virtio drivers
#
CONFIG_VIRTIO_PCI=y
# CONFIG_VIRTIO_BALLOON is not set
# CONFIG_VIRTIO_MMIO is not set
#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
#
# Xen driver support
#
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SELFBALLOONING=y
CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
CONFIG_XEN_SCRUB_PAGES=y
# CONFIG_XEN_DEV_EVTCHN is not set
CONFIG_XEN_BACKEND=y
# CONFIG_XENFS is not set
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
# CONFIG_XEN_GNTDEV is not set
# CONFIG_XEN_GRANT_DEV_ALLOC is not set
CONFIG_SWIOTLB_XEN=y
CONFIG_XEN_TMEM=m
# CONFIG_XEN_PCIDEV_BACKEND is not set
CONFIG_XEN_PRIVCMD=m
CONFIG_XEN_ACPI_PROCESSOR=y
CONFIG_XEN_MCE_LOG=y
CONFIG_XEN_HAVE_PVMMU=y
CONFIG_XEN_EFI=y
CONFIG_STAGING=y
# CONFIG_SLICOSS is not set
# CONFIG_PRISM2_USB is not set
# CONFIG_COMEDI is not set
# CONFIG_PANEL is not set
# CONFIG_RTL8192U is not set
# CONFIG_RTLLIB is not set
# CONFIG_R8712U is not set
# CONFIG_R8188EU is not set
# CONFIG_R8723AU is not set
# CONFIG_RTS5208 is not set
# CONFIG_LINE6_USB is not set
# CONFIG_VT6655 is not set
# CONFIG_VT6656 is not set
# CONFIG_FB_XGI is not set
# CONFIG_FT1000 is not set
#
# Speakup console speech
#
# CONFIG_SPEAKUP is not set
# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set
# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
CONFIG_STAGING_MEDIA=y
# CONFIG_I2C_BCM2048 is not set
# CONFIG_DVB_CXD2099 is not set
# CONFIG_VIDEO_DT3155 is not set
# CONFIG_VIDEO_TLG2300 is not set
# CONFIG_DVB_MN88472 is not set
# CONFIG_DVB_MN88473 is not set
CONFIG_MEDIA_PARPORT_SUPPORT=y
# CONFIG_VIDEO_BWQCAM is not set
# CONFIG_VIDEO_CQCAM is not set
# CONFIG_VIDEO_W9966 is not set
# CONFIG_VIDEO_SAA7191 is not set
#
# Android
#
# CONFIG_USB_WPAN_HCD is not set
# CONFIG_WIMAX_GDM72XX is not set
# CONFIG_LTE_GDM724X is not set
# CONFIG_LUSTRE_FS is not set
# CONFIG_DGNC is not set
# CONFIG_DGAP is not set
# CONFIG_GS_FPGABOOT is not set
# CONFIG_CRYPTO_SKEIN is not set
# CONFIG_UNISYSSPAR is not set
CONFIG_X86_PLATFORM_DEVICES=y
# CONFIG_ACER_WMI is not set
# CONFIG_ACERHDF is not set
# CONFIG_ALIENWARE_WMI is not set
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_DELL_WMI is not set
# CONFIG_DELL_WMI_AIO is not set
# CONFIG_DELL_SMO8800 is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_FUJITSU_TABLET is not set
# CONFIG_AMILO_RFKILL is not set
# CONFIG_HP_ACCEL is not set
# CONFIG_HP_WIRELESS is not set
# CONFIG_HP_WMI is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_COMPAL_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_IDEAPAD_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_INTEL_MENLOW is not set
# CONFIG_EEEPC_LAPTOP is not set
# CONFIG_ASUS_WMI is not set
CONFIG_ACPI_WMI=m
# CONFIG_MSI_WMI is not set
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_ACPI_TOSHIBA is not set
# CONFIG_TOSHIBA_BT_RFKILL is not set
# CONFIG_TOSHIBA_HAPS is not set
# CONFIG_ACPI_CMPC is not set
# CONFIG_INTEL_IPS is not set
# CONFIG_IBM_RTL is not set
CONFIG_SAMSUNG_LAPTOP=m
# CONFIG_MXM_WMI is not set
# CONFIG_INTEL_OAKTRAIL is not set
# CONFIG_SAMSUNG_Q10 is not set
# CONFIG_APPLE_GMUX is not set
CONFIG_INTEL_RST=m
# CONFIG_INTEL_SMARTCONNECT is not set
# CONFIG_PVPANIC is not set
# CONFIG_CHROME_PLATFORMS is not set
#
# SOC (System On Chip) specific Drivers
#
# CONFIG_SOC_TI is not set
#
# Hardware Spinlock drivers
#
#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# CONFIG_ATMEL_PIT is not set
# CONFIG_SH_TIMER_CMT is not set
# CONFIG_SH_TIMER_MTU2 is not set
# CONFIG_SH_TIMER_TMU is not set
# CONFIG_EM_TIMER_STI is not set
# CONFIG_MAILBOX is not set
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y
CONFIG_AMD_IOMMU=y
CONFIG_AMD_IOMMU_STATS=y
# CONFIG_AMD_IOMMU_V2 is not set
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_FLOPPY_WA=y
CONFIG_IRQ_REMAP=y
#
# Remoteproc drivers
#
# CONFIG_STE_MODEM_RPROC is not set
#
# Rpmsg drivers
#
#
# SOC (System On Chip) specific Drivers
#
CONFIG_PM_DEVFREQ=y
#
# DEVFREQ Governors
#
CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y
CONFIG_DEVFREQ_GOV_PERFORMANCE=y
CONFIG_DEVFREQ_GOV_POWERSAVE=y
CONFIG_DEVFREQ_GOV_USERSPACE=y
#
# DEVFREQ Drivers
#
CONFIG_EXTCON=y
#
# Extcon Device Drivers
#
# CONFIG_EXTCON_GPIO is not set
# CONFIG_EXTCON_MAX77693 is not set
# CONFIG_EXTCON_MAX8997 is not set
# CONFIG_EXTCON_PALMAS is not set
# CONFIG_EXTCON_RT8973A is not set
# CONFIG_EXTCON_SM5502 is not set
CONFIG_MEMORY=y
# CONFIG_IIO is not set
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
CONFIG_PWM=y
CONFIG_PWM_SYSFS=y
# CONFIG_PWM_LPSS is not set
# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set
# CONFIG_FMC is not set
#
# PHY Subsystem
#
# CONFIG_GENERIC_PHY is not set
# CONFIG_BCM_KONA_USB2_PHY is not set
# CONFIG_POWERCAP is not set
# CONFIG_MCB is not set
CONFIG_RAS=y
# CONFIG_THUNDERBOLT is not set
#
# Android
#
# CONFIG_ANDROID is not set
#
# Firmware Drivers
#
CONFIG_EDD=y
CONFIG_EDD_OFF=y
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
# CONFIG_DMI_SYSFS is not set
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
CONFIG_ISCSI_IBFT_FIND=y
# CONFIG_ISCSI_IBFT is not set
# CONFIG_GOOGLE_FIRMWARE is not set
#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_VARS=y
CONFIG_EFI_VARS_PSTORE=y
# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set
CONFIG_EFI_RUNTIME_MAP=y
CONFIG_EFI_RUNTIME_WRAPPERS=y
CONFIG_UEFI_CPER=y
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT23=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_XFS_FS=m
CONFIG_XFS_QUOTA=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
# CONFIG_XFS_WARN is not set
# CONFIG_XFS_DEBUG is not set
# CONFIG_GFS2_FS is not set
CONFIG_BTRFS_FS=m
CONFIG_BTRFS_FS_POSIX_ACL=y
# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
# CONFIG_BTRFS_DEBUG is not set
# CONFIG_BTRFS_ASSERT is not set
# CONFIG_NILFS2_FS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
CONFIG_FILE_LOCKING=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_PRINT_QUOTA_WARNING is not set
# CONFIG_QUOTA_DEBUG is not set
# CONFIG_QFMT_V1 is not set
# CONFIG_QFMT_V2 is not set
CONFIG_QUOTACTL=y
CONFIG_QUOTACTL_COMPAT=y
# CONFIG_AUTOFS4_FS is not set
CONFIG_FUSE_FS=y
# CONFIG_CUSE is not set
CONFIG_OVERLAY_FS=m
#
# Caches
#
# CONFIG_FSCACHE is not set
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
CONFIG_UDF_FS=m
CONFIG_UDF_NLS=y
#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
# CONFIG_MSDOS_FS is not set
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
CONFIG_NTFS_FS=m
# CONFIG_NTFS_DEBUG is not set
# CONFIG_NTFS_RW is not set
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
# CONFIG_CONFIGFS_FS is not set
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
CONFIG_ECRYPT_FS=y
# CONFIG_ECRYPT_FS_MESSAGING is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_LOGFS is not set
# CONFIG_CRAMFS is not set
CONFIG_SQUASHFS=m
# CONFIG_SQUASHFS_FILE_CACHE is not set
CONFIG_SQUASHFS_FILE_DIRECT=y
# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
# CONFIG_SQUASHFS_DECOMP_MULTI is not set
CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
CONFIG_SQUASHFS_XATTR=y
CONFIG_SQUASHFS_ZLIB=y
CONFIG_SQUASHFS_LZ4=y
CONFIG_SQUASHFS_LZO=y
CONFIG_SQUASHFS_XZ=y
# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
# CONFIG_SQUASHFS_EMBEDDED is not set
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
# CONFIG_PSTORE_CONSOLE is not set
# CONFIG_PSTORE_FTRACE is not set
# CONFIG_PSTORE_RAM is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_EFIVAR_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_CEPH_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
CONFIG_NLS_ISO8859_1=m
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
# CONFIG_NLS_UTF8 is not set
#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
CONFIG_BOOT_PRINTK_DELAY=y
# CONFIG_DYNAMIC_DEBUG is not set
#
# Compile-time checks and compiler options
#
# CONFIG_DEBUG_INFO is not set
# CONFIG_ENABLE_WARN_DEPRECATED is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_FRAME_WARN=1024
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
CONFIG_UNUSED_SYMBOLS=y
# CONFIG_PAGE_OWNER is not set
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_DEBUG_KERNEL=y
#
# Memory Debugging
#
# CONFIG_PAGE_EXTENSION is not set
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_DEBUG_SLAB is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_VIRTUAL is not set
# CONFIG_DEBUG_MEMORY_INIT is not set
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
CONFIG_HAVE_ARCH_KMEMCHECK=y
# CONFIG_DEBUG_SHIRQ is not set
#
# Debug Lockups and Hangs
#
CONFIG_LOCKUP_DETECTOR=y
CONFIG_HARDLOCKUP_DETECTOR=y
# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
CONFIG_PANIC_TIMEOUT=0
CONFIG_SCHED_DEBUG=y
CONFIG_SCHEDSTATS=y
# CONFIG_SCHED_STACK_END_CHECK is not set
CONFIG_TIMER_STATS=y
#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_LOCKDEP is not set
CONFIG_DEBUG_ATOMIC_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
# CONFIG_LOCK_TORTURE_TEST is not set
CONFIG_TRACE_IRQFLAGS=y
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_LIST is not set
CONFIG_DEBUG_PI_LIST=y
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_DEBUG_CREDENTIALS is not set
#
# RCU Debugging
#
# CONFIG_PROVE_RCU is not set
# CONFIG_SPARSE_RCU_POINTER is not set
# CONFIG_TORTURE_TEST is not set
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
# CONFIG_RCU_CPU_STALL_INFO is not set
# CONFIG_RCU_TRACE is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
CONFIG_CLOSURE_DEBUG=y
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_LATENCYTOP=y
CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACER_MAX_TRACE=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
CONFIG_SCHED_TRACER=y
CONFIG_FTRACE_SYSCALLS=y
CONFIG_TRACER_SNAPSHOT=y
# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
CONFIG_STACK_TRACER=y
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENT=y
CONFIG_UPROBE_EVENT=y
CONFIG_PROBE_EVENTS=y
CONFIG_DYNAMIC_FTRACE=y
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_FUNCTION_PROFILER=y
CONFIG_FTRACE_MCOUNT_RECORD=y
# CONFIG_FTRACE_STARTUP_TEST is not set
CONFIG_MMIOTRACE=y
# CONFIG_MMIOTRACE_TEST is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
#
# Runtime Testing
#
# CONFIG_LKDTM is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_TEST_LKM is not set
# CONFIG_TEST_USER_COPY is not set
# CONFIG_TEST_BPF is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_UDELAY is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_KGDB=y
CONFIG_KGDB_SERIAL_CONSOLE=y
# CONFIG_KGDB_TESTS is not set
CONFIG_KGDB_LOW_LEVEL_TRAP=y
CONFIG_KGDB_KDB=y
CONFIG_KDB_KEYBOARD=y
CONFIG_KDB_CONTINUE_CATASTROPHIC=0
CONFIG_STRICT_DEVMEM=y
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
# CONFIG_EARLY_PRINTK_EFI is not set
# CONFIG_X86_PTDUMP is not set
CONFIG_DEBUG_RODATA=y
# CONFIG_DEBUG_RODATA_TEST is not set
CONFIG_DEBUG_SET_MODULE_RONX=y
# CONFIG_DEBUG_NX_TEST is not set
CONFIG_DOUBLEFAULT=y
# CONFIG_DEBUG_TLBFLUSH is not set
# CONFIG_IOMMU_DEBUG is not set
# CONFIG_IOMMU_STRESS is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
# CONFIG_X86_DECODER_SELFTEST is not set
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
# CONFIG_IO_DELAY_0X80 is not set
CONFIG_IO_DELAY_0XED=y
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=1
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
CONFIG_OPTIMIZE_INLINING=y
# CONFIG_DEBUG_NMI_SELFTEST is not set
# CONFIG_X86_DEBUG_STATIC_CPU_HAS is not set
#
# Security options
#
CONFIG_KEYS=y
# CONFIG_PERSISTENT_KEYRINGS is not set
# CONFIG_BIG_KEYS is not set
CONFIG_TRUSTED_KEYS=y
CONFIG_ENCRYPTED_KEYS=y
# CONFIG_KEYS_DEBUG_PROC_KEYS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_PATH=y
CONFIG_INTEL_TXT=y
CONFIG_LSM_MMAP_MIN_ADDR=0
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0
CONFIG_SECURITY_SELINUX_DISABLE=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
CONFIG_SECURITY_SMACK=y
# CONFIG_SECURITY_SMACK_BRINGUP is not set
CONFIG_SECURITY_TOMOYO=y
CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048
CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024
# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set
CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init"
CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init"
CONFIG_SECURITY_APPARMOR=y
CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=1
CONFIG_SECURITY_APPARMOR_HASH=y
CONFIG_SECURITY_YAMA=y
CONFIG_SECURITY_YAMA_STACKED=y
CONFIG_INTEGRITY=y
CONFIG_INTEGRITY_SIGNATURE=y
# CONFIG_INTEGRITY_ASYMMETRIC_KEYS is not set
CONFIG_INTEGRITY_AUDIT=y
# CONFIG_IMA is not set
CONFIG_EVM=y
CONFIG_EVM_ATTR_FSUUID=y
# CONFIG_EVM_EXTRA_SMACK_XATTRS is not set
# CONFIG_DEFAULT_SECURITY_SELINUX is not set
# CONFIG_DEFAULT_SECURITY_SMACK is not set
# CONFIG_DEFAULT_SECURITY_TOMOYO is not set
CONFIG_DEFAULT_SECURITY_APPARMOR=y
# CONFIG_DEFAULT_SECURITY_YAMA is not set
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_DEFAULT_SECURITY="apparmor"
CONFIG_XOR_BLOCKS=m
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=m
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
# CONFIG_CRYPTO_GF128MUL is not set
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_PCRYPT is not set
CONFIG_CRYPTO_WORKQUEUE=y
# CONFIG_CRYPTO_CRYPTD is not set
# CONFIG_CRYPTO_MCRYPTD is not set
# CONFIG_CRYPTO_AUTHENC is not set
# CONFIG_CRYPTO_TEST is not set
#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=m
# CONFIG_CRYPTO_GCM is not set
CONFIG_CRYPTO_SEQIV=m
#
# Block modes
#
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=m
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_PCBC is not set
# CONFIG_CRYPTO_XTS is not set
#
# Hash modes
#
CONFIG_CRYPTO_CMAC=m
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_VMAC is not set
#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_INTEL=y
# CONFIG_CRYPTO_CRC32 is not set
# CONFIG_CRYPTO_CRC32_PCLMUL is not set
CONFIG_CRYPTO_CRCT10DIF=y
# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set
# CONFIG_CRYPTO_GHASH is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
# CONFIG_CRYPTO_RMD320 is not set
CONFIG_CRYPTO_SHA1=y
# CONFIG_CRYPTO_SHA1_SSSE3 is not set
# CONFIG_CRYPTO_SHA256_SSSE3 is not set
# CONFIG_CRYPTO_SHA512_SSSE3 is not set
# CONFIG_CRYPTO_SHA1_MB is not set
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_X86_64 is not set
# CONFIG_CRYPTO_AES_NI_INTEL is not set
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=m
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
# CONFIG_CRYPTO_DES is not set
# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set
# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set
#
# Compression
#
# CONFIG_CRYPTO_DEFLATE is not set
# CONFIG_CRYPTO_ZLIB is not set
CONFIG_CRYPTO_LZO=y
CONFIG_CRYPTO_LZ4=m
CONFIG_CRYPTO_LZ4HC=m
#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
# CONFIG_CRYPTO_DRBG_MENU is not set
# CONFIG_CRYPTO_USER_API_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
CONFIG_CRYPTO_HASH_INFO=y
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
# CONFIG_CRYPTO_DEV_PADLOCK_AES is not set
# CONFIG_CRYPTO_DEV_PADLOCK_SHA is not set
# CONFIG_CRYPTO_DEV_CCP is not set
# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_PUBLIC_KEY_ALGO_RSA=y
CONFIG_X509_CERTIFICATE_PARSER=y
# CONFIG_PKCS7_MESSAGE_PARSER is not set
CONFIG_HAVE_KVM=y
CONFIG_VIRTUALIZATION=y
# CONFIG_KVM is not set
CONFIG_BINARY_PRINTF=y
#
# Library routines
#
CONFIG_RAID6_PQ=m
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_PERCPU_RWSEM=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_CRC_CCITT=m
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
# CONFIG_CRC7 is not set
CONFIG_LIBCRC32C=m
# CONFIG_CRC8 is not set
# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_COMPRESS=m
CONFIG_LZ4HC_COMPRESS=m
CONFIG_LZ4_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
# CONFIG_XZ_DEC_POWERPC is not set
# CONFIG_XZ_DEC_IA64 is not set
# CONFIG_XZ_DEC_ARM is not set
# CONFIG_XZ_DEC_ARMTHUMB is not set
# CONFIG_XZ_DEC_SPARC is not set
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_INTERVAL_TREE=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
CONFIG_AVERAGE=y
CONFIG_CLZ_TAB=y
# CONFIG_CORDIC is not set
CONFIG_DDR=y
CONFIG_MPILIB=y
CONFIG_SIGNATURE=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_FONT_SUPPORT=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
CONFIG_ARCH_HAS_SG_CHAIN=y
[-- Attachment #4: 3.19.0-rc1-58.2-iniza-small.patch --]
[-- Type: text/x-diff, Size: 260856 bytes --]
Al Viro (4):
Bluetooth: hidp_connection_add() unsafe use of l2cap_pi()
Bluetooth: cmtp: cmtp_add_connection() should verify that it's dealing with l2cap socket
Bluetooth: bnep: bnep_add_connection() should verify that it's dealing with l2cap socket
[regression] braino in "lustre: use is_root_inode()"
Alexey Skidanov (1):
amdkfd: init aperture once per process
Amir Vadai (1):
net/mlx4_en: Doorbell is byteswapped in Little Endian archs
Antonio Quartulli (1):
batman-adv: avoid NULL dereferences and fix if check
Appana Durga Kedareswara Rao (1):
net: xilinx: Remove unnecessary temac_property in the driver
Catalin Marinas (1):
arm64: Replace set_arch_dma_coherent_ops with arch_setup_dma_ops
Chris Wilson (3):
drm/i915: Invalidate media caches on gen7
drm/i915: Force the CS stall for invalidate flushes
drm/i915: Disable PSMI sleep messages on all rings around context switches
Corey Minyard (2):
ipmi: Finish cleanup of BMC attributes
ipmi: Fix compile issue with isspace()
Dan Collins (1):
packet: Fixed TPACKET V3 to signal poll when block is closed rather than every packet
Daniel Glöckner (1):
net: s6gmac: remove driver
Dave Airlie (7):
nouveau: bring back legacy mmap handler
Merge branch 'msm-fixes-3.19' of git://people.freedesktop.org/~robclark/linux into drm-fixes
Merge tag 'topic/atomic-fixes-2014-12-17' of git://anongit.freedesktop.org/drm-intel into drm-fixes
Merge tag 'drm-intel-next-fixes-2014-12-17' of git://anongit.freedesktop.org/drm-intel into drm-fixes
Merge tag 'drm/tegra/for-3.19-rc1-fixes' of git://people.freedesktop.org/~tagr/linux into drm-fixes
Merge tag 'amdkfd-fixes-2014-12-23' of git://people.freedesktop.org/~gabbayo/linux into drm-fixes
Revert "drm/gem: Warn on illegal use of the dumb buffer interface v2"
Dave Jones (1):
agp: Fix up email address & attributions in AGP MODULE_AUTHOR tags
David S. Miller (5):
Merge branch 'for-upstream' of git://git.kernel.org/.../bluetooth/bluetooth
Merge branch 'openvswitch-net'
Merge tag 'wireless-drivers-for-davem-2014-12-26' of git://git.kernel.org/.../kvalo/wireless-drivers
Merge branch 'for-upstream' of git://git.kernel.org/.../bluetooth/bluetooth
Merge branch 'netlink_multicast'
Eliad Peller (1):
iwlwifi: mvm: clear IN_HW_RESTART flag on stop()
Emmanuel Grumbach (3):
iwlwifi: pcie: re-ACK all interrupts after device reset
iwlwifi: don't double free a pointer if no FW was found
iwlwifi: add new device IDs for 3165
Govindarajulu Varadarajan (1):
enic: fix rx skb checksum
Haiyang Zhang (1):
hyperv: Fix some variable name typos in send-buffer init/revoke
Hariprasad Shenai (1):
cxgb4vf: Fix ethtool get_settings for VF driver
Herbert Xu (6):
virtio_net: Fix napi poll list corruption
caif: Fix napi poll list corruption
net: Move napi polling code out of net_rx_action
net: Detect drivers that reschedule NAPI and exhaust budget
net: Always poll at least one device in net_rx_action
net: Rearrange loop in net_rx_action
Huacai Chen (1):
stmmac: Don't init ptp again when resume from suspend/hibernation
Imre Deak (3):
drm/i915: vlv: fix IRQ masking when uninstalling interrupts
drm/i915: move RPS PM_IER enabling to gen6_enable_rps_interrupts
drm/i915: sanitize RPS resetting during GPU reset
Jason Wang (1):
net: drop the packet when fails to do software segmentation or header check
Jay Vosburgh (1):
net/core: Handle csum for CHECKSUM_COMPLETE VXLAN forwarding
Jesse Gross (1):
net: Generalize ndo_gso_check to ndo_features_check
Jia-Ju Bai (3):
8139too: Fix the lack of pci_disable_device
8139too: Add netif_napi_del in the driver
ne2k-pci: Add pci_disable_device in error handling
Jilai Wang (2):
drm/msm/hdmi: enable regulators before clocks to avoid warnings
drm/msm/hdmi: rework HDMI IRQ handler
Joe Thornber (2):
dm thin: fix inability to discard blocks when in out-of-data-space mode
dm thin: fix missing out-of-data-space to write mode transition if blocks are released
Johan Hedberg (1):
Bluetooth: Fix accepting connections when not using mgmt
Johan Hovold (1):
net: phy: micrel: use generic config_init for KSZ8021/KSZ8031
Johannes Berg (6):
netlink: rename netlink_unbind() to netlink_undo_bind()
genetlink: pass only network namespace to genl_has_listeners()
netlink: update listeners directly when removing socket
netlink: call unbind when releasing socket
genetlink: pass multicast bind/unbind to families
netlink/genetlink: pass network namespace to bind/unbind
John David Anglin (1):
parisc: fix out-of-register compiler error in ldcw inline assembler function
Jukka Rissanen (1):
Bluetooth: 6lowpan: Do not free skb when packet is dropped
Jungseok Lee (1):
arm64: mm: Add pgd_page to support RCU fast_gup
Kalle Valo (1):
Merge tag 'iwlwifi-fixes-for-kalle-2014-12-18' of git://git.kernel.org/.../iwlwifi/iwlwifi-fixes
Kent Overstreet (3):
closures: move to lib/
closures: fix closure_sync()
aio: Convert to closure waitlist for aio ring buffer
Kirill A. Shutemov (1):
Revert "mm/memory.c: share the i_mmap_rwsem"
Li RongQing (1):
sunvnet: fix a memory leak in vnet_handle_offloads
Liad Kaufman (1):
iwlwifi: pcie: limit fw chunk sizes given to fh
Libin Yang (1):
ALSA: hda_intel: apply the Seperate stream_tag for Skylake
Linus Torvalds (7):
Merge tag 'dm-3.19-fixes' of git://git.kernel.org/.../device-mapper/linux-dm
Merge tag 'arm64-fixes' of git://git.kernel.org/.../arm64/linux
Merge branch 'upstream' of git://git.infradead.org/users/pcmoore/audit
Merge tag 'for-linus-2' of git://git.code.sf.net/p/openipmi/linux-ipmi
Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux
Merge branch 'parisc-3.19-1' of git://git.kernel.org/.../deller/parisc-linux
Merge tag 'sound-3.19-rc2' of git://git.kernel.org/.../tiwai/sound
Lorenzo Pieralisi (1):
arm64: kernel: fix __cpu_suspend mm switch on warm-boot
Marc Dionne (1):
dm thin: fix crash by initializing thin device's refcount and completion earlier
Marcel Holtmann (1):
Bluetooth: Fix controller configuration with HCI_QUIRK_INVALID_BDADDR
Markus Elfring (2):
drm/msm: Deletion of unnecessary checks before two function calls
drm/msm: Deletion of unnecessary checks before the function call "release_firmware"
Mika Westerberg (1):
brcmfmac: Do not crash if platform data is not populated
Nicholas Mc Guire (1):
net: incorrect use of init_completion fixup
Nicolas Dichtel (2):
tcp6: don't move IP6CB before xfrm6_policy_check()
neigh: remove next ptr from struct neigh_table
Oded Gabbay (3):
drm/amd: Add get_fw_version to kfd-->kgd interface
drm/radeon: Add implementation of get_fw_version
amdkfd: Display MEC fw version in topology node
Paul Bolle (1):
ipw2200: select CFG80211_WEXT
Paul Moore (2):
audit: don't attempt to lookup PIDs when changing PID filtering audit rules
audit: correctly record file names with different path name types
Prashant Sreedharan (1):
tg3: tg3_disable_ints using uninitialized mailbox value to disable interrupts
Pravin B Shelar (6):
mpls: Fix config check for mpls.
mpls: Fix allowed protocols for mpls gso
openvswitch: Fix MPLS action validation.
openvswitch: Fix GSO with multiple MPLS label.
openvswitch: Fix vport_send double free
vxlan: Fix double free of skb.
Rafal Redzimski (1):
ALSA: hda_controller: Separate stream_tag for input and output streams.
Richard Guy Briggs (2):
audit: use supplied gfp_mask from audit_buffer in kauditd_send_multicast_skb
audit: restore AUDIT_LOGINUID unset ABI
Rickard Strandqvist (1):
net: ethernet: micrel: ksz884x.c: Remove unused function
Rob Clark (3):
drm/atomic: fix potential null ptr on plane enable
drm/msm: block incoming update on pending updates
drm/msm/mdp5: update irqs on crtc<->encoder link change
Sean Paul (1):
drm/tegra: dc: Select root window for event dispatch
Sedat Dilek (12):
kbuild: deb-pkg: Try to determine distribution
kbuild: deb-pkg: Bump year in debian/copyright file (v3)
kbuild: deb-pkg: Update git repository URL in debian/copyright file (v3)
Merge branch 'master' of git://git.kernel.org/.../davem/net into for-3.19/net-fixes
genetlink: Comment out WARN_ON() in genl_bind()
Merge branch 'for-3.19/deb-pkg-fixes' into 3.19.0-rc1-58.2-iniza-small
Merge branch 'for-3.19/vfs-fixes' into 3.19.0-rc1-58.2-iniza-small
Merge branch 'for-3.19/net-fixes' into 3.19.0-rc1-58.2-iniza-small
Merge branch 'for-3.19/netlink-genetlink-fixes' into 3.19.0-rc1-58.2-iniza-small
Merge branch 'for-3.19/aio-ring-fixes' into 3.19.0-rc1-58.2-iniza-small
Merge branch 'for-3.19/netlink-fixes' into 3.19.0-rc1-58.2-iniza-small
Merge branch 'for-3.19/netlink-genetlink-fixes-dileks' into 3.19.0-rc1-58.2-iniza-small
Slava Pestov (1):
closures: Add closure_sync_interruptible_hrtimeout
Sven Eckelmann (2):
batman-adv: Calculate extra tail size based on queued fragments
batman-adv: Unify fragment size calculation
Thierry Reding (7):
drm/irq: Add drm_crtc_send_vblank_event()
drm/irq: Add drm_crtc_handle_vblank()
drm/irq: Add drm_crtc_vblank_count()
drm/tegra: dc: Consistently use the same pipe
drm/tegra: dc: Fix a potential race on page-flip completion
drm/tegra: gem: Flush buffer objects upon allocation
drm/tegra: gem: Use the proper size for GEM objects
Thomas Graf (1):
net: Reset secmark when scrubbing packet
Toshiaki Makita (1):
net: Fix stacked vlan offload features computation
Wengang Wang (1):
bonding: change error message to debug message in __bond_release_one()
Will Deacon (1):
arm64: defconfig: defconfig update for 3.19
Wolfram Sang (1):
net: ethernet: stmicro: stmmac: drop owner assignment from platform_drivers
Wu Fengguang (1):
openvswitch: fix odd_ptr_err.cocci warnings
stephen hemminger (2):
in6: fix conflict with glibc
netlink: call cond_resched after broadcasting updates
zhendong chen (1):
dm: fix missed error code if .end_io isn't implemented by target_type
arch/arm64/configs/defconfig | 9 +-
arch/arm64/include/asm/dma-mapping.h | 11 +-
arch/arm64/include/asm/pgtable.h | 5 +-
arch/arm64/kernel/suspend.c | 14 +-
arch/parisc/include/asm/ldcw.h | 13 +-
drivers/char/agp/ali-agp.c | 2 +-
drivers/char/agp/amd64-agp.c | 2 +-
drivers/char/agp/ati-agp.c | 2 +-
drivers/char/agp/backend.c | 2 +-
drivers/char/agp/intel-agp.c | 2 +-
drivers/char/agp/intel-gtt.c | 2 +-
drivers/char/agp/nvidia-agp.c | 2 +-
drivers/char/agp/via-agp.c | 2 +-
drivers/char/ipmi/ipmi_msghandler.c | 46 +-
drivers/char/ipmi/ipmi_ssif.c | 1 +
drivers/gpu/drm/amd/amdkfd/kfd_chardev.c | 4 -
drivers/gpu/drm/amd/amdkfd/kfd_flat_memory.c | 6 +-
drivers/gpu/drm/amd/amdkfd/kfd_process.c | 9 +
drivers/gpu/drm/amd/amdkfd/kfd_topology.c | 8 +-
drivers/gpu/drm/amd/include/kgd_kfd_interface.h | 15 +
drivers/gpu/drm/drm_atomic_helper.c | 2 +-
drivers/gpu/drm/drm_irq.c | 60 ++
drivers/gpu/drm/i915/i915_drv.c | 6 +-
drivers/gpu/drm/i915/i915_drv.h | 5 +-
drivers/gpu/drm/i915/i915_gem.c | 28 +-
drivers/gpu/drm/i915/i915_gem_context.c | 48 +-
drivers/gpu/drm/i915/i915_gem_execbuffer.c | 3 -
drivers/gpu/drm/i915/i915_irq.c | 18 +-
drivers/gpu/drm/i915/i915_reg.h | 3 +
drivers/gpu/drm/i915/intel_pm.c | 28 +-
drivers/gpu/drm/i915/intel_ringbuffer.c | 3 +
drivers/gpu/drm/msm/adreno/adreno_gpu.c | 6 +-
drivers/gpu/drm/msm/hdmi/hdmi_connector.c | 53 +-
drivers/gpu/drm/msm/mdp/mdp4/mdp4_crtc.c | 11 +-
drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c | 12 +-
drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c | 12 +-
drivers/gpu/drm/msm/mdp/mdp_kms.c | 9 +-
drivers/gpu/drm/msm/mdp/mdp_kms.h | 2 +-
drivers/gpu/drm/msm/msm_atomic.c | 69 +-
drivers/gpu/drm/msm/msm_drv.c | 1 +
drivers/gpu/drm/msm/msm_drv.h | 4 +
drivers/gpu/drm/msm/msm_fbdev.c | 3 +-
drivers/gpu/drm/msm/msm_gem.c | 3 +-
drivers/gpu/drm/nouveau/nouveau_display.c | 9 -
drivers/gpu/drm/nouveau/nouveau_gem.c | 3 -
drivers/gpu/drm/nouveau/nouveau_ttm.c | 3 +-
drivers/gpu/drm/radeon/radeon_gem.c | 26 +-
drivers/gpu/drm/radeon/radeon_kfd.c | 53 +
drivers/gpu/drm/radeon/radeon_object.c | 3 -
drivers/gpu/drm/tegra/dc.c | 48 +-
drivers/gpu/drm/tegra/drm.c | 16 +-
drivers/gpu/drm/tegra/gem.c | 52 +-
drivers/md/bcache/Kconfig | 9 -
drivers/md/bcache/Makefile | 6 +-
drivers/md/bcache/bcache.h | 2 +-
drivers/md/bcache/closure.c | 222 ----
drivers/md/bcache/closure.h | 386 -------
drivers/md/bcache/super.c | 1 -
drivers/md/bcache/util.h | 3 +-
drivers/md/dm-thin.c | 29 +-
drivers/md/dm.c | 2 +-
drivers/net/bonding/bond_main.c | 2 +-
drivers/net/caif/caif_virtio.c | 2 -
drivers/net/ethernet/8390/ne2k-pci.c | 6 +-
drivers/net/ethernet/Kconfig | 12 -
drivers/net/ethernet/Makefile | 1 -
drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | 8 +-
drivers/net/ethernet/broadcom/tg3.c | 34 +-
drivers/net/ethernet/brocade/bna/bnad_debugfs.c | 2 +-
drivers/net/ethernet/chelsio/cxgb4vf/adapter.h | 4 +
.../net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c | 142 ++-
drivers/net/ethernet/chelsio/cxgb4vf/t4vf_common.h | 2 +-
drivers/net/ethernet/chelsio/cxgb4vf/t4vf_hw.c | 54 +-
drivers/net/ethernet/cisco/enic/enic_main.c | 12 +-
drivers/net/ethernet/emulex/benet/be_main.c | 8 +-
drivers/net/ethernet/mellanox/mlx4/en_netdev.c | 10 +-
drivers/net/ethernet/mellanox/mlx4/en_tx.c | 12 +-
drivers/net/ethernet/micrel/ksz884x.c | 6 -
drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c | 8 +-
drivers/net/ethernet/realtek/8139too.c | 4 +-
drivers/net/ethernet/s6gmac.c | 1058 --------------------
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 14 +-
.../net/ethernet/stmicro/stmmac/stmmac_platform.c | 1 -
drivers/net/ethernet/sun/sunvnet.c | 1 +
drivers/net/ethernet/xilinx/xilinx_axienet.h | 2 -
drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 4 -
drivers/net/hyperv/hyperv_net.h | 1 +
drivers/net/hyperv/netvsc.c | 15 +-
drivers/net/phy/micrel.c | 18 +-
drivers/net/virtio_net.c | 2 -
drivers/net/vxlan.c | 34 +-
drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c | 4 +-
drivers/net/wireless/ipw2x00/Kconfig | 3 +-
drivers/net/wireless/iwlwifi/iwl-drv.c | 2 +-
drivers/net/wireless/iwlwifi/iwl-fh.h | 1 +
drivers/net/wireless/iwlwifi/mvm/mac80211.c | 15 +-
drivers/net/wireless/iwlwifi/pcie/drv.c | 4 +
drivers/net/wireless/iwlwifi/pcie/trans.c | 17 +-
drivers/staging/lustre/lustre/llite/namei.c | 2 +-
fs/aio.c | 28 +-
include/drm/drmP.h | 4 +
include/drm/drm_gem.h | 7 -
include/linux/audit.h | 4 +
include/linux/closure.h | 458 +++++++++
include/linux/netdevice.h | 20 +-
include/linux/netlink.h | 4 +-
include/net/genetlink.h | 9 +-
include/net/neighbour.h | 1 -
include/net/vxlan.h | 28 +-
include/uapi/linux/in6.h | 3 +-
include/uapi/linux/libc-compat.h | 3 +
kernel/audit.c | 10 +-
kernel/auditfilter.c | 23 +-
kernel/auditsc.c | 14 +-
lib/Kconfig.debug | 8 +
lib/Makefile | 2 +-
lib/closure.c | 285 ++++++
mm/memory.c | 4 +-
net/batman-adv/fragmentation.c | 4 +-
net/batman-adv/gateway_client.c | 2 +-
net/bluetooth/6lowpan.c | 1 -
net/bluetooth/bnep/core.c | 3 +
net/bluetooth/cmtp/core.c | 3 +
net/bluetooth/hci_event.c | 16 +-
net/bluetooth/hidp/core.c | 3 +-
net/core/dev.c | 175 ++--
net/core/skbuff.c | 1 +
net/ipv4/geneve.c | 6 +-
net/ipv6/tcp_ipv6.c | 45 +-
net/mpls/mpls_gso.c | 5 +-
net/netfilter/nfnetlink.c | 2 +-
net/netlink/af_netlink.c | 42 +-
net/netlink/af_netlink.h | 8 +-
net/netlink/genetlink.c | 63 ++
net/openvswitch/actions.c | 3 +-
net/openvswitch/datapath.c | 3 +-
net/openvswitch/flow_netlink.c | 13 +-
net/openvswitch/vport-geneve.c | 3 +
net/openvswitch/vport-gre.c | 18 +-
net/openvswitch/vport-vxlan.c | 2 +
net/openvswitch/vport.c | 5 +-
net/packet/af_packet.c | 11 +-
scripts/package/builddeb | 19 +-
sound/pci/hda/hda_controller.c | 24 +-
sound/pci/hda/hda_intel.c | 5 +-
sound/pci/hda/hda_priv.h | 1 +
146 files changed, 2006 insertions(+), 2341 deletions(-)
diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig
index dd301be..5376d90 100644
--- a/arch/arm64/configs/defconfig
+++ b/arch/arm64/configs/defconfig
@@ -1,6 +1,7 @@
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
+CONFIG_FHANDLE=y
CONFIG_AUDIT=y
CONFIG_NO_HZ_IDLE=y
CONFIG_HIGH_RES_TIMERS=y
@@ -13,14 +14,12 @@ CONFIG_TASK_IO_ACCOUNTING=y
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
CONFIG_LOG_BUF_SHIFT=14
-CONFIG_RESOURCE_COUNTERS=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
CONFIG_MEMCG_KMEM=y
CONFIG_CGROUP_HUGETLB=y
# CONFIG_UTS_NS is not set
# CONFIG_IPC_NS is not set
-# CONFIG_PID_NS is not set
# CONFIG_NET_NS is not set
CONFIG_SCHED_AUTOGROUP=y
CONFIG_BLK_DEV_INITRD=y
@@ -92,7 +91,6 @@ CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
CONFIG_SERIAL_OF_PLATFORM=y
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_HW_RANDOM is not set
-# CONFIG_HMC_DRV is not set
CONFIG_SPI=y
CONFIG_SPI_PL022=y
CONFIG_GPIO_PL061=y
@@ -133,6 +131,8 @@ CONFIG_EXT3_FS=y
CONFIG_EXT4_FS=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
+CONFIG_QUOTA=y
+CONFIG_AUTOFS4_FS=y
CONFIG_FUSE_FS=y
CONFIG_CUSE=y
CONFIG_VFAT_FS=y
@@ -152,14 +152,15 @@ CONFIG_MAGIC_SYSRQ=y
CONFIG_DEBUG_KERNEL=y
CONFIG_LOCKUP_DETECTOR=y
# CONFIG_SCHED_DEBUG is not set
+# CONFIG_DEBUG_PREEMPT is not set
# CONFIG_FTRACE is not set
+CONFIG_KEYS=y
CONFIG_SECURITY=y
CONFIG_CRYPTO_ANSI_CPRNG=y
CONFIG_ARM64_CRYPTO=y
CONFIG_CRYPTO_SHA1_ARM64_CE=y
CONFIG_CRYPTO_SHA2_ARM64_CE=y
CONFIG_CRYPTO_GHASH_ARM64_CE=y
-CONFIG_CRYPTO_AES_ARM64_CE=y
CONFIG_CRYPTO_AES_ARM64_CE_CCM=y
CONFIG_CRYPTO_AES_ARM64_CE_BLK=y
CONFIG_CRYPTO_AES_ARM64_NEON_BLK=y
diff --git a/arch/arm64/include/asm/dma-mapping.h b/arch/arm64/include/asm/dma-mapping.h
index d34189b..9ce3e68 100644
--- a/arch/arm64/include/asm/dma-mapping.h
+++ b/arch/arm64/include/asm/dma-mapping.h
@@ -52,13 +52,14 @@ static inline void set_dma_ops(struct device *dev, struct dma_map_ops *ops)
dev->archdata.dma_ops = ops;
}
-static inline int set_arch_dma_coherent_ops(struct device *dev)
+static inline void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size,
+ struct iommu_ops *iommu, bool coherent)
{
- dev->archdata.dma_coherent = true;
- set_dma_ops(dev, &coherent_swiotlb_dma_ops);
- return 0;
+ dev->archdata.dma_coherent = coherent;
+ if (coherent)
+ set_dma_ops(dev, &coherent_swiotlb_dma_ops);
}
-#define set_arch_dma_coherent_ops set_arch_dma_coherent_ops
+#define arch_setup_dma_ops arch_setup_dma_ops
/* do not use this function in a driver */
static inline bool is_device_dma_coherent(struct device *dev)
diff --git a/arch/arm64/include/asm/pgtable.h b/arch/arm64/include/asm/pgtable.h
index df22314..210d632 100644
--- a/arch/arm64/include/asm/pgtable.h
+++ b/arch/arm64/include/asm/pgtable.h
@@ -298,7 +298,6 @@ void pmdp_splitting_flush(struct vm_area_struct *vma, unsigned long address,
#define pfn_pmd(pfn,prot) (__pmd(((phys_addr_t)(pfn) << PAGE_SHIFT) | pgprot_val(prot)))
#define mk_pmd(page,prot) pfn_pmd(page_to_pfn(page),prot)
-#define pmd_page(pmd) pfn_to_page(__phys_to_pfn(pmd_val(pmd) & PHYS_MASK))
#define pud_write(pud) pte_write(pud_pte(pud))
#define pud_pfn(pud) (((pud_val(pud) & PUD_MASK) & PHYS_MASK) >> PAGE_SHIFT)
@@ -401,7 +400,7 @@ static inline pmd_t *pmd_offset(pud_t *pud, unsigned long addr)
return (pmd_t *)pud_page_vaddr(*pud) + pmd_index(addr);
}
-#define pud_page(pud) pmd_page(pud_pmd(pud))
+#define pud_page(pud) pfn_to_page(__phys_to_pfn(pud_val(pud) & PHYS_MASK))
#endif /* CONFIG_ARM64_PGTABLE_LEVELS > 2 */
@@ -437,6 +436,8 @@ static inline pud_t *pud_offset(pgd_t *pgd, unsigned long addr)
return (pud_t *)pgd_page_vaddr(*pgd) + pud_index(addr);
}
+#define pgd_page(pgd) pfn_to_page(__phys_to_pfn(pgd_val(pgd) & PHYS_MASK))
+
#endif /* CONFIG_ARM64_PGTABLE_LEVELS > 3 */
#define pgd_ERROR(pgd) __pgd_error(__FILE__, __LINE__, pgd_val(pgd))
diff --git a/arch/arm64/kernel/suspend.c b/arch/arm64/kernel/suspend.c
index 3771b72..2d6b606 100644
--- a/arch/arm64/kernel/suspend.c
+++ b/arch/arm64/kernel/suspend.c
@@ -5,6 +5,7 @@
#include <asm/debug-monitors.h>
#include <asm/pgtable.h>
#include <asm/memory.h>
+#include <asm/mmu_context.h>
#include <asm/smp_plat.h>
#include <asm/suspend.h>
#include <asm/tlbflush.h>
@@ -98,7 +99,18 @@ int __cpu_suspend(unsigned long arg, int (*fn)(unsigned long))
*/
ret = __cpu_suspend_enter(arg, fn);
if (ret == 0) {
- cpu_switch_mm(mm->pgd, mm);
+ /*
+ * We are resuming from reset with TTBR0_EL1 set to the
+ * idmap to enable the MMU; restore the active_mm mappings in
+ * TTBR0_EL1 unless the active_mm == &init_mm, in which case
+ * the thread entered __cpu_suspend with TTBR0_EL1 set to
+ * reserved TTBR0 page tables and should be restored as such.
+ */
+ if (mm == &init_mm)
+ cpu_set_reserved_ttbr0();
+ else
+ cpu_switch_mm(mm->pgd, mm);
+
flush_tlb_all();
/*
diff --git a/arch/parisc/include/asm/ldcw.h b/arch/parisc/include/asm/ldcw.h
index d2d11b7..8121aa6 100644
--- a/arch/parisc/include/asm/ldcw.h
+++ b/arch/parisc/include/asm/ldcw.h
@@ -33,11 +33,18 @@
#endif /*!CONFIG_PA20*/
-/* LDCW, the only atomic read-write operation PA-RISC has. *sigh*. */
+/* LDCW, the only atomic read-write operation PA-RISC has. *sigh*.
+ We don't explicitly expose that "*a" may be written as reload
+ fails to find a register in class R1_REGS when "a" needs to be
+ reloaded when generating 64-bit PIC code. Instead, we clobber
+ memory to indicate to the compiler that the assembly code reads
+ or writes to items other than those listed in the input and output
+ operands. This may pessimize the code somewhat but __ldcw is
+ usually used within code blocks surrounded by memory barriors. */
#define __ldcw(a) ({ \
unsigned __ret; \
- __asm__ __volatile__(__LDCW " 0(%2),%0" \
- : "=r" (__ret), "+m" (*(a)) : "r" (a)); \
+ __asm__ __volatile__(__LDCW " 0(%1),%0" \
+ : "=r" (__ret) : "r" (a) : "memory"); \
__ret; \
})
diff --git a/drivers/char/agp/ali-agp.c b/drivers/char/agp/ali-agp.c
index 19db036..dcbbb4e 100644
--- a/drivers/char/agp/ali-agp.c
+++ b/drivers/char/agp/ali-agp.c
@@ -417,6 +417,6 @@ static void __exit agp_ali_cleanup(void)
module_init(agp_ali_init);
module_exit(agp_ali_cleanup);
-MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
+MODULE_AUTHOR("Dave Jones");
MODULE_LICENSE("GPL and additional rights");
diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c
index 3b47ed0..0ef3500 100644
--- a/drivers/char/agp/amd64-agp.c
+++ b/drivers/char/agp/amd64-agp.c
@@ -813,6 +813,6 @@ static void __exit agp_amd64_cleanup(void)
module_init(agp_amd64_mod_init);
module_exit(agp_amd64_cleanup);
-MODULE_AUTHOR("Dave Jones <davej@redhat.com>, Andi Kleen");
+MODULE_AUTHOR("Dave Jones, Andi Kleen");
module_param(agp_try_unsupported, bool, 0);
MODULE_LICENSE("GPL");
diff --git a/drivers/char/agp/ati-agp.c b/drivers/char/agp/ati-agp.c
index 18a7a6b..75a9786 100644
--- a/drivers/char/agp/ati-agp.c
+++ b/drivers/char/agp/ati-agp.c
@@ -579,6 +579,6 @@ static void __exit agp_ati_cleanup(void)
module_init(agp_ati_init);
module_exit(agp_ati_cleanup);
-MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
+MODULE_AUTHOR("Dave Jones");
MODULE_LICENSE("GPL and additional rights");
diff --git a/drivers/char/agp/backend.c b/drivers/char/agp/backend.c
index 317c28c..38ffb28 100644
--- a/drivers/char/agp/backend.c
+++ b/drivers/char/agp/backend.c
@@ -356,7 +356,7 @@ static __init int agp_setup(char *s)
__setup("agp=", agp_setup);
#endif
-MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
+MODULE_AUTHOR("Dave Jones, Jeff Hartmann");
MODULE_DESCRIPTION("AGP GART driver");
MODULE_LICENSE("GPL and additional rights");
MODULE_ALIAS_MISCDEV(AGPGART_MINOR);
diff --git a/drivers/char/agp/intel-agp.c b/drivers/char/agp/intel-agp.c
index f9b9ca5..0a21dae 100644
--- a/drivers/char/agp/intel-agp.c
+++ b/drivers/char/agp/intel-agp.c
@@ -920,5 +920,5 @@ static void __exit agp_intel_cleanup(void)
module_init(agp_intel_init);
module_exit(agp_intel_cleanup);
-MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
+MODULE_AUTHOR("Dave Jones, Various @Intel");
MODULE_LICENSE("GPL and additional rights");
diff --git a/drivers/char/agp/intel-gtt.c b/drivers/char/agp/intel-gtt.c
index f333482..92aa43f 100644
--- a/drivers/char/agp/intel-gtt.c
+++ b/drivers/char/agp/intel-gtt.c
@@ -1438,5 +1438,5 @@ void intel_gmch_remove(void)
}
EXPORT_SYMBOL(intel_gmch_remove);
-MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
+MODULE_AUTHOR("Dave Jones, Various @Intel");
MODULE_LICENSE("GPL and additional rights");
diff --git a/drivers/char/agp/nvidia-agp.c b/drivers/char/agp/nvidia-agp.c
index a1861b7..6c8d39c 100644
--- a/drivers/char/agp/nvidia-agp.c
+++ b/drivers/char/agp/nvidia-agp.c
@@ -1,7 +1,7 @@
/*
* Nvidia AGPGART routines.
* Based upon a 2.4 agpgart diff by the folks from NVIDIA, and hacked up
- * to work in 2.5 by Dave Jones <davej@redhat.com>
+ * to work in 2.5 by Dave Jones.
*/
#include <linux/module.h>
diff --git a/drivers/char/agp/via-agp.c b/drivers/char/agp/via-agp.c
index 228f20c..a4961d3 100644
--- a/drivers/char/agp/via-agp.c
+++ b/drivers/char/agp/via-agp.c
@@ -595,4 +595,4 @@ module_init(agp_via_init);
module_exit(agp_via_cleanup);
MODULE_LICENSE("GPL");
-MODULE_AUTHOR("Dave Jones <davej@redhat.com>");
+MODULE_AUTHOR("Dave Jones");
diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c
index 5fa83f7..6b65fa4 100644
--- a/drivers/char/ipmi/ipmi_msghandler.c
+++ b/drivers/char/ipmi/ipmi_msghandler.c
@@ -199,18 +199,6 @@ struct bmc_device {
int guid_set;
char name[16];
struct kref usecount;
-
- /* bmc device attributes */
- struct device_attribute device_id_attr;
- struct device_attribute provides_dev_sdrs_attr;
- struct device_attribute revision_attr;
- struct device_attribute firmware_rev_attr;
- struct device_attribute version_attr;
- struct device_attribute add_dev_support_attr;
- struct device_attribute manufacturer_id_attr;
- struct device_attribute product_id_attr;
- struct device_attribute guid_attr;
- struct device_attribute aux_firmware_rev_attr;
};
#define to_bmc_device(x) container_of((x), struct bmc_device, pdev.dev)
@@ -2252,7 +2240,7 @@ static ssize_t device_id_show(struct device *dev,
return snprintf(buf, 10, "%u\n", bmc->id.device_id);
}
-DEVICE_ATTR(device_id, S_IRUGO, device_id_show, NULL);
+static DEVICE_ATTR(device_id, S_IRUGO, device_id_show, NULL);
static ssize_t provides_device_sdrs_show(struct device *dev,
struct device_attribute *attr,
@@ -2263,7 +2251,8 @@ static ssize_t provides_device_sdrs_show(struct device *dev,
return snprintf(buf, 10, "%u\n",
(bmc->id.device_revision & 0x80) >> 7);
}
-DEVICE_ATTR(provides_device_sdrs, S_IRUGO, provides_device_sdrs_show, NULL);
+static DEVICE_ATTR(provides_device_sdrs, S_IRUGO, provides_device_sdrs_show,
+ NULL);
static ssize_t revision_show(struct device *dev, struct device_attribute *attr,
char *buf)
@@ -2273,7 +2262,7 @@ static ssize_t revision_show(struct device *dev, struct device_attribute *attr,
return snprintf(buf, 20, "%u\n",
bmc->id.device_revision & 0x0F);
}
-DEVICE_ATTR(revision, S_IRUGO, revision_show, NULL);
+static DEVICE_ATTR(revision, S_IRUGO, revision_show, NULL);
static ssize_t firmware_revision_show(struct device *dev,
struct device_attribute *attr,
@@ -2284,7 +2273,7 @@ static ssize_t firmware_revision_show(struct device *dev,
return snprintf(buf, 20, "%u.%x\n", bmc->id.firmware_revision_1,
bmc->id.firmware_revision_2);
}
-DEVICE_ATTR(firmware_revision, S_IRUGO, firmware_revision_show, NULL);
+static DEVICE_ATTR(firmware_revision, S_IRUGO, firmware_revision_show, NULL);
static ssize_t ipmi_version_show(struct device *dev,
struct device_attribute *attr,
@@ -2296,7 +2285,7 @@ static ssize_t ipmi_version_show(struct device *dev,
ipmi_version_major(&bmc->id),
ipmi_version_minor(&bmc->id));
}
-DEVICE_ATTR(ipmi_version, S_IRUGO, ipmi_version_show, NULL);
+static DEVICE_ATTR(ipmi_version, S_IRUGO, ipmi_version_show, NULL);
static ssize_t add_dev_support_show(struct device *dev,
struct device_attribute *attr,
@@ -2307,7 +2296,8 @@ static ssize_t add_dev_support_show(struct device *dev,
return snprintf(buf, 10, "0x%02x\n",
bmc->id.additional_device_support);
}
-DEVICE_ATTR(additional_device_support, S_IRUGO, add_dev_support_show, NULL);
+static DEVICE_ATTR(additional_device_support, S_IRUGO, add_dev_support_show,
+ NULL);
static ssize_t manufacturer_id_show(struct device *dev,
struct device_attribute *attr,
@@ -2317,7 +2307,7 @@ static ssize_t manufacturer_id_show(struct device *dev,
return snprintf(buf, 20, "0x%6.6x\n", bmc->id.manufacturer_id);
}
-DEVICE_ATTR(manufacturer_id, S_IRUGO, manufacturer_id_show, NULL);
+static DEVICE_ATTR(manufacturer_id, S_IRUGO, manufacturer_id_show, NULL);
static ssize_t product_id_show(struct device *dev,
struct device_attribute *attr,
@@ -2327,7 +2317,7 @@ static ssize_t product_id_show(struct device *dev,
return snprintf(buf, 10, "0x%4.4x\n", bmc->id.product_id);
}
-DEVICE_ATTR(product_id, S_IRUGO, product_id_show, NULL);
+static DEVICE_ATTR(product_id, S_IRUGO, product_id_show, NULL);
static ssize_t aux_firmware_rev_show(struct device *dev,
struct device_attribute *attr,
@@ -2341,7 +2331,7 @@ static ssize_t aux_firmware_rev_show(struct device *dev,
bmc->id.aux_firmware_revision[1],
bmc->id.aux_firmware_revision[0]);
}
-DEVICE_ATTR(aux_firmware_revision, S_IRUGO, aux_firmware_rev_show, NULL);
+static DEVICE_ATTR(aux_firmware_revision, S_IRUGO, aux_firmware_rev_show, NULL);
static ssize_t guid_show(struct device *dev, struct device_attribute *attr,
char *buf)
@@ -2352,7 +2342,7 @@ static ssize_t guid_show(struct device *dev, struct device_attribute *attr,
(long long) bmc->guid[0],
(long long) bmc->guid[8]);
}
-DEVICE_ATTR(guid, S_IRUGO, guid_show, NULL);
+static DEVICE_ATTR(guid, S_IRUGO, guid_show, NULL);
static struct attribute *bmc_dev_attrs[] = {
&dev_attr_device_id.attr,
@@ -2392,10 +2382,10 @@ cleanup_bmc_device(struct kref *ref)
if (bmc->id.aux_firmware_revision_set)
device_remove_file(&bmc->pdev.dev,
- &bmc->aux_firmware_rev_attr);
+ &dev_attr_aux_firmware_revision);
if (bmc->guid_set)
device_remove_file(&bmc->pdev.dev,
- &bmc->guid_attr);
+ &dev_attr_guid);
platform_device_unregister(&bmc->pdev);
}
@@ -2422,16 +2412,14 @@ static int create_bmc_files(struct bmc_device *bmc)
int err;
if (bmc->id.aux_firmware_revision_set) {
- bmc->aux_firmware_rev_attr.attr.name = "aux_firmware_revision";
err = device_create_file(&bmc->pdev.dev,
- &bmc->aux_firmware_rev_attr);
+ &dev_attr_aux_firmware_revision);
if (err)
goto out;
}
if (bmc->guid_set) {
- bmc->guid_attr.attr.name = "guid";
err = device_create_file(&bmc->pdev.dev,
- &bmc->guid_attr);
+ &dev_attr_guid);
if (err)
goto out_aux_firm;
}
@@ -2441,7 +2429,7 @@ static int create_bmc_files(struct bmc_device *bmc)
out_aux_firm:
if (bmc->id.aux_firmware_revision_set)
device_remove_file(&bmc->pdev.dev,
- &bmc->aux_firmware_rev_attr);
+ &dev_attr_aux_firmware_revision);
out:
return err;
}
diff --git a/drivers/char/ipmi/ipmi_ssif.c b/drivers/char/ipmi/ipmi_ssif.c
index e178ac2..fd5a5e8 100644
--- a/drivers/char/ipmi/ipmi_ssif.c
+++ b/drivers/char/ipmi/ipmi_ssif.c
@@ -52,6 +52,7 @@
#include <linux/dmi.h>
#include <linux/kthread.h>
#include <linux/acpi.h>
+#include <linux/ctype.h>
#define PFX "ipmi_ssif: "
#define DEVICE_NAME "ipmi_ssif"
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c b/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
index 4f7b275..7d4974b 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_chardev.c
@@ -121,13 +121,9 @@ static int kfd_open(struct inode *inode, struct file *filep)
if (IS_ERR(process))
return PTR_ERR(process);
- process->is_32bit_user_mode = is_32bit_user_mode;
-
dev_dbg(kfd_device, "process %d opened, compat mode (32 bit) - %d\n",
process->pasid, process->is_32bit_user_mode);
- kfd_init_apertures(process);
-
return 0;
}
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_flat_memory.c b/drivers/gpu/drm/amd/amdkfd/kfd_flat_memory.c
index 66df4da..e64aa99 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_flat_memory.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_flat_memory.c
@@ -299,13 +299,13 @@ int kfd_init_apertures(struct kfd_process *process)
struct kfd_dev *dev;
struct kfd_process_device *pdd;
- mutex_lock(&process->mutex);
-
/*Iterating over all devices*/
while ((dev = kfd_topology_enum_kfd_devices(id)) != NULL &&
id < NUM_OF_SUPPORTED_GPUS) {
pdd = kfd_get_process_device_data(dev, process, 1);
+ if (!pdd)
+ return -1;
/*
* For 64 bit process aperture will be statically reserved in
@@ -348,8 +348,6 @@ int kfd_init_apertures(struct kfd_process *process)
id++;
}
- mutex_unlock(&process->mutex);
-
return 0;
}
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_process.c b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
index b85eb0b..3c76ef0 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_process.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
@@ -26,6 +26,8 @@
#include <linux/slab.h>
#include <linux/amd-iommu.h>
#include <linux/notifier.h>
+#include <linux/compat.h>
+
struct mm_struct;
#include "kfd_priv.h"
@@ -285,8 +287,15 @@ static struct kfd_process *create_process(const struct task_struct *thread)
if (err != 0)
goto err_process_pqm_init;
+ /* init process apertures*/
+ process->is_32bit_user_mode = is_compat_task();
+ if (kfd_init_apertures(process) != 0)
+ goto err_init_apretures;
+
return process;
+err_init_apretures:
+ pqm_uninit(&process->pqm);
err_process_pqm_init:
hash_del_rcu(&process->kfd_processes);
synchronize_rcu();
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_topology.c b/drivers/gpu/drm/amd/amdkfd/kfd_topology.c
index 5733e28..b11792d 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_topology.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_topology.c
@@ -700,8 +700,6 @@ static ssize_t node_show(struct kobject *kobj, struct attribute *attr,
dev->node_props.simd_per_cu);
sysfs_show_32bit_prop(buffer, "max_slots_scratch_cu",
dev->node_props.max_slots_scratch_cu);
- sysfs_show_32bit_prop(buffer, "engine_id",
- dev->node_props.engine_id);
sysfs_show_32bit_prop(buffer, "vendor_id",
dev->node_props.vendor_id);
sysfs_show_32bit_prop(buffer, "device_id",
@@ -715,6 +713,12 @@ static ssize_t node_show(struct kobject *kobj, struct attribute *attr,
dev->gpu->kgd));
sysfs_show_64bit_prop(buffer, "local_mem_size",
kfd2kgd->get_vmem_size(dev->gpu->kgd));
+
+ sysfs_show_32bit_prop(buffer, "fw_version",
+ kfd2kgd->get_fw_version(
+ dev->gpu->kgd,
+ KGD_ENGINE_MEC1));
+
}
ret = sysfs_show_32bit_prop(buffer, "max_engine_clk_ccompute",
diff --git a/drivers/gpu/drm/amd/include/kgd_kfd_interface.h b/drivers/gpu/drm/amd/include/kgd_kfd_interface.h
index 9c729dd..47b5519 100644
--- a/drivers/gpu/drm/amd/include/kgd_kfd_interface.h
+++ b/drivers/gpu/drm/amd/include/kgd_kfd_interface.h
@@ -45,6 +45,17 @@ enum kgd_memory_pool {
KGD_POOL_FRAMEBUFFER = 3,
};
+enum kgd_engine_type {
+ KGD_ENGINE_PFP = 1,
+ KGD_ENGINE_ME,
+ KGD_ENGINE_CE,
+ KGD_ENGINE_MEC1,
+ KGD_ENGINE_MEC2,
+ KGD_ENGINE_RLC,
+ KGD_ENGINE_SDMA,
+ KGD_ENGINE_MAX
+};
+
struct kgd2kfd_shared_resources {
/* Bit n == 1 means VMID n is available for KFD. */
unsigned int compute_vmid_bitmap;
@@ -137,6 +148,8 @@ struct kgd2kfd_calls {
*
* @hqd_destroy: Destructs and preempts the queue assigned to that hqd slot.
*
+ * @get_fw_version: Returns FW versions from the header
+ *
* This structure contains function pointers to services that the kgd driver
* provides to amdkfd driver.
*
@@ -176,6 +189,8 @@ struct kfd2kgd_calls {
int (*hqd_destroy)(struct kgd_dev *kgd, uint32_t reset_type,
unsigned int timeout, uint32_t pipe_id,
uint32_t queue_id);
+ uint16_t (*get_fw_version)(struct kgd_dev *kgd,
+ enum kgd_engine_type type);
};
bool kgd2kfd_init(unsigned interface_version,
diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
index 4a78a77..bbdbe47 100644
--- a/drivers/gpu/drm/drm_atomic_helper.c
+++ b/drivers/gpu/drm/drm_atomic_helper.c
@@ -61,7 +61,7 @@ drm_atomic_helper_plane_changed(struct drm_atomic_state *state,
struct drm_crtc_state *crtc_state;
if (plane->state->crtc) {
- crtc_state = state->crtc_states[drm_crtc_index(plane->crtc)];
+ crtc_state = state->crtc_states[drm_crtc_index(plane->state->crtc)];
if (WARN_ON(!crtc_state))
return;
diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c
index f5a5f18..4d79dad 100644
--- a/drivers/gpu/drm/drm_irq.c
+++ b/drivers/gpu/drm/drm_irq.c
@@ -830,6 +830,8 @@ drm_get_last_vbltimestamp(struct drm_device *dev, int crtc,
* vblank events since the system was booted, including lost events due to
* modesetting activity.
*
+ * This is the legacy version of drm_crtc_vblank_count().
+ *
* Returns:
* The software vblank counter.
*/
@@ -844,6 +846,25 @@ u32 drm_vblank_count(struct drm_device *dev, int crtc)
EXPORT_SYMBOL(drm_vblank_count);
/**
+ * drm_crtc_vblank_count - retrieve "cooked" vblank counter value
+ * @crtc: which counter to retrieve
+ *
+ * Fetches the "cooked" vblank count value that represents the number of
+ * vblank events since the system was booted, including lost events due to
+ * modesetting activity.
+ *
+ * This is the native KMS version of drm_vblank_count().
+ *
+ * Returns:
+ * The software vblank counter.
+ */
+u32 drm_crtc_vblank_count(struct drm_crtc *crtc)
+{
+ return drm_vblank_count(crtc->dev, drm_crtc_index(crtc));
+}
+EXPORT_SYMBOL(drm_crtc_vblank_count);
+
+/**
* drm_vblank_count_and_time - retrieve "cooked" vblank counter value
* and the system timestamp corresponding to that vblank counter value.
*
@@ -904,6 +925,8 @@ static void send_vblank_event(struct drm_device *dev,
*
* Updates sequence # and timestamp on event, and sends it to userspace.
* Caller must hold event lock.
+ *
+ * This is the legacy version of drm_crtc_send_vblank_event().
*/
void drm_send_vblank_event(struct drm_device *dev, int crtc,
struct drm_pending_vblank_event *e)
@@ -923,6 +946,23 @@ void drm_send_vblank_event(struct drm_device *dev, int crtc,
EXPORT_SYMBOL(drm_send_vblank_event);
/**
+ * drm_crtc_send_vblank_event - helper to send vblank event after pageflip
+ * @crtc: the source CRTC of the vblank event
+ * @e: the event to send
+ *
+ * Updates sequence # and timestamp on event, and sends it to userspace.
+ * Caller must hold event lock.
+ *
+ * This is the native KMS version of drm_send_vblank_event().
+ */
+void drm_crtc_send_vblank_event(struct drm_crtc *crtc,
+ struct drm_pending_vblank_event *e)
+{
+ drm_send_vblank_event(crtc->dev, drm_crtc_index(crtc), e);
+}
+EXPORT_SYMBOL(drm_crtc_send_vblank_event);
+
+/**
* drm_vblank_enable - enable the vblank interrupt on a CRTC
* @dev: DRM device
* @crtc: CRTC in question
@@ -1594,6 +1634,8 @@ static void drm_handle_vblank_events(struct drm_device *dev, int crtc)
*
* Drivers should call this routine in their vblank interrupt handlers to
* update the vblank counter and send any signals that may be pending.
+ *
+ * This is the legacy version of drm_crtc_handle_vblank().
*/
bool drm_handle_vblank(struct drm_device *dev, int crtc)
{
@@ -1670,3 +1712,21 @@ bool drm_handle_vblank(struct drm_device *dev, int crtc)
return true;
}
EXPORT_SYMBOL(drm_handle_vblank);
+
+/**
+ * drm_crtc_handle_vblank - handle a vblank event
+ * @crtc: where this event occurred
+ *
+ * Drivers should call this routine in their vblank interrupt handlers to
+ * update the vblank counter and send any signals that may be pending.
+ *
+ * This is the native KMS version of drm_handle_vblank().
+ *
+ * Returns:
+ * True if the event was successfully handled, false on failure.
+ */
+bool drm_crtc_handle_vblank(struct drm_crtc *crtc)
+{
+ return drm_handle_vblank(crtc->dev, drm_crtc_index(crtc));
+}
+EXPORT_SYMBOL(drm_crtc_handle_vblank);
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index f990ab4..574057c 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -811,6 +811,8 @@ int i915_reset(struct drm_device *dev)
if (!i915.reset)
return 0;
+ intel_reset_gt_powersave(dev);
+
mutex_lock(&dev->struct_mutex);
i915_gem_reset(dev);
@@ -880,7 +882,7 @@ int i915_reset(struct drm_device *dev)
* of re-init after reset.
*/
if (INTEL_INFO(dev)->gen > 5)
- intel_reset_gt_powersave(dev);
+ intel_enable_gt_powersave(dev);
} else {
mutex_unlock(&dev->struct_mutex);
}
@@ -1584,7 +1586,7 @@ static struct drm_driver driver = {
.gem_prime_import = i915_gem_prime_import,
.dumb_create = i915_gem_dumb_create,
- .dumb_map_offset = i915_gem_dumb_map_offset,
+ .dumb_map_offset = i915_gem_mmap_gtt,
.dumb_destroy = drm_gem_dumb_destroy,
.ioctls = i915_ioctls,
.fops = &i915_driver_fops,
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 63bcda5..70d0f0f 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -2501,9 +2501,8 @@ void i915_vma_move_to_active(struct i915_vma *vma,
int i915_gem_dumb_create(struct drm_file *file_priv,
struct drm_device *dev,
struct drm_mode_create_dumb *args);
-int i915_gem_dumb_map_offset(struct drm_file *file_priv,
- struct drm_device *dev, uint32_t handle,
- uint64_t *offset);
+int i915_gem_mmap_gtt(struct drm_file *file_priv, struct drm_device *dev,
+ uint32_t handle, uint64_t *offset);
/**
* Returns true if seq1 is later than seq2.
*/
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 4a9faea6..52adcb6 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -401,7 +401,6 @@ static int
i915_gem_create(struct drm_file *file,
struct drm_device *dev,
uint64_t size,
- bool dumb,
uint32_t *handle_p)
{
struct drm_i915_gem_object *obj;
@@ -417,7 +416,6 @@ i915_gem_create(struct drm_file *file,
if (obj == NULL)
return -ENOMEM;
- obj->base.dumb = dumb;
ret = drm_gem_handle_create(file, &obj->base, &handle);
/* drop reference from allocate - handle holds it now */
drm_gem_object_unreference_unlocked(&obj->base);
@@ -437,7 +435,7 @@ i915_gem_dumb_create(struct drm_file *file,
args->pitch = ALIGN(args->width * DIV_ROUND_UP(args->bpp, 8), 64);
args->size = args->pitch * args->height;
return i915_gem_create(file, dev,
- args->size, true, &args->handle);
+ args->size, &args->handle);
}
/**
@@ -450,7 +448,7 @@ i915_gem_create_ioctl(struct drm_device *dev, void *data,
struct drm_i915_gem_create *args = data;
return i915_gem_create(file, dev,
- args->size, false, &args->handle);
+ args->size, &args->handle);
}
static inline int
@@ -1840,10 +1838,10 @@ static void i915_gem_object_free_mmap_offset(struct drm_i915_gem_object *obj)
drm_gem_free_mmap_offset(&obj->base);
}
-static int
+int
i915_gem_mmap_gtt(struct drm_file *file,
struct drm_device *dev,
- uint32_t handle, bool dumb,
+ uint32_t handle,
uint64_t *offset)
{
struct drm_i915_private *dev_priv = dev->dev_private;
@@ -1860,13 +1858,6 @@ i915_gem_mmap_gtt(struct drm_file *file,
goto unlock;
}
- /*
- * We don't allow dumb mmaps on objects created using another
- * interface.
- */
- WARN_ONCE(dumb && !(obj->base.dumb || obj->base.import_attach),
- "Illegal dumb map of accelerated buffer.\n");
-
if (obj->base.size > dev_priv->gtt.mappable_end) {
ret = -E2BIG;
goto out;
@@ -1891,15 +1882,6 @@ unlock:
return ret;
}
-int
-i915_gem_dumb_map_offset(struct drm_file *file,
- struct drm_device *dev,
- uint32_t handle,
- uint64_t *offset)
-{
- return i915_gem_mmap_gtt(file, dev, handle, true, offset);
-}
-
/**
* i915_gem_mmap_gtt_ioctl - prepare an object for GTT mmap'ing
* @dev: DRM device
@@ -1921,7 +1903,7 @@ i915_gem_mmap_gtt_ioctl(struct drm_device *dev, void *data,
{
struct drm_i915_gem_mmap_gtt *args = data;
- return i915_gem_mmap_gtt(file, dev, args->handle, false, &args->offset);
+ return i915_gem_mmap_gtt(file, dev, args->handle, &args->offset);
}
static inline int
diff --git a/drivers/gpu/drm/i915/i915_gem_context.c b/drivers/gpu/drm/i915/i915_gem_context.c
index d17ff43..d011ec8 100644
--- a/drivers/gpu/drm/i915/i915_gem_context.c
+++ b/drivers/gpu/drm/i915/i915_gem_context.c
@@ -473,7 +473,12 @@ mi_set_context(struct intel_engine_cs *ring,
u32 hw_flags)
{
u32 flags = hw_flags | MI_MM_SPACE_GTT;
- int ret;
+ const int num_rings =
+ /* Use an extended w/a on ivb+ if signalling from other rings */
+ i915_semaphore_is_enabled(ring->dev) ?
+ hweight32(INTEL_INFO(ring->dev)->ring_mask) - 1 :
+ 0;
+ int len, i, ret;
/* w/a: If Flush TLB Invalidation Mode is enabled, driver must do a TLB
* invalidation prior to MI_SET_CONTEXT. On GEN6 we don't set the value
@@ -490,15 +495,31 @@ mi_set_context(struct intel_engine_cs *ring,
if (!IS_HASWELL(ring->dev) && INTEL_INFO(ring->dev)->gen < 8)
flags |= (MI_SAVE_EXT_STATE_EN | MI_RESTORE_EXT_STATE_EN);
- ret = intel_ring_begin(ring, 6);
+
+ len = 4;
+ if (INTEL_INFO(ring->dev)->gen >= 7)
+ len += 2 + (num_rings ? 4*num_rings + 2 : 0);
+
+ ret = intel_ring_begin(ring, len);
if (ret)
return ret;
/* WaProgramMiArbOnOffAroundMiSetContext:ivb,vlv,hsw,bdw,chv */
- if (INTEL_INFO(ring->dev)->gen >= 7)
+ if (INTEL_INFO(ring->dev)->gen >= 7) {
intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_DISABLE);
- else
- intel_ring_emit(ring, MI_NOOP);
+ if (num_rings) {
+ struct intel_engine_cs *signaller;
+
+ intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(num_rings));
+ for_each_ring(signaller, to_i915(ring->dev), i) {
+ if (signaller == ring)
+ continue;
+
+ intel_ring_emit(ring, RING_PSMI_CTL(signaller->mmio_base));
+ intel_ring_emit(ring, _MASKED_BIT_ENABLE(GEN6_PSMI_SLEEP_MSG_DISABLE));
+ }
+ }
+ }
intel_ring_emit(ring, MI_NOOP);
intel_ring_emit(ring, MI_SET_CONTEXT);
@@ -510,10 +531,21 @@ mi_set_context(struct intel_engine_cs *ring,
*/
intel_ring_emit(ring, MI_NOOP);
- if (INTEL_INFO(ring->dev)->gen >= 7)
+ if (INTEL_INFO(ring->dev)->gen >= 7) {
+ if (num_rings) {
+ struct intel_engine_cs *signaller;
+
+ intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(num_rings));
+ for_each_ring(signaller, to_i915(ring->dev), i) {
+ if (signaller == ring)
+ continue;
+
+ intel_ring_emit(ring, RING_PSMI_CTL(signaller->mmio_base));
+ intel_ring_emit(ring, _MASKED_BIT_DISABLE(GEN6_PSMI_SLEEP_MSG_DISABLE));
+ }
+ }
intel_ring_emit(ring, MI_ARB_ON_OFF | MI_ARB_ENABLE);
- else
- intel_ring_emit(ring, MI_NOOP);
+ }
intel_ring_advance(ring);
diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
index f06027b..1173831 100644
--- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
+++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
@@ -121,9 +121,6 @@ eb_lookup_vmas(struct eb_vmas *eb,
goto err;
}
- WARN_ONCE(obj->base.dumb,
- "GPU use of dumb buffer is illegal.\n");
-
drm_gem_object_reference(&obj->base);
list_add_tail(&obj->obj_exec_link, &objects);
}
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index 981834b..996c293 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -281,10 +281,14 @@ void gen6_enable_rps_interrupts(struct drm_device *dev)
struct drm_i915_private *dev_priv = dev->dev_private;
spin_lock_irq(&dev_priv->irq_lock);
+
WARN_ON(dev_priv->rps.pm_iir);
WARN_ON(I915_READ(gen6_pm_iir(dev_priv)) & dev_priv->pm_rps_events);
dev_priv->rps.interrupts_enabled = true;
+ I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) |
+ dev_priv->pm_rps_events);
gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
+
spin_unlock_irq(&dev_priv->irq_lock);
}
@@ -3307,8 +3311,10 @@ static void gen5_gt_irq_postinstall(struct drm_device *dev)
GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
if (INTEL_INFO(dev)->gen >= 6) {
- pm_irqs |= dev_priv->pm_rps_events;
-
+ /*
+ * RPS interrupts will get enabled/disabled on demand when RPS
+ * itself is enabled/disabled.
+ */
if (HAS_VEBOX(dev))
pm_irqs |= PM_VEBOX_USER_INTERRUPT;
@@ -3520,7 +3526,11 @@ static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
dev_priv->pm_irq_mask = 0xffffffff;
GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
- GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, dev_priv->pm_rps_events);
+ /*
+ * RPS interrupts will get enabled/disabled on demand when RPS itself
+ * is enabled/disabled.
+ */
+ GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, 0);
GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
}
@@ -3609,7 +3619,7 @@ static void vlv_display_irq_uninstall(struct drm_i915_private *dev_priv)
vlv_display_irq_reset(dev_priv);
- dev_priv->irq_mask = 0;
+ dev_priv->irq_mask = ~0;
}
static void valleyview_irq_uninstall(struct drm_device *dev)
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h
index eefdc23..172de3b 100644
--- a/drivers/gpu/drm/i915/i915_reg.h
+++ b/drivers/gpu/drm/i915/i915_reg.h
@@ -395,6 +395,7 @@
#define PIPE_CONTROL_STORE_DATA_INDEX (1<<21)
#define PIPE_CONTROL_CS_STALL (1<<20)
#define PIPE_CONTROL_TLB_INVALIDATE (1<<18)
+#define PIPE_CONTROL_MEDIA_STATE_CLEAR (1<<16)
#define PIPE_CONTROL_QW_WRITE (1<<14)
#define PIPE_CONTROL_POST_SYNC_OP_MASK (3<<14)
#define PIPE_CONTROL_DEPTH_STALL (1<<13)
@@ -1128,6 +1129,7 @@ enum punit_power_well {
#define GEN6_VERSYNC (RING_SYNC_1(VEBOX_RING_BASE))
#define GEN6_VEVSYNC (RING_SYNC_2(VEBOX_RING_BASE))
#define GEN6_NOSYNC 0
+#define RING_PSMI_CTL(base) ((base)+0x50)
#define RING_MAX_IDLE(base) ((base)+0x54)
#define RING_HWS_PGA(base) ((base)+0x80)
#define RING_HWS_PGA_GEN6(base) ((base)+0x2080)
@@ -1458,6 +1460,7 @@ enum punit_power_well {
#define GEN6_BLITTER_FBC_NOTIFY (1<<3)
#define GEN6_RC_SLEEP_PSMI_CONTROL 0x2050
+#define GEN6_PSMI_SLEEP_MSG_DISABLE (1 << 0)
#define GEN8_RC_SEMA_IDLE_MSG_DISABLE (1 << 12)
#define GEN8_FF_DOP_CLOCK_GATE_DISABLE (1<<10)
diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c
index 1f4b56e..964b28e 100644
--- a/drivers/gpu/drm/i915/intel_pm.c
+++ b/drivers/gpu/drm/i915/intel_pm.c
@@ -6191,6 +6191,20 @@ void intel_cleanup_gt_powersave(struct drm_device *dev)
valleyview_cleanup_gt_powersave(dev);
}
+static void gen6_suspend_rps(struct drm_device *dev)
+{
+ struct drm_i915_private *dev_priv = dev->dev_private;
+
+ flush_delayed_work(&dev_priv->rps.delayed_resume_work);
+
+ /*
+ * TODO: disable RPS interrupts on GEN9+ too once RPS support
+ * is added for it.
+ */
+ if (INTEL_INFO(dev)->gen < 9)
+ gen6_disable_rps_interrupts(dev);
+}
+
/**
* intel_suspend_gt_powersave - suspend PM work and helper threads
* @dev: drm device
@@ -6206,14 +6220,7 @@ void intel_suspend_gt_powersave(struct drm_device *dev)
if (INTEL_INFO(dev)->gen < 6)
return;
- flush_delayed_work(&dev_priv->rps.delayed_resume_work);
-
- /*
- * TODO: disable RPS interrupts on GEN9+ too once RPS support
- * is added for it.
- */
- if (INTEL_INFO(dev)->gen < 9)
- gen6_disable_rps_interrupts(dev);
+ gen6_suspend_rps(dev);
/* Force GPU to min freq during suspend */
gen6_rps_idle(dev_priv);
@@ -6316,8 +6323,11 @@ void intel_reset_gt_powersave(struct drm_device *dev)
{
struct drm_i915_private *dev_priv = dev->dev_private;
+ if (INTEL_INFO(dev)->gen < 6)
+ return;
+
+ gen6_suspend_rps(dev);
dev_priv->rps.enabled = false;
- intel_enable_gt_powersave(dev);
}
static void ibx_init_clock_gating(struct drm_device *dev)
diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.c b/drivers/gpu/drm/i915/intel_ringbuffer.c
index 9f445e9..c7bc93d 100644
--- a/drivers/gpu/drm/i915/intel_ringbuffer.c
+++ b/drivers/gpu/drm/i915/intel_ringbuffer.c
@@ -362,12 +362,15 @@ gen7_render_ring_flush(struct intel_engine_cs *ring,
flags |= PIPE_CONTROL_VF_CACHE_INVALIDATE;
flags |= PIPE_CONTROL_CONST_CACHE_INVALIDATE;
flags |= PIPE_CONTROL_STATE_CACHE_INVALIDATE;
+ flags |= PIPE_CONTROL_MEDIA_STATE_CLEAR;
/*
* TLB invalidate requires a post-sync write.
*/
flags |= PIPE_CONTROL_QW_WRITE;
flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
+ flags |= PIPE_CONTROL_STALL_AT_SCOREBOARD;
+
/* Workaround: we must issue a pipe_control with CS-stall bit
* set before a pipe_control command that has the state cache
* invalidate bit set. */
diff --git a/drivers/gpu/drm/msm/adreno/adreno_gpu.c b/drivers/gpu/drm/msm/adreno/adreno_gpu.c
index aa87304..94a5bee 100644
--- a/drivers/gpu/drm/msm/adreno/adreno_gpu.c
+++ b/drivers/gpu/drm/msm/adreno/adreno_gpu.c
@@ -386,9 +386,7 @@ void adreno_gpu_cleanup(struct adreno_gpu *gpu)
msm_gem_put_iova(gpu->memptrs_bo, gpu->base.id);
drm_gem_object_unreference(gpu->memptrs_bo);
}
- if (gpu->pm4)
- release_firmware(gpu->pm4);
- if (gpu->pfp)
- release_firmware(gpu->pfp);
+ release_firmware(gpu->pm4);
+ release_firmware(gpu->pfp);
msm_gpu_cleanup(&gpu->base);
}
diff --git a/drivers/gpu/drm/msm/hdmi/hdmi_connector.c b/drivers/gpu/drm/msm/hdmi/hdmi_connector.c
index fbebb04..b4e70e0 100644
--- a/drivers/gpu/drm/msm/hdmi/hdmi_connector.c
+++ b/drivers/gpu/drm/msm/hdmi/hdmi_connector.c
@@ -141,6 +141,15 @@ static int hpd_enable(struct hdmi_connector *hdmi_connector)
uint32_t hpd_ctrl;
int i, ret;
+ for (i = 0; i < config->hpd_reg_cnt; i++) {
+ ret = regulator_enable(hdmi->hpd_regs[i]);
+ if (ret) {
+ dev_err(dev->dev, "failed to enable hpd regulator: %s (%d)\n",
+ config->hpd_reg_names[i], ret);
+ goto fail;
+ }
+ }
+
ret = gpio_config(hdmi, true);
if (ret) {
dev_err(dev->dev, "failed to configure GPIOs: %d\n", ret);
@@ -164,15 +173,6 @@ static int hpd_enable(struct hdmi_connector *hdmi_connector)
}
}
- for (i = 0; i < config->hpd_reg_cnt; i++) {
- ret = regulator_enable(hdmi->hpd_regs[i]);
- if (ret) {
- dev_err(dev->dev, "failed to enable hpd regulator: %s (%d)\n",
- config->hpd_reg_names[i], ret);
- goto fail;
- }
- }
-
hdmi_set_mode(hdmi, false);
phy->funcs->reset(phy);
hdmi_set_mode(hdmi, true);
@@ -200,7 +200,7 @@ fail:
return ret;
}
-static int hdp_disable(struct hdmi_connector *hdmi_connector)
+static void hdp_disable(struct hdmi_connector *hdmi_connector)
{
struct hdmi *hdmi = hdmi_connector->hdmi;
const struct hdmi_platform_config *config = hdmi->config;
@@ -212,28 +212,19 @@ static int hdp_disable(struct hdmi_connector *hdmi_connector)
hdmi_set_mode(hdmi, false);
- for (i = 0; i < config->hpd_reg_cnt; i++) {
- ret = regulator_disable(hdmi->hpd_regs[i]);
- if (ret) {
- dev_err(dev->dev, "failed to disable hpd regulator: %s (%d)\n",
- config->hpd_reg_names[i], ret);
- goto fail;
- }
- }
-
for (i = 0; i < config->hpd_clk_cnt; i++)
clk_disable_unprepare(hdmi->hpd_clks[i]);
ret = gpio_config(hdmi, false);
- if (ret) {
- dev_err(dev->dev, "failed to unconfigure GPIOs: %d\n", ret);
- goto fail;
- }
-
- return 0;
+ if (ret)
+ dev_warn(dev->dev, "failed to unconfigure GPIOs: %d\n", ret);
-fail:
- return ret;
+ for (i = 0; i < config->hpd_reg_cnt; i++) {
+ ret = regulator_disable(hdmi->hpd_regs[i]);
+ if (ret)
+ dev_warn(dev->dev, "failed to disable hpd regulator: %s (%d)\n",
+ config->hpd_reg_names[i], ret);
+ }
}
static void
@@ -260,11 +251,11 @@ void hdmi_connector_irq(struct drm_connector *connector)
(hpd_int_status & HDMI_HPD_INT_STATUS_INT)) {
bool detected = !!(hpd_int_status & HDMI_HPD_INT_STATUS_CABLE_DETECTED);
- DBG("status=%04x, ctrl=%04x", hpd_int_status, hpd_int_ctrl);
-
- /* ack the irq: */
+ /* ack & disable (temporarily) HPD events: */
hdmi_write(hdmi, REG_HDMI_HPD_INT_CTRL,
- hpd_int_ctrl | HDMI_HPD_INT_CTRL_INT_ACK);
+ HDMI_HPD_INT_CTRL_INT_ACK);
+
+ DBG("status=%04x, ctrl=%04x", hpd_int_status, hpd_int_ctrl);
/* detect disconnect if we are connected or visa versa: */
hpd_int_ctrl = HDMI_HPD_INT_CTRL_INT_EN;
diff --git a/drivers/gpu/drm/msm/mdp/mdp4/mdp4_crtc.c b/drivers/gpu/drm/msm/mdp/mdp4/mdp4_crtc.c
index a7672e1..3449213 100644
--- a/drivers/gpu/drm/msm/mdp/mdp4/mdp4_crtc.c
+++ b/drivers/gpu/drm/msm/mdp/mdp4/mdp4_crtc.c
@@ -331,17 +331,8 @@ static int mdp4_crtc_atomic_check(struct drm_crtc *crtc,
struct drm_crtc_state *state)
{
struct mdp4_crtc *mdp4_crtc = to_mdp4_crtc(crtc);
- struct drm_device *dev = crtc->dev;
-
DBG("%s: check", mdp4_crtc->name);
-
- if (mdp4_crtc->event) {
- dev_err(dev->dev, "already pending flip!\n");
- return -EBUSY;
- }
-
// TODO anything else to check?
-
return 0;
}
@@ -357,7 +348,7 @@ static void mdp4_crtc_atomic_flush(struct drm_crtc *crtc)
struct drm_device *dev = crtc->dev;
unsigned long flags;
- DBG("%s: flush", mdp4_crtc->name);
+ DBG("%s: event: %p", mdp4_crtc->name, crtc->state->event);
WARN_ON(mdp4_crtc->event);
diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c
index 0e9a2e3..f021f96 100644
--- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c
+++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_crtc.c
@@ -303,11 +303,6 @@ static int mdp5_crtc_atomic_check(struct drm_crtc *crtc,
DBG("%s: check", mdp5_crtc->name);
- if (mdp5_crtc->event) {
- dev_err(dev->dev, "already pending flip!\n");
- return -EBUSY;
- }
-
/* request a free CTL, if none is already allocated for this CRTC */
if (state->enable && !mdp5_crtc->ctl) {
mdp5_crtc->ctl = mdp5_ctlm_request(mdp5_kms->ctlm, crtc);
@@ -364,7 +359,7 @@ static void mdp5_crtc_atomic_flush(struct drm_crtc *crtc)
struct drm_device *dev = crtc->dev;
unsigned long flags;
- DBG("%s: flush", mdp5_crtc->name);
+ DBG("%s: event: %p", mdp5_crtc->name, crtc->state->event);
WARN_ON(mdp5_crtc->event);
@@ -460,10 +455,7 @@ void mdp5_crtc_set_intf(struct drm_crtc *crtc, int intf,
/* now that we know what irq's we want: */
mdp5_crtc->err.irqmask = intf2err(intf);
mdp5_crtc->vblank.irqmask = intf2vblank(intf);
-
- /* when called from modeset_init(), skip the rest until later: */
- if (!mdp5_kms)
- return;
+ mdp_irq_update(&mdp5_kms->base);
spin_lock_irqsave(&mdp5_kms->resource_lock, flags);
intf_sel = mdp5_read(mdp5_kms, REG_MDP5_DISP_INTF_SEL);
diff --git a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
index a11f1b8..9f01a4f 100644
--- a/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
+++ b/drivers/gpu/drm/msm/mdp/mdp5/mdp5_kms.c
@@ -216,17 +216,7 @@ static int modeset_init(struct mdp5_kms *mdp5_kms)
goto fail;
}
- /* NOTE: the vsync and error irq's are actually associated with
- * the INTF/encoder.. the easiest way to deal with this (ie. what
- * we do now) is assume a fixed relationship between crtc's and
- * encoders. I'm not sure if there is ever a need to more freely
- * assign crtcs to encoders, but if there is then we need to take
- * care of error and vblank irq's that the crtc has registered,
- * and also update user-requested vblank_mask.
- */
- encoder->possible_crtcs = BIT(0);
- mdp5_crtc_set_intf(priv->crtcs[0], 3, INTF_HDMI);
-
+ encoder->possible_crtcs = (1 << priv->num_crtcs) - 1;;
priv->encoders[priv->num_encoders++] = encoder;
/* Construct bridge/connector for HDMI: */
diff --git a/drivers/gpu/drm/msm/mdp/mdp_kms.c b/drivers/gpu/drm/msm/mdp/mdp_kms.c
index 03455b6..2a73172 100644
--- a/drivers/gpu/drm/msm/mdp/mdp_kms.c
+++ b/drivers/gpu/drm/msm/mdp/mdp_kms.c
@@ -42,7 +42,10 @@ static void update_irq(struct mdp_kms *mdp_kms)
mdp_kms->funcs->set_irqmask(mdp_kms, irqmask);
}
-static void update_irq_unlocked(struct mdp_kms *mdp_kms)
+/* if an mdp_irq's irqmask has changed, such as when mdp5 crtc<->encoder
+ * link changes, this must be called to figure out the new global irqmask
+ */
+void mdp_irq_update(struct mdp_kms *mdp_kms)
{
unsigned long flags;
spin_lock_irqsave(&list_lock, flags);
@@ -122,7 +125,7 @@ void mdp_irq_register(struct mdp_kms *mdp_kms, struct mdp_irq *irq)
spin_unlock_irqrestore(&list_lock, flags);
if (needs_update)
- update_irq_unlocked(mdp_kms);
+ mdp_irq_update(mdp_kms);
}
void mdp_irq_unregister(struct mdp_kms *mdp_kms, struct mdp_irq *irq)
@@ -141,5 +144,5 @@ void mdp_irq_unregister(struct mdp_kms *mdp_kms, struct mdp_irq *irq)
spin_unlock_irqrestore(&list_lock, flags);
if (needs_update)
- update_irq_unlocked(mdp_kms);
+ mdp_irq_update(mdp_kms);
}
diff --git a/drivers/gpu/drm/msm/mdp/mdp_kms.h b/drivers/gpu/drm/msm/mdp/mdp_kms.h
index 99557b5..b268ce9 100644
--- a/drivers/gpu/drm/msm/mdp/mdp_kms.h
+++ b/drivers/gpu/drm/msm/mdp/mdp_kms.h
@@ -75,7 +75,7 @@ void mdp_update_vblank_mask(struct mdp_kms *mdp_kms, uint32_t mask, bool enable)
void mdp_irq_wait(struct mdp_kms *mdp_kms, uint32_t irqmask);
void mdp_irq_register(struct mdp_kms *mdp_kms, struct mdp_irq *irq);
void mdp_irq_unregister(struct mdp_kms *mdp_kms, struct mdp_irq *irq);
-
+void mdp_irq_update(struct mdp_kms *mdp_kms);
/*
* pixel format helpers:
diff --git a/drivers/gpu/drm/msm/msm_atomic.c b/drivers/gpu/drm/msm/msm_atomic.c
index f0de412..1919682 100644
--- a/drivers/gpu/drm/msm/msm_atomic.c
+++ b/drivers/gpu/drm/msm/msm_atomic.c
@@ -23,10 +23,41 @@ struct msm_commit {
struct drm_atomic_state *state;
uint32_t fence;
struct msm_fence_cb fence_cb;
+ uint32_t crtc_mask;
};
static void fence_cb(struct msm_fence_cb *cb);
+/* block until specified crtcs are no longer pending update, and
+ * atomically mark them as pending update
+ */
+static int start_atomic(struct msm_drm_private *priv, uint32_t crtc_mask)
+{
+ int ret;
+
+ spin_lock(&priv->pending_crtcs_event.lock);
+ ret = wait_event_interruptible_locked(priv->pending_crtcs_event,
+ !(priv->pending_crtcs & crtc_mask));
+ if (ret == 0) {
+ DBG("start: %08x", crtc_mask);
+ priv->pending_crtcs |= crtc_mask;
+ }
+ spin_unlock(&priv->pending_crtcs_event.lock);
+
+ return ret;
+}
+
+/* clear specified crtcs (no longer pending update)
+ */
+static void end_atomic(struct msm_drm_private *priv, uint32_t crtc_mask)
+{
+ spin_lock(&priv->pending_crtcs_event.lock);
+ DBG("end: %08x", crtc_mask);
+ priv->pending_crtcs &= ~crtc_mask;
+ wake_up_all_locked(&priv->pending_crtcs_event);
+ spin_unlock(&priv->pending_crtcs_event.lock);
+}
+
static struct msm_commit *new_commit(struct drm_atomic_state *state)
{
struct msm_commit *c = kzalloc(sizeof(*c), GFP_KERNEL);
@@ -58,12 +89,27 @@ static void complete_commit(struct msm_commit *c)
drm_atomic_helper_commit_post_planes(dev, state);
+ /* NOTE: _wait_for_vblanks() only waits for vblank on
+ * enabled CRTCs. So we end up faulting when disabling
+ * due to (potentially) unref'ing the outgoing fb's
+ * before the vblank when the disable has latched.
+ *
+ * But if it did wait on disabled (or newly disabled)
+ * CRTCs, that would be racy (ie. we could have missed
+ * the irq. We need some way to poll for pipe shut
+ * down. Or just live with occasionally hitting the
+ * timeout in the CRTC disable path (which really should
+ * not be critical path)
+ */
+
drm_atomic_helper_wait_for_vblanks(dev, state);
drm_atomic_helper_cleanup_planes(dev, state);
drm_atomic_state_free(state);
+ end_atomic(dev->dev_private, c->crtc_mask);
+
kfree(c);
}
@@ -97,8 +143,9 @@ static void add_fb(struct msm_commit *c, struct drm_framebuffer *fb)
int msm_atomic_commit(struct drm_device *dev,
struct drm_atomic_state *state, bool async)
{
- struct msm_commit *c;
int nplanes = dev->mode_config.num_total_plane;
+ int ncrtcs = dev->mode_config.num_crtc;
+ struct msm_commit *c;
int i, ret;
ret = drm_atomic_helper_prepare_planes(dev, state);
@@ -106,6 +153,18 @@ int msm_atomic_commit(struct drm_device *dev,
return ret;
c = new_commit(state);
+ if (!c)
+ return -ENOMEM;
+
+ /*
+ * Figure out what crtcs we have:
+ */
+ for (i = 0; i < ncrtcs; i++) {
+ struct drm_crtc *crtc = state->crtcs[i];
+ if (!crtc)
+ continue;
+ c->crtc_mask |= (1 << drm_crtc_index(crtc));
+ }
/*
* Figure out what fence to wait for:
@@ -122,6 +181,14 @@ int msm_atomic_commit(struct drm_device *dev,
}
/*
+ * Wait for pending updates on any of the same crtc's and then
+ * mark our set of crtc's as busy:
+ */
+ ret = start_atomic(dev->dev_private, c->crtc_mask);
+ if (ret)
+ return ret;
+
+ /*
* This is the point of no return - everything below never fails except
* when the hw goes bonghits. Which means we can commit the new state on
* the software side now.
diff --git a/drivers/gpu/drm/msm/msm_drv.c b/drivers/gpu/drm/msm/msm_drv.c
index c795217..9a61546 100644
--- a/drivers/gpu/drm/msm/msm_drv.c
+++ b/drivers/gpu/drm/msm/msm_drv.c
@@ -193,6 +193,7 @@ static int msm_load(struct drm_device *dev, unsigned long flags)
priv->wq = alloc_ordered_workqueue("msm", 0);
init_waitqueue_head(&priv->fence_event);
+ init_waitqueue_head(&priv->pending_crtcs_event);
INIT_LIST_HEAD(&priv->inactive_list);
INIT_LIST_HEAD(&priv->fence_cbs);
diff --git a/drivers/gpu/drm/msm/msm_drv.h b/drivers/gpu/drm/msm/msm_drv.h
index 1363038..b69ef2d 100644
--- a/drivers/gpu/drm/msm/msm_drv.h
+++ b/drivers/gpu/drm/msm/msm_drv.h
@@ -96,6 +96,10 @@ struct msm_drm_private {
/* callbacks deferred until bo is inactive: */
struct list_head fence_cbs;
+ /* crtcs pending async atomic updates: */
+ uint32_t pending_crtcs;
+ wait_queue_head_t pending_crtcs_event;
+
/* registered MMUs: */
unsigned int num_mmus;
struct msm_mmu *mmus[NUM_DOMAINS];
diff --git a/drivers/gpu/drm/msm/msm_fbdev.c b/drivers/gpu/drm/msm/msm_fbdev.c
index 94d55e5..1f3af13 100644
--- a/drivers/gpu/drm/msm/msm_fbdev.c
+++ b/drivers/gpu/drm/msm/msm_fbdev.c
@@ -190,8 +190,7 @@ fail_unlock:
fail:
if (ret) {
- if (fbi)
- framebuffer_release(fbi);
+ framebuffer_release(fbi);
if (fb) {
drm_framebuffer_unregister_private(fb);
drm_framebuffer_remove(fb);
diff --git a/drivers/gpu/drm/msm/msm_gem.c b/drivers/gpu/drm/msm/msm_gem.c
index 4a6f0e4..49dea4f 100644
--- a/drivers/gpu/drm/msm/msm_gem.c
+++ b/drivers/gpu/drm/msm/msm_gem.c
@@ -535,8 +535,7 @@ void msm_gem_free_object(struct drm_gem_object *obj)
drm_free_large(msm_obj->pages);
} else {
- if (msm_obj->vaddr)
- vunmap(msm_obj->vaddr);
+ vunmap(msm_obj->vaddr);
put_pages(obj);
}
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/nouveau_display.c
index 5d93902..f804243 100644
--- a/drivers/gpu/drm/nouveau/nouveau_display.c
+++ b/drivers/gpu/drm/nouveau/nouveau_display.c
@@ -876,7 +876,6 @@ nouveau_display_dumb_create(struct drm_file *file_priv, struct drm_device *dev,
if (ret)
return ret;
- bo->gem.dumb = true;
ret = drm_gem_handle_create(file_priv, &bo->gem, &args->handle);
drm_gem_object_unreference_unlocked(&bo->gem);
return ret;
@@ -892,14 +891,6 @@ nouveau_display_dumb_map_offset(struct drm_file *file_priv,
gem = drm_gem_object_lookup(dev, file_priv, handle);
if (gem) {
struct nouveau_bo *bo = nouveau_gem_object(gem);
-
- /*
- * We don't allow dumb mmaps on objects created using another
- * interface.
- */
- WARN_ONCE(!(gem->dumb || gem->import_attach),
- "Illegal dumb map of accelerated buffer.\n");
-
*poffset = drm_vma_node_offset_addr(&bo->bo.vma_node);
drm_gem_object_unreference_unlocked(gem);
return 0;
diff --git a/drivers/gpu/drm/nouveau/nouveau_gem.c b/drivers/gpu/drm/nouveau/nouveau_gem.c
index 28d51a2..42c34ba 100644
--- a/drivers/gpu/drm/nouveau/nouveau_gem.c
+++ b/drivers/gpu/drm/nouveau/nouveau_gem.c
@@ -444,9 +444,6 @@ validate_list(struct nouveau_channel *chan, struct nouveau_cli *cli,
list_for_each_entry(nvbo, list, entry) {
struct drm_nouveau_gem_pushbuf_bo *b = &pbbo[nvbo->pbbo_index];
- WARN_ONCE(nvbo->gem.dumb,
- "GPU use of dumb buffer is illegal.\n");
-
ret = nouveau_gem_set_domain(&nvbo->gem, b->read_domains,
b->write_domains,
b->valid_domains);
diff --git a/drivers/gpu/drm/nouveau/nouveau_ttm.c b/drivers/gpu/drm/nouveau/nouveau_ttm.c
index 753a6de..3d1cfcb 100644
--- a/drivers/gpu/drm/nouveau/nouveau_ttm.c
+++ b/drivers/gpu/drm/nouveau/nouveau_ttm.c
@@ -28,6 +28,7 @@
#include "nouveau_ttm.h"
#include "nouveau_gem.h"
+#include "drm_legacy.h"
static int
nouveau_vram_manager_init(struct ttm_mem_type_manager *man, unsigned long psize)
{
@@ -281,7 +282,7 @@ nouveau_ttm_mmap(struct file *filp, struct vm_area_struct *vma)
struct nouveau_drm *drm = nouveau_drm(file_priv->minor->dev);
if (unlikely(vma->vm_pgoff < DRM_FILE_PAGE_OFFSET))
- return -EINVAL;
+ return drm_legacy_mmap(filp, vma);
return ttm_bo_mmap(filp, vma, &drm->ttm.bdev);
}
diff --git a/drivers/gpu/drm/radeon/radeon_gem.c b/drivers/gpu/drm/radeon/radeon_gem.c
index fe48f22..a46f737 100644
--- a/drivers/gpu/drm/radeon/radeon_gem.c
+++ b/drivers/gpu/drm/radeon/radeon_gem.c
@@ -394,10 +394,9 @@ int radeon_gem_set_domain_ioctl(struct drm_device *dev, void *data,
return r;
}
-static int radeon_mode_mmap(struct drm_file *filp,
- struct drm_device *dev,
- uint32_t handle, bool dumb,
- uint64_t *offset_p)
+int radeon_mode_dumb_mmap(struct drm_file *filp,
+ struct drm_device *dev,
+ uint32_t handle, uint64_t *offset_p)
{
struct drm_gem_object *gobj;
struct radeon_bo *robj;
@@ -406,14 +405,6 @@ static int radeon_mode_mmap(struct drm_file *filp,
if (gobj == NULL) {
return -ENOENT;
}
-
- /*
- * We don't allow dumb mmaps on objects created using another
- * interface.
- */
- WARN_ONCE(dumb && !(gobj->dumb || gobj->import_attach),
- "Illegal dumb map of GPU buffer.\n");
-
robj = gem_to_radeon_bo(gobj);
if (radeon_ttm_tt_has_userptr(robj->tbo.ttm)) {
drm_gem_object_unreference_unlocked(gobj);
@@ -424,20 +415,12 @@ static int radeon_mode_mmap(struct drm_file *filp,
return 0;
}
-int radeon_mode_dumb_mmap(struct drm_file *filp,
- struct drm_device *dev,
- uint32_t handle, uint64_t *offset_p)
-{
- return radeon_mode_mmap(filp, dev, handle, true, offset_p);
-}
-
int radeon_gem_mmap_ioctl(struct drm_device *dev, void *data,
struct drm_file *filp)
{
struct drm_radeon_gem_mmap *args = data;
- return radeon_mode_mmap(filp, dev, args->handle, false,
- &args->addr_ptr);
+ return radeon_mode_dumb_mmap(filp, dev, args->handle, &args->addr_ptr);
}
int radeon_gem_busy_ioctl(struct drm_device *dev, void *data,
@@ -763,7 +746,6 @@ int radeon_mode_dumb_create(struct drm_file *file_priv,
return -ENOMEM;
r = drm_gem_handle_create(file_priv, gobj, &handle);
- gobj->dumb = true;
/* drop reference from allocate - handle holds it now */
drm_gem_object_unreference_unlocked(gobj);
if (r) {
diff --git a/drivers/gpu/drm/radeon/radeon_kfd.c b/drivers/gpu/drm/radeon/radeon_kfd.c
index 065d020..242fd8b 100644
--- a/drivers/gpu/drm/radeon/radeon_kfd.c
+++ b/drivers/gpu/drm/radeon/radeon_kfd.c
@@ -28,6 +28,8 @@
#include "cikd.h"
#include "cik_reg.h"
#include "radeon_kfd.h"
+#include "radeon_ucode.h"
+#include <linux/firmware.h>
#define CIK_PIPE_PER_MEC (4)
@@ -49,6 +51,7 @@ static uint64_t get_vmem_size(struct kgd_dev *kgd);
static uint64_t get_gpu_clock_counter(struct kgd_dev *kgd);
static uint32_t get_max_engine_clock_in_mhz(struct kgd_dev *kgd);
+static uint16_t get_fw_version(struct kgd_dev *kgd, enum kgd_engine_type type);
/*
* Register access functions
@@ -91,6 +94,7 @@ static const struct kfd2kgd_calls kfd2kgd = {
.hqd_load = kgd_hqd_load,
.hqd_is_occupies = kgd_hqd_is_occupies,
.hqd_destroy = kgd_hqd_destroy,
+ .get_fw_version = get_fw_version
};
static const struct kgd2kfd_calls *kgd2kfd;
@@ -561,3 +565,52 @@ static int kgd_hqd_destroy(struct kgd_dev *kgd, uint32_t reset_type,
release_queue(kgd);
return 0;
}
+
+static uint16_t get_fw_version(struct kgd_dev *kgd, enum kgd_engine_type type)
+{
+ struct radeon_device *rdev = (struct radeon_device *) kgd;
+ const union radeon_firmware_header *hdr;
+
+ BUG_ON(kgd == NULL || rdev->mec_fw == NULL);
+
+ switch (type) {
+ case KGD_ENGINE_PFP:
+ hdr = (const union radeon_firmware_header *) rdev->pfp_fw->data;
+ break;
+
+ case KGD_ENGINE_ME:
+ hdr = (const union radeon_firmware_header *) rdev->me_fw->data;
+ break;
+
+ case KGD_ENGINE_CE:
+ hdr = (const union radeon_firmware_header *) rdev->ce_fw->data;
+ break;
+
+ case KGD_ENGINE_MEC1:
+ hdr = (const union radeon_firmware_header *) rdev->mec_fw->data;
+ break;
+
+ case KGD_ENGINE_MEC2:
+ hdr = (const union radeon_firmware_header *)
+ rdev->mec2_fw->data;
+ break;
+
+ case KGD_ENGINE_RLC:
+ hdr = (const union radeon_firmware_header *) rdev->rlc_fw->data;
+ break;
+
+ case KGD_ENGINE_SDMA:
+ hdr = (const union radeon_firmware_header *)
+ rdev->sdma_fw->data;
+ break;
+
+ default:
+ return 0;
+ }
+
+ if (hdr == NULL)
+ return 0;
+
+ /* Only 12 bit in use*/
+ return hdr->common.ucode_version;
+}
diff --git a/drivers/gpu/drm/radeon/radeon_object.c b/drivers/gpu/drm/radeon/radeon_object.c
index 7d68223..86fc564 100644
--- a/drivers/gpu/drm/radeon/radeon_object.c
+++ b/drivers/gpu/drm/radeon/radeon_object.c
@@ -529,9 +529,6 @@ int radeon_bo_list_validate(struct radeon_device *rdev,
u32 current_domain =
radeon_mem_type_to_domain(bo->tbo.mem.mem_type);
- WARN_ONCE(bo->gem_base.dumb,
- "GPU use of dumb buffer is illegal.\n");
-
/* Check if this buffer will be moved and don't move it
* if we have moved too many buffers for this IB already.
*
diff --git a/drivers/gpu/drm/tegra/dc.c b/drivers/gpu/drm/tegra/dc.c
index 3367960..978993f 100644
--- a/drivers/gpu/drm/tegra/dc.c
+++ b/drivers/gpu/drm/tegra/dc.c
@@ -168,7 +168,7 @@ static int tegra_dc_setup_window(struct tegra_dc *dc, unsigned int index,
const struct tegra_dc_window *window)
{
unsigned h_offset, v_offset, h_size, v_size, h_dda, v_dda, bpp;
- unsigned long value;
+ unsigned long value, flags;
bool yuv, planar;
/*
@@ -181,6 +181,8 @@ static int tegra_dc_setup_window(struct tegra_dc *dc, unsigned int index,
else
bpp = planar ? 1 : 2;
+ spin_lock_irqsave(&dc->lock, flags);
+
value = WINDOW_A_SELECT << index;
tegra_dc_writel(dc, value, DC_CMD_DISPLAY_WINDOW_HEADER);
@@ -273,6 +275,7 @@ static int tegra_dc_setup_window(struct tegra_dc *dc, unsigned int index,
case TEGRA_BO_TILING_MODE_BLOCK:
DRM_ERROR("hardware doesn't support block linear mode\n");
+ spin_unlock_irqrestore(&dc->lock, flags);
return -EINVAL;
}
@@ -331,6 +334,8 @@ static int tegra_dc_setup_window(struct tegra_dc *dc, unsigned int index,
tegra_dc_window_commit(dc, index);
+ spin_unlock_irqrestore(&dc->lock, flags);
+
return 0;
}
@@ -338,11 +343,14 @@ static int tegra_window_plane_disable(struct drm_plane *plane)
{
struct tegra_dc *dc = to_tegra_dc(plane->crtc);
struct tegra_plane *p = to_tegra_plane(plane);
+ unsigned long flags;
u32 value;
if (!plane->crtc)
return 0;
+ spin_lock_irqsave(&dc->lock, flags);
+
value = WINDOW_A_SELECT << p->index;
tegra_dc_writel(dc, value, DC_CMD_DISPLAY_WINDOW_HEADER);
@@ -352,6 +360,8 @@ static int tegra_window_plane_disable(struct drm_plane *plane)
tegra_dc_window_commit(dc, p->index);
+ spin_unlock_irqrestore(&dc->lock, flags);
+
return 0;
}
@@ -699,14 +709,16 @@ static int tegra_dc_set_base(struct tegra_dc *dc, int x, int y,
struct tegra_bo *bo = tegra_fb_get_plane(fb, 0);
unsigned int h_offset = 0, v_offset = 0;
struct tegra_bo_tiling tiling;
+ unsigned long value, flags;
unsigned int format, swap;
- unsigned long value;
int err;
err = tegra_fb_get_tiling(fb, &tiling);
if (err < 0)
return err;
+ spin_lock_irqsave(&dc->lock, flags);
+
tegra_dc_writel(dc, WINDOW_A_SELECT, DC_CMD_DISPLAY_WINDOW_HEADER);
value = fb->offsets[0] + y * fb->pitches[0] +
@@ -752,6 +764,7 @@ static int tegra_dc_set_base(struct tegra_dc *dc, int x, int y,
case TEGRA_BO_TILING_MODE_BLOCK:
DRM_ERROR("hardware doesn't support block linear mode\n");
+ spin_unlock_irqrestore(&dc->lock, flags);
return -EINVAL;
}
@@ -778,6 +791,8 @@ static int tegra_dc_set_base(struct tegra_dc *dc, int x, int y,
tegra_dc_writel(dc, value << 8, DC_CMD_STATE_CONTROL);
tegra_dc_writel(dc, value, DC_CMD_STATE_CONTROL);
+ spin_unlock_irqrestore(&dc->lock, flags);
+
return 0;
}
@@ -814,23 +829,32 @@ static void tegra_dc_finish_page_flip(struct tegra_dc *dc)
unsigned long flags, base;
struct tegra_bo *bo;
- if (!dc->event)
+ spin_lock_irqsave(&drm->event_lock, flags);
+
+ if (!dc->event) {
+ spin_unlock_irqrestore(&drm->event_lock, flags);
return;
+ }
bo = tegra_fb_get_plane(crtc->primary->fb, 0);
+ spin_lock_irqsave(&dc->lock, flags);
+
/* check if new start address has been latched */
+ tegra_dc_writel(dc, WINDOW_A_SELECT, DC_CMD_DISPLAY_WINDOW_HEADER);
tegra_dc_writel(dc, READ_MUX, DC_CMD_STATE_ACCESS);
base = tegra_dc_readl(dc, DC_WINBUF_START_ADDR);
tegra_dc_writel(dc, 0, DC_CMD_STATE_ACCESS);
+ spin_unlock_irqrestore(&dc->lock, flags);
+
if (base == bo->paddr + crtc->primary->fb->offsets[0]) {
- spin_lock_irqsave(&drm->event_lock, flags);
- drm_send_vblank_event(drm, dc->pipe, dc->event);
- drm_vblank_put(drm, dc->pipe);
+ drm_crtc_send_vblank_event(crtc, dc->event);
+ drm_crtc_vblank_put(crtc);
dc->event = NULL;
- spin_unlock_irqrestore(&drm->event_lock, flags);
}
+
+ spin_unlock_irqrestore(&drm->event_lock, flags);
}
void tegra_dc_cancel_page_flip(struct drm_crtc *crtc, struct drm_file *file)
@@ -843,7 +867,7 @@ void tegra_dc_cancel_page_flip(struct drm_crtc *crtc, struct drm_file *file)
if (dc->event && dc->event->base.file_priv == file) {
dc->event->base.destroy(&dc->event->base);
- drm_vblank_put(drm, dc->pipe);
+ drm_crtc_vblank_put(crtc);
dc->event = NULL;
}
@@ -853,16 +877,16 @@ void tegra_dc_cancel_page_flip(struct drm_crtc *crtc, struct drm_file *file)
static int tegra_dc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
struct drm_pending_vblank_event *event, uint32_t page_flip_flags)
{
+ unsigned int pipe = drm_crtc_index(crtc);
struct tegra_dc *dc = to_tegra_dc(crtc);
- struct drm_device *drm = crtc->dev;
if (dc->event)
return -EBUSY;
if (event) {
- event->pipe = dc->pipe;
+ event->pipe = pipe;
dc->event = event;
- drm_vblank_get(drm, dc->pipe);
+ drm_crtc_vblank_get(crtc);
}
tegra_dc_set_base(dc, 0, 0, fb);
@@ -1127,7 +1151,7 @@ static irqreturn_t tegra_dc_irq(int irq, void *data)
/*
dev_dbg(dc->dev, "%s(): vertical blank\n", __func__);
*/
- drm_handle_vblank(dc->base.dev, dc->pipe);
+ drm_crtc_handle_vblank(&dc->base);
tegra_dc_finish_page_flip(dc);
}
diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c
index e549afe..d4f8275 100644
--- a/drivers/gpu/drm/tegra/drm.c
+++ b/drivers/gpu/drm/tegra/drm.c
@@ -694,24 +694,28 @@ static const struct file_operations tegra_drm_fops = {
.llseek = noop_llseek,
};
-static struct drm_crtc *tegra_crtc_from_pipe(struct drm_device *drm, int pipe)
+static struct drm_crtc *tegra_crtc_from_pipe(struct drm_device *drm,
+ unsigned int pipe)
{
struct drm_crtc *crtc;
list_for_each_entry(crtc, &drm->mode_config.crtc_list, head) {
- struct tegra_dc *dc = to_tegra_dc(crtc);
-
- if (dc->pipe == pipe)
+ if (pipe == drm_crtc_index(crtc))
return crtc;
}
return NULL;
}
-static u32 tegra_drm_get_vblank_counter(struct drm_device *dev, int crtc)
+static u32 tegra_drm_get_vblank_counter(struct drm_device *drm, int pipe)
{
+ struct drm_crtc *crtc = tegra_crtc_from_pipe(drm, pipe);
+
+ if (!crtc)
+ return 0;
+
/* TODO: implement real hardware counter using syncpoints */
- return drm_vblank_count(dev, crtc);
+ return drm_crtc_vblank_count(crtc);
}
static int tegra_drm_enable_vblank(struct drm_device *drm, int pipe)
diff --git a/drivers/gpu/drm/tegra/gem.c b/drivers/gpu/drm/tegra/gem.c
index da32086..8777b7f 100644
--- a/drivers/gpu/drm/tegra/gem.c
+++ b/drivers/gpu/drm/tegra/gem.c
@@ -216,32 +216,58 @@ static void tegra_bo_free(struct drm_device *drm, struct tegra_bo *bo)
}
}
-static int tegra_bo_get_pages(struct drm_device *drm, struct tegra_bo *bo,
- size_t size)
+static int tegra_bo_get_pages(struct drm_device *drm, struct tegra_bo *bo)
{
+ struct scatterlist *s;
+ struct sg_table *sgt;
+ unsigned int i;
+
bo->pages = drm_gem_get_pages(&bo->gem);
if (IS_ERR(bo->pages))
return PTR_ERR(bo->pages);
- bo->num_pages = size >> PAGE_SHIFT;
-
- bo->sgt = drm_prime_pages_to_sg(bo->pages, bo->num_pages);
- if (IS_ERR(bo->sgt)) {
- drm_gem_put_pages(&bo->gem, bo->pages, false, false);
- return PTR_ERR(bo->sgt);
+ bo->num_pages = bo->gem.size >> PAGE_SHIFT;
+
+ sgt = drm_prime_pages_to_sg(bo->pages, bo->num_pages);
+ if (IS_ERR(sgt))
+ goto put_pages;
+
+ /*
+ * Fake up the SG table so that dma_map_sg() can be used to flush the
+ * pages associated with it. Note that this relies on the fact that
+ * the DMA API doesn't hook into IOMMU on Tegra, therefore mapping is
+ * only cache maintenance.
+ *
+ * TODO: Replace this by drm_clflash_sg() once it can be implemented
+ * without relying on symbols that are not exported.
+ */
+ for_each_sg(sgt->sgl, s, sgt->nents, i)
+ sg_dma_address(s) = sg_phys(s);
+
+ if (dma_map_sg(drm->dev, sgt->sgl, sgt->nents, DMA_TO_DEVICE) == 0) {
+ sgt = ERR_PTR(-ENOMEM);
+ goto release_sgt;
}
+ bo->sgt = sgt;
+
return 0;
+
+release_sgt:
+ sg_free_table(sgt);
+ kfree(sgt);
+put_pages:
+ drm_gem_put_pages(&bo->gem, bo->pages, false, false);
+ return PTR_ERR(sgt);
}
-static int tegra_bo_alloc(struct drm_device *drm, struct tegra_bo *bo,
- size_t size)
+static int tegra_bo_alloc(struct drm_device *drm, struct tegra_bo *bo)
{
struct tegra_drm *tegra = drm->dev_private;
int err;
if (tegra->domain) {
- err = tegra_bo_get_pages(drm, bo, size);
+ err = tegra_bo_get_pages(drm, bo);
if (err < 0)
return err;
@@ -251,6 +277,8 @@ static int tegra_bo_alloc(struct drm_device *drm, struct tegra_bo *bo,
return err;
}
} else {
+ size_t size = bo->gem.size;
+
bo->vaddr = dma_alloc_writecombine(drm->dev, size, &bo->paddr,
GFP_KERNEL | __GFP_NOWARN);
if (!bo->vaddr) {
@@ -274,7 +302,7 @@ struct tegra_bo *tegra_bo_create(struct drm_device *drm, size_t size,
if (IS_ERR(bo))
return bo;
- err = tegra_bo_alloc(drm, bo, size);
+ err = tegra_bo_alloc(drm, bo);
if (err < 0)
goto release;
diff --git a/drivers/md/bcache/Kconfig b/drivers/md/bcache/Kconfig
index 4d20088..4178abe 100644
--- a/drivers/md/bcache/Kconfig
+++ b/drivers/md/bcache/Kconfig
@@ -15,12 +15,3 @@ config BCACHE_DEBUG
Enables extra debugging tools, allows expensive runtime checks to be
turned on.
-
-config BCACHE_CLOSURES_DEBUG
- bool "Debug closures"
- depends on BCACHE
- select DEBUG_FS
- ---help---
- Keeps all active closures in a linked list and provides a debugfs
- interface to list them, which makes it possible to see asynchronous
- operations that get stuck.
diff --git a/drivers/md/bcache/Makefile b/drivers/md/bcache/Makefile
index c488b84..25d7aa3 100644
--- a/drivers/md/bcache/Makefile
+++ b/drivers/md/bcache/Makefile
@@ -1,8 +1,8 @@
obj-$(CONFIG_BCACHE) += bcache.o
-bcache-y := alloc.o bset.o btree.o closure.o debug.o extents.o\
- io.o journal.o movinggc.o request.o stats.o super.o sysfs.o trace.o\
- util.o writeback.o
+bcache-y := alloc.o bset.o btree.o debug.o extents.o io.o\
+ journal.o movinggc.o request.o stats.o super.o sysfs.o trace.o util.o\
+ writeback.o
CFLAGS_request.o += -Iblock
diff --git a/drivers/md/bcache/bcache.h b/drivers/md/bcache/bcache.h
index 04f7bc2..21efa45 100644
--- a/drivers/md/bcache/bcache.h
+++ b/drivers/md/bcache/bcache.h
@@ -179,6 +179,7 @@
#include <linux/bcache.h>
#include <linux/bio.h>
+#include <linux/closure.h>
#include <linux/kobject.h>
#include <linux/list.h>
#include <linux/mutex.h>
@@ -189,7 +190,6 @@
#include "bset.h"
#include "util.h"
-#include "closure.h"
struct bucket {
atomic_t pin;
diff --git a/drivers/md/bcache/closure.c b/drivers/md/bcache/closure.c
deleted file mode 100644
index 7a228de..0000000
--- a/drivers/md/bcache/closure.c
+++ /dev/null
@@ -1,222 +0,0 @@
-/*
- * Asynchronous refcounty things
- *
- * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
- * Copyright 2012 Google, Inc.
- */
-
-#include <linux/debugfs.h>
-#include <linux/module.h>
-#include <linux/seq_file.h>
-
-#include "closure.h"
-
-static inline void closure_put_after_sub(struct closure *cl, int flags)
-{
- int r = flags & CLOSURE_REMAINING_MASK;
-
- BUG_ON(flags & CLOSURE_GUARD_MASK);
- BUG_ON(!r && (flags & ~CLOSURE_DESTRUCTOR));
-
- /* Must deliver precisely one wakeup */
- if (r == 1 && (flags & CLOSURE_SLEEPING))
- wake_up_process(cl->task);
-
- if (!r) {
- if (cl->fn && !(flags & CLOSURE_DESTRUCTOR)) {
- atomic_set(&cl->remaining,
- CLOSURE_REMAINING_INITIALIZER);
- closure_queue(cl);
- } else {
- struct closure *parent = cl->parent;
- closure_fn *destructor = cl->fn;
-
- closure_debug_destroy(cl);
-
- if (destructor)
- destructor(cl);
-
- if (parent)
- closure_put(parent);
- }
- }
-}
-
-/* For clearing flags with the same atomic op as a put */
-void closure_sub(struct closure *cl, int v)
-{
- closure_put_after_sub(cl, atomic_sub_return(v, &cl->remaining));
-}
-EXPORT_SYMBOL(closure_sub);
-
-/**
- * closure_put - decrement a closure's refcount
- */
-void closure_put(struct closure *cl)
-{
- closure_put_after_sub(cl, atomic_dec_return(&cl->remaining));
-}
-EXPORT_SYMBOL(closure_put);
-
-/**
- * closure_wake_up - wake up all closures on a wait list, without memory barrier
- */
-void __closure_wake_up(struct closure_waitlist *wait_list)
-{
- struct llist_node *list;
- struct closure *cl;
- struct llist_node *reverse = NULL;
-
- list = llist_del_all(&wait_list->list);
-
- /* We first reverse the list to preserve FIFO ordering and fairness */
-
- while (list) {
- struct llist_node *t = list;
- list = llist_next(list);
-
- t->next = reverse;
- reverse = t;
- }
-
- /* Then do the wakeups */
-
- while (reverse) {
- cl = container_of(reverse, struct closure, list);
- reverse = llist_next(reverse);
-
- closure_set_waiting(cl, 0);
- closure_sub(cl, CLOSURE_WAITING + 1);
- }
-}
-EXPORT_SYMBOL(__closure_wake_up);
-
-/**
- * closure_wait - add a closure to a waitlist
- *
- * @waitlist will own a ref on @cl, which will be released when
- * closure_wake_up() is called on @waitlist.
- *
- */
-bool closure_wait(struct closure_waitlist *waitlist, struct closure *cl)
-{
- if (atomic_read(&cl->remaining) & CLOSURE_WAITING)
- return false;
-
- closure_set_waiting(cl, _RET_IP_);
- atomic_add(CLOSURE_WAITING + 1, &cl->remaining);
- llist_add(&cl->list, &waitlist->list);
-
- return true;
-}
-EXPORT_SYMBOL(closure_wait);
-
-/**
- * closure_sync - sleep until a closure a closure has nothing left to wait on
- *
- * Sleeps until the refcount hits 1 - the thread that's running the closure owns
- * the last refcount.
- */
-void closure_sync(struct closure *cl)
-{
- while (1) {
- __closure_start_sleep(cl);
- closure_set_ret_ip(cl);
-
- if ((atomic_read(&cl->remaining) &
- CLOSURE_REMAINING_MASK) == 1)
- break;
-
- schedule();
- }
-
- __closure_end_sleep(cl);
-}
-EXPORT_SYMBOL(closure_sync);
-
-#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
-
-static LIST_HEAD(closure_list);
-static DEFINE_SPINLOCK(closure_list_lock);
-
-void closure_debug_create(struct closure *cl)
-{
- unsigned long flags;
-
- BUG_ON(cl->magic == CLOSURE_MAGIC_ALIVE);
- cl->magic = CLOSURE_MAGIC_ALIVE;
-
- spin_lock_irqsave(&closure_list_lock, flags);
- list_add(&cl->all, &closure_list);
- spin_unlock_irqrestore(&closure_list_lock, flags);
-}
-EXPORT_SYMBOL(closure_debug_create);
-
-void closure_debug_destroy(struct closure *cl)
-{
- unsigned long flags;
-
- BUG_ON(cl->magic != CLOSURE_MAGIC_ALIVE);
- cl->magic = CLOSURE_MAGIC_DEAD;
-
- spin_lock_irqsave(&closure_list_lock, flags);
- list_del(&cl->all);
- spin_unlock_irqrestore(&closure_list_lock, flags);
-}
-EXPORT_SYMBOL(closure_debug_destroy);
-
-static struct dentry *debug;
-
-#define work_data_bits(work) ((unsigned long *)(&(work)->data))
-
-static int debug_seq_show(struct seq_file *f, void *data)
-{
- struct closure *cl;
- spin_lock_irq(&closure_list_lock);
-
- list_for_each_entry(cl, &closure_list, all) {
- int r = atomic_read(&cl->remaining);
-
- seq_printf(f, "%p: %pF -> %pf p %p r %i ",
- cl, (void *) cl->ip, cl->fn, cl->parent,
- r & CLOSURE_REMAINING_MASK);
-
- seq_printf(f, "%s%s%s%s\n",
- test_bit(WORK_STRUCT_PENDING,
- work_data_bits(&cl->work)) ? "Q" : "",
- r & CLOSURE_RUNNING ? "R" : "",
- r & CLOSURE_STACK ? "S" : "",
- r & CLOSURE_SLEEPING ? "Sl" : "");
-
- if (r & CLOSURE_WAITING)
- seq_printf(f, " W %pF\n",
- (void *) cl->waiting_on);
-
- seq_printf(f, "\n");
- }
-
- spin_unlock_irq(&closure_list_lock);
- return 0;
-}
-
-static int debug_seq_open(struct inode *inode, struct file *file)
-{
- return single_open(file, debug_seq_show, NULL);
-}
-
-static const struct file_operations debug_ops = {
- .owner = THIS_MODULE,
- .open = debug_seq_open,
- .read = seq_read,
- .release = single_release
-};
-
-void __init closure_debug_init(void)
-{
- debug = debugfs_create_file("closures", 0400, NULL, NULL, &debug_ops);
-}
-
-#endif
-
-MODULE_AUTHOR("Kent Overstreet <koverstreet@google.com>");
-MODULE_LICENSE("GPL");
diff --git a/drivers/md/bcache/closure.h b/drivers/md/bcache/closure.h
deleted file mode 100644
index a08e3ee..0000000
--- a/drivers/md/bcache/closure.h
+++ /dev/null
@@ -1,386 +0,0 @@
-#ifndef _LINUX_CLOSURE_H
-#define _LINUX_CLOSURE_H
-
-#include <linux/llist.h>
-#include <linux/sched.h>
-#include <linux/workqueue.h>
-
-/*
- * Closure is perhaps the most overused and abused term in computer science, but
- * since I've been unable to come up with anything better you're stuck with it
- * again.
- *
- * What are closures?
- *
- * They embed a refcount. The basic idea is they count "things that are in
- * progress" - in flight bios, some other thread that's doing something else -
- * anything you might want to wait on.
- *
- * The refcount may be manipulated with closure_get() and closure_put().
- * closure_put() is where many of the interesting things happen, when it causes
- * the refcount to go to 0.
- *
- * Closures can be used to wait on things both synchronously and asynchronously,
- * and synchronous and asynchronous use can be mixed without restriction. To
- * wait synchronously, use closure_sync() - you will sleep until your closure's
- * refcount hits 1.
- *
- * To wait asynchronously, use
- * continue_at(cl, next_function, workqueue);
- *
- * passing it, as you might expect, the function to run when nothing is pending
- * and the workqueue to run that function out of.
- *
- * continue_at() also, critically, is a macro that returns the calling function.
- * There's good reason for this.
- *
- * To use safely closures asynchronously, they must always have a refcount while
- * they are running owned by the thread that is running them. Otherwise, suppose
- * you submit some bios and wish to have a function run when they all complete:
- *
- * foo_endio(struct bio *bio, int error)
- * {
- * closure_put(cl);
- * }
- *
- * closure_init(cl);
- *
- * do_stuff();
- * closure_get(cl);
- * bio1->bi_endio = foo_endio;
- * bio_submit(bio1);
- *
- * do_more_stuff();
- * closure_get(cl);
- * bio2->bi_endio = foo_endio;
- * bio_submit(bio2);
- *
- * continue_at(cl, complete_some_read, system_wq);
- *
- * If closure's refcount started at 0, complete_some_read() could run before the
- * second bio was submitted - which is almost always not what you want! More
- * importantly, it wouldn't be possible to say whether the original thread or
- * complete_some_read()'s thread owned the closure - and whatever state it was
- * associated with!
- *
- * So, closure_init() initializes a closure's refcount to 1 - and when a
- * closure_fn is run, the refcount will be reset to 1 first.
- *
- * Then, the rule is - if you got the refcount with closure_get(), release it
- * with closure_put() (i.e, in a bio->bi_endio function). If you have a refcount
- * on a closure because you called closure_init() or you were run out of a
- * closure - _always_ use continue_at(). Doing so consistently will help
- * eliminate an entire class of particularly pernicious races.
- *
- * Lastly, you might have a wait list dedicated to a specific event, and have no
- * need for specifying the condition - you just want to wait until someone runs
- * closure_wake_up() on the appropriate wait list. In that case, just use
- * closure_wait(). It will return either true or false, depending on whether the
- * closure was already on a wait list or not - a closure can only be on one wait
- * list at a time.
- *
- * Parents:
- *
- * closure_init() takes two arguments - it takes the closure to initialize, and
- * a (possibly null) parent.
- *
- * If parent is non null, the new closure will have a refcount for its lifetime;
- * a closure is considered to be "finished" when its refcount hits 0 and the
- * function to run is null. Hence
- *
- * continue_at(cl, NULL, NULL);
- *
- * returns up the (spaghetti) stack of closures, precisely like normal return
- * returns up the C stack. continue_at() with non null fn is better thought of
- * as doing a tail call.
- *
- * All this implies that a closure should typically be embedded in a particular
- * struct (which its refcount will normally control the lifetime of), and that
- * struct can very much be thought of as a stack frame.
- */
-
-struct closure;
-typedef void (closure_fn) (struct closure *);
-
-struct closure_waitlist {
- struct llist_head list;
-};
-
-enum closure_state {
- /*
- * CLOSURE_WAITING: Set iff the closure is on a waitlist. Must be set by
- * the thread that owns the closure, and cleared by the thread that's
- * waking up the closure.
- *
- * CLOSURE_SLEEPING: Must be set before a thread uses a closure to sleep
- * - indicates that cl->task is valid and closure_put() may wake it up.
- * Only set or cleared by the thread that owns the closure.
- *
- * The rest are for debugging and don't affect behaviour:
- *
- * CLOSURE_RUNNING: Set when a closure is running (i.e. by
- * closure_init() and when closure_put() runs then next function), and
- * must be cleared before remaining hits 0. Primarily to help guard
- * against incorrect usage and accidentally transferring references.
- * continue_at() and closure_return() clear it for you, if you're doing
- * something unusual you can use closure_set_dead() which also helps
- * annotate where references are being transferred.
- *
- * CLOSURE_STACK: Sanity check - remaining should never hit 0 on a
- * closure with this flag set
- */
-
- CLOSURE_BITS_START = (1 << 23),
- CLOSURE_DESTRUCTOR = (1 << 23),
- CLOSURE_WAITING = (1 << 25),
- CLOSURE_SLEEPING = (1 << 27),
- CLOSURE_RUNNING = (1 << 29),
- CLOSURE_STACK = (1 << 31),
-};
-
-#define CLOSURE_GUARD_MASK \
- ((CLOSURE_DESTRUCTOR|CLOSURE_WAITING|CLOSURE_SLEEPING| \
- CLOSURE_RUNNING|CLOSURE_STACK) << 1)
-
-#define CLOSURE_REMAINING_MASK (CLOSURE_BITS_START - 1)
-#define CLOSURE_REMAINING_INITIALIZER (1|CLOSURE_RUNNING)
-
-struct closure {
- union {
- struct {
- struct workqueue_struct *wq;
- struct task_struct *task;
- struct llist_node list;
- closure_fn *fn;
- };
- struct work_struct work;
- };
-
- struct closure *parent;
-
- atomic_t remaining;
-
-#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
-#define CLOSURE_MAGIC_DEAD 0xc054dead
-#define CLOSURE_MAGIC_ALIVE 0xc054a11e
-
- unsigned magic;
- struct list_head all;
- unsigned long ip;
- unsigned long waiting_on;
-#endif
-};
-
-void closure_sub(struct closure *cl, int v);
-void closure_put(struct closure *cl);
-void __closure_wake_up(struct closure_waitlist *list);
-bool closure_wait(struct closure_waitlist *list, struct closure *cl);
-void closure_sync(struct closure *cl);
-
-#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
-
-void closure_debug_init(void);
-void closure_debug_create(struct closure *cl);
-void closure_debug_destroy(struct closure *cl);
-
-#else
-
-static inline void closure_debug_init(void) {}
-static inline void closure_debug_create(struct closure *cl) {}
-static inline void closure_debug_destroy(struct closure *cl) {}
-
-#endif
-
-static inline void closure_set_ip(struct closure *cl)
-{
-#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
- cl->ip = _THIS_IP_;
-#endif
-}
-
-static inline void closure_set_ret_ip(struct closure *cl)
-{
-#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
- cl->ip = _RET_IP_;
-#endif
-}
-
-static inline void closure_set_waiting(struct closure *cl, unsigned long f)
-{
-#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
- cl->waiting_on = f;
-#endif
-}
-
-static inline void __closure_end_sleep(struct closure *cl)
-{
- __set_current_state(TASK_RUNNING);
-
- if (atomic_read(&cl->remaining) & CLOSURE_SLEEPING)
- atomic_sub(CLOSURE_SLEEPING, &cl->remaining);
-}
-
-static inline void __closure_start_sleep(struct closure *cl)
-{
- closure_set_ip(cl);
- cl->task = current;
- set_current_state(TASK_UNINTERRUPTIBLE);
-
- if (!(atomic_read(&cl->remaining) & CLOSURE_SLEEPING))
- atomic_add(CLOSURE_SLEEPING, &cl->remaining);
-}
-
-static inline void closure_set_stopped(struct closure *cl)
-{
- atomic_sub(CLOSURE_RUNNING, &cl->remaining);
-}
-
-static inline void set_closure_fn(struct closure *cl, closure_fn *fn,
- struct workqueue_struct *wq)
-{
- BUG_ON(object_is_on_stack(cl));
- closure_set_ip(cl);
- cl->fn = fn;
- cl->wq = wq;
- /* between atomic_dec() in closure_put() */
- smp_mb__before_atomic();
-}
-
-static inline void closure_queue(struct closure *cl)
-{
- struct workqueue_struct *wq = cl->wq;
- if (wq) {
- INIT_WORK(&cl->work, cl->work.func);
- BUG_ON(!queue_work(wq, &cl->work));
- } else
- cl->fn(cl);
-}
-
-/**
- * closure_get - increment a closure's refcount
- */
-static inline void closure_get(struct closure *cl)
-{
-#ifdef CONFIG_BCACHE_CLOSURES_DEBUG
- BUG_ON((atomic_inc_return(&cl->remaining) &
- CLOSURE_REMAINING_MASK) <= 1);
-#else
- atomic_inc(&cl->remaining);
-#endif
-}
-
-/**
- * closure_init - Initialize a closure, setting the refcount to 1
- * @cl: closure to initialize
- * @parent: parent of the new closure. cl will take a refcount on it for its
- * lifetime; may be NULL.
- */
-static inline void closure_init(struct closure *cl, struct closure *parent)
-{
- memset(cl, 0, sizeof(struct closure));
- cl->parent = parent;
- if (parent)
- closure_get(parent);
-
- atomic_set(&cl->remaining, CLOSURE_REMAINING_INITIALIZER);
-
- closure_debug_create(cl);
- closure_set_ip(cl);
-}
-
-static inline void closure_init_stack(struct closure *cl)
-{
- memset(cl, 0, sizeof(struct closure));
- atomic_set(&cl->remaining, CLOSURE_REMAINING_INITIALIZER|CLOSURE_STACK);
-}
-
-/**
- * closure_wake_up - wake up all closures on a wait list.
- */
-static inline void closure_wake_up(struct closure_waitlist *list)
-{
- smp_mb();
- __closure_wake_up(list);
-}
-
-/**
- * continue_at - jump to another function with barrier
- *
- * After @cl is no longer waiting on anything (i.e. all outstanding refs have
- * been dropped with closure_put()), it will resume execution at @fn running out
- * of @wq (or, if @wq is NULL, @fn will be called by closure_put() directly).
- *
- * NOTE: This macro expands to a return in the calling function!
- *
- * This is because after calling continue_at() you no longer have a ref on @cl,
- * and whatever @cl owns may be freed out from under you - a running closure fn
- * has a ref on its own closure which continue_at() drops.
- */
-#define continue_at(_cl, _fn, _wq) \
-do { \
- set_closure_fn(_cl, _fn, _wq); \
- closure_sub(_cl, CLOSURE_RUNNING + 1); \
- return; \
-} while (0)
-
-/**
- * closure_return - finish execution of a closure
- *
- * This is used to indicate that @cl is finished: when all outstanding refs on
- * @cl have been dropped @cl's ref on its parent closure (as passed to
- * closure_init()) will be dropped, if one was specified - thus this can be
- * thought of as returning to the parent closure.
- */
-#define closure_return(_cl) continue_at((_cl), NULL, NULL)
-
-/**
- * continue_at_nobarrier - jump to another function without barrier
- *
- * Causes @fn to be executed out of @cl, in @wq context (or called directly if
- * @wq is NULL).
- *
- * NOTE: like continue_at(), this macro expands to a return in the caller!
- *
- * The ref the caller of continue_at_nobarrier() had on @cl is now owned by @fn,
- * thus it's not safe to touch anything protected by @cl after a
- * continue_at_nobarrier().
- */
-#define continue_at_nobarrier(_cl, _fn, _wq) \
-do { \
- set_closure_fn(_cl, _fn, _wq); \
- closure_queue(_cl); \
- return; \
-} while (0)
-
-/**
- * closure_return - finish execution of a closure, with destructor
- *
- * Works like closure_return(), except @destructor will be called when all
- * outstanding refs on @cl have been dropped; @destructor may be used to safely
- * free the memory occupied by @cl, and it is called with the ref on the parent
- * closure still held - so @destructor could safely return an item to a
- * freelist protected by @cl's parent.
- */
-#define closure_return_with_destructor(_cl, _destructor) \
-do { \
- set_closure_fn(_cl, _destructor, NULL); \
- closure_sub(_cl, CLOSURE_RUNNING - CLOSURE_DESTRUCTOR + 1); \
- return; \
-} while (0)
-
-/**
- * closure_call - execute @fn out of a new, uninitialized closure
- *
- * Typically used when running out of one closure, and we want to run @fn
- * asynchronously out of a new closure - @parent will then wait for @cl to
- * finish.
- */
-static inline void closure_call(struct closure *cl, closure_fn fn,
- struct workqueue_struct *wq,
- struct closure *parent)
-{
- closure_init(cl, parent);
- continue_at_nobarrier(cl, fn, wq);
-}
-
-#endif /* _LINUX_CLOSURE_H */
diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c
index 4dd2bb7..085c535 100644
--- a/drivers/md/bcache/super.c
+++ b/drivers/md/bcache/super.c
@@ -2097,7 +2097,6 @@ static int __init bcache_init(void)
mutex_init(&bch_register_lock);
init_waitqueue_head(&unregister_wait);
register_reboot_notifier(&reboot);
- closure_debug_init();
bcache_major = register_blkdev(0, "bcache");
if (bcache_major < 0)
diff --git a/drivers/md/bcache/util.h b/drivers/md/bcache/util.h
index 98df757..6cd43c8 100644
--- a/drivers/md/bcache/util.h
+++ b/drivers/md/bcache/util.h
@@ -3,6 +3,7 @@
#define _BCACHE_UTIL_H
#include <linux/blkdev.h>
+#include <linux/closure.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/llist.h>
@@ -10,8 +11,6 @@
#include <linux/vmalloc.h>
#include <linux/workqueue.h>
-#include "closure.h"
-
#define PAGE_SECTORS (PAGE_SIZE / 512)
struct closure;
diff --git a/drivers/md/dm-thin.c b/drivers/md/dm-thin.c
index 8735543..4934789 100644
--- a/drivers/md/dm-thin.c
+++ b/drivers/md/dm-thin.c
@@ -1127,6 +1127,24 @@ static void schedule_external_copy(struct thin_c *tc, dm_block_t virt_block,
schedule_zero(tc, virt_block, data_dest, cell, bio);
}
+static void set_pool_mode(struct pool *pool, enum pool_mode new_mode);
+
+static void check_for_space(struct pool *pool)
+{
+ int r;
+ dm_block_t nr_free;
+
+ if (get_pool_mode(pool) != PM_OUT_OF_DATA_SPACE)
+ return;
+
+ r = dm_pool_get_free_block_count(pool->pmd, &nr_free);
+ if (r)
+ return;
+
+ if (nr_free)
+ set_pool_mode(pool, PM_WRITE);
+}
+
/*
* A non-zero return indicates read_only or fail_io mode.
* Many callers don't care about the return value.
@@ -1141,6 +1159,8 @@ static int commit(struct pool *pool)
r = dm_pool_commit_metadata(pool->pmd);
if (r)
metadata_operation_failed(pool, "dm_pool_commit_metadata", r);
+ else
+ check_for_space(pool);
return r;
}
@@ -1159,8 +1179,6 @@ static void check_low_water_mark(struct pool *pool, dm_block_t free_blocks)
}
}
-static void set_pool_mode(struct pool *pool, enum pool_mode new_mode);
-
static int alloc_data_block(struct thin_c *tc, dm_block_t *result)
{
int r;
@@ -2155,7 +2173,7 @@ static void set_pool_mode(struct pool *pool, enum pool_mode new_mode)
pool->process_cell = process_cell_read_only;
pool->process_discard_cell = process_discard_cell;
pool->process_prepared_mapping = process_prepared_mapping;
- pool->process_prepared_discard = process_prepared_discard_passdown;
+ pool->process_prepared_discard = process_prepared_discard;
if (!pool->pf.error_if_no_space && no_space_timeout)
queue_delayed_work(pool->wq, &pool->no_space_timeout, no_space_timeout);
@@ -3814,6 +3832,8 @@ static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
r = -EINVAL;
goto bad;
}
+ atomic_set(&tc->refcount, 1);
+ init_completion(&tc->can_destroy);
list_add_tail_rcu(&tc->list, &tc->pool->active_thins);
spin_unlock_irqrestore(&tc->pool->lock, flags);
/*
@@ -3826,9 +3846,6 @@ static int thin_ctr(struct dm_target *ti, unsigned argc, char **argv)
dm_put(pool_md);
- atomic_set(&tc->refcount, 1);
- init_completion(&tc->can_destroy);
-
return 0;
bad:
diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index 4c06585..b98cd9d 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -899,7 +899,7 @@ static void disable_write_same(struct mapped_device *md)
static void clone_endio(struct bio *bio, int error)
{
- int r = 0;
+ int r = error;
struct dm_target_io *tio = container_of(bio, struct dm_target_io, clone);
struct dm_io *io = tio->io;
struct mapped_device *md = tio->io->md;
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 184c434..0dceba1 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -1648,7 +1648,7 @@ static int __bond_release_one(struct net_device *bond_dev,
/* slave is not a slave or master is not master of this slave */
if (!(slave_dev->flags & IFF_SLAVE) ||
!netdev_has_upper_dev(slave_dev, bond_dev)) {
- netdev_err(bond_dev, "cannot release %s\n",
+ netdev_dbg(bond_dev, "cannot release %s\n",
slave_dev->name);
return -EINVAL;
}
diff --git a/drivers/net/caif/caif_virtio.c b/drivers/net/caif/caif_virtio.c
index a5fefb9..b306210 100644
--- a/drivers/net/caif/caif_virtio.c
+++ b/drivers/net/caif/caif_virtio.c
@@ -257,7 +257,6 @@ static int cfv_rx_poll(struct napi_struct *napi, int quota)
struct vringh_kiov *riov = &cfv->ctx.riov;
unsigned int skb_len;
-again:
do {
skb = NULL;
@@ -322,7 +321,6 @@ exit:
napi_schedule_prep(napi)) {
vringh_notify_disable_kern(cfv->vr_rx);
__napi_schedule(napi);
- goto again;
}
break;
diff --git a/drivers/net/ethernet/8390/ne2k-pci.c b/drivers/net/ethernet/8390/ne2k-pci.c
index 89c8d9f..57e9791 100644
--- a/drivers/net/ethernet/8390/ne2k-pci.c
+++ b/drivers/net/ethernet/8390/ne2k-pci.c
@@ -246,13 +246,13 @@ static int ne2k_pci_init_one(struct pci_dev *pdev,
if (!ioaddr || ((pci_resource_flags (pdev, 0) & IORESOURCE_IO) == 0)) {
dev_err(&pdev->dev, "no I/O resource at PCI BAR #0\n");
- return -ENODEV;
+ goto err_out;
}
if (request_region (ioaddr, NE_IO_EXTENT, DRV_NAME) == NULL) {
dev_err(&pdev->dev, "I/O resource 0x%x @ 0x%lx busy\n",
NE_IO_EXTENT, ioaddr);
- return -EBUSY;
+ goto err_out;
}
reg0 = inb(ioaddr);
@@ -392,6 +392,8 @@ err_out_free_netdev:
free_netdev (dev);
err_out_free_res:
release_region (ioaddr, NE_IO_EXTENT);
+err_out:
+ pci_disable_device(pdev);
return -ENODEV;
}
diff --git a/drivers/net/ethernet/Kconfig b/drivers/net/ethernet/Kconfig
index df76050..eadcb05 100644
--- a/drivers/net/ethernet/Kconfig
+++ b/drivers/net/ethernet/Kconfig
@@ -156,18 +156,6 @@ source "drivers/net/ethernet/realtek/Kconfig"
source "drivers/net/ethernet/renesas/Kconfig"
source "drivers/net/ethernet/rdc/Kconfig"
source "drivers/net/ethernet/rocker/Kconfig"
-
-config S6GMAC
- tristate "S6105 GMAC ethernet support"
- depends on XTENSA_VARIANT_S6000
- select PHYLIB
- ---help---
- This driver supports the on chip ethernet device on the
- S6105 xtensa processor.
-
- To compile this driver as a module, choose M here. The module
- will be called s6gmac.
-
source "drivers/net/ethernet/samsung/Kconfig"
source "drivers/net/ethernet/seeq/Kconfig"
source "drivers/net/ethernet/silan/Kconfig"
diff --git a/drivers/net/ethernet/Makefile b/drivers/net/ethernet/Makefile
index bf56f8b..1367afc 100644
--- a/drivers/net/ethernet/Makefile
+++ b/drivers/net/ethernet/Makefile
@@ -66,7 +66,6 @@ obj-$(CONFIG_NET_VENDOR_REALTEK) += realtek/
obj-$(CONFIG_SH_ETH) += renesas/
obj-$(CONFIG_NET_VENDOR_RDC) += rdc/
obj-$(CONFIG_NET_VENDOR_ROCKER) += rocker/
-obj-$(CONFIG_S6GMAC) += s6gmac.o
obj-$(CONFIG_NET_VENDOR_SAMSUNG) += samsung/
obj-$(CONFIG_NET_VENDOR_SEEQ) += seeq/
obj-$(CONFIG_NET_VENDOR_SILAN) += silan/
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
index 9f5e387..72eef9f 100644
--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
+++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
@@ -12553,9 +12553,11 @@ static int bnx2x_get_phys_port_id(struct net_device *netdev,
return 0;
}
-static bool bnx2x_gso_check(struct sk_buff *skb, struct net_device *dev)
+static netdev_features_t bnx2x_features_check(struct sk_buff *skb,
+ struct net_device *dev,
+ netdev_features_t features)
{
- return vxlan_gso_check(skb);
+ return vxlan_features_check(skb, features);
}
static const struct net_device_ops bnx2x_netdev_ops = {
@@ -12589,7 +12591,7 @@ static const struct net_device_ops bnx2x_netdev_ops = {
#endif
.ndo_get_phys_port_id = bnx2x_get_phys_port_id,
.ndo_set_vf_link_state = bnx2x_set_vf_link_state,
- .ndo_gso_check = bnx2x_gso_check,
+ .ndo_features_check = bnx2x_features_check,
};
static int bnx2x_set_coherency_mask(struct bnx2x *bp)
diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c
index bb48a61..553dcd8 100644
--- a/drivers/net/ethernet/broadcom/tg3.c
+++ b/drivers/net/ethernet/broadcom/tg3.c
@@ -17800,23 +17800,6 @@ static int tg3_init_one(struct pci_dev *pdev,
goto err_out_apeunmap;
}
- /*
- * Reset chip in case UNDI or EFI driver did not shutdown
- * DMA self test will enable WDMAC and we'll see (spurious)
- * pending DMA on the PCI bus at that point.
- */
- if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
- (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
- tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
- tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
- }
-
- err = tg3_test_dma(tp);
- if (err) {
- dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
- goto err_out_apeunmap;
- }
-
intmbx = MAILBOX_INTERRUPT_0 + TG3_64BIT_REG_LOW;
rcvmbx = MAILBOX_RCVRET_CON_IDX_0 + TG3_64BIT_REG_LOW;
sndmbx = MAILBOX_SNDHOST_PROD_IDX_0 + TG3_64BIT_REG_LOW;
@@ -17861,6 +17844,23 @@ static int tg3_init_one(struct pci_dev *pdev,
sndmbx += 0xc;
}
+ /*
+ * Reset chip in case UNDI or EFI driver did not shutdown
+ * DMA self test will enable WDMAC and we'll see (spurious)
+ * pending DMA on the PCI bus at that point.
+ */
+ if ((tr32(HOSTCC_MODE) & HOSTCC_MODE_ENABLE) ||
+ (tr32(WDMAC_MODE) & WDMAC_MODE_ENABLE)) {
+ tw32(MEMARB_MODE, MEMARB_MODE_ENABLE);
+ tg3_halt(tp, RESET_KIND_SHUTDOWN, 1);
+ }
+
+ err = tg3_test_dma(tp);
+ if (err) {
+ dev_err(&pdev->dev, "DMA engine test failed, aborting\n");
+ goto err_out_apeunmap;
+ }
+
tg3_init_coal(tp);
pci_set_drvdata(pdev, dev);
diff --git a/drivers/net/ethernet/brocade/bna/bnad_debugfs.c b/drivers/net/ethernet/brocade/bna/bnad_debugfs.c
index 7d6aa8c..619083a 100644
--- a/drivers/net/ethernet/brocade/bna/bnad_debugfs.c
+++ b/drivers/net/ethernet/brocade/bna/bnad_debugfs.c
@@ -172,7 +172,7 @@ bnad_get_debug_drvinfo(struct bnad *bnad, void *buffer, u32 len)
/* Retrieve flash partition info */
fcomp.comp_status = 0;
- init_completion(&fcomp.comp);
+ reinit_completion(&fcomp.comp);
spin_lock_irqsave(&bnad->bna_lock, flags);
ret = bfa_nw_flash_get_attr(&bnad->bna.flash, &drvinfo->flash_attr,
bnad_cb_completion, &fcomp);
diff --git a/drivers/net/ethernet/chelsio/cxgb4vf/adapter.h b/drivers/net/ethernet/chelsio/cxgb4vf/adapter.h
index d00a751..6049f70 100644
--- a/drivers/net/ethernet/chelsio/cxgb4vf/adapter.h
+++ b/drivers/net/ethernet/chelsio/cxgb4vf/adapter.h
@@ -96,6 +96,9 @@ struct port_info {
s16 xact_addr_filt; /* index of our MAC address filter */
u16 rss_size; /* size of VI's RSS table slice */
u8 pidx; /* index into adapter port[] */
+ s8 mdio_addr;
+ u8 port_type; /* firmware port type */
+ u8 mod_type; /* firmware module type */
u8 port_id; /* physical port ID */
u8 nqsets; /* # of "Queue Sets" */
u8 first_qset; /* index of first "Queue Set" */
@@ -522,6 +525,7 @@ static inline struct adapter *netdev2adap(const struct net_device *dev)
* is "contracted" to provide for the common code.
*/
void t4vf_os_link_changed(struct adapter *, int, int);
+void t4vf_os_portmod_changed(struct adapter *, int);
/*
* SGE function prototype declarations.
diff --git a/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c b/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c
index aa74ec3..2215d43 100644
--- a/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c
+++ b/drivers/net/ethernet/chelsio/cxgb4vf/cxgb4vf_main.c
@@ -44,6 +44,7 @@
#include <linux/etherdevice.h>
#include <linux/debugfs.h>
#include <linux/ethtool.h>
+#include <linux/mdio.h>
#include "t4vf_common.h"
#include "t4vf_defs.h"
@@ -210,6 +211,38 @@ void t4vf_os_link_changed(struct adapter *adapter, int pidx, int link_ok)
}
/*
+ * THe port module type has changed on the indicated "port" (Virtual
+ * Interface).
+ */
+void t4vf_os_portmod_changed(struct adapter *adapter, int pidx)
+{
+ static const char * const mod_str[] = {
+ NULL, "LR", "SR", "ER", "passive DA", "active DA", "LRM"
+ };
+ const struct net_device *dev = adapter->port[pidx];
+ const struct port_info *pi = netdev_priv(dev);
+
+ if (pi->mod_type == FW_PORT_MOD_TYPE_NONE)
+ dev_info(adapter->pdev_dev, "%s: port module unplugged\n",
+ dev->name);
+ else if (pi->mod_type < ARRAY_SIZE(mod_str))
+ dev_info(adapter->pdev_dev, "%s: %s port module inserted\n",
+ dev->name, mod_str[pi->mod_type]);
+ else if (pi->mod_type == FW_PORT_MOD_TYPE_NOTSUPPORTED)
+ dev_info(adapter->pdev_dev, "%s: unsupported optical port "
+ "module inserted\n", dev->name);
+ else if (pi->mod_type == FW_PORT_MOD_TYPE_UNKNOWN)
+ dev_info(adapter->pdev_dev, "%s: unknown port module inserted,"
+ "forcing TWINAX\n", dev->name);
+ else if (pi->mod_type == FW_PORT_MOD_TYPE_ERROR)
+ dev_info(adapter->pdev_dev, "%s: transceiver module error\n",
+ dev->name);
+ else
+ dev_info(adapter->pdev_dev, "%s: unknown module type %d "
+ "inserted\n", dev->name, pi->mod_type);
+}
+
+/*
* Net device operations.
* ======================
*/
@@ -1193,24 +1226,103 @@ static void cxgb4vf_poll_controller(struct net_device *dev)
* state of the port to which we're linked.
*/
-/*
- * Return current port link settings.
- */
-static int cxgb4vf_get_settings(struct net_device *dev,
- struct ethtool_cmd *cmd)
-{
- const struct port_info *pi = netdev_priv(dev);
+static unsigned int t4vf_from_fw_linkcaps(enum fw_port_type type,
+ unsigned int caps)
+{
+ unsigned int v = 0;
+
+ if (type == FW_PORT_TYPE_BT_SGMII || type == FW_PORT_TYPE_BT_XFI ||
+ type == FW_PORT_TYPE_BT_XAUI) {
+ v |= SUPPORTED_TP;
+ if (caps & FW_PORT_CAP_SPEED_100M)
+ v |= SUPPORTED_100baseT_Full;
+ if (caps & FW_PORT_CAP_SPEED_1G)
+ v |= SUPPORTED_1000baseT_Full;
+ if (caps & FW_PORT_CAP_SPEED_10G)
+ v |= SUPPORTED_10000baseT_Full;
+ } else if (type == FW_PORT_TYPE_KX4 || type == FW_PORT_TYPE_KX) {
+ v |= SUPPORTED_Backplane;
+ if (caps & FW_PORT_CAP_SPEED_1G)
+ v |= SUPPORTED_1000baseKX_Full;
+ if (caps & FW_PORT_CAP_SPEED_10G)
+ v |= SUPPORTED_10000baseKX4_Full;
+ } else if (type == FW_PORT_TYPE_KR)
+ v |= SUPPORTED_Backplane | SUPPORTED_10000baseKR_Full;
+ else if (type == FW_PORT_TYPE_BP_AP)
+ v |= SUPPORTED_Backplane | SUPPORTED_10000baseR_FEC |
+ SUPPORTED_10000baseKR_Full | SUPPORTED_1000baseKX_Full;
+ else if (type == FW_PORT_TYPE_BP4_AP)
+ v |= SUPPORTED_Backplane | SUPPORTED_10000baseR_FEC |
+ SUPPORTED_10000baseKR_Full | SUPPORTED_1000baseKX_Full |
+ SUPPORTED_10000baseKX4_Full;
+ else if (type == FW_PORT_TYPE_FIBER_XFI ||
+ type == FW_PORT_TYPE_FIBER_XAUI ||
+ type == FW_PORT_TYPE_SFP ||
+ type == FW_PORT_TYPE_QSFP_10G ||
+ type == FW_PORT_TYPE_QSA) {
+ v |= SUPPORTED_FIBRE;
+ if (caps & FW_PORT_CAP_SPEED_1G)
+ v |= SUPPORTED_1000baseT_Full;
+ if (caps & FW_PORT_CAP_SPEED_10G)
+ v |= SUPPORTED_10000baseT_Full;
+ } else if (type == FW_PORT_TYPE_BP40_BA ||
+ type == FW_PORT_TYPE_QSFP) {
+ v |= SUPPORTED_40000baseSR4_Full;
+ v |= SUPPORTED_FIBRE;
+ }
+
+ if (caps & FW_PORT_CAP_ANEG)
+ v |= SUPPORTED_Autoneg;
+ return v;
+}
+
+static int cxgb4vf_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
+{
+ const struct port_info *p = netdev_priv(dev);
+
+ if (p->port_type == FW_PORT_TYPE_BT_SGMII ||
+ p->port_type == FW_PORT_TYPE_BT_XFI ||
+ p->port_type == FW_PORT_TYPE_BT_XAUI)
+ cmd->port = PORT_TP;
+ else if (p->port_type == FW_PORT_TYPE_FIBER_XFI ||
+ p->port_type == FW_PORT_TYPE_FIBER_XAUI)
+ cmd->port = PORT_FIBRE;
+ else if (p->port_type == FW_PORT_TYPE_SFP ||
+ p->port_type == FW_PORT_TYPE_QSFP_10G ||
+ p->port_type == FW_PORT_TYPE_QSA ||
+ p->port_type == FW_PORT_TYPE_QSFP) {
+ if (p->mod_type == FW_PORT_MOD_TYPE_LR ||
+ p->mod_type == FW_PORT_MOD_TYPE_SR ||
+ p->mod_type == FW_PORT_MOD_TYPE_ER ||
+ p->mod_type == FW_PORT_MOD_TYPE_LRM)
+ cmd->port = PORT_FIBRE;
+ else if (p->mod_type == FW_PORT_MOD_TYPE_TWINAX_PASSIVE ||
+ p->mod_type == FW_PORT_MOD_TYPE_TWINAX_ACTIVE)
+ cmd->port = PORT_DA;
+ else
+ cmd->port = PORT_OTHER;
+ } else
+ cmd->port = PORT_OTHER;
- cmd->supported = pi->link_cfg.supported;
- cmd->advertising = pi->link_cfg.advertising;
+ if (p->mdio_addr >= 0) {
+ cmd->phy_address = p->mdio_addr;
+ cmd->transceiver = XCVR_EXTERNAL;
+ cmd->mdio_support = p->port_type == FW_PORT_TYPE_BT_SGMII ?
+ MDIO_SUPPORTS_C22 : MDIO_SUPPORTS_C45;
+ } else {
+ cmd->phy_address = 0; /* not really, but no better option */
+ cmd->transceiver = XCVR_INTERNAL;
+ cmd->mdio_support = 0;
+ }
+
+ cmd->supported = t4vf_from_fw_linkcaps(p->port_type,
+ p->link_cfg.supported);
+ cmd->advertising = t4vf_from_fw_linkcaps(p->port_type,
+ p->link_cfg.advertising);
ethtool_cmd_speed_set(cmd,
- netif_carrier_ok(dev) ? pi->link_cfg.speed : -1);
+ netif_carrier_ok(dev) ? p->link_cfg.speed : 0);
cmd->duplex = DUPLEX_FULL;
-
- cmd->port = (cmd->supported & SUPPORTED_TP) ? PORT_TP : PORT_FIBRE;
- cmd->phy_address = pi->port_id;
- cmd->transceiver = XCVR_EXTERNAL;
- cmd->autoneg = pi->link_cfg.autoneg;
+ cmd->autoneg = p->link_cfg.autoneg;
cmd->maxtxpkt = 0;
cmd->maxrxpkt = 0;
return 0;
diff --git a/drivers/net/ethernet/chelsio/cxgb4vf/t4vf_common.h b/drivers/net/ethernet/chelsio/cxgb4vf/t4vf_common.h
index 8d3237f..b9debb4 100644
--- a/drivers/net/ethernet/chelsio/cxgb4vf/t4vf_common.h
+++ b/drivers/net/ethernet/chelsio/cxgb4vf/t4vf_common.h
@@ -230,7 +230,7 @@ struct adapter_params {
static inline bool is_10g_port(const struct link_config *lc)
{
- return (lc->supported & SUPPORTED_10000baseT_Full) != 0;
+ return (lc->supported & FW_PORT_CAP_SPEED_10G) != 0;
}
static inline bool is_x_10g_port(const struct link_config *lc)
diff --git a/drivers/net/ethernet/chelsio/cxgb4vf/t4vf_hw.c b/drivers/net/ethernet/chelsio/cxgb4vf/t4vf_hw.c
index 02e8833..21dc9a2 100644
--- a/drivers/net/ethernet/chelsio/cxgb4vf/t4vf_hw.c
+++ b/drivers/net/ethernet/chelsio/cxgb4vf/t4vf_hw.c
@@ -245,6 +245,10 @@ static int hash_mac_addr(const u8 *addr)
return a & 0x3f;
}
+#define ADVERT_MASK (FW_PORT_CAP_SPEED_100M | FW_PORT_CAP_SPEED_1G |\
+ FW_PORT_CAP_SPEED_10G | FW_PORT_CAP_SPEED_40G | \
+ FW_PORT_CAP_SPEED_100G | FW_PORT_CAP_ANEG)
+
/**
* init_link_config - initialize a link's SW state
* @lc: structure holding the link state
@@ -259,8 +263,8 @@ static void init_link_config(struct link_config *lc, unsigned int caps)
lc->requested_speed = 0;
lc->speed = 0;
lc->requested_fc = lc->fc = PAUSE_RX | PAUSE_TX;
- if (lc->supported & SUPPORTED_Autoneg) {
- lc->advertising = lc->supported;
+ if (lc->supported & FW_PORT_CAP_ANEG) {
+ lc->advertising = lc->supported & ADVERT_MASK;
lc->autoneg = AUTONEG_ENABLE;
lc->requested_fc |= PAUSE_AUTONEG;
} else {
@@ -280,7 +284,6 @@ int t4vf_port_init(struct adapter *adapter, int pidx)
struct fw_vi_cmd vi_cmd, vi_rpl;
struct fw_port_cmd port_cmd, port_rpl;
int v;
- u32 word;
/*
* Execute a VI Read command to get our Virtual Interface information
@@ -319,19 +322,11 @@ int t4vf_port_init(struct adapter *adapter, int pidx)
if (v)
return v;
- v = 0;
- word = be16_to_cpu(port_rpl.u.info.pcap);
- if (word & FW_PORT_CAP_SPEED_100M)
- v |= SUPPORTED_100baseT_Full;
- if (word & FW_PORT_CAP_SPEED_1G)
- v |= SUPPORTED_1000baseT_Full;
- if (word & FW_PORT_CAP_SPEED_10G)
- v |= SUPPORTED_10000baseT_Full;
- if (word & FW_PORT_CAP_SPEED_40G)
- v |= SUPPORTED_40000baseSR4_Full;
- if (word & FW_PORT_CAP_ANEG)
- v |= SUPPORTED_Autoneg;
- init_link_config(&pi->link_cfg, v);
+ v = be32_to_cpu(port_rpl.u.info.lstatus_to_modtype);
+ pi->port_type = FW_PORT_CMD_PTYPE_G(v);
+ pi->mod_type = FW_PORT_MOD_TYPE_NA;
+
+ init_link_config(&pi->link_cfg, be16_to_cpu(port_rpl.u.info.pcap));
return 0;
}
@@ -1491,7 +1486,7 @@ int t4vf_handle_fw_rpl(struct adapter *adapter, const __be64 *rpl)
*/
const struct fw_port_cmd *port_cmd =
(const struct fw_port_cmd *)rpl;
- u32 word;
+ u32 stat, mod;
int action, port_id, link_ok, speed, fc, pidx;
/*
@@ -1509,21 +1504,21 @@ int t4vf_handle_fw_rpl(struct adapter *adapter, const __be64 *rpl)
port_id = FW_PORT_CMD_PORTID_G(
be32_to_cpu(port_cmd->op_to_portid));
- word = be32_to_cpu(port_cmd->u.info.lstatus_to_modtype);
- link_ok = (word & FW_PORT_CMD_LSTATUS_F) != 0;
+ stat = be32_to_cpu(port_cmd->u.info.lstatus_to_modtype);
+ link_ok = (stat & FW_PORT_CMD_LSTATUS_F) != 0;
speed = 0;
fc = 0;
- if (word & FW_PORT_CMD_RXPAUSE_F)
+ if (stat & FW_PORT_CMD_RXPAUSE_F)
fc |= PAUSE_RX;
- if (word & FW_PORT_CMD_TXPAUSE_F)
+ if (stat & FW_PORT_CMD_TXPAUSE_F)
fc |= PAUSE_TX;
- if (word & FW_PORT_CMD_LSPEED_V(FW_PORT_CAP_SPEED_100M))
+ if (stat & FW_PORT_CMD_LSPEED_V(FW_PORT_CAP_SPEED_100M))
speed = 100;
- else if (word & FW_PORT_CMD_LSPEED_V(FW_PORT_CAP_SPEED_1G))
+ else if (stat & FW_PORT_CMD_LSPEED_V(FW_PORT_CAP_SPEED_1G))
speed = 1000;
- else if (word & FW_PORT_CMD_LSPEED_V(FW_PORT_CAP_SPEED_10G))
+ else if (stat & FW_PORT_CMD_LSPEED_V(FW_PORT_CAP_SPEED_10G))
speed = 10000;
- else if (word & FW_PORT_CMD_LSPEED_V(FW_PORT_CAP_SPEED_40G))
+ else if (stat & FW_PORT_CMD_LSPEED_V(FW_PORT_CAP_SPEED_40G))
speed = 40000;
/*
@@ -1540,12 +1535,21 @@ int t4vf_handle_fw_rpl(struct adapter *adapter, const __be64 *rpl)
continue;
lc = &pi->link_cfg;
+
+ mod = FW_PORT_CMD_MODTYPE_G(stat);
+ if (mod != pi->mod_type) {
+ pi->mod_type = mod;
+ t4vf_os_portmod_changed(adapter, pidx);
+ }
+
if (link_ok != lc->link_ok || speed != lc->speed ||
fc != lc->fc) {
/* something changed */
lc->link_ok = link_ok;
lc->speed = speed;
lc->fc = fc;
+ lc->supported =
+ be16_to_cpu(port_cmd->u.info.pcap);
t4vf_os_link_changed(adapter, pidx, link_ok);
}
}
diff --git a/drivers/net/ethernet/cisco/enic/enic_main.c b/drivers/net/ethernet/cisco/enic/enic_main.c
index 868d0f6..705f334 100644
--- a/drivers/net/ethernet/cisco/enic/enic_main.c
+++ b/drivers/net/ethernet/cisco/enic/enic_main.c
@@ -1060,10 +1060,14 @@ static void enic_rq_indicate_buf(struct vnic_rq *rq,
PKT_HASH_TYPE_L4 : PKT_HASH_TYPE_L3);
}
- if ((netdev->features & NETIF_F_RXCSUM) && !csum_not_calc) {
- skb->csum = htons(checksum);
- skb->ip_summed = CHECKSUM_COMPLETE;
- }
+ /* Hardware does not provide whole packet checksum. It only
+ * provides pseudo checksum. Since hw validates the packet
+ * checksum but not provide us the checksum value. use
+ * CHECSUM_UNNECESSARY.
+ */
+ if ((netdev->features & NETIF_F_RXCSUM) && tcp_udp_csum_ok &&
+ ipv4_csum_ok)
+ skb->ip_summed = CHECKSUM_UNNECESSARY;
if (vlan_stripped)
__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), vlan_tci);
diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c
index 1960731..41a0a54 100644
--- a/drivers/net/ethernet/emulex/benet/be_main.c
+++ b/drivers/net/ethernet/emulex/benet/be_main.c
@@ -4459,9 +4459,11 @@ done:
adapter->vxlan_port_count--;
}
-static bool be_gso_check(struct sk_buff *skb, struct net_device *dev)
+static netdev_features_t be_features_check(struct sk_buff *skb,
+ struct net_device *dev,
+ netdev_features_t features)
{
- return vxlan_gso_check(skb);
+ return vxlan_features_check(skb, features);
}
#endif
@@ -4492,7 +4494,7 @@ static const struct net_device_ops be_netdev_ops = {
#ifdef CONFIG_BE2NET_VXLAN
.ndo_add_vxlan_port = be_add_vxlan_port,
.ndo_del_vxlan_port = be_del_vxlan_port,
- .ndo_gso_check = be_gso_check,
+ .ndo_features_check = be_features_check,
#endif
};
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
index 190cbd9..d0d6dc1 100644
--- a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
+++ b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c
@@ -2365,9 +2365,11 @@ static void mlx4_en_del_vxlan_port(struct net_device *dev,
queue_work(priv->mdev->workqueue, &priv->vxlan_del_task);
}
-static bool mlx4_en_gso_check(struct sk_buff *skb, struct net_device *dev)
+static netdev_features_t mlx4_en_features_check(struct sk_buff *skb,
+ struct net_device *dev,
+ netdev_features_t features)
{
- return vxlan_gso_check(skb);
+ return vxlan_features_check(skb, features);
}
#endif
@@ -2400,7 +2402,7 @@ static const struct net_device_ops mlx4_netdev_ops = {
#ifdef CONFIG_MLX4_EN_VXLAN
.ndo_add_vxlan_port = mlx4_en_add_vxlan_port,
.ndo_del_vxlan_port = mlx4_en_del_vxlan_port,
- .ndo_gso_check = mlx4_en_gso_check,
+ .ndo_features_check = mlx4_en_features_check,
#endif
};
@@ -2434,7 +2436,7 @@ static const struct net_device_ops mlx4_netdev_ops_master = {
#ifdef CONFIG_MLX4_EN_VXLAN
.ndo_add_vxlan_port = mlx4_en_add_vxlan_port,
.ndo_del_vxlan_port = mlx4_en_del_vxlan_port,
- .ndo_gso_check = mlx4_en_gso_check,
+ .ndo_features_check = mlx4_en_features_check,
#endif
};
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_tx.c b/drivers/net/ethernet/mellanox/mlx4/en_tx.c
index a308d41..e3357bf 100644
--- a/drivers/net/ethernet/mellanox/mlx4/en_tx.c
+++ b/drivers/net/ethernet/mellanox/mlx4/en_tx.c
@@ -962,7 +962,17 @@ netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev)
tx_desc->ctrl.owner_opcode = op_own;
if (send_doorbell) {
wmb();
- iowrite32(ring->doorbell_qpn,
+ /* Since there is no iowrite*_native() that writes the
+ * value as is, without byteswapping - using the one
+ * the doesn't do byteswapping in the relevant arch
+ * endianness.
+ */
+#if defined(__LITTLE_ENDIAN)
+ iowrite32(
+#else
+ iowrite32be(
+#endif
+ ring->doorbell_qpn,
ring->bf.uar->map + MLX4_SEND_DOORBELL);
} else {
ring->xmit_more++;
diff --git a/drivers/net/ethernet/micrel/ksz884x.c b/drivers/net/ethernet/micrel/ksz884x.c
index f1ebed6c..2fa6ae0 100644
--- a/drivers/net/ethernet/micrel/ksz884x.c
+++ b/drivers/net/ethernet/micrel/ksz884x.c
@@ -2303,12 +2303,6 @@ static inline int port_chk_force_flow_ctrl(struct ksz_hw *hw, int p)
/* Spanning Tree */
-static inline void port_cfg_dis_learn(struct ksz_hw *hw, int p, int set)
-{
- port_cfg(hw, p,
- KS8842_PORT_CTRL_2_OFFSET, PORT_LEARN_DISABLE, set);
-}
-
static inline void port_cfg_rx(struct ksz_hw *hw, int p, int set)
{
port_cfg(hw, p,
diff --git a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
index 1aa25b1..9929b97 100644
--- a/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
+++ b/drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c
@@ -505,9 +505,11 @@ static void qlcnic_del_vxlan_port(struct net_device *netdev,
adapter->flags |= QLCNIC_DEL_VXLAN_PORT;
}
-static bool qlcnic_gso_check(struct sk_buff *skb, struct net_device *dev)
+static netdev_features_t qlcnic_features_check(struct sk_buff *skb,
+ struct net_device *dev,
+ netdev_features_t features)
{
- return vxlan_gso_check(skb);
+ return vxlan_features_check(skb, features);
}
#endif
@@ -532,7 +534,7 @@ static const struct net_device_ops qlcnic_netdev_ops = {
#ifdef CONFIG_QLCNIC_VXLAN
.ndo_add_vxlan_port = qlcnic_add_vxlan_port,
.ndo_del_vxlan_port = qlcnic_del_vxlan_port,
- .ndo_gso_check = qlcnic_gso_check,
+ .ndo_features_check = qlcnic_features_check,
#endif
#ifdef CONFIG_NET_POLL_CONTROLLER
.ndo_poll_controller = qlcnic_poll_controller,
diff --git a/drivers/net/ethernet/realtek/8139too.c b/drivers/net/ethernet/realtek/8139too.c
index 6d0b9df..78bb4ce 100644
--- a/drivers/net/ethernet/realtek/8139too.c
+++ b/drivers/net/ethernet/realtek/8139too.c
@@ -787,10 +787,10 @@ static struct net_device *rtl8139_init_board(struct pci_dev *pdev)
if (rc)
goto err_out;
+ disable_dev_on_err = 1;
rc = pci_request_regions (pdev, DRV_NAME);
if (rc)
goto err_out;
- disable_dev_on_err = 1;
pci_set_master (pdev);
@@ -1110,6 +1110,7 @@ static int rtl8139_init_one(struct pci_dev *pdev,
return 0;
err_out:
+ netif_napi_del(&tp->napi);
__rtl8139_cleanup_dev (dev);
pci_disable_device (pdev);
return i;
@@ -1124,6 +1125,7 @@ static void rtl8139_remove_one(struct pci_dev *pdev)
assert (dev != NULL);
cancel_delayed_work_sync(&tp->thread);
+ netif_napi_del(&tp->napi);
unregister_netdev (dev);
diff --git a/drivers/net/ethernet/s6gmac.c b/drivers/net/ethernet/s6gmac.c
deleted file mode 100644
index f537cbe..0000000
--- a/drivers/net/ethernet/s6gmac.c
+++ /dev/null
@@ -1,1058 +0,0 @@
-/*
- * Ethernet driver for S6105 on chip network device
- * (c)2008 emlix GmbH http://www.emlix.com
- * Authors: Oskar Schirmer <oskar@scara.com>
- * Daniel Gloeckner <dg@emlix.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version
- * 2 of the License, or (at your option) any later version.
- */
-#include <linux/kernel.h>
-#include <linux/module.h>
-#include <linux/interrupt.h>
-#include <linux/types.h>
-#include <linux/delay.h>
-#include <linux/spinlock.h>
-#include <linux/netdevice.h>
-#include <linux/etherdevice.h>
-#include <linux/if.h>
-#include <linux/stddef.h>
-#include <linux/mii.h>
-#include <linux/phy.h>
-#include <linux/platform_device.h>
-#include <variant/hardware.h>
-#include <variant/dmac.h>
-
-#define DRV_NAME "s6gmac"
-#define DRV_PRMT DRV_NAME ": "
-
-
-/* register declarations */
-
-#define S6_GMAC_MACCONF1 0x000
-#define S6_GMAC_MACCONF1_TXENA 0
-#define S6_GMAC_MACCONF1_SYNCTX 1
-#define S6_GMAC_MACCONF1_RXENA 2
-#define S6_GMAC_MACCONF1_SYNCRX 3
-#define S6_GMAC_MACCONF1_TXFLOWCTRL 4
-#define S6_GMAC_MACCONF1_RXFLOWCTRL 5
-#define S6_GMAC_MACCONF1_LOOPBACK 8
-#define S6_GMAC_MACCONF1_RESTXFUNC 16
-#define S6_GMAC_MACCONF1_RESRXFUNC 17
-#define S6_GMAC_MACCONF1_RESTXMACCTRL 18
-#define S6_GMAC_MACCONF1_RESRXMACCTRL 19
-#define S6_GMAC_MACCONF1_SIMULRES 30
-#define S6_GMAC_MACCONF1_SOFTRES 31
-#define S6_GMAC_MACCONF2 0x004
-#define S6_GMAC_MACCONF2_FULL 0
-#define S6_GMAC_MACCONF2_CRCENA 1
-#define S6_GMAC_MACCONF2_PADCRCENA 2
-#define S6_GMAC_MACCONF2_LENGTHFCHK 4
-#define S6_GMAC_MACCONF2_HUGEFRAMENA 5
-#define S6_GMAC_MACCONF2_IFMODE 8
-#define S6_GMAC_MACCONF2_IFMODE_NIBBLE 1
-#define S6_GMAC_MACCONF2_IFMODE_BYTE 2
-#define S6_GMAC_MACCONF2_IFMODE_MASK 3
-#define S6_GMAC_MACCONF2_PREAMBLELEN 12
-#define S6_GMAC_MACCONF2_PREAMBLELEN_MASK 0x0F
-#define S6_GMAC_MACIPGIFG 0x008
-#define S6_GMAC_MACIPGIFG_B2BINTERPGAP 0
-#define S6_GMAC_MACIPGIFG_B2BINTERPGAP_MASK 0x7F
-#define S6_GMAC_MACIPGIFG_MINIFGENFORCE 8
-#define S6_GMAC_MACIPGIFG_B2BINTERPGAP2 16
-#define S6_GMAC_MACIPGIFG_B2BINTERPGAP1 24
-#define S6_GMAC_MACHALFDUPLEX 0x00C
-#define S6_GMAC_MACHALFDUPLEX_COLLISWIN 0
-#define S6_GMAC_MACHALFDUPLEX_COLLISWIN_MASK 0x3F
-#define S6_GMAC_MACHALFDUPLEX_RETXMAX 12
-#define S6_GMAC_MACHALFDUPLEX_RETXMAX_MASK 0x0F
-#define S6_GMAC_MACHALFDUPLEX_EXCESSDEF 16
-#define S6_GMAC_MACHALFDUPLEX_NOBACKOFF 17
-#define S6_GMAC_MACHALFDUPLEX_BPNOBCKOF 18
-#define S6_GMAC_MACHALFDUPLEX_ALTBEBENA 19
-#define S6_GMAC_MACHALFDUPLEX_ALTBEBTRN 20
-#define S6_GMAC_MACHALFDUPLEX_ALTBEBTR_MASK 0x0F
-#define S6_GMAC_MACMAXFRAMELEN 0x010
-#define S6_GMAC_MACMIICONF 0x020
-#define S6_GMAC_MACMIICONF_CSEL 0
-#define S6_GMAC_MACMIICONF_CSEL_DIV10 0
-#define S6_GMAC_MACMIICONF_CSEL_DIV12 1
-#define S6_GMAC_MACMIICONF_CSEL_DIV14 2
-#define S6_GMAC_MACMIICONF_CSEL_DIV18 3
-#define S6_GMAC_MACMIICONF_CSEL_DIV24 4
-#define S6_GMAC_MACMIICONF_CSEL_DIV34 5
-#define S6_GMAC_MACMIICONF_CSEL_DIV68 6
-#define S6_GMAC_MACMIICONF_CSEL_DIV168 7
-#define S6_GMAC_MACMIICONF_CSEL_MASK 7
-#define S6_GMAC_MACMIICONF_PREAMBLESUPR 4
-#define S6_GMAC_MACMIICONF_SCANAUTOINCR 5
-#define S6_GMAC_MACMIICMD 0x024
-#define S6_GMAC_MACMIICMD_READ 0
-#define S6_GMAC_MACMIICMD_SCAN 1
-#define S6_GMAC_MACMIIADDR 0x028
-#define S6_GMAC_MACMIIADDR_REG 0
-#define S6_GMAC_MACMIIADDR_REG_MASK 0x1F
-#define S6_GMAC_MACMIIADDR_PHY 8
-#define S6_GMAC_MACMIIADDR_PHY_MASK 0x1F
-#define S6_GMAC_MACMIICTRL 0x02C
-#define S6_GMAC_MACMIISTAT 0x030
-#define S6_GMAC_MACMIIINDI 0x034
-#define S6_GMAC_MACMIIINDI_BUSY 0
-#define S6_GMAC_MACMIIINDI_SCAN 1
-#define S6_GMAC_MACMIIINDI_INVAL 2
-#define S6_GMAC_MACINTERFSTAT 0x03C
-#define S6_GMAC_MACINTERFSTAT_LINKFAIL 3
-#define S6_GMAC_MACINTERFSTAT_EXCESSDEF 9
-#define S6_GMAC_MACSTATADDR1 0x040
-#define S6_GMAC_MACSTATADDR2 0x044
-
-#define S6_GMAC_FIFOCONF0 0x048
-#define S6_GMAC_FIFOCONF0_HSTRSTWT 0
-#define S6_GMAC_FIFOCONF0_HSTRSTSR 1
-#define S6_GMAC_FIFOCONF0_HSTRSTFR 2
-#define S6_GMAC_FIFOCONF0_HSTRSTST 3
-#define S6_GMAC_FIFOCONF0_HSTRSTFT 4
-#define S6_GMAC_FIFOCONF0_WTMENREQ 8
-#define S6_GMAC_FIFOCONF0_SRFENREQ 9
-#define S6_GMAC_FIFOCONF0_FRFENREQ 10
-#define S6_GMAC_FIFOCONF0_STFENREQ 11
-#define S6_GMAC_FIFOCONF0_FTFENREQ 12
-#define S6_GMAC_FIFOCONF0_WTMENRPLY 16
-#define S6_GMAC_FIFOCONF0_SRFENRPLY 17
-#define S6_GMAC_FIFOCONF0_FRFENRPLY 18
-#define S6_GMAC_FIFOCONF0_STFENRPLY 19
-#define S6_GMAC_FIFOCONF0_FTFENRPLY 20
-#define S6_GMAC_FIFOCONF1 0x04C
-#define S6_GMAC_FIFOCONF2 0x050
-#define S6_GMAC_FIFOCONF2_CFGLWM 0
-#define S6_GMAC_FIFOCONF2_CFGHWM 16
-#define S6_GMAC_FIFOCONF3 0x054
-#define S6_GMAC_FIFOCONF3_CFGFTTH 0
-#define S6_GMAC_FIFOCONF3_CFGHWMFT 16
-#define S6_GMAC_FIFOCONF4 0x058
-#define S6_GMAC_FIFOCONF_RSV_PREVDROP 0
-#define S6_GMAC_FIFOCONF_RSV_RUNT 1
-#define S6_GMAC_FIFOCONF_RSV_FALSECAR 2
-#define S6_GMAC_FIFOCONF_RSV_CODEERR 3
-#define S6_GMAC_FIFOCONF_RSV_CRCERR 4
-#define S6_GMAC_FIFOCONF_RSV_LENGTHERR 5
-#define S6_GMAC_FIFOCONF_RSV_LENRANGE 6
-#define S6_GMAC_FIFOCONF_RSV_OK 7
-#define S6_GMAC_FIFOCONF_RSV_MULTICAST 8
-#define S6_GMAC_FIFOCONF_RSV_BROADCAST 9
-#define S6_GMAC_FIFOCONF_RSV_DRIBBLE 10
-#define S6_GMAC_FIFOCONF_RSV_CTRLFRAME 11
-#define S6_GMAC_FIFOCONF_RSV_PAUSECTRL 12
-#define S6_GMAC_FIFOCONF_RSV_UNOPCODE 13
-#define S6_GMAC_FIFOCONF_RSV_VLANTAG 14
-#define S6_GMAC_FIFOCONF_RSV_LONGEVENT 15
-#define S6_GMAC_FIFOCONF_RSV_TRUNCATED 16
-#define S6_GMAC_FIFOCONF_RSV_MASK 0x3FFFF
-#define S6_GMAC_FIFOCONF5 0x05C
-#define S6_GMAC_FIFOCONF5_DROPLT64 18
-#define S6_GMAC_FIFOCONF5_CFGBYTM 19
-#define S6_GMAC_FIFOCONF5_RXDROPSIZE 20
-#define S6_GMAC_FIFOCONF5_RXDROPSIZE_MASK 0xF
-
-#define S6_GMAC_STAT_REGS 0x080
-#define S6_GMAC_STAT_SIZE_MIN 12
-#define S6_GMAC_STATTR64 0x080
-#define S6_GMAC_STATTR64_SIZE 18
-#define S6_GMAC_STATTR127 0x084
-#define S6_GMAC_STATTR127_SIZE 18
-#define S6_GMAC_STATTR255 0x088
-#define S6_GMAC_STATTR255_SIZE 18
-#define S6_GMAC_STATTR511 0x08C
-#define S6_GMAC_STATTR511_SIZE 18
-#define S6_GMAC_STATTR1K 0x090
-#define S6_GMAC_STATTR1K_SIZE 18
-#define S6_GMAC_STATTRMAX 0x094
-#define S6_GMAC_STATTRMAX_SIZE 18
-#define S6_GMAC_STATTRMGV 0x098
-#define S6_GMAC_STATTRMGV_SIZE 18
-#define S6_GMAC_STATRBYT 0x09C
-#define S6_GMAC_STATRBYT_SIZE 24
-#define S6_GMAC_STATRPKT 0x0A0
-#define S6_GMAC_STATRPKT_SIZE 18
-#define S6_GMAC_STATRFCS 0x0A4
-#define S6_GMAC_STATRFCS_SIZE 12
-#define S6_GMAC_STATRMCA 0x0A8
-#define S6_GMAC_STATRMCA_SIZE 18
-#define S6_GMAC_STATRBCA 0x0AC
-#define S6_GMAC_STATRBCA_SIZE 22
-#define S6_GMAC_STATRXCF 0x0B0
-#define S6_GMAC_STATRXCF_SIZE 18
-#define S6_GMAC_STATRXPF 0x0B4
-#define S6_GMAC_STATRXPF_SIZE 12
-#define S6_GMAC_STATRXUO 0x0B8
-#define S6_GMAC_STATRXUO_SIZE 12
-#define S6_GMAC_STATRALN 0x0BC
-#define S6_GMAC_STATRALN_SIZE 12
-#define S6_GMAC_STATRFLR 0x0C0
-#define S6_GMAC_STATRFLR_SIZE 16
-#define S6_GMAC_STATRCDE 0x0C4
-#define S6_GMAC_STATRCDE_SIZE 12
-#define S6_GMAC_STATRCSE 0x0C8
-#define S6_GMAC_STATRCSE_SIZE 12
-#define S6_GMAC_STATRUND 0x0CC
-#define S6_GMAC_STATRUND_SIZE 12
-#define S6_GMAC_STATROVR 0x0D0
-#define S6_GMAC_STATROVR_SIZE 12
-#define S6_GMAC_STATRFRG 0x0D4
-#define S6_GMAC_STATRFRG_SIZE 12
-#define S6_GMAC_STATRJBR 0x0D8
-#define S6_GMAC_STATRJBR_SIZE 12
-#define S6_GMAC_STATRDRP 0x0DC
-#define S6_GMAC_STATRDRP_SIZE 12
-#define S6_GMAC_STATTBYT 0x0E0
-#define S6_GMAC_STATTBYT_SIZE 24
-#define S6_GMAC_STATTPKT 0x0E4
-#define S6_GMAC_STATTPKT_SIZE 18
-#define S6_GMAC_STATTMCA 0x0E8
-#define S6_GMAC_STATTMCA_SIZE 18
-#define S6_GMAC_STATTBCA 0x0EC
-#define S6_GMAC_STATTBCA_SIZE 18
-#define S6_GMAC_STATTXPF 0x0F0
-#define S6_GMAC_STATTXPF_SIZE 12
-#define S6_GMAC_STATTDFR 0x0F4
-#define S6_GMAC_STATTDFR_SIZE 12
-#define S6_GMAC_STATTEDF 0x0F8
-#define S6_GMAC_STATTEDF_SIZE 12
-#define S6_GMAC_STATTSCL 0x0FC
-#define S6_GMAC_STATTSCL_SIZE 12
-#define S6_GMAC_STATTMCL 0x100
-#define S6_GMAC_STATTMCL_SIZE 12
-#define S6_GMAC_STATTLCL 0x104
-#define S6_GMAC_STATTLCL_SIZE 12
-#define S6_GMAC_STATTXCL 0x108
-#define S6_GMAC_STATTXCL_SIZE 12
-#define S6_GMAC_STATTNCL 0x10C
-#define S6_GMAC_STATTNCL_SIZE 13
-#define S6_GMAC_STATTPFH 0x110
-#define S6_GMAC_STATTPFH_SIZE 12
-#define S6_GMAC_STATTDRP 0x114
-#define S6_GMAC_STATTDRP_SIZE 12
-#define S6_GMAC_STATTJBR 0x118
-#define S6_GMAC_STATTJBR_SIZE 12
-#define S6_GMAC_STATTFCS 0x11C
-#define S6_GMAC_STATTFCS_SIZE 12
-#define S6_GMAC_STATTXCF 0x120
-#define S6_GMAC_STATTXCF_SIZE 12
-#define S6_GMAC_STATTOVR 0x124
-#define S6_GMAC_STATTOVR_SIZE 12
-#define S6_GMAC_STATTUND 0x128
-#define S6_GMAC_STATTUND_SIZE 12
-#define S6_GMAC_STATTFRG 0x12C
-#define S6_GMAC_STATTFRG_SIZE 12
-#define S6_GMAC_STATCARRY(n) (0x130 + 4*(n))
-#define S6_GMAC_STATCARRYMSK(n) (0x138 + 4*(n))
-#define S6_GMAC_STATCARRY1_RDRP 0
-#define S6_GMAC_STATCARRY1_RJBR 1
-#define S6_GMAC_STATCARRY1_RFRG 2
-#define S6_GMAC_STATCARRY1_ROVR 3
-#define S6_GMAC_STATCARRY1_RUND 4
-#define S6_GMAC_STATCARRY1_RCSE 5
-#define S6_GMAC_STATCARRY1_RCDE 6
-#define S6_GMAC_STATCARRY1_RFLR 7
-#define S6_GMAC_STATCARRY1_RALN 8
-#define S6_GMAC_STATCARRY1_RXUO 9
-#define S6_GMAC_STATCARRY1_RXPF 10
-#define S6_GMAC_STATCARRY1_RXCF 11
-#define S6_GMAC_STATCARRY1_RBCA 12
-#define S6_GMAC_STATCARRY1_RMCA 13
-#define S6_GMAC_STATCARRY1_RFCS 14
-#define S6_GMAC_STATCARRY1_RPKT 15
-#define S6_GMAC_STATCARRY1_RBYT 16
-#define S6_GMAC_STATCARRY1_TRMGV 25
-#define S6_GMAC_STATCARRY1_TRMAX 26
-#define S6_GMAC_STATCARRY1_TR1K 27
-#define S6_GMAC_STATCARRY1_TR511 28
-#define S6_GMAC_STATCARRY1_TR255 29
-#define S6_GMAC_STATCARRY1_TR127 30
-#define S6_GMAC_STATCARRY1_TR64 31
-#define S6_GMAC_STATCARRY2_TDRP 0
-#define S6_GMAC_STATCARRY2_TPFH 1
-#define S6_GMAC_STATCARRY2_TNCL 2
-#define S6_GMAC_STATCARRY2_TXCL 3
-#define S6_GMAC_STATCARRY2_TLCL 4
-#define S6_GMAC_STATCARRY2_TMCL 5
-#define S6_GMAC_STATCARRY2_TSCL 6
-#define S6_GMAC_STATCARRY2_TEDF 7
-#define S6_GMAC_STATCARRY2_TDFR 8
-#define S6_GMAC_STATCARRY2_TXPF 9
-#define S6_GMAC_STATCARRY2_TBCA 10
-#define S6_GMAC_STATCARRY2_TMCA 11
-#define S6_GMAC_STATCARRY2_TPKT 12
-#define S6_GMAC_STATCARRY2_TBYT 13
-#define S6_GMAC_STATCARRY2_TFRG 14
-#define S6_GMAC_STATCARRY2_TUND 15
-#define S6_GMAC_STATCARRY2_TOVR 16
-#define S6_GMAC_STATCARRY2_TXCF 17
-#define S6_GMAC_STATCARRY2_TFCS 18
-#define S6_GMAC_STATCARRY2_TJBR 19
-
-#define S6_GMAC_HOST_PBLKCTRL 0x140
-#define S6_GMAC_HOST_PBLKCTRL_TXENA 0
-#define S6_GMAC_HOST_PBLKCTRL_RXENA 1
-#define S6_GMAC_HOST_PBLKCTRL_TXSRES 2
-#define S6_GMAC_HOST_PBLKCTRL_RXSRES 3
-#define S6_GMAC_HOST_PBLKCTRL_TXBSIZ 8
-#define S6_GMAC_HOST_PBLKCTRL_RXBSIZ 12
-#define S6_GMAC_HOST_PBLKCTRL_SIZ_16 4
-#define S6_GMAC_HOST_PBLKCTRL_SIZ_32 5
-#define S6_GMAC_HOST_PBLKCTRL_SIZ_64 6
-#define S6_GMAC_HOST_PBLKCTRL_SIZ_128 7
-#define S6_GMAC_HOST_PBLKCTRL_SIZ_MASK 0xF
-#define S6_GMAC_HOST_PBLKCTRL_STATENA 16
-#define S6_GMAC_HOST_PBLKCTRL_STATAUTOZ 17
-#define S6_GMAC_HOST_PBLKCTRL_STATCLEAR 18
-#define S6_GMAC_HOST_PBLKCTRL_RGMII 19
-#define S6_GMAC_HOST_INTMASK 0x144
-#define S6_GMAC_HOST_INTSTAT 0x148
-#define S6_GMAC_HOST_INT_TXBURSTOVER 3
-#define S6_GMAC_HOST_INT_TXPREWOVER 4
-#define S6_GMAC_HOST_INT_RXBURSTUNDER 5
-#define S6_GMAC_HOST_INT_RXPOSTRFULL 6
-#define S6_GMAC_HOST_INT_RXPOSTRUNDER 7
-#define S6_GMAC_HOST_RXFIFOHWM 0x14C
-#define S6_GMAC_HOST_CTRLFRAMXP 0x150
-#define S6_GMAC_HOST_DSTADDRLO(n) (0x160 + 8*(n))
-#define S6_GMAC_HOST_DSTADDRHI(n) (0x164 + 8*(n))
-#define S6_GMAC_HOST_DSTMASKLO(n) (0x180 + 8*(n))
-#define S6_GMAC_HOST_DSTMASKHI(n) (0x184 + 8*(n))
-
-#define S6_GMAC_BURST_PREWR 0x1B0
-#define S6_GMAC_BURST_PREWR_LEN 0
-#define S6_GMAC_BURST_PREWR_LEN_MASK ((1 << 20) - 1)
-#define S6_GMAC_BURST_PREWR_CFE 20
-#define S6_GMAC_BURST_PREWR_PPE 21
-#define S6_GMAC_BURST_PREWR_FCS 22
-#define S6_GMAC_BURST_PREWR_PAD 23
-#define S6_GMAC_BURST_POSTRD 0x1D0
-#define S6_GMAC_BURST_POSTRD_LEN 0
-#define S6_GMAC_BURST_POSTRD_LEN_MASK ((1 << 20) - 1)
-#define S6_GMAC_BURST_POSTRD_DROP 20
-
-
-/* data handling */
-
-#define S6_NUM_TX_SKB 8 /* must be larger than TX fifo size */
-#define S6_NUM_RX_SKB 16
-#define S6_MAX_FRLEN 1536
-
-struct s6gmac {
- u32 reg;
- u32 tx_dma;
- u32 rx_dma;
- u32 io;
- u8 tx_chan;
- u8 rx_chan;
- spinlock_t lock;
- u8 tx_skb_i, tx_skb_o;
- u8 rx_skb_i, rx_skb_o;
- struct sk_buff *tx_skb[S6_NUM_TX_SKB];
- struct sk_buff *rx_skb[S6_NUM_RX_SKB];
- unsigned long carry[sizeof(struct net_device_stats) / sizeof(long)];
- unsigned long stats[sizeof(struct net_device_stats) / sizeof(long)];
- struct phy_device *phydev;
- struct {
- struct mii_bus *bus;
- int irq[PHY_MAX_ADDR];
- } mii;
- struct {
- unsigned int mbit;
- u8 giga;
- u8 isup;
- u8 full;
- } link;
-};
-
-static void s6gmac_rx_fillfifo(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- struct sk_buff *skb;
- while ((((u8)(pd->rx_skb_i - pd->rx_skb_o)) < S6_NUM_RX_SKB) &&
- (!s6dmac_fifo_full(pd->rx_dma, pd->rx_chan)) &&
- (skb = netdev_alloc_skb(dev, S6_MAX_FRLEN + 2))) {
- pd->rx_skb[(pd->rx_skb_i++) % S6_NUM_RX_SKB] = skb;
- s6dmac_put_fifo_cache(pd->rx_dma, pd->rx_chan,
- pd->io, (u32)skb->data, S6_MAX_FRLEN);
- }
-}
-
-static void s6gmac_rx_interrupt(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- u32 pfx;
- struct sk_buff *skb;
- while (((u8)(pd->rx_skb_i - pd->rx_skb_o)) >
- s6dmac_pending_count(pd->rx_dma, pd->rx_chan)) {
- skb = pd->rx_skb[(pd->rx_skb_o++) % S6_NUM_RX_SKB];
- pfx = readl(pd->reg + S6_GMAC_BURST_POSTRD);
- if (pfx & (1 << S6_GMAC_BURST_POSTRD_DROP)) {
- dev_kfree_skb_irq(skb);
- } else {
- skb_put(skb, (pfx >> S6_GMAC_BURST_POSTRD_LEN)
- & S6_GMAC_BURST_POSTRD_LEN_MASK);
- skb->protocol = eth_type_trans(skb, dev);
- skb->ip_summed = CHECKSUM_UNNECESSARY;
- netif_rx(skb);
- }
- }
-}
-
-static void s6gmac_tx_interrupt(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- while (((u8)(pd->tx_skb_i - pd->tx_skb_o)) >
- s6dmac_pending_count(pd->tx_dma, pd->tx_chan)) {
- dev_kfree_skb_irq(pd->tx_skb[(pd->tx_skb_o++) % S6_NUM_TX_SKB]);
- }
- if (!s6dmac_fifo_full(pd->tx_dma, pd->tx_chan))
- netif_wake_queue(dev);
-}
-
-struct s6gmac_statinf {
- unsigned reg_size : 4; /* 0: unused */
- unsigned reg_off : 6;
- unsigned net_index : 6;
-};
-
-#define S6_STATS_B (8 * sizeof(u32))
-#define S6_STATS_C(b, r, f) [b] = { \
- BUILD_BUG_ON_ZERO(r##_SIZE < S6_GMAC_STAT_SIZE_MIN) + \
- BUILD_BUG_ON_ZERO((r##_SIZE - (S6_GMAC_STAT_SIZE_MIN - 1)) \
- >= (1<<4)) + \
- r##_SIZE - (S6_GMAC_STAT_SIZE_MIN - 1), \
- BUILD_BUG_ON_ZERO(((unsigned)((r - S6_GMAC_STAT_REGS) / sizeof(u32))) \
- >= ((1<<6)-1)) + \
- (r - S6_GMAC_STAT_REGS) / sizeof(u32), \
- BUILD_BUG_ON_ZERO((offsetof(struct net_device_stats, f)) \
- % sizeof(unsigned long)) + \
- BUILD_BUG_ON_ZERO((((unsigned)(offsetof(struct net_device_stats, f)) \
- / sizeof(unsigned long)) >= (1<<6))) + \
- BUILD_BUG_ON_ZERO((sizeof(((struct net_device_stats *)0)->f) \
- != sizeof(unsigned long))) + \
- (offsetof(struct net_device_stats, f)) / sizeof(unsigned long)},
-
-static const struct s6gmac_statinf statinf[2][S6_STATS_B] = { {
- S6_STATS_C(S6_GMAC_STATCARRY1_RBYT, S6_GMAC_STATRBYT, rx_bytes)
- S6_STATS_C(S6_GMAC_STATCARRY1_RPKT, S6_GMAC_STATRPKT, rx_packets)
- S6_STATS_C(S6_GMAC_STATCARRY1_RFCS, S6_GMAC_STATRFCS, rx_crc_errors)
- S6_STATS_C(S6_GMAC_STATCARRY1_RMCA, S6_GMAC_STATRMCA, multicast)
- S6_STATS_C(S6_GMAC_STATCARRY1_RALN, S6_GMAC_STATRALN, rx_frame_errors)
- S6_STATS_C(S6_GMAC_STATCARRY1_RFLR, S6_GMAC_STATRFLR, rx_length_errors)
- S6_STATS_C(S6_GMAC_STATCARRY1_RCDE, S6_GMAC_STATRCDE, rx_missed_errors)
- S6_STATS_C(S6_GMAC_STATCARRY1_RUND, S6_GMAC_STATRUND, rx_length_errors)
- S6_STATS_C(S6_GMAC_STATCARRY1_ROVR, S6_GMAC_STATROVR, rx_length_errors)
- S6_STATS_C(S6_GMAC_STATCARRY1_RFRG, S6_GMAC_STATRFRG, rx_crc_errors)
- S6_STATS_C(S6_GMAC_STATCARRY1_RJBR, S6_GMAC_STATRJBR, rx_crc_errors)
- S6_STATS_C(S6_GMAC_STATCARRY1_RDRP, S6_GMAC_STATRDRP, rx_dropped)
-}, {
- S6_STATS_C(S6_GMAC_STATCARRY2_TBYT, S6_GMAC_STATTBYT, tx_bytes)
- S6_STATS_C(S6_GMAC_STATCARRY2_TPKT, S6_GMAC_STATTPKT, tx_packets)
- S6_STATS_C(S6_GMAC_STATCARRY2_TEDF, S6_GMAC_STATTEDF, tx_aborted_errors)
- S6_STATS_C(S6_GMAC_STATCARRY2_TXCL, S6_GMAC_STATTXCL, tx_aborted_errors)
- S6_STATS_C(S6_GMAC_STATCARRY2_TNCL, S6_GMAC_STATTNCL, collisions)
- S6_STATS_C(S6_GMAC_STATCARRY2_TDRP, S6_GMAC_STATTDRP, tx_dropped)
- S6_STATS_C(S6_GMAC_STATCARRY2_TJBR, S6_GMAC_STATTJBR, tx_errors)
- S6_STATS_C(S6_GMAC_STATCARRY2_TFCS, S6_GMAC_STATTFCS, tx_errors)
- S6_STATS_C(S6_GMAC_STATCARRY2_TOVR, S6_GMAC_STATTOVR, tx_errors)
- S6_STATS_C(S6_GMAC_STATCARRY2_TUND, S6_GMAC_STATTUND, tx_errors)
- S6_STATS_C(S6_GMAC_STATCARRY2_TFRG, S6_GMAC_STATTFRG, tx_errors)
-} };
-
-static void s6gmac_stats_collect(struct s6gmac *pd,
- const struct s6gmac_statinf *inf)
-{
- int b;
- for (b = 0; b < S6_STATS_B; b++) {
- if (inf[b].reg_size) {
- pd->stats[inf[b].net_index] +=
- readl(pd->reg + S6_GMAC_STAT_REGS
- + sizeof(u32) * inf[b].reg_off);
- }
- }
-}
-
-static void s6gmac_stats_carry(struct s6gmac *pd,
- const struct s6gmac_statinf *inf, u32 mask)
-{
- int b;
- while (mask) {
- b = fls(mask) - 1;
- mask &= ~(1 << b);
- pd->carry[inf[b].net_index] += (1 << inf[b].reg_size);
- }
-}
-
-static inline u32 s6gmac_stats_pending(struct s6gmac *pd, int carry)
-{
- int r = readl(pd->reg + S6_GMAC_STATCARRY(carry)) &
- ~readl(pd->reg + S6_GMAC_STATCARRYMSK(carry));
- return r;
-}
-
-static inline void s6gmac_stats_interrupt(struct s6gmac *pd, int carry)
-{
- u32 mask;
- mask = s6gmac_stats_pending(pd, carry);
- if (mask) {
- writel(mask, pd->reg + S6_GMAC_STATCARRY(carry));
- s6gmac_stats_carry(pd, &statinf[carry][0], mask);
- }
-}
-
-static irqreturn_t s6gmac_interrupt(int irq, void *dev_id)
-{
- struct net_device *dev = (struct net_device *)dev_id;
- struct s6gmac *pd = netdev_priv(dev);
- if (!dev)
- return IRQ_NONE;
- spin_lock(&pd->lock);
- if (s6dmac_termcnt_irq(pd->rx_dma, pd->rx_chan))
- s6gmac_rx_interrupt(dev);
- s6gmac_rx_fillfifo(dev);
- if (s6dmac_termcnt_irq(pd->tx_dma, pd->tx_chan))
- s6gmac_tx_interrupt(dev);
- s6gmac_stats_interrupt(pd, 0);
- s6gmac_stats_interrupt(pd, 1);
- spin_unlock(&pd->lock);
- return IRQ_HANDLED;
-}
-
-static inline void s6gmac_set_dstaddr(struct s6gmac *pd, int n,
- u32 addrlo, u32 addrhi, u32 masklo, u32 maskhi)
-{
- writel(addrlo, pd->reg + S6_GMAC_HOST_DSTADDRLO(n));
- writel(addrhi, pd->reg + S6_GMAC_HOST_DSTADDRHI(n));
- writel(masklo, pd->reg + S6_GMAC_HOST_DSTMASKLO(n));
- writel(maskhi, pd->reg + S6_GMAC_HOST_DSTMASKHI(n));
-}
-
-static inline void s6gmac_stop_device(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- writel(0, pd->reg + S6_GMAC_MACCONF1);
-}
-
-static inline void s6gmac_init_device(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- int is_rgmii = !!(pd->phydev->supported
- & (SUPPORTED_1000baseT_Full | SUPPORTED_1000baseT_Half));
-#if 0
- writel(1 << S6_GMAC_MACCONF1_SYNCTX |
- 1 << S6_GMAC_MACCONF1_SYNCRX |
- 1 << S6_GMAC_MACCONF1_TXFLOWCTRL |
- 1 << S6_GMAC_MACCONF1_RXFLOWCTRL |
- 1 << S6_GMAC_MACCONF1_RESTXFUNC |
- 1 << S6_GMAC_MACCONF1_RESRXFUNC |
- 1 << S6_GMAC_MACCONF1_RESTXMACCTRL |
- 1 << S6_GMAC_MACCONF1_RESRXMACCTRL,
- pd->reg + S6_GMAC_MACCONF1);
-#endif
- writel(1 << S6_GMAC_MACCONF1_SOFTRES, pd->reg + S6_GMAC_MACCONF1);
- udelay(1000);
- writel(1 << S6_GMAC_MACCONF1_TXENA | 1 << S6_GMAC_MACCONF1_RXENA,
- pd->reg + S6_GMAC_MACCONF1);
- writel(1 << S6_GMAC_HOST_PBLKCTRL_TXSRES |
- 1 << S6_GMAC_HOST_PBLKCTRL_RXSRES,
- pd->reg + S6_GMAC_HOST_PBLKCTRL);
- writel(S6_GMAC_HOST_PBLKCTRL_SIZ_128 << S6_GMAC_HOST_PBLKCTRL_TXBSIZ |
- S6_GMAC_HOST_PBLKCTRL_SIZ_128 << S6_GMAC_HOST_PBLKCTRL_RXBSIZ |
- 1 << S6_GMAC_HOST_PBLKCTRL_STATENA |
- 1 << S6_GMAC_HOST_PBLKCTRL_STATCLEAR |
- is_rgmii << S6_GMAC_HOST_PBLKCTRL_RGMII,
- pd->reg + S6_GMAC_HOST_PBLKCTRL);
- writel(1 << S6_GMAC_MACCONF1_TXENA |
- 1 << S6_GMAC_MACCONF1_RXENA |
- (dev->flags & IFF_LOOPBACK ? 1 : 0)
- << S6_GMAC_MACCONF1_LOOPBACK,
- pd->reg + S6_GMAC_MACCONF1);
- writel(dev->mtu && (dev->mtu < (S6_MAX_FRLEN - ETH_HLEN-ETH_FCS_LEN)) ?
- dev->mtu+ETH_HLEN+ETH_FCS_LEN : S6_MAX_FRLEN,
- pd->reg + S6_GMAC_MACMAXFRAMELEN);
- writel((pd->link.full ? 1 : 0) << S6_GMAC_MACCONF2_FULL |
- 1 << S6_GMAC_MACCONF2_PADCRCENA |
- 1 << S6_GMAC_MACCONF2_LENGTHFCHK |
- (pd->link.giga ?
- S6_GMAC_MACCONF2_IFMODE_BYTE :
- S6_GMAC_MACCONF2_IFMODE_NIBBLE)
- << S6_GMAC_MACCONF2_IFMODE |
- 7 << S6_GMAC_MACCONF2_PREAMBLELEN,
- pd->reg + S6_GMAC_MACCONF2);
- writel(0, pd->reg + S6_GMAC_MACSTATADDR1);
- writel(0, pd->reg + S6_GMAC_MACSTATADDR2);
- writel(1 << S6_GMAC_FIFOCONF0_WTMENREQ |
- 1 << S6_GMAC_FIFOCONF0_SRFENREQ |
- 1 << S6_GMAC_FIFOCONF0_FRFENREQ |
- 1 << S6_GMAC_FIFOCONF0_STFENREQ |
- 1 << S6_GMAC_FIFOCONF0_FTFENREQ,
- pd->reg + S6_GMAC_FIFOCONF0);
- writel(128 << S6_GMAC_FIFOCONF3_CFGFTTH |
- 128 << S6_GMAC_FIFOCONF3_CFGHWMFT,
- pd->reg + S6_GMAC_FIFOCONF3);
- writel((S6_GMAC_FIFOCONF_RSV_MASK & ~(
- 1 << S6_GMAC_FIFOCONF_RSV_RUNT |
- 1 << S6_GMAC_FIFOCONF_RSV_CRCERR |
- 1 << S6_GMAC_FIFOCONF_RSV_OK |
- 1 << S6_GMAC_FIFOCONF_RSV_DRIBBLE |
- 1 << S6_GMAC_FIFOCONF_RSV_CTRLFRAME |
- 1 << S6_GMAC_FIFOCONF_RSV_PAUSECTRL |
- 1 << S6_GMAC_FIFOCONF_RSV_UNOPCODE |
- 1 << S6_GMAC_FIFOCONF_RSV_TRUNCATED)) |
- 1 << S6_GMAC_FIFOCONF5_DROPLT64 |
- pd->link.giga << S6_GMAC_FIFOCONF5_CFGBYTM |
- 1 << S6_GMAC_FIFOCONF5_RXDROPSIZE,
- pd->reg + S6_GMAC_FIFOCONF5);
- writel(1 << S6_GMAC_FIFOCONF_RSV_RUNT |
- 1 << S6_GMAC_FIFOCONF_RSV_CRCERR |
- 1 << S6_GMAC_FIFOCONF_RSV_DRIBBLE |
- 1 << S6_GMAC_FIFOCONF_RSV_CTRLFRAME |
- 1 << S6_GMAC_FIFOCONF_RSV_PAUSECTRL |
- 1 << S6_GMAC_FIFOCONF_RSV_UNOPCODE |
- 1 << S6_GMAC_FIFOCONF_RSV_TRUNCATED,
- pd->reg + S6_GMAC_FIFOCONF4);
- s6gmac_set_dstaddr(pd, 0,
- 0xFFFFFFFF, 0x0000FFFF, 0xFFFFFFFF, 0x0000FFFF);
- s6gmac_set_dstaddr(pd, 1,
- dev->dev_addr[5] |
- dev->dev_addr[4] << 8 |
- dev->dev_addr[3] << 16 |
- dev->dev_addr[2] << 24,
- dev->dev_addr[1] |
- dev->dev_addr[0] << 8,
- 0xFFFFFFFF, 0x0000FFFF);
- s6gmac_set_dstaddr(pd, 2,
- 0x00000000, 0x00000100, 0x00000000, 0x00000100);
- s6gmac_set_dstaddr(pd, 3,
- 0x00000000, 0x00000000, 0x00000000, 0x00000000);
- writel(1 << S6_GMAC_HOST_PBLKCTRL_TXENA |
- 1 << S6_GMAC_HOST_PBLKCTRL_RXENA |
- S6_GMAC_HOST_PBLKCTRL_SIZ_128 << S6_GMAC_HOST_PBLKCTRL_TXBSIZ |
- S6_GMAC_HOST_PBLKCTRL_SIZ_128 << S6_GMAC_HOST_PBLKCTRL_RXBSIZ |
- 1 << S6_GMAC_HOST_PBLKCTRL_STATENA |
- 1 << S6_GMAC_HOST_PBLKCTRL_STATCLEAR |
- is_rgmii << S6_GMAC_HOST_PBLKCTRL_RGMII,
- pd->reg + S6_GMAC_HOST_PBLKCTRL);
-}
-
-static void s6mii_enable(struct s6gmac *pd)
-{
- writel(readl(pd->reg + S6_GMAC_MACCONF1) &
- ~(1 << S6_GMAC_MACCONF1_SOFTRES),
- pd->reg + S6_GMAC_MACCONF1);
- writel((readl(pd->reg + S6_GMAC_MACMIICONF)
- & ~(S6_GMAC_MACMIICONF_CSEL_MASK << S6_GMAC_MACMIICONF_CSEL))
- | (S6_GMAC_MACMIICONF_CSEL_DIV168 << S6_GMAC_MACMIICONF_CSEL),
- pd->reg + S6_GMAC_MACMIICONF);
-}
-
-static int s6mii_busy(struct s6gmac *pd, int tmo)
-{
- while (readl(pd->reg + S6_GMAC_MACMIIINDI)) {
- if (--tmo == 0)
- return -ETIME;
- udelay(64);
- }
- return 0;
-}
-
-static int s6mii_read(struct mii_bus *bus, int phy_addr, int regnum)
-{
- struct s6gmac *pd = bus->priv;
- s6mii_enable(pd);
- if (s6mii_busy(pd, 256))
- return -ETIME;
- writel(phy_addr << S6_GMAC_MACMIIADDR_PHY |
- regnum << S6_GMAC_MACMIIADDR_REG,
- pd->reg + S6_GMAC_MACMIIADDR);
- writel(1 << S6_GMAC_MACMIICMD_READ, pd->reg + S6_GMAC_MACMIICMD);
- writel(0, pd->reg + S6_GMAC_MACMIICMD);
- if (s6mii_busy(pd, 256))
- return -ETIME;
- return (u16)readl(pd->reg + S6_GMAC_MACMIISTAT);
-}
-
-static int s6mii_write(struct mii_bus *bus, int phy_addr, int regnum, u16 value)
-{
- struct s6gmac *pd = bus->priv;
- s6mii_enable(pd);
- if (s6mii_busy(pd, 256))
- return -ETIME;
- writel(phy_addr << S6_GMAC_MACMIIADDR_PHY |
- regnum << S6_GMAC_MACMIIADDR_REG,
- pd->reg + S6_GMAC_MACMIIADDR);
- writel(value, pd->reg + S6_GMAC_MACMIICTRL);
- if (s6mii_busy(pd, 256))
- return -ETIME;
- return 0;
-}
-
-static int s6mii_reset(struct mii_bus *bus)
-{
- struct s6gmac *pd = bus->priv;
- s6mii_enable(pd);
- if (s6mii_busy(pd, PHY_INIT_TIMEOUT))
- return -ETIME;
- return 0;
-}
-
-static void s6gmac_set_rgmii_txclock(struct s6gmac *pd)
-{
- u32 pllsel = readl(S6_REG_GREG1 + S6_GREG1_PLLSEL);
- pllsel &= ~(S6_GREG1_PLLSEL_GMAC_MASK << S6_GREG1_PLLSEL_GMAC);
- switch (pd->link.mbit) {
- case 10:
- pllsel |= S6_GREG1_PLLSEL_GMAC_2500KHZ << S6_GREG1_PLLSEL_GMAC;
- break;
- case 100:
- pllsel |= S6_GREG1_PLLSEL_GMAC_25MHZ << S6_GREG1_PLLSEL_GMAC;
- break;
- case 1000:
- pllsel |= S6_GREG1_PLLSEL_GMAC_125MHZ << S6_GREG1_PLLSEL_GMAC;
- break;
- default:
- return;
- }
- writel(pllsel, S6_REG_GREG1 + S6_GREG1_PLLSEL);
-}
-
-static inline void s6gmac_linkisup(struct net_device *dev, int isup)
-{
- struct s6gmac *pd = netdev_priv(dev);
- struct phy_device *phydev = pd->phydev;
-
- pd->link.full = phydev->duplex;
- pd->link.giga = (phydev->speed == 1000);
- if (pd->link.mbit != phydev->speed) {
- pd->link.mbit = phydev->speed;
- s6gmac_set_rgmii_txclock(pd);
- }
- pd->link.isup = isup;
- if (isup)
- netif_carrier_on(dev);
- phy_print_status(phydev);
-}
-
-static void s6gmac_adjust_link(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- struct phy_device *phydev = pd->phydev;
- if (pd->link.isup &&
- (!phydev->link ||
- (pd->link.mbit != phydev->speed) ||
- (pd->link.full != phydev->duplex))) {
- pd->link.isup = 0;
- netif_tx_disable(dev);
- if (!phydev->link) {
- netif_carrier_off(dev);
- phy_print_status(phydev);
- }
- }
- if (!pd->link.isup && phydev->link) {
- if (pd->link.full != phydev->duplex) {
- u32 maccfg = readl(pd->reg + S6_GMAC_MACCONF2);
- if (phydev->duplex)
- maccfg |= 1 << S6_GMAC_MACCONF2_FULL;
- else
- maccfg &= ~(1 << S6_GMAC_MACCONF2_FULL);
- writel(maccfg, pd->reg + S6_GMAC_MACCONF2);
- }
-
- if (pd->link.giga != (phydev->speed == 1000)) {
- u32 fifocfg = readl(pd->reg + S6_GMAC_FIFOCONF5);
- u32 maccfg = readl(pd->reg + S6_GMAC_MACCONF2);
- maccfg &= ~(S6_GMAC_MACCONF2_IFMODE_MASK
- << S6_GMAC_MACCONF2_IFMODE);
- if (phydev->speed == 1000) {
- fifocfg |= 1 << S6_GMAC_FIFOCONF5_CFGBYTM;
- maccfg |= S6_GMAC_MACCONF2_IFMODE_BYTE
- << S6_GMAC_MACCONF2_IFMODE;
- } else {
- fifocfg &= ~(1 << S6_GMAC_FIFOCONF5_CFGBYTM);
- maccfg |= S6_GMAC_MACCONF2_IFMODE_NIBBLE
- << S6_GMAC_MACCONF2_IFMODE;
- }
- writel(fifocfg, pd->reg + S6_GMAC_FIFOCONF5);
- writel(maccfg, pd->reg + S6_GMAC_MACCONF2);
- }
-
- if (!s6dmac_fifo_full(pd->tx_dma, pd->tx_chan))
- netif_wake_queue(dev);
- s6gmac_linkisup(dev, 1);
- }
-}
-
-static inline int s6gmac_phy_start(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- int i = 0;
- struct phy_device *p = NULL;
- while ((i < PHY_MAX_ADDR) && (!(p = pd->mii.bus->phy_map[i])))
- i++;
- p = phy_connect(dev, dev_name(&p->dev), &s6gmac_adjust_link,
- PHY_INTERFACE_MODE_RGMII);
- if (IS_ERR(p)) {
- printk(KERN_ERR "%s: Could not attach to PHY\n", dev->name);
- return PTR_ERR(p);
- }
- p->supported &= PHY_GBIT_FEATURES;
- p->advertising = p->supported;
- pd->phydev = p;
- return 0;
-}
-
-static inline void s6gmac_init_stats(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- u32 mask;
- mask = 1 << S6_GMAC_STATCARRY1_RDRP |
- 1 << S6_GMAC_STATCARRY1_RJBR |
- 1 << S6_GMAC_STATCARRY1_RFRG |
- 1 << S6_GMAC_STATCARRY1_ROVR |
- 1 << S6_GMAC_STATCARRY1_RUND |
- 1 << S6_GMAC_STATCARRY1_RCDE |
- 1 << S6_GMAC_STATCARRY1_RFLR |
- 1 << S6_GMAC_STATCARRY1_RALN |
- 1 << S6_GMAC_STATCARRY1_RMCA |
- 1 << S6_GMAC_STATCARRY1_RFCS |
- 1 << S6_GMAC_STATCARRY1_RPKT |
- 1 << S6_GMAC_STATCARRY1_RBYT;
- writel(mask, pd->reg + S6_GMAC_STATCARRY(0));
- writel(~mask, pd->reg + S6_GMAC_STATCARRYMSK(0));
- mask = 1 << S6_GMAC_STATCARRY2_TDRP |
- 1 << S6_GMAC_STATCARRY2_TNCL |
- 1 << S6_GMAC_STATCARRY2_TXCL |
- 1 << S6_GMAC_STATCARRY2_TEDF |
- 1 << S6_GMAC_STATCARRY2_TPKT |
- 1 << S6_GMAC_STATCARRY2_TBYT |
- 1 << S6_GMAC_STATCARRY2_TFRG |
- 1 << S6_GMAC_STATCARRY2_TUND |
- 1 << S6_GMAC_STATCARRY2_TOVR |
- 1 << S6_GMAC_STATCARRY2_TFCS |
- 1 << S6_GMAC_STATCARRY2_TJBR;
- writel(mask, pd->reg + S6_GMAC_STATCARRY(1));
- writel(~mask, pd->reg + S6_GMAC_STATCARRYMSK(1));
-}
-
-static inline void s6gmac_init_dmac(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- s6dmac_disable_chan(pd->tx_dma, pd->tx_chan);
- s6dmac_disable_chan(pd->rx_dma, pd->rx_chan);
- s6dmac_disable_error_irqs(pd->tx_dma, 1 << S6_HIFDMA_GMACTX);
- s6dmac_disable_error_irqs(pd->rx_dma, 1 << S6_HIFDMA_GMACRX);
-}
-
-static int s6gmac_tx(struct sk_buff *skb, struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- unsigned long flags;
-
- spin_lock_irqsave(&pd->lock, flags);
- writel(skb->len << S6_GMAC_BURST_PREWR_LEN |
- 0 << S6_GMAC_BURST_PREWR_CFE |
- 1 << S6_GMAC_BURST_PREWR_PPE |
- 1 << S6_GMAC_BURST_PREWR_FCS |
- ((skb->len < ETH_ZLEN) ? 1 : 0) << S6_GMAC_BURST_PREWR_PAD,
- pd->reg + S6_GMAC_BURST_PREWR);
- s6dmac_put_fifo_cache(pd->tx_dma, pd->tx_chan,
- (u32)skb->data, pd->io, skb->len);
- if (s6dmac_fifo_full(pd->tx_dma, pd->tx_chan))
- netif_stop_queue(dev);
- if (((u8)(pd->tx_skb_i - pd->tx_skb_o)) >= S6_NUM_TX_SKB) {
- printk(KERN_ERR "GMAC BUG: skb tx ring overflow [%x, %x]\n",
- pd->tx_skb_o, pd->tx_skb_i);
- BUG();
- }
- pd->tx_skb[(pd->tx_skb_i++) % S6_NUM_TX_SKB] = skb;
- spin_unlock_irqrestore(&pd->lock, flags);
- return 0;
-}
-
-static void s6gmac_tx_timeout(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- unsigned long flags;
- spin_lock_irqsave(&pd->lock, flags);
- s6gmac_tx_interrupt(dev);
- spin_unlock_irqrestore(&pd->lock, flags);
-}
-
-static int s6gmac_open(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- unsigned long flags;
- phy_read_status(pd->phydev);
- spin_lock_irqsave(&pd->lock, flags);
- pd->link.mbit = 0;
- s6gmac_linkisup(dev, pd->phydev->link);
- s6gmac_init_device(dev);
- s6gmac_init_stats(dev);
- s6gmac_init_dmac(dev);
- s6gmac_rx_fillfifo(dev);
- s6dmac_enable_chan(pd->rx_dma, pd->rx_chan,
- 2, 1, 0, 1, 0, 0, 0, 7, -1, 2, 0, 1);
- s6dmac_enable_chan(pd->tx_dma, pd->tx_chan,
- 2, 0, 1, 0, 0, 0, 0, 7, -1, 2, 0, 1);
- writel(0 << S6_GMAC_HOST_INT_TXBURSTOVER |
- 0 << S6_GMAC_HOST_INT_TXPREWOVER |
- 0 << S6_GMAC_HOST_INT_RXBURSTUNDER |
- 0 << S6_GMAC_HOST_INT_RXPOSTRFULL |
- 0 << S6_GMAC_HOST_INT_RXPOSTRUNDER,
- pd->reg + S6_GMAC_HOST_INTMASK);
- spin_unlock_irqrestore(&pd->lock, flags);
- phy_start(pd->phydev);
- netif_start_queue(dev);
- return 0;
-}
-
-static int s6gmac_stop(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- unsigned long flags;
- netif_stop_queue(dev);
- phy_stop(pd->phydev);
- spin_lock_irqsave(&pd->lock, flags);
- s6gmac_init_dmac(dev);
- s6gmac_stop_device(dev);
- while (pd->tx_skb_i != pd->tx_skb_o)
- dev_kfree_skb(pd->tx_skb[(pd->tx_skb_o++) % S6_NUM_TX_SKB]);
- while (pd->rx_skb_i != pd->rx_skb_o)
- dev_kfree_skb(pd->rx_skb[(pd->rx_skb_o++) % S6_NUM_RX_SKB]);
- spin_unlock_irqrestore(&pd->lock, flags);
- return 0;
-}
-
-static struct net_device_stats *s6gmac_stats(struct net_device *dev)
-{
- struct s6gmac *pd = netdev_priv(dev);
- struct net_device_stats *st = (struct net_device_stats *)&pd->stats;
- int i;
- do {
- unsigned long flags;
- spin_lock_irqsave(&pd->lock, flags);
- for (i = 0; i < ARRAY_SIZE(pd->stats); i++)
- pd->stats[i] =
- pd->carry[i] << (S6_GMAC_STAT_SIZE_MIN - 1);
- s6gmac_stats_collect(pd, &statinf[0][0]);
- s6gmac_stats_collect(pd, &statinf[1][0]);
- i = s6gmac_stats_pending(pd, 0) |
- s6gmac_stats_pending(pd, 1);
- spin_unlock_irqrestore(&pd->lock, flags);
- } while (i);
- st->rx_errors = st->rx_crc_errors +
- st->rx_frame_errors +
- st->rx_length_errors +
- st->rx_missed_errors;
- st->tx_errors += st->tx_aborted_errors;
- return st;
-}
-
-static int s6gmac_probe(struct platform_device *pdev)
-{
- struct net_device *dev;
- struct s6gmac *pd;
- int res;
- unsigned long i;
- struct mii_bus *mb;
-
- dev = alloc_etherdev(sizeof(*pd));
- if (!dev)
- return -ENOMEM;
-
- dev->open = s6gmac_open;
- dev->stop = s6gmac_stop;
- dev->hard_start_xmit = s6gmac_tx;
- dev->tx_timeout = s6gmac_tx_timeout;
- dev->watchdog_timeo = HZ;
- dev->get_stats = s6gmac_stats;
- dev->irq = platform_get_irq(pdev, 0);
- pd = netdev_priv(dev);
- memset(pd, 0, sizeof(*pd));
- spin_lock_init(&pd->lock);
- pd->reg = platform_get_resource(pdev, IORESOURCE_MEM, 0)->start;
- i = platform_get_resource(pdev, IORESOURCE_DMA, 0)->start;
- pd->tx_dma = DMA_MASK_DMAC(i);
- pd->tx_chan = DMA_INDEX_CHNL(i);
- i = platform_get_resource(pdev, IORESOURCE_DMA, 1)->start;
- pd->rx_dma = DMA_MASK_DMAC(i);
- pd->rx_chan = DMA_INDEX_CHNL(i);
- pd->io = platform_get_resource(pdev, IORESOURCE_IO, 0)->start;
- res = request_irq(dev->irq, s6gmac_interrupt, 0, dev->name, dev);
- if (res) {
- printk(KERN_ERR DRV_PRMT "irq request failed: %d\n", dev->irq);
- goto errirq;
- }
- res = register_netdev(dev);
- if (res) {
- printk(KERN_ERR DRV_PRMT "error registering device %s\n",
- dev->name);
- goto errdev;
- }
- mb = mdiobus_alloc();
- if (!mb) {
- printk(KERN_ERR DRV_PRMT "error allocating mii bus\n");
- res = -ENOMEM;
- goto errmii;
- }
- mb->name = "s6gmac_mii";
- mb->read = s6mii_read;
- mb->write = s6mii_write;
- mb->reset = s6mii_reset;
- mb->priv = pd;
- snprintf(mb->id, MII_BUS_ID_SIZE, "%s-%x", pdev->name, pdev->id);
- mb->phy_mask = ~(1 << 0);
- mb->irq = &pd->mii.irq[0];
- for (i = 0; i < PHY_MAX_ADDR; i++) {
- int n = platform_get_irq(pdev, i + 1);
- if (n < 0)
- n = PHY_POLL;
- pd->mii.irq[i] = n;
- }
- mdiobus_register(mb);
- pd->mii.bus = mb;
- res = s6gmac_phy_start(dev);
- if (res)
- return res;
- platform_set_drvdata(pdev, dev);
- return 0;
-errmii:
- unregister_netdev(dev);
-errdev:
- free_irq(dev->irq, dev);
-errirq:
- free_netdev(dev);
- return res;
-}
-
-static int s6gmac_remove(struct platform_device *pdev)
-{
- struct net_device *dev = platform_get_drvdata(pdev);
- if (dev) {
- struct s6gmac *pd = netdev_priv(dev);
- mdiobus_unregister(pd->mii.bus);
- unregister_netdev(dev);
- free_irq(dev->irq, dev);
- free_netdev(dev);
- }
- return 0;
-}
-
-static struct platform_driver s6gmac_driver = {
- .probe = s6gmac_probe,
- .remove = s6gmac_remove,
- .driver = {
- .name = "s6gmac",
- },
-};
-
-module_platform_driver(s6gmac_driver);
-
-MODULE_LICENSE("GPL");
-MODULE_DESCRIPTION("S6105 on chip Ethernet driver");
-MODULE_AUTHOR("Oskar Schirmer <oskar@scara.com>");
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index 118a427..8c6b7c1 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -1671,7 +1671,7 @@ static void stmmac_init_tx_coalesce(struct stmmac_priv *priv)
* 0 on success and an appropriate (-)ve integer as defined in errno.h
* file on failure.
*/
-static int stmmac_hw_setup(struct net_device *dev)
+static int stmmac_hw_setup(struct net_device *dev, bool init_ptp)
{
struct stmmac_priv *priv = netdev_priv(dev);
int ret;
@@ -1708,9 +1708,11 @@ static int stmmac_hw_setup(struct net_device *dev)
stmmac_mmc_setup(priv);
- ret = stmmac_init_ptp(priv);
- if (ret && ret != -EOPNOTSUPP)
- pr_warn("%s: failed PTP initialisation\n", __func__);
+ if (init_ptp) {
+ ret = stmmac_init_ptp(priv);
+ if (ret && ret != -EOPNOTSUPP)
+ pr_warn("%s: failed PTP initialisation\n", __func__);
+ }
#ifdef CONFIG_DEBUG_FS
ret = stmmac_init_fs(dev);
@@ -1787,7 +1789,7 @@ static int stmmac_open(struct net_device *dev)
goto init_error;
}
- ret = stmmac_hw_setup(dev);
+ ret = stmmac_hw_setup(dev, true);
if (ret < 0) {
pr_err("%s: Hw setup failed\n", __func__);
goto init_error;
@@ -3036,7 +3038,7 @@ int stmmac_resume(struct net_device *ndev)
netif_device_attach(ndev);
init_dma_desc_rings(ndev, GFP_ATOMIC);
- stmmac_hw_setup(ndev);
+ stmmac_hw_setup(ndev, false);
stmmac_init_tx_coalesce(priv);
napi_enable(&priv->napi);
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
index 4032b17..3039de2 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_platform.c
@@ -430,7 +430,6 @@ static struct platform_driver stmmac_pltfr_driver = {
.remove = stmmac_pltfr_remove,
.driver = {
.name = STMMAC_RESOURCE_NAME,
- .owner = THIS_MODULE,
.pm = &stmmac_pltfr_pm_ops,
.of_match_table = of_match_ptr(stmmac_dt_ids),
},
diff --git a/drivers/net/ethernet/sun/sunvnet.c b/drivers/net/ethernet/sun/sunvnet.c
index 45c408e..d2835bf 100644
--- a/drivers/net/ethernet/sun/sunvnet.c
+++ b/drivers/net/ethernet/sun/sunvnet.c
@@ -1201,6 +1201,7 @@ static int vnet_handle_offloads(struct vnet_port *port, struct sk_buff *skb)
segs = skb_gso_segment(skb, dev->features & ~NETIF_F_TSO);
if (IS_ERR(segs)) {
dev->stats.tx_dropped++;
+ dev_kfree_skb_any(skb);
return NETDEV_TX_OK;
}
diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet.h b/drivers/net/ethernet/xilinx/xilinx_axienet.h
index 44b8d2b..4c9b4fa 100644
--- a/drivers/net/ethernet/xilinx/xilinx_axienet.h
+++ b/drivers/net/ethernet/xilinx/xilinx_axienet.h
@@ -388,7 +388,6 @@ struct axidma_bd {
* @dma_err_tasklet: Tasklet structure to process Axi DMA errors
* @tx_irq: Axidma TX IRQ number
* @rx_irq: Axidma RX IRQ number
- * @temac_type: axienet type to identify between soft and hard temac
* @phy_type: Phy type to identify between MII/GMII/RGMII/SGMII/1000 Base-X
* @options: AxiEthernet option word
* @last_link: Phy link state in which the PHY was negotiated earlier
@@ -431,7 +430,6 @@ struct axienet_local {
int tx_irq;
int rx_irq;
- u32 temac_type;
u32 phy_type;
u32 options; /* Current options word */
diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
index 4ea2d4e..c18a0c6 100644
--- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
+++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
@@ -1555,10 +1555,6 @@ static int axienet_of_probe(struct platform_device *op)
if ((be32_to_cpup(p)) >= 0x4000)
lp->jumbo_support = 1;
}
- p = (__be32 *) of_get_property(op->dev.of_node, "xlnx,temac-type",
- NULL);
- if (p)
- lp->temac_type = be32_to_cpup(p);
p = (__be32 *) of_get_property(op->dev.of_node, "xlnx,phy-type", NULL);
if (p)
lp->phy_type = be32_to_cpup(p);
diff --git a/drivers/net/hyperv/hyperv_net.h b/drivers/net/hyperv/hyperv_net.h
index 2f48f79..384ca4f 100644
--- a/drivers/net/hyperv/hyperv_net.h
+++ b/drivers/net/hyperv/hyperv_net.h
@@ -590,6 +590,7 @@ struct nvsp_message {
#define NETVSC_RECEIVE_BUFFER_ID 0xcafe
+#define NETVSC_SEND_BUFFER_ID 0
#define NETVSC_PACKET_SIZE 4096
diff --git a/drivers/net/hyperv/netvsc.c b/drivers/net/hyperv/netvsc.c
index dd867e6..9f49c01 100644
--- a/drivers/net/hyperv/netvsc.c
+++ b/drivers/net/hyperv/netvsc.c
@@ -161,8 +161,8 @@ static int netvsc_destroy_buf(struct netvsc_device *net_device)
/* Deal with the send buffer we may have setup.
* If we got a send section size, it means we received a
- * SendsendBufferComplete msg (ie sent
- * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need
+ * NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE msg (ie sent
+ * NVSP_MSG1_TYPE_SEND_SEND_BUF msg) therefore, we need
* to send a revoke msg here
*/
if (net_device->send_section_size) {
@@ -172,7 +172,8 @@ static int netvsc_destroy_buf(struct netvsc_device *net_device)
revoke_packet->hdr.msg_type =
NVSP_MSG1_TYPE_REVOKE_SEND_BUF;
- revoke_packet->msg.v1_msg.revoke_recv_buf.id = 0;
+ revoke_packet->msg.v1_msg.revoke_send_buf.id =
+ NETVSC_SEND_BUFFER_ID;
ret = vmbus_sendpacket(net_device->dev->channel,
revoke_packet,
@@ -204,7 +205,7 @@ static int netvsc_destroy_buf(struct netvsc_device *net_device)
net_device->send_buf_gpadl_handle = 0;
}
if (net_device->send_buf) {
- /* Free up the receive buffer */
+ /* Free up the send buffer */
vfree(net_device->send_buf);
net_device->send_buf = NULL;
}
@@ -339,9 +340,9 @@ static int netvsc_init_buf(struct hv_device *device)
init_packet = &net_device->channel_init_pkt;
memset(init_packet, 0, sizeof(struct nvsp_message));
init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_SEND_BUF;
- init_packet->msg.v1_msg.send_recv_buf.gpadl_handle =
+ init_packet->msg.v1_msg.send_send_buf.gpadl_handle =
net_device->send_buf_gpadl_handle;
- init_packet->msg.v1_msg.send_recv_buf.id = 0;
+ init_packet->msg.v1_msg.send_send_buf.id = NETVSC_SEND_BUFFER_ID;
/* Send the gpadl notification request */
ret = vmbus_sendpacket(device->channel, init_packet,
@@ -364,7 +365,7 @@ static int netvsc_init_buf(struct hv_device *device)
netdev_err(ndev, "Unable to complete send buffer "
"initialization with NetVsp - status %d\n",
init_packet->msg.v1_msg.
- send_recv_buf_complete.status);
+ send_send_buf_complete.status);
ret = -EINVAL;
goto cleanup;
}
diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index c530de1..3ad8ca7 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -88,6 +88,7 @@ struct kszphy_priv {
static const struct kszphy_type ksz8021_type = {
.led_mode_reg = MII_KSZPHY_CTRL_2,
+ .has_broadcast_disable = true,
.has_rmii_ref_clk_sel = true,
};
@@ -258,19 +259,6 @@ static int kszphy_config_init(struct phy_device *phydev)
return 0;
}
-static int ksz8021_config_init(struct phy_device *phydev)
-{
- int rc;
-
- rc = kszphy_config_init(phydev);
- if (rc)
- return rc;
-
- rc = kszphy_broadcast_disable(phydev);
-
- return rc < 0 ? rc : 0;
-}
-
static int ksz9021_load_values_from_of(struct phy_device *phydev,
struct device_node *of_node, u16 reg,
char *field1, char *field2,
@@ -584,7 +572,7 @@ static struct phy_driver ksphy_driver[] = {
.flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
.driver_data = &ksz8021_type,
.probe = kszphy_probe,
- .config_init = ksz8021_config_init,
+ .config_init = kszphy_config_init,
.config_aneg = genphy_config_aneg,
.read_status = genphy_read_status,
.ack_interrupt = kszphy_ack_interrupt,
@@ -601,7 +589,7 @@ static struct phy_driver ksphy_driver[] = {
.flags = PHY_HAS_MAGICANEG | PHY_HAS_INTERRUPT,
.driver_data = &ksz8021_type,
.probe = kszphy_probe,
- .config_init = ksz8021_config_init,
+ .config_init = kszphy_config_init,
.config_aneg = genphy_config_aneg,
.read_status = genphy_read_status,
.ack_interrupt = kszphy_ack_interrupt,
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index b8bd719..5ca9771 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -760,7 +760,6 @@ static int virtnet_poll(struct napi_struct *napi, int budget)
container_of(napi, struct receive_queue, napi);
unsigned int r, received = 0;
-again:
received += virtnet_receive(rq, budget - received);
/* Out of packets? */
@@ -771,7 +770,6 @@ again:
napi_schedule_prep(napi)) {
virtqueue_disable_cb(rq->vq);
__napi_schedule(napi);
- goto again;
}
}
diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c
index 49d9f22..7fbd89f 100644
--- a/drivers/net/vxlan.c
+++ b/drivers/net/vxlan.c
@@ -1579,8 +1579,10 @@ static int vxlan6_xmit_skb(struct vxlan_sock *vs,
bool udp_sum = !udp_get_no_check6_tx(vs->sock->sk);
skb = udp_tunnel_handle_offloads(skb, udp_sum);
- if (IS_ERR(skb))
- return -EINVAL;
+ if (IS_ERR(skb)) {
+ err = -EINVAL;
+ goto err;
+ }
skb_scrub_packet(skb, xnet);
@@ -1590,12 +1592,16 @@ static int vxlan6_xmit_skb(struct vxlan_sock *vs,
/* Need space for new headers (invalidates iph ptr) */
err = skb_cow_head(skb, min_headroom);
- if (unlikely(err))
- return err;
+ if (unlikely(err)) {
+ kfree_skb(skb);
+ goto err;
+ }
skb = vlan_hwaccel_push_inside(skb);
- if (WARN_ON(!skb))
- return -ENOMEM;
+ if (WARN_ON(!skb)) {
+ err = -ENOMEM;
+ goto err;
+ }
vxh = (struct vxlanhdr *) __skb_push(skb, sizeof(*vxh));
vxh->vx_flags = htonl(VXLAN_FLAGS);
@@ -1606,6 +1612,9 @@ static int vxlan6_xmit_skb(struct vxlan_sock *vs,
udp_tunnel6_xmit_skb(vs->sock, dst, skb, dev, saddr, daddr, prio,
ttl, src_port, dst_port);
return 0;
+err:
+ dst_release(dst);
+ return err;
}
#endif
@@ -1621,7 +1630,7 @@ int vxlan_xmit_skb(struct vxlan_sock *vs,
skb = udp_tunnel_handle_offloads(skb, udp_sum);
if (IS_ERR(skb))
- return -EINVAL;
+ return PTR_ERR(skb);
min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
+ VXLAN_HLEN + sizeof(struct iphdr)
@@ -1629,8 +1638,10 @@ int vxlan_xmit_skb(struct vxlan_sock *vs,
/* Need space for new headers (invalidates iph ptr) */
err = skb_cow_head(skb, min_headroom);
- if (unlikely(err))
+ if (unlikely(err)) {
+ kfree_skb(skb);
return err;
+ }
skb = vlan_hwaccel_push_inside(skb);
if (WARN_ON(!skb))
@@ -1776,9 +1787,12 @@ static void vxlan_xmit_one(struct sk_buff *skb, struct net_device *dev,
tos, ttl, df, src_port, dst_port,
htonl(vni << 8),
!net_eq(vxlan->net, dev_net(vxlan->dev)));
-
- if (err < 0)
+ if (err < 0) {
+ /* skb is already freed. */
+ skb = NULL;
goto rt_tx_error;
+ }
+
iptunnel_xmit_stats(err, &dev->stats, dev->tstats);
#if IS_ENABLED(CONFIG_IPV6)
} else {
diff --git a/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c b/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c
index 3c06e93..9880dae 100644
--- a/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c
+++ b/drivers/net/wireless/brcm80211/brcmfmac/bcmsdh.c
@@ -1070,7 +1070,7 @@ static int brcmf_ops_sdio_probe(struct sdio_func *func,
*/
if ((sdio_get_host_pm_caps(sdiodev->func[1]) & MMC_PM_KEEP_POWER) &&
((sdio_get_host_pm_caps(sdiodev->func[1]) & MMC_PM_WAKE_SDIO_IRQ) ||
- (sdiodev->pdata->oob_irq_supported)))
+ (sdiodev->pdata && sdiodev->pdata->oob_irq_supported)))
bus_if->wowl_supported = true;
#endif
@@ -1167,7 +1167,7 @@ static int brcmf_ops_sdio_resume(struct device *dev)
struct brcmf_sdio_dev *sdiodev = bus_if->bus_priv.sdio;
brcmf_dbg(SDIO, "Enter\n");
- if (sdiodev->pdata->oob_irq_supported)
+ if (sdiodev->pdata && sdiodev->pdata->oob_irq_supported)
disable_irq_wake(sdiodev->pdata->oob_irq_nr);
brcmf_sdio_wd_timer(sdiodev->bus, BRCMF_WD_POLL_MS);
atomic_set(&sdiodev->suspend, false);
diff --git a/drivers/net/wireless/ipw2x00/Kconfig b/drivers/net/wireless/ipw2x00/Kconfig
index 91c0cb3..21de4fe 100644
--- a/drivers/net/wireless/ipw2x00/Kconfig
+++ b/drivers/net/wireless/ipw2x00/Kconfig
@@ -65,7 +65,8 @@ config IPW2100_DEBUG
config IPW2200
tristate "Intel PRO/Wireless 2200BG and 2915ABG Network Connection"
- depends on PCI && CFG80211 && CFG80211_WEXT
+ depends on PCI && CFG80211
+ select CFG80211_WEXT
select WIRELESS_EXT
select WEXT_SPY
select WEXT_PRIV
diff --git a/drivers/net/wireless/iwlwifi/iwl-drv.c b/drivers/net/wireless/iwlwifi/iwl-drv.c
index 38de151..850b85a 100644
--- a/drivers/net/wireless/iwlwifi/iwl-drv.c
+++ b/drivers/net/wireless/iwlwifi/iwl-drv.c
@@ -1323,10 +1323,10 @@ static void iwl_req_fw_callback(const struct firmware *ucode_raw, void *context)
try_again:
/* try next, if any */
- kfree(pieces);
release_firmware(ucode_raw);
if (iwl_request_firmware(drv, false))
goto out_unbind;
+ kfree(pieces);
return;
out_free_fw:
diff --git a/drivers/net/wireless/iwlwifi/iwl-fh.h b/drivers/net/wireless/iwlwifi/iwl-fh.h
index 9564ae1..1f7f15e 100644
--- a/drivers/net/wireless/iwlwifi/iwl-fh.h
+++ b/drivers/net/wireless/iwlwifi/iwl-fh.h
@@ -310,6 +310,7 @@ static inline unsigned int FH_MEM_CBBC_QUEUE(unsigned int chnl)
#define FH_RSSR_CHNL0_RX_STATUS_CHNL_IDLE (0x01000000)
#define FH_MEM_TFDIB_REG1_ADDR_BITSHIFT 28
+#define FH_MEM_TB_MAX_LENGTH (0x00020000)
/* TFDB Area - TFDs buffer table */
#define FH_MEM_TFDIB_DRAM_ADDR_LSB_MSK (0xFFFFFFFF)
diff --git a/drivers/net/wireless/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/iwlwifi/mvm/mac80211.c
index 31a5b3f..e880f9d 100644
--- a/drivers/net/wireless/iwlwifi/mvm/mac80211.c
+++ b/drivers/net/wireless/iwlwifi/mvm/mac80211.c
@@ -1004,8 +1004,13 @@ void __iwl_mvm_mac_stop(struct iwl_mvm *mvm)
{
lockdep_assert_held(&mvm->mutex);
- /* disallow low power states when the FW is down */
- iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
+ /*
+ * Disallow low power states when the FW is down by taking
+ * the UCODE_DOWN ref. in case of ongoing hw restart the
+ * ref is already taken, so don't take it again.
+ */
+ if (!test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status))
+ iwl_mvm_ref(mvm, IWL_MVM_REF_UCODE_DOWN);
/* async_handlers_wk is now blocked */
@@ -1023,6 +1028,12 @@ void __iwl_mvm_mac_stop(struct iwl_mvm *mvm)
/* the fw is stopped, the aux sta is dead: clean up driver state */
iwl_mvm_del_aux_sta(mvm);
+ /*
+ * Clear IN_HW_RESTART flag when stopping the hw (as restart_complete()
+ * won't be called in this case).
+ */
+ clear_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status);
+
mvm->ucode_loaded = false;
}
diff --git a/drivers/net/wireless/iwlwifi/pcie/drv.c b/drivers/net/wireless/iwlwifi/pcie/drv.c
index 3ee8e38..2f0c4b1 100644
--- a/drivers/net/wireless/iwlwifi/pcie/drv.c
+++ b/drivers/net/wireless/iwlwifi/pcie/drv.c
@@ -367,7 +367,11 @@ static const struct pci_device_id iwl_hw_card_ids[] = {
/* 3165 Series */
{IWL_PCI_DEVICE(0x3165, 0x4010, iwl3165_2ac_cfg)},
+ {IWL_PCI_DEVICE(0x3165, 0x4012, iwl3165_2ac_cfg)},
+ {IWL_PCI_DEVICE(0x3165, 0x4110, iwl3165_2ac_cfg)},
{IWL_PCI_DEVICE(0x3165, 0x4210, iwl3165_2ac_cfg)},
+ {IWL_PCI_DEVICE(0x3165, 0x4410, iwl3165_2ac_cfg)},
+ {IWL_PCI_DEVICE(0x3165, 0x4510, iwl3165_2ac_cfg)},
/* 7265 Series */
{IWL_PCI_DEVICE(0x095A, 0x5010, iwl7265_2ac_cfg)},
diff --git a/drivers/net/wireless/iwlwifi/pcie/trans.c b/drivers/net/wireless/iwlwifi/pcie/trans.c
index 5d79a1f..523fe0c 100644
--- a/drivers/net/wireless/iwlwifi/pcie/trans.c
+++ b/drivers/net/wireless/iwlwifi/pcie/trans.c
@@ -614,7 +614,7 @@ static int iwl_pcie_load_section(struct iwl_trans *trans, u8 section_num,
{
u8 *v_addr;
dma_addr_t p_addr;
- u32 offset, chunk_sz = section->len;
+ u32 offset, chunk_sz = min_t(u32, FH_MEM_TB_MAX_LENGTH, section->len);
int ret = 0;
IWL_DEBUG_FW(trans, "[%d] uCode section being loaded...\n",
@@ -1012,16 +1012,21 @@ static void iwl_trans_pcie_stop_device(struct iwl_trans *trans)
/* Stop the device, and put it in low power state */
iwl_pcie_apm_stop(trans);
- /* Upon stop, the APM issues an interrupt if HW RF kill is set.
- * Clean again the interrupt here
+ /* stop and reset the on-board processor */
+ iwl_write32(trans, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
+ udelay(20);
+
+ /*
+ * Upon stop, the APM issues an interrupt if HW RF kill is set.
+ * This is a bug in certain verions of the hardware.
+ * Certain devices also keep sending HW RF kill interrupt all
+ * the time, unless the interrupt is ACKed even if the interrupt
+ * should be masked. Re-ACK all the interrupts here.
*/
spin_lock(&trans_pcie->irq_lock);
iwl_disable_interrupts(trans);
spin_unlock(&trans_pcie->irq_lock);
- /* stop and reset the on-board processor */
- iwl_write32(trans, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
- udelay(20);
/* clear all status bits */
clear_bit(STATUS_SYNC_HCMD_ACTIVE, &trans->status);
diff --git a/drivers/staging/lustre/lustre/llite/namei.c b/drivers/staging/lustre/lustre/llite/namei.c
index 1bf891b..4f361b7 100644
--- a/drivers/staging/lustre/lustre/llite/namei.c
+++ b/drivers/staging/lustre/lustre/llite/namei.c
@@ -264,7 +264,7 @@ int ll_md_blocking_ast(struct ldlm_lock *lock, struct ldlm_lock_desc *desc,
if ((bits & (MDS_INODELOCK_LOOKUP | MDS_INODELOCK_PERM)) &&
inode->i_sb->s_root != NULL &&
- is_root_inode(inode))
+ !is_root_inode(inode))
ll_invalidate_aliases(inode);
iput(inode);
diff --git a/fs/aio.c b/fs/aio.c
index 1b7893e..284c74e 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -40,6 +40,7 @@
#include <linux/ramfs.h>
#include <linux/percpu-refcount.h>
#include <linux/mount.h>
+#include <linux/closure.h>
#include <asm/kmap_types.h>
#include <asm/uaccess.h>
@@ -136,7 +137,7 @@ struct kioctx {
struct {
struct mutex ring_lock;
- wait_queue_head_t wait;
+ struct closure_waitlist wait;
} ____cacheline_aligned_in_smp;
struct {
@@ -689,7 +690,6 @@ static struct kioctx *ioctx_alloc(unsigned nr_events)
/* Protect against page migration throughout kiotx setup by keeping
* the ring_lock mutex held until setup is complete. */
mutex_lock(&ctx->ring_lock);
- init_waitqueue_head(&ctx->wait);
INIT_LIST_HEAD(&ctx->active_reqs);
@@ -772,7 +772,7 @@ static int kill_ioctx(struct mm_struct *mm, struct kioctx *ctx,
spin_unlock(&mm->ioctx_lock);
/* percpu_ref_kill() will do the necessary call_rcu() */
- wake_up_all(&ctx->wait);
+ closure_wake_up(&ctx->wait);
/*
* It'd be more correct to do this in free_ioctx(), after all
@@ -1121,8 +1121,7 @@ void aio_complete(struct kiocb *iocb, long res, long res2)
*/
smp_mb();
- if (waitqueue_active(&ctx->wait))
- wake_up(&ctx->wait);
+ closure_wake_up(&ctx->wait);
percpu_ref_put(&ctx->reqs);
}
@@ -1237,26 +1236,15 @@ static long read_events(struct kioctx *ctx, long min_nr, long nr,
return -EFAULT;
until = timespec_to_ktime(ts);
+
+ if (until.tv64)
+ until = ktime_add(ktime_get(), until);
}
- /*
- * Note that aio_read_events() is being called as the conditional - i.e.
- * we're calling it after prepare_to_wait() has set task state to
- * TASK_INTERRUPTIBLE.
- *
- * But aio_read_events() can block, and if it blocks it's going to flip
- * the task state back to TASK_RUNNING.
- *
- * This should be ok, provided it doesn't flip the state back to
- * TASK_RUNNING and return 0 too much - that causes us to spin. That
- * will only happen if the mutex_lock() call blocks, and we then find
- * the ringbuffer empty. So in practice we should be ok, but it's
- * something to be aware of when touching this code.
- */
if (until.tv64 == 0)
aio_read_events(ctx, min_nr, nr, event, &ret);
else
- wait_event_interruptible_hrtimeout(ctx->wait,
+ closure_wait_event_hrtimeout(&ctx->wait,
aio_read_events(ctx, min_nr, nr, event, &ret),
until);
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 8ba35c6..e1b2e8b 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -901,11 +901,15 @@ extern int drm_vblank_init(struct drm_device *dev, int num_crtcs);
extern int drm_wait_vblank(struct drm_device *dev, void *data,
struct drm_file *filp);
extern u32 drm_vblank_count(struct drm_device *dev, int crtc);
+extern u32 drm_crtc_vblank_count(struct drm_crtc *crtc);
extern u32 drm_vblank_count_and_time(struct drm_device *dev, int crtc,
struct timeval *vblanktime);
extern void drm_send_vblank_event(struct drm_device *dev, int crtc,
struct drm_pending_vblank_event *e);
+extern void drm_crtc_send_vblank_event(struct drm_crtc *crtc,
+ struct drm_pending_vblank_event *e);
extern bool drm_handle_vblank(struct drm_device *dev, int crtc);
+extern bool drm_crtc_handle_vblank(struct drm_crtc *crtc);
extern int drm_vblank_get(struct drm_device *dev, int crtc);
extern void drm_vblank_put(struct drm_device *dev, int crtc);
extern int drm_crtc_vblank_get(struct drm_crtc *crtc);
diff --git a/include/drm/drm_gem.h b/include/drm/drm_gem.h
index 780511a..1e6ae14 100644
--- a/include/drm/drm_gem.h
+++ b/include/drm/drm_gem.h
@@ -119,13 +119,6 @@ struct drm_gem_object {
* simply leave it as NULL.
*/
struct dma_buf_attachment *import_attach;
-
- /**
- * dumb - created as dumb buffer
- * Whether the gem object was created using the dumb buffer interface
- * as such it may not be used for GPU rendering.
- */
- bool dumb;
};
void drm_gem_object_release(struct drm_gem_object *obj);
diff --git a/include/linux/audit.h b/include/linux/audit.h
index 0c04917..af84234 100644
--- a/include/linux/audit.h
+++ b/include/linux/audit.h
@@ -47,6 +47,7 @@ struct sk_buff;
struct audit_krule {
int vers_ops;
+ u32 pflags;
u32 flags;
u32 listnr;
u32 action;
@@ -64,6 +65,9 @@ struct audit_krule {
u64 prio;
};
+/* Flag to indicate legacy AUDIT_LOGINUID unset usage */
+#define AUDIT_LOGINUID_LEGACY 0x1
+
struct audit_field {
u32 type;
union {
diff --git a/include/linux/closure.h b/include/linux/closure.h
new file mode 100644
index 0000000..1890319
--- /dev/null
+++ b/include/linux/closure.h
@@ -0,0 +1,458 @@
+#ifndef _LINUX_CLOSURE_H
+#define _LINUX_CLOSURE_H
+
+#include <linux/llist.h>
+#include <linux/sched.h>
+#include <linux/workqueue.h>
+
+/*
+ * Closure is perhaps the most overused and abused term in computer science, but
+ * since I've been unable to come up with anything better you're stuck with it
+ * again.
+ *
+ * What are closures?
+ *
+ * They embed a refcount. The basic idea is they count "things that are in
+ * progress" - in flight bios, some other thread that's doing something else -
+ * anything you might want to wait on.
+ *
+ * The refcount may be manipulated with closure_get() and closure_put().
+ * closure_put() is where many of the interesting things happen, when it causes
+ * the refcount to go to 0.
+ *
+ * Closures can be used to wait on things both synchronously and asynchronously,
+ * and synchronous and asynchronous use can be mixed without restriction. To
+ * wait synchronously, use closure_sync() - you will sleep until your closure's
+ * refcount hits 1.
+ *
+ * To wait asynchronously, use
+ * continue_at(cl, next_function, workqueue);
+ *
+ * passing it, as you might expect, the function to run when nothing is pending
+ * and the workqueue to run that function out of.
+ *
+ * continue_at() also, critically, is a macro that returns the calling function.
+ * There's good reason for this.
+ *
+ * To use safely closures asynchronously, they must always have a refcount while
+ * they are running owned by the thread that is running them. Otherwise, suppose
+ * you submit some bios and wish to have a function run when they all complete:
+ *
+ * foo_endio(struct bio *bio, int error)
+ * {
+ * closure_put(cl);
+ * }
+ *
+ * closure_init(cl);
+ *
+ * do_stuff();
+ * closure_get(cl);
+ * bio1->bi_endio = foo_endio;
+ * bio_submit(bio1);
+ *
+ * do_more_stuff();
+ * closure_get(cl);
+ * bio2->bi_endio = foo_endio;
+ * bio_submit(bio2);
+ *
+ * continue_at(cl, complete_some_read, system_wq);
+ *
+ * If closure's refcount started at 0, complete_some_read() could run before the
+ * second bio was submitted - which is almost always not what you want! More
+ * importantly, it wouldn't be possible to say whether the original thread or
+ * complete_some_read()'s thread owned the closure - and whatever state it was
+ * associated with!
+ *
+ * So, closure_init() initializes a closure's refcount to 1 - and when a
+ * closure_fn is run, the refcount will be reset to 1 first.
+ *
+ * Then, the rule is - if you got the refcount with closure_get(), release it
+ * with closure_put() (i.e, in a bio->bi_endio function). If you have a refcount
+ * on a closure because you called closure_init() or you were run out of a
+ * closure - _always_ use continue_at(). Doing so consistently will help
+ * eliminate an entire class of particularly pernicious races.
+ *
+ * Lastly, you might have a wait list dedicated to a specific event, and have no
+ * need for specifying the condition - you just want to wait until someone runs
+ * closure_wake_up() on the appropriate wait list. In that case, just use
+ * closure_wait(). It will return either true or false, depending on whether the
+ * closure was already on a wait list or not - a closure can only be on one wait
+ * list at a time.
+ *
+ * Parents:
+ *
+ * closure_init() takes two arguments - it takes the closure to initialize, and
+ * a (possibly null) parent.
+ *
+ * If parent is non null, the new closure will have a refcount for its lifetime;
+ * a closure is considered to be "finished" when its refcount hits 0 and the
+ * function to run is null. Hence
+ *
+ * continue_at(cl, NULL, NULL);
+ *
+ * returns up the (spaghetti) stack of closures, precisely like normal return
+ * returns up the C stack. continue_at() with non null fn is better thought of
+ * as doing a tail call.
+ *
+ * All this implies that a closure should typically be embedded in a particular
+ * struct (which its refcount will normally control the lifetime of), and that
+ * struct can very much be thought of as a stack frame.
+ */
+
+struct closure;
+struct closure_sleeper;
+typedef void (closure_fn) (struct closure *);
+
+struct closure_waitlist {
+ struct llist_head list;
+};
+
+enum closure_state {
+ /*
+ * CLOSURE_WAITING: Set iff the closure is on a waitlist. Must be set by
+ * the thread that owns the closure, and cleared by the thread that's
+ * waking up the closure.
+ *
+ * The rest are for debugging and don't affect behaviour:
+ *
+ * CLOSURE_RUNNING: Set when a closure is running (i.e. by
+ * closure_init() and when closure_put() runs then next function), and
+ * must be cleared before remaining hits 0. Primarily to help guard
+ * against incorrect usage and accidentally transferring references.
+ * continue_at() and closure_return() clear it for you, if you're doing
+ * something unusual you can use closure_set_dead() which also helps
+ * annotate where references are being transferred.
+ */
+
+ CLOSURE_BITS_START = (1U << 27),
+ CLOSURE_DESTRUCTOR = (1U << 27),
+ CLOSURE_WAITING = (1U << 29),
+ CLOSURE_RUNNING = (1U << 31),
+};
+
+#define CLOSURE_GUARD_MASK \
+ ((CLOSURE_DESTRUCTOR|CLOSURE_WAITING|CLOSURE_RUNNING) << 1)
+
+#define CLOSURE_REMAINING_MASK (CLOSURE_BITS_START - 1)
+#define CLOSURE_REMAINING_INITIALIZER (1|CLOSURE_RUNNING)
+
+struct closure {
+ union {
+ struct {
+ struct workqueue_struct *wq;
+ struct closure_sleeper *complete;
+ struct llist_node list;
+ closure_fn *fn;
+ };
+ struct work_struct work;
+ };
+
+ struct closure *parent;
+
+ atomic_t remaining;
+
+#ifdef CONFIG_CLOSURE_DEBUG
+#define CLOSURE_MAGIC_DEAD 0xc054dead
+#define CLOSURE_MAGIC_ALIVE 0xc054a11e
+
+ unsigned magic;
+ struct list_head all;
+ unsigned long ip;
+ unsigned long waiting_on;
+#endif
+};
+
+void closure_sub(struct closure *cl, int v);
+void closure_put(struct closure *cl);
+void __closure_wake_up(struct closure_waitlist *list);
+bool closure_wait(struct closure_waitlist *list, struct closure *cl);
+
+void __closure_sync(struct closure *cl);
+
+/**
+ * closure_sync - sleep until a closure a closure has nothing left to wait on
+ *
+ * Sleeps until the refcount hits 1 - the thread that's running the closure owns
+ * the last refcount.
+ */
+static inline void closure_sync(struct closure *cl)
+{
+ if ((atomic_read(&cl->remaining) & CLOSURE_REMAINING_MASK) != 1)
+ __closure_sync(cl);
+}
+
+int __closure_sync_interruptible_hrtimeout(struct closure *,
+ struct closure_waitlist *,
+ ktime_t);
+
+/**
+ * closure_sync_hrtimeout - like closure_sync() but with a timeout
+ *
+ * The closure must have been added to the given waitlist. If the timeout
+ * expires, we wake up every closure on the waitlist (possibly including this
+ * closure). This is an artifact of how closure_sync() sets the closure's fn
+ * to wake up an on-stack completion. Otherwise, if the closure waitlist is
+ * woken up after the timeout, the fn will reference a dead completion.
+ *
+ * Returns -ETIME if the timeout expired, -ERESTARTSYS if interrupted, else 0
+ */
+static inline int closure_sync_interruptible_hrtimeout(struct closure *cl,
+ struct closure_waitlist *waitlist,
+ ktime_t until)
+{
+ return ((atomic_read(&cl->remaining) & CLOSURE_REMAINING_MASK) != 1)
+ ? __closure_sync_interruptible_hrtimeout(cl, waitlist, until)
+ : 0;
+}
+
+#ifdef CONFIG_CLOSURE_DEBUG
+
+void closure_debug_create(struct closure *cl);
+void closure_debug_destroy(struct closure *cl);
+
+#else
+
+static inline void closure_debug_create(struct closure *cl) {}
+static inline void closure_debug_destroy(struct closure *cl) {}
+
+#endif
+
+static inline void closure_set_ip(struct closure *cl)
+{
+#ifdef CONFIG_CLOSURE_DEBUG
+ cl->ip = _THIS_IP_;
+#endif
+}
+
+static inline void closure_set_ret_ip(struct closure *cl)
+{
+#ifdef CONFIG_CLOSURE_DEBUG
+ cl->ip = _RET_IP_;
+#endif
+}
+
+static inline void closure_set_waiting(struct closure *cl, unsigned long f)
+{
+#ifdef CONFIG_CLOSURE_DEBUG
+ cl->waiting_on = f;
+#endif
+}
+
+static inline void closure_set_stopped(struct closure *cl)
+{
+ atomic_sub(CLOSURE_RUNNING, &cl->remaining);
+}
+
+static inline void set_closure_fn(struct closure *cl, closure_fn *fn,
+ struct workqueue_struct *wq)
+{
+ closure_set_ip(cl);
+ cl->fn = fn;
+ cl->wq = wq;
+ /* between atomic_dec() in closure_put() */
+ smp_mb__before_atomic();
+}
+
+static inline void closure_queue(struct closure *cl)
+{
+ struct workqueue_struct *wq = cl->wq;
+ if (wq) {
+ INIT_WORK(&cl->work, cl->work.func);
+ BUG_ON(!queue_work(wq, &cl->work));
+ } else
+ cl->fn(cl);
+}
+
+/**
+ * closure_get - increment a closure's refcount
+ */
+static inline void closure_get(struct closure *cl)
+{
+#ifdef CONFIG_CLOSURE_DEBUG
+ BUG_ON((atomic_inc_return(&cl->remaining) &
+ CLOSURE_REMAINING_MASK) <= 1);
+#else
+ atomic_inc(&cl->remaining);
+#endif
+}
+
+/**
+ * closure_init - Initialize a closure, setting the refcount to 1
+ * @cl: closure to initialize
+ * @parent: parent of the new closure. cl will take a refcount on it for its
+ * lifetime; may be NULL.
+ */
+static inline void closure_init(struct closure *cl, struct closure *parent)
+{
+ memset(cl, 0, sizeof(struct closure));
+ cl->parent = parent;
+ if (parent)
+ closure_get(parent);
+
+ atomic_set(&cl->remaining, CLOSURE_REMAINING_INITIALIZER);
+
+ closure_debug_create(cl);
+ closure_set_ip(cl);
+}
+
+static inline void closure_init_stack(struct closure *cl)
+{
+ memset(cl, 0, sizeof(struct closure));
+ atomic_set(&cl->remaining, CLOSURE_REMAINING_INITIALIZER);
+}
+
+/**
+ * closure_wake_up - wake up all closures on a wait list.
+ */
+static inline void closure_wake_up(struct closure_waitlist *list)
+{
+ smp_mb();
+ __closure_wake_up(list);
+}
+
+#define continue_at_noreturn(_cl, _fn, _wq) \
+do { \
+ set_closure_fn(_cl, _fn, _wq); \
+ closure_sub(_cl, CLOSURE_RUNNING + 1); \
+} while (0)
+
+/**
+ * continue_at - jump to another function with barrier
+ *
+ * After @cl is no longer waiting on anything (i.e. all outstanding refs have
+ * been dropped with closure_put()), it will resume execution at @fn running out
+ * of @wq (or, if @wq is NULL, @fn will be called by closure_put() directly).
+ *
+ * NOTE: This macro expands to a return in the calling function!
+ *
+ * This is because after calling continue_at() you no longer have a ref on @cl,
+ * and whatever @cl owns may be freed out from under you - a running closure fn
+ * has a ref on its own closure which continue_at() drops.
+ */
+#define continue_at(_cl, _fn, _wq) \
+do { \
+ continue_at_noreturn(_cl, _fn, _wq); \
+ return; \
+} while (0)
+
+/**
+ * closure_return - finish execution of a closure
+ *
+ * This is used to indicate that @cl is finished: when all outstanding refs on
+ * @cl have been dropped @cl's ref on its parent closure (as passed to
+ * closure_init()) will be dropped, if one was specified - thus this can be
+ * thought of as returning to the parent closure.
+ */
+#define closure_return(_cl) continue_at((_cl), NULL, NULL)
+
+/**
+ * continue_at_nobarrier - jump to another function without barrier
+ *
+ * Causes @fn to be executed out of @cl, in @wq context (or called directly if
+ * @wq is NULL).
+ *
+ * NOTE: like continue_at(), this macro expands to a return in the caller!
+ *
+ * The ref the caller of continue_at_nobarrier() had on @cl is now owned by @fn,
+ * thus it's not safe to touch anything protected by @cl after a
+ * continue_at_nobarrier().
+ */
+#define continue_at_nobarrier(_cl, _fn, _wq) \
+do { \
+ set_closure_fn(_cl, _fn, _wq); \
+ closure_queue(_cl); \
+ return; \
+} while (0)
+
+/**
+ * closure_return - finish execution of a closure, with destructor
+ *
+ * Works like closure_return(), except @destructor will be called when all
+ * outstanding refs on @cl have been dropped; @destructor may be used to safely
+ * free the memory occupied by @cl, and it is called with the ref on the parent
+ * closure still held - so @destructor could safely return an item to a
+ * freelist protected by @cl's parent.
+ */
+#define closure_return_with_destructor(_cl, _destructor) \
+do { \
+ set_closure_fn(_cl, _destructor, NULL); \
+ closure_sub(_cl, CLOSURE_RUNNING - CLOSURE_DESTRUCTOR + 1); \
+ return; \
+} while (0)
+
+/**
+ * closure_call - execute @fn out of a new, uninitialized closure
+ *
+ * Typically used when running out of one closure, and we want to run @fn
+ * asynchronously out of a new closure - @parent will then wait for @cl to
+ * finish.
+ */
+static inline void closure_call(struct closure *cl, closure_fn fn,
+ struct workqueue_struct *wq,
+ struct closure *parent)
+{
+ closure_init(cl, parent);
+ continue_at_nobarrier(cl, fn, wq);
+}
+
+/**
+ * closure_wait_event - wait for a condition to become true
+ *
+ * We wait for @condition to become true, waiting on @waitlist to be woken up
+ * until it does.
+ */
+#define closure_wait_event(waitlist, condition) \
+ do { \
+ struct closure __cl; \
+ closure_init_stack(&__cl); \
+ while (1) { \
+ if (condition) \
+ break; \
+ closure_wait(waitlist, &__cl); \
+ if (condition) { \
+ closure_wake_up(waitlist); \
+ closure_sync(&__cl); \
+ break; \
+ } \
+ closure_sync(&__cl); \
+ } \
+ } while (0)
+
+#define __closure_wait_event_hrtimeout(waitlist, condition, until) \
+({ \
+ struct closure _cl; \
+ int _ret; \
+ \
+ closure_init_stack(&_cl); \
+ \
+ do { \
+ closure_wait(waitlist, &_cl); \
+ \
+ if (condition) { \
+ closure_wake_up(waitlist); \
+ closure_sync(&_cl); \
+ _ret = 0; \
+ break; \
+ } \
+ } while (!(_ret = closure_sync_interruptible_hrtimeout(&_cl, \
+ waitlist, \
+ until))); \
+ \
+ _ret; \
+})
+
+/**
+ * closure_wait_event_timeout - wait for a condition to become true
+ *
+ * We wait for @condition to become true, waiting for @waitlist to be woken up
+ * until it does.
+ *
+ * Returns -ETIME if @condition did not become true before @until,
+ * -ERESTARTSYS if interrupted, else 0
+ */
+#define closure_wait_event_hrtimeout(waitlist, condition, until) \
+ (condition) \
+ ? 0 \
+ : __closure_wait_event_hrtimeout(waitlist, condition, until)
+
+#endif /* _LINUX_CLOSURE_H */
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index c31f74d..679e6e9 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1012,12 +1012,15 @@ typedef u16 (*select_queue_fallback_t)(struct net_device *dev,
* Callback to use for xmit over the accelerated station. This
* is used in place of ndo_start_xmit on accelerated net
* devices.
- * bool (*ndo_gso_check) (struct sk_buff *skb,
- * struct net_device *dev);
+ * netdev_features_t (*ndo_features_check) (struct sk_buff *skb,
+ * struct net_device *dev
+ * netdev_features_t features);
* Called by core transmit path to determine if device is capable of
- * performing GSO on a packet. The device returns true if it is
- * able to GSO the packet, false otherwise. If the return value is
- * false the stack will do software GSO.
+ * performing offload operations on a given packet. This is to give
+ * the device an opportunity to implement any restrictions that cannot
+ * be otherwise expressed by feature flags. The check is called with
+ * the set of features that the stack has calculated and it returns
+ * those the driver believes to be appropriate.
*
* int (*ndo_switch_parent_id_get)(struct net_device *dev,
* struct netdev_phys_item_id *psid);
@@ -1178,8 +1181,9 @@ struct net_device_ops {
struct net_device *dev,
void *priv);
int (*ndo_get_lock_subclass)(struct net_device *dev);
- bool (*ndo_gso_check) (struct sk_buff *skb,
- struct net_device *dev);
+ netdev_features_t (*ndo_features_check) (struct sk_buff *skb,
+ struct net_device *dev,
+ netdev_features_t features);
#ifdef CONFIG_NET_SWITCHDEV
int (*ndo_switch_parent_id_get)(struct net_device *dev,
struct netdev_phys_item_id *psid);
@@ -3611,8 +3615,6 @@ static inline bool netif_needs_gso(struct net_device *dev, struct sk_buff *skb,
netdev_features_t features)
{
return skb_is_gso(skb) && (!skb_gso_ok(skb, features) ||
- (dev->netdev_ops->ndo_gso_check &&
- !dev->netdev_ops->ndo_gso_check(skb, dev)) ||
unlikely((skb->ip_summed != CHECKSUM_PARTIAL) &&
(skb->ip_summed != CHECKSUM_UNNECESSARY)));
}
diff --git a/include/linux/netlink.h b/include/linux/netlink.h
index 9e572da..02fc86d 100644
--- a/include/linux/netlink.h
+++ b/include/linux/netlink.h
@@ -46,8 +46,8 @@ struct netlink_kernel_cfg {
unsigned int flags;
void (*input)(struct sk_buff *skb);
struct mutex *cb_mutex;
- int (*bind)(int group);
- void (*unbind)(int group);
+ int (*bind)(struct net *net, int group);
+ void (*unbind)(struct net *net, int group);
bool (*compare)(struct net *net, struct sock *sk);
};
diff --git a/include/net/genetlink.h b/include/net/genetlink.h
index af10c2c..8412508 100644
--- a/include/net/genetlink.h
+++ b/include/net/genetlink.h
@@ -31,6 +31,9 @@ struct genl_info;
* do additional, common, filtering and return an error
* @post_doit: called after an operation's doit callback, it may
* undo operations done by pre_doit, for example release locks
+ * @mcast_bind: a socket bound to the given multicast group (which
+ * is given as the offset into the groups array)
+ * @mcast_unbind: a socket was unbound from the given multicast group
* @attrbuf: buffer to store parsed attributes
* @family_list: family list
* @mcgrps: multicast groups used by this family (private)
@@ -53,6 +56,8 @@ struct genl_family {
void (*post_doit)(const struct genl_ops *ops,
struct sk_buff *skb,
struct genl_info *info);
+ int (*mcast_bind)(struct net *net, int group);
+ void (*mcast_unbind)(struct net *net, int group);
struct nlattr ** attrbuf; /* private */
const struct genl_ops * ops; /* private */
const struct genl_multicast_group *mcgrps; /* private */
@@ -395,11 +400,11 @@ static inline int genl_set_err(struct genl_family *family, struct net *net,
}
static inline int genl_has_listeners(struct genl_family *family,
- struct sock *sk, unsigned int group)
+ struct net *net, unsigned int group)
{
if (WARN_ON_ONCE(group >= family->n_mcgrps))
return -EINVAL;
group = family->mcgrp_offset + group;
- return netlink_has_listeners(sk, group);
+ return netlink_has_listeners(net->genl_sock, group);
}
#endif /* __NET_GENERIC_NETLINK_H */
diff --git a/include/net/neighbour.h b/include/net/neighbour.h
index eb070b3..76f7084 100644
--- a/include/net/neighbour.h
+++ b/include/net/neighbour.h
@@ -190,7 +190,6 @@ struct neigh_hash_table {
struct neigh_table {
- struct neigh_table *next;
int family;
int entry_size;
int key_len;
diff --git a/include/net/vxlan.h b/include/net/vxlan.h
index 57cccd0..903461a 100644
--- a/include/net/vxlan.h
+++ b/include/net/vxlan.h
@@ -1,6 +1,9 @@
#ifndef __NET_VXLAN_H
#define __NET_VXLAN_H 1
+#include <linux/ip.h>
+#include <linux/ipv6.h>
+#include <linux/if_vlan.h>
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/udp.h>
@@ -51,16 +54,33 @@ int vxlan_xmit_skb(struct vxlan_sock *vs,
__be32 src, __be32 dst, __u8 tos, __u8 ttl, __be16 df,
__be16 src_port, __be16 dst_port, __be32 vni, bool xnet);
-static inline bool vxlan_gso_check(struct sk_buff *skb)
+static inline netdev_features_t vxlan_features_check(struct sk_buff *skb,
+ netdev_features_t features)
{
- if ((skb_shinfo(skb)->gso_type & SKB_GSO_UDP_TUNNEL) &&
+ u8 l4_hdr = 0;
+
+ if (!skb->encapsulation)
+ return features;
+
+ switch (vlan_get_protocol(skb)) {
+ case htons(ETH_P_IP):
+ l4_hdr = ip_hdr(skb)->protocol;
+ break;
+ case htons(ETH_P_IPV6):
+ l4_hdr = ipv6_hdr(skb)->nexthdr;
+ break;
+ default:
+ return features;;
+ }
+
+ if ((l4_hdr == IPPROTO_UDP) &&
(skb->inner_protocol_type != ENCAP_TYPE_ETHER ||
skb->inner_protocol != htons(ETH_P_TEB) ||
(skb_inner_mac_header(skb) - skb_transport_header(skb) !=
sizeof(struct udphdr) + sizeof(struct vxlanhdr))))
- return false;
+ return features & ~(NETIF_F_ALL_CSUM | NETIF_F_GSO_MASK);
- return true;
+ return features;
}
/* IP header + UDP + VXLAN + Ethernet header */
diff --git a/include/uapi/linux/in6.h b/include/uapi/linux/in6.h
index 74a2a17..79b12b0 100644
--- a/include/uapi/linux/in6.h
+++ b/include/uapi/linux/in6.h
@@ -149,7 +149,7 @@ struct in6_flowlabel_req {
/*
* IPV6 socket options
*/
-
+#if __UAPI_DEF_IPV6_OPTIONS
#define IPV6_ADDRFORM 1
#define IPV6_2292PKTINFO 2
#define IPV6_2292HOPOPTS 3
@@ -196,6 +196,7 @@ struct in6_flowlabel_req {
#define IPV6_IPSEC_POLICY 34
#define IPV6_XFRM_POLICY 35
+#endif
/*
* Multicast:
diff --git a/include/uapi/linux/libc-compat.h b/include/uapi/linux/libc-compat.h
index c140620..e28807a 100644
--- a/include/uapi/linux/libc-compat.h
+++ b/include/uapi/linux/libc-compat.h
@@ -69,6 +69,7 @@
#define __UAPI_DEF_SOCKADDR_IN6 0
#define __UAPI_DEF_IPV6_MREQ 0
#define __UAPI_DEF_IPPROTO_V6 0
+#define __UAPI_DEF_IPV6_OPTIONS 0
#else
@@ -82,6 +83,7 @@
#define __UAPI_DEF_SOCKADDR_IN6 1
#define __UAPI_DEF_IPV6_MREQ 1
#define __UAPI_DEF_IPPROTO_V6 1
+#define __UAPI_DEF_IPV6_OPTIONS 1
#endif /* _NETINET_IN_H */
@@ -103,6 +105,7 @@
#define __UAPI_DEF_SOCKADDR_IN6 1
#define __UAPI_DEF_IPV6_MREQ 1
#define __UAPI_DEF_IPPROTO_V6 1
+#define __UAPI_DEF_IPV6_OPTIONS 1
/* Definitions for xattr.h */
#define __UAPI_DEF_XATTR 1
diff --git a/kernel/audit.c b/kernel/audit.c
index f8f203e..72ab759 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -429,7 +429,7 @@ static void kauditd_send_skb(struct sk_buff *skb)
* This function doesn't consume an skb as might be expected since it has to
* copy it anyways.
*/
-static void kauditd_send_multicast_skb(struct sk_buff *skb)
+static void kauditd_send_multicast_skb(struct sk_buff *skb, gfp_t gfp_mask)
{
struct sk_buff *copy;
struct audit_net *aunet = net_generic(&init_net, audit_net_id);
@@ -448,11 +448,11 @@ static void kauditd_send_multicast_skb(struct sk_buff *skb)
* no reason for new multicast clients to continue with this
* non-compliance.
*/
- copy = skb_copy(skb, GFP_KERNEL);
+ copy = skb_copy(skb, gfp_mask);
if (!copy)
return;
- nlmsg_multicast(sock, copy, 0, AUDIT_NLGRP_READLOG, GFP_KERNEL);
+ nlmsg_multicast(sock, copy, 0, AUDIT_NLGRP_READLOG, gfp_mask);
}
/*
@@ -1100,7 +1100,7 @@ static void audit_receive(struct sk_buff *skb)
}
/* Run custom bind function on netlink socket group connect or bind requests. */
-static int audit_bind(int group)
+static int audit_bind(struct net *net, int group)
{
if (!capable(CAP_AUDIT_READ))
return -EPERM;
@@ -1940,7 +1940,7 @@ void audit_log_end(struct audit_buffer *ab)
struct nlmsghdr *nlh = nlmsg_hdr(ab->skb);
nlh->nlmsg_len = ab->skb->len;
- kauditd_send_multicast_skb(ab->skb);
+ kauditd_send_multicast_skb(ab->skb, ab->gfp_mask);
/*
* The original kaudit unicast socket sends up messages with
diff --git a/kernel/auditfilter.c b/kernel/auditfilter.c
index 3598e13..4f68a32 100644
--- a/kernel/auditfilter.c
+++ b/kernel/auditfilter.c
@@ -442,19 +442,7 @@ static struct audit_entry *audit_data_to_entry(struct audit_rule_data *data,
if ((f->type == AUDIT_LOGINUID) && (f->val == AUDIT_UID_UNSET)) {
f->type = AUDIT_LOGINUID_SET;
f->val = 0;
- }
-
- if ((f->type == AUDIT_PID) || (f->type == AUDIT_PPID)) {
- struct pid *pid;
- rcu_read_lock();
- pid = find_vpid(f->val);
- if (!pid) {
- rcu_read_unlock();
- err = -ESRCH;
- goto exit_free;
- }
- f->val = pid_nr(pid);
- rcu_read_unlock();
+ entry->rule.pflags |= AUDIT_LOGINUID_LEGACY;
}
err = audit_field_valid(entry, f);
@@ -630,6 +618,13 @@ static struct audit_rule_data *audit_krule_to_data(struct audit_krule *krule)
data->buflen += data->values[i] =
audit_pack_string(&bufp, krule->filterkey);
break;
+ case AUDIT_LOGINUID_SET:
+ if (krule->pflags & AUDIT_LOGINUID_LEGACY && !f->val) {
+ data->fields[i] = AUDIT_LOGINUID;
+ data->values[i] = AUDIT_UID_UNSET;
+ break;
+ }
+ /* fallthrough if set */
default:
data->values[i] = f->val;
}
@@ -646,6 +641,7 @@ static int audit_compare_rule(struct audit_krule *a, struct audit_krule *b)
int i;
if (a->flags != b->flags ||
+ a->pflags != b->pflags ||
a->listnr != b->listnr ||
a->action != b->action ||
a->field_count != b->field_count)
@@ -764,6 +760,7 @@ struct audit_entry *audit_dupe_rule(struct audit_krule *old)
new = &entry->rule;
new->vers_ops = old->vers_ops;
new->flags = old->flags;
+ new->pflags = old->pflags;
new->listnr = old->listnr;
new->action = old->action;
for (i = 0; i < AUDIT_BITMASK_SIZE; i++)
diff --git a/kernel/auditsc.c b/kernel/auditsc.c
index c75522a..37c69ab 100644
--- a/kernel/auditsc.c
+++ b/kernel/auditsc.c
@@ -1877,12 +1877,18 @@ void __audit_inode(struct filename *name, const struct dentry *dentry,
}
out_alloc:
- /* unable to find the name from a previous getname(). Allocate a new
- * anonymous entry.
- */
- n = audit_alloc_name(context, AUDIT_TYPE_NORMAL);
+ /* unable to find an entry with both a matching name and type */
+ n = audit_alloc_name(context, AUDIT_TYPE_UNKNOWN);
if (!n)
return;
+ if (name)
+ /* since name is not NULL we know there is already a matching
+ * name record, see audit_getname(), so there must be a type
+ * mismatch; reuse the string path since the original name
+ * record will keep the string valid until we free it in
+ * audit_free_names() */
+ n->name = name;
+
out:
if (parent) {
n->name_len = n->name ? parent_len(n->name->name) : AUDIT_NAME_FULL;
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 5f2ce61..453dc68 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -1308,6 +1308,14 @@ config DEBUG_BLOCK_EXT_DEVT
Say N if you are unsure.
+config CLOSURE_DEBUG
+ bool "Debug closures"
+ select DEBUG_FS
+ ---help---
+ Keeps all active closures in a linked list and provides a debugfs
+ interface to list them, which makes it possible to see asynchronous
+ operations that get stuck.
+
config NOTIFIER_ERROR_INJECTION
tristate "Notifier error injection"
depends on DEBUG_KERNEL
diff --git a/lib/Makefile b/lib/Makefile
index 3c3b30b..d27b7cf 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -26,7 +26,7 @@ obj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \
bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \
gcd.o lcm.o list_sort.o uuid.o flex_array.o iovec.o clz_ctz.o \
bsearch.o find_last_bit.o find_next_bit.o llist.o memweight.o kfifo.o \
- percpu-refcount.o percpu_ida.o rhashtable.o reciprocal_div.o
+ percpu-refcount.o percpu_ida.o rhashtable.o reciprocal_div.o closure.o
obj-y += string_helpers.o
obj-$(CONFIG_TEST_STRING_HELPERS) += test-string_helpers.o
obj-y += kstrtox.o
diff --git a/lib/closure.c b/lib/closure.c
new file mode 100644
index 0000000..00283af
--- /dev/null
+++ b/lib/closure.c
@@ -0,0 +1,285 @@
+/*
+ * Asynchronous refcounty things
+ *
+ * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
+ * Copyright 2012 Google, Inc.
+ */
+
+#include <linux/closure.h>
+#include <linux/debugfs.h>
+#include <linux/seq_file.h>
+
+static inline void closure_put_after_sub(struct closure *cl, int flags)
+{
+ int r = flags & CLOSURE_REMAINING_MASK;
+
+ BUG_ON(flags & CLOSURE_GUARD_MASK);
+ BUG_ON(!r && (flags & ~CLOSURE_DESTRUCTOR));
+
+ if (!r) {
+ if (cl->fn && !(flags & CLOSURE_DESTRUCTOR)) {
+ atomic_set(&cl->remaining,
+ CLOSURE_REMAINING_INITIALIZER);
+ closure_queue(cl);
+ } else {
+ struct closure *parent = cl->parent;
+ closure_fn *destructor = cl->fn;
+
+ closure_debug_destroy(cl);
+
+ if (destructor)
+ destructor(cl);
+
+ if (parent)
+ closure_put(parent);
+ }
+ }
+}
+
+/* For clearing flags with the same atomic op as a put */
+void closure_sub(struct closure *cl, int v)
+{
+ closure_put_after_sub(cl, atomic_sub_return(v, &cl->remaining));
+}
+EXPORT_SYMBOL(closure_sub);
+
+/**
+ * closure_put - decrement a closure's refcount
+ */
+void closure_put(struct closure *cl)
+{
+ closure_put_after_sub(cl, atomic_dec_return(&cl->remaining));
+}
+EXPORT_SYMBOL(closure_put);
+
+/**
+ * closure_wake_up - wake up all closures on a wait list, without memory barrier
+ */
+void __closure_wake_up(struct closure_waitlist *wait_list)
+{
+ struct llist_node *list;
+ struct closure *cl;
+ struct llist_node *reverse = NULL;
+
+ list = llist_del_all(&wait_list->list);
+
+ /* We first reverse the list to preserve FIFO ordering and fairness */
+
+ while (list) {
+ struct llist_node *t = list;
+ list = llist_next(list);
+
+ t->next = reverse;
+ reverse = t;
+ }
+
+ /* Then do the wakeups */
+
+ while (reverse) {
+ cl = container_of(reverse, struct closure, list);
+ reverse = llist_next(reverse);
+
+ closure_set_waiting(cl, 0);
+ closure_sub(cl, CLOSURE_WAITING + 1);
+ }
+}
+EXPORT_SYMBOL(__closure_wake_up);
+
+/**
+ * closure_wait - add a closure to a waitlist
+ *
+ * @waitlist will own a ref on @cl, which will be released when
+ * closure_wake_up() is called on @waitlist.
+ *
+ */
+bool closure_wait(struct closure_waitlist *waitlist, struct closure *cl)
+{
+ if (atomic_read(&cl->remaining) & CLOSURE_WAITING)
+ return false;
+
+ closure_set_waiting(cl, _RET_IP_);
+ atomic_add(CLOSURE_WAITING + 1, &cl->remaining);
+ llist_add(&cl->list, &waitlist->list);
+
+ return true;
+}
+EXPORT_SYMBOL(closure_wait);
+
+struct closure_sleeper {
+ struct hrtimer timer;
+ struct task_struct *task;
+ struct closure_waitlist *waitlist;
+
+ int ret;
+ int done;
+};
+
+static void closure_sync_fn(struct closure *cl)
+{
+ struct closure_sleeper *s = cl->complete;
+
+ s->done = 1;
+ wake_up_process(s->task);
+}
+
+static void do_closure_sync(struct closure *cl,
+ struct closure_sleeper *s,
+ long state)
+{
+ cl->complete = s;
+ continue_at_noreturn(cl, closure_sync_fn, NULL);
+
+ while (1) {
+ set_current_state(state);
+ if (signal_pending_state(state, current)) {
+ s->ret = -ERESTARTSYS;
+ closure_wake_up(s->waitlist);
+ }
+
+ if (s->done)
+ break;
+ schedule();
+
+ }
+ __set_current_state(TASK_RUNNING);
+}
+
+static enum hrtimer_restart closure_sync_timeout_fn(struct hrtimer *timer)
+{
+ struct closure_sleeper *s =
+ container_of(timer, struct closure_sleeper, timer);
+
+ s->ret = -ETIME;
+ closure_wake_up(s->waitlist);
+
+ return HRTIMER_NORESTART;
+}
+
+int __closure_sync_interruptible_hrtimeout(struct closure *cl,
+ struct closure_waitlist *waitlist,
+ ktime_t until)
+{
+ struct closure_sleeper s;
+
+ s.task = current;
+ s.waitlist = waitlist;
+ s.ret = 0;
+ s.done = 0;
+
+ if (until.tv64 != KTIME_MAX) {
+ hrtimer_init_on_stack(&s.timer,
+ CLOCK_MONOTONIC,
+ HRTIMER_MODE_ABS);
+ s.timer.function = closure_sync_timeout_fn;
+
+ hrtimer_start_range_ns(&s.timer, until,
+ current->timer_slack_ns,
+ HRTIMER_MODE_ABS);
+ }
+
+ do_closure_sync(cl, &s, TASK_INTERRUPTIBLE);
+
+ if (until.tv64 != KTIME_MAX) {
+ hrtimer_cancel(&s.timer);
+ destroy_hrtimer_on_stack(&s.timer);
+ }
+
+ return s.ret;
+}
+EXPORT_SYMBOL(__closure_sync_interruptible_hrtimeout);
+
+void __closure_sync(struct closure *cl)
+{
+ struct closure_sleeper s;
+
+ s.task = current;
+ s.waitlist = NULL;
+ s.ret = 0;
+ s.done = 0;
+
+ do_closure_sync(cl, &s, TASK_UNINTERRUPTIBLE);
+}
+EXPORT_SYMBOL(__closure_sync);
+
+#ifdef CONFIG_CLOSURE_DEBUG
+
+static LIST_HEAD(closure_list);
+static DEFINE_SPINLOCK(closure_list_lock);
+
+void closure_debug_create(struct closure *cl)
+{
+ unsigned long flags;
+
+ BUG_ON(cl->magic == CLOSURE_MAGIC_ALIVE);
+ cl->magic = CLOSURE_MAGIC_ALIVE;
+
+ spin_lock_irqsave(&closure_list_lock, flags);
+ list_add(&cl->all, &closure_list);
+ spin_unlock_irqrestore(&closure_list_lock, flags);
+}
+EXPORT_SYMBOL(closure_debug_create);
+
+void closure_debug_destroy(struct closure *cl)
+{
+ unsigned long flags;
+
+ BUG_ON(cl->magic != CLOSURE_MAGIC_ALIVE);
+ cl->magic = CLOSURE_MAGIC_DEAD;
+
+ spin_lock_irqsave(&closure_list_lock, flags);
+ list_del(&cl->all);
+ spin_unlock_irqrestore(&closure_list_lock, flags);
+}
+EXPORT_SYMBOL(closure_debug_destroy);
+
+static struct dentry *debug;
+
+#define work_data_bits(work) ((unsigned long *)(&(work)->data))
+
+static int debug_seq_show(struct seq_file *f, void *data)
+{
+ struct closure *cl;
+ spin_lock_irq(&closure_list_lock);
+
+ list_for_each_entry(cl, &closure_list, all) {
+ int r = atomic_read(&cl->remaining);
+
+ seq_printf(f, "%p: %pF -> %pf p %p r %i ",
+ cl, (void *) cl->ip, cl->fn, cl->parent,
+ r & CLOSURE_REMAINING_MASK);
+
+ seq_printf(f, "%s%s\n",
+ test_bit(WORK_STRUCT_PENDING,
+ work_data_bits(&cl->work)) ? "Q" : "",
+ r & CLOSURE_RUNNING ? "R" : "");
+
+ if (r & CLOSURE_WAITING)
+ seq_printf(f, " W %pF\n",
+ (void *) cl->waiting_on);
+
+ seq_printf(f, "\n");
+ }
+
+ spin_unlock_irq(&closure_list_lock);
+ return 0;
+}
+
+static int debug_seq_open(struct inode *inode, struct file *file)
+{
+ return single_open(file, debug_seq_show, NULL);
+}
+
+static const struct file_operations debug_ops = {
+ .open = debug_seq_open,
+ .read = seq_read,
+ .release = single_release
+};
+
+static int __init closure_debug_init(void)
+{
+ debug = debugfs_create_file("closures", 0400, NULL, NULL, &debug_ops);
+ return 0;
+}
+late_initcall(closure_debug_init);
+
+#endif
diff --git a/mm/memory.c b/mm/memory.c
index 649e7d4..ca920d1 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2378,12 +2378,12 @@ void unmap_mapping_range(struct address_space *mapping,
details.last_index = ULONG_MAX;
- i_mmap_lock_read(mapping);
+ i_mmap_lock_write(mapping);
if (unlikely(!RB_EMPTY_ROOT(&mapping->i_mmap)))
unmap_mapping_range_tree(&mapping->i_mmap, &details);
if (unlikely(!list_empty(&mapping->i_mmap_nonlinear)))
unmap_mapping_range_list(&mapping->i_mmap_nonlinear, &details);
- i_mmap_unlock_read(mapping);
+ i_mmap_unlock_write(mapping);
}
EXPORT_SYMBOL(unmap_mapping_range);
diff --git a/net/batman-adv/fragmentation.c b/net/batman-adv/fragmentation.c
index fc1835c..00f9e14 100644
--- a/net/batman-adv/fragmentation.c
+++ b/net/batman-adv/fragmentation.c
@@ -251,7 +251,7 @@ batadv_frag_merge_packets(struct hlist_head *chain, struct sk_buff *skb)
kfree(entry);
/* Make room for the rest of the fragments. */
- if (pskb_expand_head(skb_out, 0, size - skb->len, GFP_ATOMIC) < 0) {
+ if (pskb_expand_head(skb_out, 0, size - skb_out->len, GFP_ATOMIC) < 0) {
kfree_skb(skb_out);
skb_out = NULL;
goto free;
@@ -434,7 +434,7 @@ bool batadv_frag_send_packet(struct sk_buff *skb,
* fragments larger than BATADV_FRAG_MAX_FRAG_SIZE
*/
mtu = min_t(unsigned, mtu, BATADV_FRAG_MAX_FRAG_SIZE);
- max_fragment_size = (mtu - header_size - ETH_HLEN);
+ max_fragment_size = mtu - header_size;
max_packet_size = max_fragment_size * BATADV_FRAG_MAX_FRAGMENTS;
/* Don't even try to fragment, if we need more than 16 fragments */
diff --git a/net/batman-adv/gateway_client.c b/net/batman-adv/gateway_client.c
index 90cff58..e0bcf9e 100644
--- a/net/batman-adv/gateway_client.c
+++ b/net/batman-adv/gateway_client.c
@@ -810,7 +810,7 @@ bool batadv_gw_out_of_range(struct batadv_priv *bat_priv,
goto out;
gw_node = batadv_gw_node_get(bat_priv, orig_dst_node);
- if (!gw_node->bandwidth_down == 0)
+ if (!gw_node)
goto out;
switch (atomic_read(&bat_priv->gw_mode)) {
diff --git a/net/bluetooth/6lowpan.c b/net/bluetooth/6lowpan.c
index 76617be..c989253 100644
--- a/net/bluetooth/6lowpan.c
+++ b/net/bluetooth/6lowpan.c
@@ -390,7 +390,6 @@ static int recv_pkt(struct sk_buff *skb, struct net_device *dev,
drop:
dev->stats.rx_dropped++;
- kfree_skb(skb);
return NET_RX_DROP;
}
diff --git a/net/bluetooth/bnep/core.c b/net/bluetooth/bnep/core.c
index 85bcc21..ce82722d 100644
--- a/net/bluetooth/bnep/core.c
+++ b/net/bluetooth/bnep/core.c
@@ -533,6 +533,9 @@ int bnep_add_connection(struct bnep_connadd_req *req, struct socket *sock)
BT_DBG("");
+ if (!l2cap_is_socket(sock))
+ return -EBADFD;
+
baswap((void *) dst, &l2cap_pi(sock->sk)->chan->dst);
baswap((void *) src, &l2cap_pi(sock->sk)->chan->src);
diff --git a/net/bluetooth/cmtp/core.c b/net/bluetooth/cmtp/core.c
index 67fe5e8..278a194 100644
--- a/net/bluetooth/cmtp/core.c
+++ b/net/bluetooth/cmtp/core.c
@@ -334,6 +334,9 @@ int cmtp_add_connection(struct cmtp_connadd_req *req, struct socket *sock)
BT_DBG("");
+ if (!l2cap_is_socket(sock))
+ return -EBADFD;
+
session = kzalloc(sizeof(struct cmtp_session), GFP_KERNEL);
if (!session)
return -ENOMEM;
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index 39a5c8a..3f2e8b8 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -242,7 +242,8 @@ static void hci_cc_read_local_name(struct hci_dev *hdev, struct sk_buff *skb)
if (rp->status)
return;
- if (test_bit(HCI_SETUP, &hdev->dev_flags))
+ if (test_bit(HCI_SETUP, &hdev->dev_flags) ||
+ test_bit(HCI_CONFIG, &hdev->dev_flags))
memcpy(hdev->dev_name, rp->name, HCI_MAX_NAME_LENGTH);
}
@@ -509,7 +510,8 @@ static void hci_cc_read_local_version(struct hci_dev *hdev, struct sk_buff *skb)
if (rp->status)
return;
- if (test_bit(HCI_SETUP, &hdev->dev_flags)) {
+ if (test_bit(HCI_SETUP, &hdev->dev_flags) ||
+ test_bit(HCI_CONFIG, &hdev->dev_flags)) {
hdev->hci_ver = rp->hci_ver;
hdev->hci_rev = __le16_to_cpu(rp->hci_rev);
hdev->lmp_ver = rp->lmp_ver;
@@ -528,7 +530,8 @@ static void hci_cc_read_local_commands(struct hci_dev *hdev,
if (rp->status)
return;
- if (test_bit(HCI_SETUP, &hdev->dev_flags))
+ if (test_bit(HCI_SETUP, &hdev->dev_flags) ||
+ test_bit(HCI_CONFIG, &hdev->dev_flags))
memcpy(hdev->commands, rp->commands, sizeof(hdev->commands));
}
@@ -2194,7 +2197,12 @@ static void hci_conn_request_evt(struct hci_dev *hdev, struct sk_buff *skb)
return;
}
- if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags) &&
+ /* Require HCI_CONNECTABLE or a whitelist entry to accept the
+ * connection. These features are only touched through mgmt so
+ * only do the checks if HCI_MGMT is set.
+ */
+ if (test_bit(HCI_MGMT, &hdev->dev_flags) &&
+ !test_bit(HCI_CONNECTABLE, &hdev->dev_flags) &&
!hci_bdaddr_list_lookup(&hdev->whitelist, &ev->bdaddr,
BDADDR_BREDR)) {
hci_reject_conn(hdev, &ev->bdaddr);
diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c
index cc25d0b..07348e1 100644
--- a/net/bluetooth/hidp/core.c
+++ b/net/bluetooth/hidp/core.c
@@ -1314,13 +1314,14 @@ int hidp_connection_add(struct hidp_connadd_req *req,
{
struct hidp_session *session;
struct l2cap_conn *conn;
- struct l2cap_chan *chan = l2cap_pi(ctrl_sock->sk)->chan;
+ struct l2cap_chan *chan;
int ret;
ret = hidp_verify_sockets(ctrl_sock, intr_sock);
if (ret)
return ret;
+ chan = l2cap_pi(ctrl_sock->sk)->chan;
conn = NULL;
l2cap_chan_lock(chan);
if (chan->conn)
diff --git a/net/core/dev.c b/net/core/dev.c
index f411c28..683d493 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -1694,6 +1694,7 @@ int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
skb_scrub_packet(skb, true);
skb->protocol = eth_type_trans(skb, dev);
+ skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
return 0;
}
@@ -2522,7 +2523,7 @@ static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
/* If MPLS offload request, verify we are testing hardware MPLS features
* instead of standard features for the netdev.
*/
-#ifdef CONFIG_NET_MPLS_GSO
+#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
static netdev_features_t net_mpls_features(struct sk_buff *skb,
netdev_features_t features,
__be16 type)
@@ -2562,7 +2563,7 @@ static netdev_features_t harmonize_features(struct sk_buff *skb,
netdev_features_t netif_skb_features(struct sk_buff *skb)
{
- const struct net_device *dev = skb->dev;
+ struct net_device *dev = skb->dev;
netdev_features_t features = dev->features;
u16 gso_segs = skb_shinfo(skb)->gso_segs;
__be16 protocol = skb->protocol;
@@ -2570,11 +2571,21 @@ netdev_features_t netif_skb_features(struct sk_buff *skb)
if (gso_segs > dev->gso_max_segs || gso_segs < dev->gso_min_segs)
features &= ~NETIF_F_GSO_MASK;
- if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD)) {
- struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
- protocol = veh->h_vlan_encapsulated_proto;
- } else if (!vlan_tx_tag_present(skb)) {
- return harmonize_features(skb, features);
+ /* If encapsulation offload request, verify we are testing
+ * hardware encapsulation features instead of standard
+ * features for the netdev
+ */
+ if (skb->encapsulation)
+ features &= dev->hw_enc_features;
+
+ if (!vlan_tx_tag_present(skb)) {
+ if (unlikely(protocol == htons(ETH_P_8021Q) ||
+ protocol == htons(ETH_P_8021AD))) {
+ struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
+ protocol = veh->h_vlan_encapsulated_proto;
+ } else {
+ goto finalize;
+ }
}
features = netdev_intersect_features(features,
@@ -2591,6 +2602,11 @@ netdev_features_t netif_skb_features(struct sk_buff *skb)
NETIF_F_HW_VLAN_CTAG_TX |
NETIF_F_HW_VLAN_STAG_TX);
+finalize:
+ if (dev->netdev_ops->ndo_features_check)
+ features &= dev->netdev_ops->ndo_features_check(skb, dev,
+ features);
+
return harmonize_features(skb, features);
}
EXPORT_SYMBOL(netif_skb_features);
@@ -2661,19 +2677,12 @@ static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device
if (unlikely(!skb))
goto out_null;
- /* If encapsulation offload request, verify we are testing
- * hardware encapsulation features instead of standard
- * features for the netdev
- */
- if (skb->encapsulation)
- features &= dev->hw_enc_features;
-
if (netif_needs_gso(dev, skb, features)) {
struct sk_buff *segs;
segs = skb_gso_segment(skb, features);
if (IS_ERR(segs)) {
- segs = NULL;
+ goto out_kfree_skb;
} else if (segs) {
consume_skb(skb);
skb = segs;
@@ -4557,6 +4566,68 @@ void netif_napi_del(struct napi_struct *napi)
}
EXPORT_SYMBOL(netif_napi_del);
+static int napi_poll(struct napi_struct *n, struct list_head *repoll)
+{
+ void *have;
+ int work, weight;
+
+ list_del_init(&n->poll_list);
+
+ have = netpoll_poll_lock(n);
+
+ weight = n->weight;
+
+ /* This NAPI_STATE_SCHED test is for avoiding a race
+ * with netpoll's poll_napi(). Only the entity which
+ * obtains the lock and sees NAPI_STATE_SCHED set will
+ * actually make the ->poll() call. Therefore we avoid
+ * accidentally calling ->poll() when NAPI is not scheduled.
+ */
+ work = 0;
+ if (test_bit(NAPI_STATE_SCHED, &n->state)) {
+ work = n->poll(n, weight);
+ trace_napi_poll(n);
+ }
+
+ WARN_ON_ONCE(work > weight);
+
+ if (likely(work < weight))
+ goto out_unlock;
+
+ /* Drivers must not modify the NAPI state if they
+ * consume the entire weight. In such cases this code
+ * still "owns" the NAPI instance and therefore can
+ * move the instance around on the list at-will.
+ */
+ if (unlikely(napi_disable_pending(n))) {
+ napi_complete(n);
+ goto out_unlock;
+ }
+
+ if (n->gro_list) {
+ /* flush too old packets
+ * If HZ < 1000, flush all packets.
+ */
+ napi_gro_flush(n, HZ >= 1000);
+ }
+
+ /* Some drivers may have called napi_schedule
+ * prior to exhausting their budget.
+ */
+ if (unlikely(!list_empty(&n->poll_list))) {
+ pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
+ n->dev ? n->dev->name : "backlog");
+ goto out_unlock;
+ }
+
+ list_add_tail(&n->poll_list, repoll);
+
+out_unlock:
+ netpoll_poll_unlock(have);
+
+ return work;
+}
+
static void net_rx_action(struct softirq_action *h)
{
struct softnet_data *sd = this_cpu_ptr(&softnet_data);
@@ -4564,74 +4635,34 @@ static void net_rx_action(struct softirq_action *h)
int budget = netdev_budget;
LIST_HEAD(list);
LIST_HEAD(repoll);
- void *have;
local_irq_disable();
list_splice_init(&sd->poll_list, &list);
local_irq_enable();
- while (!list_empty(&list)) {
+ for (;;) {
struct napi_struct *n;
- int work, weight;
-
- /* If softirq window is exhausted then punt.
- * Allow this to run for 2 jiffies since which will allow
- * an average latency of 1.5/HZ.
- */
- if (unlikely(budget <= 0 || time_after_eq(jiffies, time_limit)))
- goto softnet_break;
-
-
- n = list_first_entry(&list, struct napi_struct, poll_list);
- list_del_init(&n->poll_list);
- have = netpoll_poll_lock(n);
-
- weight = n->weight;
-
- /* This NAPI_STATE_SCHED test is for avoiding a race
- * with netpoll's poll_napi(). Only the entity which
- * obtains the lock and sees NAPI_STATE_SCHED set will
- * actually make the ->poll() call. Therefore we avoid
- * accidentally calling ->poll() when NAPI is not scheduled.
- */
- work = 0;
- if (test_bit(NAPI_STATE_SCHED, &n->state)) {
- work = n->poll(n, weight);
- trace_napi_poll(n);
+ if (list_empty(&list)) {
+ if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
+ return;
+ break;
}
- WARN_ON_ONCE(work > weight);
-
- budget -= work;
+ n = list_first_entry(&list, struct napi_struct, poll_list);
+ budget -= napi_poll(n, &repoll);
- /* Drivers must not modify the NAPI state if they
- * consume the entire weight. In such cases this code
- * still "owns" the NAPI instance and therefore can
- * move the instance around on the list at-will.
+ /* If softirq window is exhausted then punt.
+ * Allow this to run for 2 jiffies since which will allow
+ * an average latency of 1.5/HZ.
*/
- if (unlikely(work == weight)) {
- if (unlikely(napi_disable_pending(n))) {
- napi_complete(n);
- } else {
- if (n->gro_list) {
- /* flush too old packets
- * If HZ < 1000, flush all packets.
- */
- napi_gro_flush(n, HZ >= 1000);
- }
- list_add_tail(&n->poll_list, &repoll);
- }
+ if (unlikely(budget <= 0 ||
+ time_after_eq(jiffies, time_limit))) {
+ sd->time_squeeze++;
+ break;
}
-
- netpoll_poll_unlock(have);
}
- if (!sd_has_rps_ipi_waiting(sd) &&
- list_empty(&list) &&
- list_empty(&repoll))
- return;
-out:
local_irq_disable();
list_splice_tail_init(&sd->poll_list, &list);
@@ -4641,12 +4672,6 @@ out:
__raise_softirq_irqoff(NET_RX_SOFTIRQ);
net_rps_action_and_irq_enable(sd);
-
- return;
-
-softnet_break:
- sd->time_squeeze++;
- goto out;
}
struct netdev_adjacent {
diff --git a/net/core/skbuff.c b/net/core/skbuff.c
index ae13ef6..395c15b 100644
--- a/net/core/skbuff.c
+++ b/net/core/skbuff.c
@@ -4148,6 +4148,7 @@ void skb_scrub_packet(struct sk_buff *skb, bool xnet)
skb->ignore_df = 0;
skb_dst_drop(skb);
skb->mark = 0;
+ skb_init_secmark(skb);
secpath_reset(skb);
nf_reset(skb);
nf_reset_trace(skb);
diff --git a/net/ipv4/geneve.c b/net/ipv4/geneve.c
index 95e47c9..394a200 100644
--- a/net/ipv4/geneve.c
+++ b/net/ipv4/geneve.c
@@ -122,14 +122,18 @@ int geneve_xmit_skb(struct geneve_sock *gs, struct rtable *rt,
int err;
skb = udp_tunnel_handle_offloads(skb, !gs->sock->sk->sk_no_check_tx);
+ if (IS_ERR(skb))
+ return PTR_ERR(skb);
min_headroom = LL_RESERVED_SPACE(rt->dst.dev) + rt->dst.header_len
+ GENEVE_BASE_HLEN + opt_len + sizeof(struct iphdr)
+ (vlan_tx_tag_present(skb) ? VLAN_HLEN : 0);
err = skb_cow_head(skb, min_headroom);
- if (unlikely(err))
+ if (unlikely(err)) {
+ kfree_skb(skb);
return err;
+ }
skb = vlan_hwaccel_push_inside(skb);
if (unlikely(!skb))
diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
index 5ff8780..9c0b54e 100644
--- a/net/ipv6/tcp_ipv6.c
+++ b/net/ipv6/tcp_ipv6.c
@@ -1387,6 +1387,28 @@ ipv6_pktoptions:
return 0;
}
+static void tcp_v6_fill_cb(struct sk_buff *skb, const struct ipv6hdr *hdr,
+ const struct tcphdr *th)
+{
+ /* This is tricky: we move IP6CB at its correct location into
+ * TCP_SKB_CB(). It must be done after xfrm6_policy_check(), because
+ * _decode_session6() uses IP6CB().
+ * barrier() makes sure compiler won't play aliasing games.
+ */
+ memmove(&TCP_SKB_CB(skb)->header.h6, IP6CB(skb),
+ sizeof(struct inet6_skb_parm));
+ barrier();
+
+ TCP_SKB_CB(skb)->seq = ntohl(th->seq);
+ TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin +
+ skb->len - th->doff*4);
+ TCP_SKB_CB(skb)->ack_seq = ntohl(th->ack_seq);
+ TCP_SKB_CB(skb)->tcp_flags = tcp_flag_byte(th);
+ TCP_SKB_CB(skb)->tcp_tw_isn = 0;
+ TCP_SKB_CB(skb)->ip_dsfield = ipv6_get_dsfield(hdr);
+ TCP_SKB_CB(skb)->sacked = 0;
+}
+
static int tcp_v6_rcv(struct sk_buff *skb)
{
const struct tcphdr *th;
@@ -1418,24 +1440,9 @@ static int tcp_v6_rcv(struct sk_buff *skb)
th = tcp_hdr(skb);
hdr = ipv6_hdr(skb);
- /* This is tricky : We move IPCB at its correct location into TCP_SKB_CB()
- * barrier() makes sure compiler wont play fool^Waliasing games.
- */
- memmove(&TCP_SKB_CB(skb)->header.h6, IP6CB(skb),
- sizeof(struct inet6_skb_parm));
- barrier();
-
- TCP_SKB_CB(skb)->seq = ntohl(th->seq);
- TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin +
- skb->len - th->doff*4);
- TCP_SKB_CB(skb)->ack_seq = ntohl(th->ack_seq);
- TCP_SKB_CB(skb)->tcp_flags = tcp_flag_byte(th);
- TCP_SKB_CB(skb)->tcp_tw_isn = 0;
- TCP_SKB_CB(skb)->ip_dsfield = ipv6_get_dsfield(hdr);
- TCP_SKB_CB(skb)->sacked = 0;
sk = __inet6_lookup_skb(&tcp_hashinfo, skb, th->source, th->dest,
- tcp_v6_iif(skb));
+ inet6_iif(skb));
if (!sk)
goto no_tcp_socket;
@@ -1451,6 +1458,8 @@ process:
if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb))
goto discard_and_relse;
+ tcp_v6_fill_cb(skb, hdr, th);
+
#ifdef CONFIG_TCP_MD5SIG
if (tcp_v6_inbound_md5_hash(sk, skb))
goto discard_and_relse;
@@ -1482,6 +1491,8 @@ no_tcp_socket:
if (!xfrm6_policy_check(NULL, XFRM_POLICY_IN, skb))
goto discard_it;
+ tcp_v6_fill_cb(skb, hdr, th);
+
if (skb->len < (th->doff<<2) || tcp_checksum_complete(skb)) {
csum_error:
TCP_INC_STATS_BH(net, TCP_MIB_CSUMERRORS);
@@ -1505,6 +1516,8 @@ do_time_wait:
goto discard_it;
}
+ tcp_v6_fill_cb(skb, hdr, th);
+
if (skb->len < (th->doff<<2)) {
inet_twsk_put(inet_twsk(sk));
goto bad_packet;
diff --git a/net/mpls/mpls_gso.c b/net/mpls/mpls_gso.c
index ca27837..349295d 100644
--- a/net/mpls/mpls_gso.c
+++ b/net/mpls/mpls_gso.c
@@ -31,10 +31,7 @@ static struct sk_buff *mpls_gso_segment(struct sk_buff *skb,
SKB_GSO_TCPV6 |
SKB_GSO_UDP |
SKB_GSO_DODGY |
- SKB_GSO_TCP_ECN |
- SKB_GSO_GRE |
- SKB_GSO_GRE_CSUM |
- SKB_GSO_IPIP)))
+ SKB_GSO_TCP_ECN)))
goto out;
/* Setup inner SKB. */
diff --git a/net/netfilter/nfnetlink.c b/net/netfilter/nfnetlink.c
index 13c2e17..cde4a67 100644
--- a/net/netfilter/nfnetlink.c
+++ b/net/netfilter/nfnetlink.c
@@ -463,7 +463,7 @@ static void nfnetlink_rcv(struct sk_buff *skb)
}
#ifdef CONFIG_MODULES
-static int nfnetlink_bind(int group)
+static int nfnetlink_bind(struct net *net, int group)
{
const struct nfnetlink_subsystem *ss;
int type;
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
index 074cf3e..562d386 100644
--- a/net/netlink/af_netlink.c
+++ b/net/netlink/af_netlink.c
@@ -1091,8 +1091,10 @@ static void netlink_remove(struct sock *sk)
mutex_unlock(&nl_sk_hash_lock);
netlink_table_grab();
- if (nlk_sk(sk)->subscriptions)
+ if (nlk_sk(sk)->subscriptions) {
__sk_del_bind_node(sk);
+ netlink_update_listeners(sk);
+ }
netlink_table_ungrab();
}
@@ -1139,8 +1141,8 @@ static int netlink_create(struct net *net, struct socket *sock, int protocol,
struct module *module = NULL;
struct mutex *cb_mutex;
struct netlink_sock *nlk;
- int (*bind)(int group);
- void (*unbind)(int group);
+ int (*bind)(struct net *net, int group);
+ void (*unbind)(struct net *net, int group);
int err = 0;
sock->state = SS_UNCONNECTED;
@@ -1226,8 +1228,8 @@ static int netlink_release(struct socket *sock)
module_put(nlk->module);
- netlink_table_grab();
if (netlink_is_kernel(sk)) {
+ netlink_table_grab();
BUG_ON(nl_table[sk->sk_protocol].registered == 0);
if (--nl_table[sk->sk_protocol].registered == 0) {
struct listeners *old;
@@ -1241,11 +1243,16 @@ static int netlink_release(struct socket *sock)
nl_table[sk->sk_protocol].flags = 0;
nl_table[sk->sk_protocol].registered = 0;
}
- } else if (nlk->subscriptions) {
- netlink_update_listeners(sk);
+ netlink_table_ungrab();
}
- netlink_table_ungrab();
+ if (nlk->netlink_unbind) {
+ int i;
+
+ for (i = 0; i < nlk->ngroups; i++)
+ if (test_bit(i, nlk->groups))
+ nlk->netlink_unbind(sock_net(sk), i + 1);
+ }
kfree(nlk->groups);
nlk->groups = NULL;
@@ -1410,9 +1417,10 @@ static int netlink_realloc_groups(struct sock *sk)
return err;
}
-static void netlink_unbind(int group, long unsigned int groups,
- struct netlink_sock *nlk)
+static void netlink_undo_bind(int group, long unsigned int groups,
+ struct sock *sk)
{
+ struct netlink_sock *nlk = nlk_sk(sk);
int undo;
if (!nlk->netlink_unbind)
@@ -1420,7 +1428,7 @@ static void netlink_unbind(int group, long unsigned int groups,
for (undo = 0; undo < group; undo++)
if (test_bit(undo, &groups))
- nlk->netlink_unbind(undo);
+ nlk->netlink_unbind(sock_net(sk), undo);
}
static int netlink_bind(struct socket *sock, struct sockaddr *addr,
@@ -1458,10 +1466,10 @@ static int netlink_bind(struct socket *sock, struct sockaddr *addr,
for (group = 0; group < nlk->ngroups; group++) {
if (!test_bit(group, &groups))
continue;
- err = nlk->netlink_bind(group);
+ err = nlk->netlink_bind(net, group);
if (!err)
continue;
- netlink_unbind(group, groups, nlk);
+ netlink_undo_bind(group, groups, sk);
return err;
}
}
@@ -1471,7 +1479,7 @@ static int netlink_bind(struct socket *sock, struct sockaddr *addr,
netlink_insert(sk, net, nladdr->nl_pid) :
netlink_autobind(sock);
if (err) {
- netlink_unbind(nlk->ngroups, groups, nlk);
+ netlink_undo_bind(nlk->ngroups, groups, sk);
return err;
}
}
@@ -1976,8 +1984,10 @@ int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, u32 portid
netlink_lock_table();
- sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list)
+ sk_for_each_bound(sk, &nl_table[ssk->sk_protocol].mc_list) {
do_one_broadcast(sk, &info);
+ cond_resched();
+ }
consume_skb(skb);
@@ -2122,7 +2132,7 @@ static int netlink_setsockopt(struct socket *sock, int level, int optname,
if (!val || val - 1 >= nlk->ngroups)
return -EINVAL;
if (optname == NETLINK_ADD_MEMBERSHIP && nlk->netlink_bind) {
- err = nlk->netlink_bind(val);
+ err = nlk->netlink_bind(sock_net(sk), val);
if (err)
return err;
}
@@ -2131,7 +2141,7 @@ static int netlink_setsockopt(struct socket *sock, int level, int optname,
optname == NETLINK_ADD_MEMBERSHIP);
netlink_table_ungrab();
if (optname == NETLINK_DROP_MEMBERSHIP && nlk->netlink_unbind)
- nlk->netlink_unbind(val);
+ nlk->netlink_unbind(sock_net(sk), val);
err = 0;
break;
diff --git a/net/netlink/af_netlink.h b/net/netlink/af_netlink.h
index b20a173..f123a88 100644
--- a/net/netlink/af_netlink.h
+++ b/net/netlink/af_netlink.h
@@ -39,8 +39,8 @@ struct netlink_sock {
struct mutex *cb_mutex;
struct mutex cb_def_mutex;
void (*netlink_rcv)(struct sk_buff *skb);
- int (*netlink_bind)(int group);
- void (*netlink_unbind)(int group);
+ int (*netlink_bind)(struct net *net, int group);
+ void (*netlink_unbind)(struct net *net, int group);
struct module *module;
#ifdef CONFIG_NETLINK_MMAP
struct mutex pg_vec_lock;
@@ -65,8 +65,8 @@ struct netlink_table {
unsigned int groups;
struct mutex *cb_mutex;
struct module *module;
- int (*bind)(int group);
- void (*unbind)(int group);
+ int (*bind)(struct net *net, int group);
+ void (*unbind)(struct net *net, int group);
bool (*compare)(struct net *net, struct sock *sock);
int registered;
};
diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c
index 76393f2..5cfbcea 100644
--- a/net/netlink/genetlink.c
+++ b/net/netlink/genetlink.c
@@ -983,11 +983,74 @@ static struct genl_multicast_group genl_ctrl_groups[] = {
{ .name = "notify", },
};
+static int genl_bind(struct net *net, int group)
+{
+ int i, err;
+ bool found = false;
+
+ down_read(&cb_lock);
+ for (i = 0; i < GENL_FAM_TAB_SIZE; i++) {
+ struct genl_family *f;
+
+ list_for_each_entry(f, genl_family_chain(i), family_list) {
+ if (group >= f->mcgrp_offset &&
+ group < f->mcgrp_offset + f->n_mcgrps) {
+ int fam_grp = group - f->mcgrp_offset;
+
+ if (!f->netnsok && net != &init_net)
+ err = -ENOENT;
+ else if (f->mcast_bind)
+ err = f->mcast_bind(net, fam_grp);
+ else
+ err = 0;
+ found = true;
+ break;
+ }
+ }
+ }
+ up_read(&cb_lock);
+
+#if 0
+ if (WARN_ON(!found))
+ err = 0;
+#endif
+
+ return err;
+}
+
+static void genl_unbind(struct net *net, int group)
+{
+ int i;
+ bool found = false;
+
+ down_read(&cb_lock);
+ for (i = 0; i < GENL_FAM_TAB_SIZE; i++) {
+ struct genl_family *f;
+
+ list_for_each_entry(f, genl_family_chain(i), family_list) {
+ if (group >= f->mcgrp_offset &&
+ group < f->mcgrp_offset + f->n_mcgrps) {
+ int fam_grp = group - f->mcgrp_offset;
+
+ if (f->mcast_unbind)
+ f->mcast_unbind(net, fam_grp);
+ found = true;
+ break;
+ }
+ }
+ }
+ up_read(&cb_lock);
+
+ WARN_ON(!found);
+}
+
static int __net_init genl_pernet_init(struct net *net)
{
struct netlink_kernel_cfg cfg = {
.input = genl_rcv,
.flags = NL_CFG_F_NONROOT_RECV,
+ .bind = genl_bind,
+ .unbind = genl_unbind,
};
/* we'll bump the group number right afterwards */
diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c
index 764fdc3..770064c 100644
--- a/net/openvswitch/actions.c
+++ b/net/openvswitch/actions.c
@@ -147,7 +147,8 @@ static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key,
hdr = eth_hdr(skb);
hdr->h_proto = mpls->mpls_ethertype;
- skb_set_inner_protocol(skb, skb->protocol);
+ if (!skb->inner_protocol)
+ skb_set_inner_protocol(skb, skb->protocol);
skb->protocol = mpls->mpls_ethertype;
invalidate_flow_key(key);
diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c
index 332b5a0..4e9a5f0 100644
--- a/net/openvswitch/datapath.c
+++ b/net/openvswitch/datapath.c
@@ -83,8 +83,7 @@ static bool ovs_must_notify(struct genl_family *family, struct genl_info *info,
unsigned int group)
{
return info->nlhdr->nlmsg_flags & NLM_F_ECHO ||
- genl_has_listeners(family, genl_info_net(info)->genl_sock,
- group);
+ genl_has_listeners(family, genl_info_net(info), group);
}
static void ovs_notify(struct genl_family *family,
diff --git a/net/openvswitch/flow_netlink.c b/net/openvswitch/flow_netlink.c
index 9645a21..d1eecf7 100644
--- a/net/openvswitch/flow_netlink.c
+++ b/net/openvswitch/flow_netlink.c
@@ -1753,7 +1753,6 @@ static int __ovs_nla_copy_actions(const struct nlattr *attr,
__be16 eth_type, __be16 vlan_tci, bool log)
{
const struct nlattr *a;
- bool out_tnl_port = false;
int rem, err;
if (depth >= SAMPLE_ACTION_DEPTH)
@@ -1796,8 +1795,6 @@ static int __ovs_nla_copy_actions(const struct nlattr *attr,
case OVS_ACTION_ATTR_OUTPUT:
if (nla_get_u32(a) >= DP_MAX_PORTS)
return -EINVAL;
- out_tnl_port = false;
-
break;
case OVS_ACTION_ATTR_HASH: {
@@ -1832,12 +1829,6 @@ static int __ovs_nla_copy_actions(const struct nlattr *attr,
case OVS_ACTION_ATTR_PUSH_MPLS: {
const struct ovs_action_push_mpls *mpls = nla_data(a);
- /* Networking stack do not allow simultaneous Tunnel
- * and MPLS GSO.
- */
- if (out_tnl_port)
- return -EINVAL;
-
if (!eth_p_mpls(mpls->mpls_ethertype))
return -EINVAL;
/* Prohibit push MPLS other than to a white list
@@ -1873,11 +1864,9 @@ static int __ovs_nla_copy_actions(const struct nlattr *attr,
case OVS_ACTION_ATTR_SET:
err = validate_set(a, key, sfa,
- &out_tnl_port, eth_type, log);
+ &skip_copy, eth_type, log);
if (err)
return err;
-
- skip_copy = out_tnl_port;
break;
case OVS_ACTION_ATTR_SAMPLE:
diff --git a/net/openvswitch/vport-geneve.c b/net/openvswitch/vport-geneve.c
index 347fa23..484864d 100644
--- a/net/openvswitch/vport-geneve.c
+++ b/net/openvswitch/vport-geneve.c
@@ -219,7 +219,10 @@ static int geneve_tnl_send(struct vport *vport, struct sk_buff *skb)
false);
if (err < 0)
ip_rt_put(rt);
+ return err;
+
error:
+ kfree_skb(skb);
return err;
}
diff --git a/net/openvswitch/vport-gre.c b/net/openvswitch/vport-gre.c
index 6b69df5..d4168c4 100644
--- a/net/openvswitch/vport-gre.c
+++ b/net/openvswitch/vport-gre.c
@@ -73,7 +73,7 @@ static struct sk_buff *__build_header(struct sk_buff *skb,
skb = gre_handle_offloads(skb, !!(tun_key->tun_flags & TUNNEL_CSUM));
if (IS_ERR(skb))
- return NULL;
+ return skb;
tpi.flags = filter_tnl_flags(tun_key->tun_flags);
tpi.proto = htons(ETH_P_TEB);
@@ -144,7 +144,7 @@ static int gre_tnl_send(struct vport *vport, struct sk_buff *skb)
if (unlikely(!OVS_CB(skb)->egress_tun_info)) {
err = -EINVAL;
- goto error;
+ goto err_free_skb;
}
tun_key = &OVS_CB(skb)->egress_tun_info->tunnel;
@@ -157,8 +157,10 @@ static int gre_tnl_send(struct vport *vport, struct sk_buff *skb)
fl.flowi4_proto = IPPROTO_GRE;
rt = ip_route_output_key(net, &fl);
- if (IS_ERR(rt))
- return PTR_ERR(rt);
+ if (IS_ERR(rt)) {
+ err = PTR_ERR(rt);
+ goto err_free_skb;
+ }
tunnel_hlen = ip_gre_calc_hlen(tun_key->tun_flags);
@@ -183,8 +185,9 @@ static int gre_tnl_send(struct vport *vport, struct sk_buff *skb)
/* Push Tunnel header. */
skb = __build_header(skb, tunnel_hlen);
- if (unlikely(!skb)) {
- err = 0;
+ if (IS_ERR(skb)) {
+ err = PTR_ERR(skb);
+ skb = NULL;
goto err_free_rt;
}
@@ -198,7 +201,8 @@ static int gre_tnl_send(struct vport *vport, struct sk_buff *skb)
tun_key->ipv4_tos, tun_key->ipv4_ttl, df, false);
err_free_rt:
ip_rt_put(rt);
-error:
+err_free_skb:
+ kfree_skb(skb);
return err;
}
diff --git a/net/openvswitch/vport-vxlan.c b/net/openvswitch/vport-vxlan.c
index 38f95a5..d7c46b3 100644
--- a/net/openvswitch/vport-vxlan.c
+++ b/net/openvswitch/vport-vxlan.c
@@ -187,7 +187,9 @@ static int vxlan_tnl_send(struct vport *vport, struct sk_buff *skb)
false);
if (err < 0)
ip_rt_put(rt);
+ return err;
error:
+ kfree_skb(skb);
return err;
}
diff --git a/net/openvswitch/vport.c b/net/openvswitch/vport.c
index 9584526..53f3ebb 100644
--- a/net/openvswitch/vport.c
+++ b/net/openvswitch/vport.c
@@ -519,10 +519,9 @@ int ovs_vport_send(struct vport *vport, struct sk_buff *skb)
u64_stats_update_end(&stats->syncp);
} else if (sent < 0) {
ovs_vport_record_error(vport, VPORT_E_TX_ERROR);
- kfree_skb(skb);
- } else
+ } else {
ovs_vport_record_error(vport, VPORT_E_TX_DROPPED);
-
+ }
return sent;
}
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index e52a447..6880f34 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -785,6 +785,7 @@ static void prb_close_block(struct tpacket_kbdq_core *pkc1,
struct tpacket3_hdr *last_pkt;
struct tpacket_hdr_v1 *h1 = &pbd1->hdr.bh1;
+ struct sock *sk = &po->sk;
if (po->stats.stats3.tp_drops)
status |= TP_STATUS_LOSING;
@@ -809,6 +810,8 @@ static void prb_close_block(struct tpacket_kbdq_core *pkc1,
/* Flush the block */
prb_flush_block(pkc1, pbd1, status);
+ sk->sk_data_ready(sk);
+
pkc1->kactive_blk_num = GET_NEXT_PRB_BLK_NUM(pkc1);
}
@@ -2052,12 +2055,12 @@ static int tpacket_rcv(struct sk_buff *skb, struct net_device *dev,
smp_wmb();
#endif
- if (po->tp_version <= TPACKET_V2)
+ if (po->tp_version <= TPACKET_V2) {
__packet_set_status(po, h.raw, status);
- else
+ sk->sk_data_ready(sk);
+ } else {
prb_clear_blk_fill_status(&po->rx_ring);
-
- sk->sk_data_ready(sk);
+ }
drop_n_restore:
if (skb_head != skb->data && skb_shared(skb)) {
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 5972624..7a60d1a 100755
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -217,9 +217,22 @@ else
fi
maintainer="$name <$email>"
+# Try to determine distribution
+if [ -e $(which lsb_release) ]; then
+ codename=$(lsb_release --codename --short)
+ if [ "$codename" != "" ]; then
+ distribution=$codename
+ else
+ distribution="UNRELEASED"
+ echo "WARNING: The distribution could NOT be determined!"
+ fi
+else
+ echo "HINT: Install lsb_release binary, this helps to identify your distribution!"
+fi
+
# Generate a simple changelog template
cat <<EOF > debian/changelog
-linux-upstream ($packageversion) unstable; urgency=low
+linux-upstream ($packageversion) $distribution; urgency=low
* Custom built Linux kernel.
@@ -233,10 +246,10 @@ This is a packacked upstream version of the Linux kernel.
The sources may be found at most Linux ftp sites, including:
ftp://ftp.kernel.org/pub/linux/kernel
-Copyright: 1991 - 2009 Linus Torvalds and others.
+Copyright: 1991 - 2014 Linus Torvalds and others.
The git repository for mainline kernel development is at:
-git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
+git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/sound/pci/hda/hda_controller.c b/sound/pci/hda/hda_controller.c
index 8276a74..0cfc9c8 100644
--- a/sound/pci/hda/hda_controller.c
+++ b/sound/pci/hda/hda_controller.c
@@ -1922,10 +1922,18 @@ int azx_mixer_create(struct azx *chip)
EXPORT_SYMBOL_GPL(azx_mixer_create);
+static bool is_input_stream(struct azx *chip, unsigned char index)
+{
+ return (index >= chip->capture_index_offset &&
+ index < chip->capture_index_offset + chip->capture_streams);
+}
+
/* initialize SD streams */
int azx_init_stream(struct azx *chip)
{
int i;
+ int in_stream_tag = 0;
+ int out_stream_tag = 0;
/* initialize each stream (aka device)
* assign the starting bdl address to each stream (device)
@@ -1938,9 +1946,21 @@ int azx_init_stream(struct azx *chip)
azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
/* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
azx_dev->sd_int_sta_mask = 1 << i;
- /* stream tag: must be non-zero and unique */
azx_dev->index = i;
- azx_dev->stream_tag = i + 1;
+
+ /* stream tag must be unique throughout
+ * the stream direction group,
+ * valid values 1...15
+ * use separate stream tag if the flag
+ * AZX_DCAPS_SEPARATE_STREAM_TAG is used
+ */
+ if (chip->driver_caps & AZX_DCAPS_SEPARATE_STREAM_TAG)
+ azx_dev->stream_tag =
+ is_input_stream(chip, i) ?
+ ++in_stream_tag :
+ ++out_stream_tag;
+ else
+ azx_dev->stream_tag = i + 1;
}
return 0;
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c
index 2bf0b56..d426a0b 100644
--- a/sound/pci/hda/hda_intel.c
+++ b/sound/pci/hda/hda_intel.c
@@ -299,6 +299,9 @@ enum {
AZX_DCAPS_PM_RUNTIME | AZX_DCAPS_I915_POWERWELL |\
AZX_DCAPS_SNOOP_TYPE(SCH))
+#define AZX_DCAPS_INTEL_SKYLAKE \
+ (AZX_DCAPS_INTEL_PCH | AZX_DCAPS_SEPARATE_STREAM_TAG)
+
/* quirks for ATI SB / AMD Hudson */
#define AZX_DCAPS_PRESET_ATI_SB \
(AZX_DCAPS_NO_TCSEL | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB |\
@@ -2027,7 +2030,7 @@ static const struct pci_device_id azx_ids[] = {
.driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH },
/* Sunrise Point-LP */
{ PCI_DEVICE(0x8086, 0x9d70),
- .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_PCH },
+ .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_INTEL_SKYLAKE },
/* Haswell */
{ PCI_DEVICE(0x8086, 0x0a0c),
.driver_data = AZX_DRIVER_HDMI | AZX_DCAPS_INTEL_HASWELL },
diff --git a/sound/pci/hda/hda_priv.h b/sound/pci/hda/hda_priv.h
index aa484fd..166e3e8 100644
--- a/sound/pci/hda/hda_priv.h
+++ b/sound/pci/hda/hda_priv.h
@@ -171,6 +171,7 @@ enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
#define AZX_DCAPS_I915_POWERWELL (1 << 27) /* HSW i915 powerwell support */
#define AZX_DCAPS_CORBRP_SELF_CLEAR (1 << 28) /* CORBRP clears itself after reset */
#define AZX_DCAPS_NO_MSI64 (1 << 29) /* Stick to 32-bit MSIs */
+#define AZX_DCAPS_SEPARATE_STREAM_TAG (1 << 30) /* capture and playback use separate stream tag */
enum {
AZX_SNOOP_TYPE_NONE ,
^ permalink raw reply related
* Re: net.git: Call-trace after "Merge branch 'netlink_multicast'"
From: Sedat Dilek @ 2014-12-28 6:22 UTC (permalink / raw)
To: Johannes Berg; +Cc: netdev@vger.kernel.org, David S. Miller, Fengguang Wu
In-Reply-To: <CA+icZUVkNHBqCn66onJP9i5vfVzHR9mdSFXyiBFyjhkrySrSzQ@mail.gmail.com>
On Sun, Dec 28, 2014 at 6:39 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
[ ... ]
> [ CCing Fengguang Wu who reported the same issue on LKML (see [0]) ]
>
> Was "netlink/genetlink: pass network namespace to bind/unbind" patch
> [1] forgotten in this 'netlink_multicast' merge?
OK, this patch is additional and on top of "[PATCH 0/5]
netlink/genetlink cleanups & multicast improvements"
- Sedat -
[1] http://marc.info/?l=linux-netdev&w=2&r=1&s=netlink&q=b
> I also tested with that patch on top of net.git#master.
> The warning still remains.
>
> I have #if 0-ed the WARN_ON() for now (see attached patch), this makes
> the warning go away for me.
>
> BTW, I looked through the patches listed in [2] but this list seems to
> be truncated.
> Then I looked again at the linux-netdev ML where I found Johannes'
> patch and Dave replied "Applied, thanks Johannes." (see thread in
> [3]).
> Forgot to push out?
>
> - Sedat -
>
> [0] http://marc.info/?l=linux-kernel&m=141972716410805&w=2
> [1] http://patchwork.ozlabs.org/patch/423799/
> [2] http://patchwork.ozlabs.org/project/netdev/list/
> [3] http://marc.info/?t=141936487400002&r=1&w=2
^ permalink raw reply
* Re: [PATCH 23/23 V2 for 3.19] rtlwifi: Fix error when accessing unmapped memory in skb
From: Larry Finger @ 2014-12-28 6:15 UTC (permalink / raw)
To: Kalle Valo
Cc: linux-wireless-u79uwXL29TY76Z2rM5mHXA,
netdev-u79uwXL29TY76Z2rM5mHXA, Stable, Eric Biggers
In-Reply-To: <87a928726w.fsf-HodKDYzPHsUD5k0oWYwrnHL1okKdlPRT@public.gmane.org>
On 12/27/2014 11:50 PM, Kalle Valo wrote:
> Larry Finger <Larry.Finger-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org> writes:
>
>> These drivers use 9100-byte receive buffers, thus allocating an skb requires
>> an O(3) memory allocation. Under heavy memory loads and fragmentation, such
>> a request can fail. Previous versions of the driver have dropped the packet
>> and reused the old buffer; however, the new version introduced a bug in that
>> it released the old buffer before trying to allocate a new one. The previous
>> method is implemented here.
>>
>> Signed-off-by: Larry Finger <Larry.Finger-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
>> Cc: Stable <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> [v3.18]
>> Reported-by: Eric Biggers <ebiggers3-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>> Cc: Eric Biggers <ebiggers3-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>> ---
>>
>> V2 - Fixes an error in the logic of V1. Realtek is working on a change to
>> the RX buffer allocation, but that is likely to be too invasive for
>> a fix to -rc or stable. In the meantime, this will help.
>
> 23/23? Where are patches 1-22? I don't see them in patchwork:
>
> https://patchwork.kernel.org/project/linux-wireless/list/
Sorry. I forgot to edit the subject line. To get git to format that one patch, I
had to generate a total of 23. There is only 1 of 1 that will be submitted.
Larry
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply
* Re: [PATCH 23/23 V2 for 3.19] rtlwifi: Fix error when accessing unmapped memory in skb
From: Kalle Valo @ 2014-12-28 5:50 UTC (permalink / raw)
To: Larry Finger; +Cc: linux-wireless, netdev, Stable, Eric Biggers
In-Reply-To: <1419711457-21469-1-git-send-email-Larry.Finger@lwfinger.net>
Larry Finger <Larry.Finger@lwfinger.net> writes:
> These drivers use 9100-byte receive buffers, thus allocating an skb requires
> an O(3) memory allocation. Under heavy memory loads and fragmentation, such
> a request can fail. Previous versions of the driver have dropped the packet
> and reused the old buffer; however, the new version introduced a bug in that
> it released the old buffer before trying to allocate a new one. The previous
> method is implemented here.
>
> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
> Cc: Stable <stable@vger.kernel.org> [v3.18]
> Reported-by: Eric Biggers <ebiggers3@gmail.com>
> Cc: Eric Biggers <ebiggers3@gmail.com>
> ---
>
> V2 - Fixes an error in the logic of V1. Realtek is working on a change to
> the RX buffer allocation, but that is likely to be too invasive for
> a fix to -rc or stable. In the meantime, this will help.
23/23? Where are patches 1-22? I don't see them in patchwork:
https://patchwork.kernel.org/project/linux-wireless/list/
--
Kalle Valo
^ permalink raw reply
* Re: net.git: Call-trace after "Merge branch 'netlink_multicast'"
From: Sedat Dilek @ 2014-12-28 5:39 UTC (permalink / raw)
To: Johannes Berg; +Cc: netdev@vger.kernel.org, David S. Miller, Fengguang Wu
[-- Attachment #1: Type: text/plain, Size: 4585 bytes --]
On Sat, Dec 27, 2014 at 11:46 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Sat, Dec 27, 2014 at 11:30 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> Hi johill :-),
>>
>> I am seeing here a call-trace after pulling net.git#master on top of upstream.
>>
>> [ 21.095849] ------------[ cut here ]------------
>> [ 21.095862] WARNING: CPU: 1 PID: 1291 at
>> net/netlink/genetlink.c:1011 genl_bind+0xeb/0x100()
>> [ 21.095864] Modules linked in: arc4 iwldvm snd_hda_codec_hdmi
>> uvcvideo snd_hda_codec_realtek mac80211 snd_hda_codec_generic
>> snd_hda_intel videobuf2_vmalloc snd_hda_controller videobuf2_memops
>> snd_hda_codec videobuf2_core bnep rfcomm v4l2_common joydev option
>> i915 usb_wwan videodev snd_hwdep cdc_ether usbserial snd_pcm usbnet
>> snd_seq_midi snd_seq_midi_event iwlwifi snd_rawmidi psmouse btusb
>> snd_seq i2c_algo_bit parport_pc snd_timer drm_kms_helper bluetooth
>> ppdev snd_seq_device serio_raw cfg80211 drm snd samsung_laptop lpc_ich
>> soundcore video wmi intel_rst mac_hid lp parport binfmt_misc
>> hid_generic usbhid hid usb_storage r8169 mii
>> [ 21.095942] CPU: 1 PID: 1291 Comm: acpid Not tainted
>> 3.19.0-rc1-55.2-iniza-small #1
>> [ 21.095945] Hardware name: SAMSUNG ELECTRONICS CO., LTD.
>> 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
>> [ 21.095948] ffffffff81ae3fda ffff8800b8877dc8 ffffffff8175b61c
>> 0000000000000000
>> [ 21.095955] 0000000000000000 ffff8800b8877e08 ffffffff810753da
>> ffffffff82c82f40
>> [ 21.095962] 0000000000000001 ffffffff82c82f40 0000000000000000
>> 0000000000000000
>> [ 21.095967] Call Trace:
>> [ 21.095976] [<ffffffff8175b61c>] dump_stack+0x4c/0x65
>> [ 21.095983] [<ffffffff810753da>] warn_slowpath_common+0x8a/0xc0
>> [ 21.095989] [<ffffffff810754ca>] warn_slowpath_null+0x1a/0x20
>> [ 21.095993] [<ffffffff8169738b>] genl_bind+0xeb/0x100
>> [ 21.095998] [<ffffffff81695d97>] netlink_bind+0xb7/0x280
>> [ 21.096004] [<ffffffff811add89>] ? might_fault+0xb9/0xc0
>> [ 21.096009] [<ffffffff811add2e>] ? might_fault+0x5e/0xc0
>> [ 21.096015] [<ffffffff8164d038>] SYSC_bind+0xb8/0xf0
>> [ 21.096021] [<ffffffff810c2f0d>] ? trace_hardirqs_on+0xd/0x10
>> [ 21.096027] [<ffffffff81025ae5>] ? syscall_trace_enter_phase1+0x105/0x180
>> [ 21.096033] [<ffffffff813b4e1e>] ? trace_hardirqs_on_thunk+0x3a/0x3f
>> [ 21.096038] [<ffffffff8164e65e>] SyS_bind+0xe/0x10
>> [ 21.096044] [<ffffffff817654ed>] system_call_fastpath+0x16/0x1b
>> [ 21.096047] ---[ end trace 7dceb0e985894682 ]---
>>
>> My kernel-config, full dmesg and my patchset on top of Linux
>> v.3.19-rc1 are attached.
>>
>> Please CC me if you need more informations.
>>
>
> It looks like the WARN_ON() in commit "genetlink: pass multicast
> bind/unbind to families" [1] causes this...
>
> [ dmesg ]
> ...
> [ 21.095862] WARNING: CPU: 1 PID: 1291 at
> net/netlink/genetlink.c:1011 genl_bind+0xeb/0x100()
>
> [ patch ]
> ...
> +static int genl_bind(int group)
> +{
> + int i, err;
> + bool found = false;
> +
> + down_read(&cb_lock);
> + for (i = 0; i < GENL_FAM_TAB_SIZE; i++) {
> + struct genl_family *f;
> +
> + list_for_each_entry(f, genl_family_chain(i), family_list) {
> + if (group >= f->mcgrp_offset &&
> + group < f->mcgrp_offset + f->n_mcgrps) {
> + int fam_grp = group - f->mcgrp_offset;
> +
> + if (f->mcast_bind)
> + err = f->mcast_bind(fam_grp);
> + else
> + err = 0;
> + found = true;
> + break;
> + }
> + }
> + }
> + up_read(&cb_lock);
> +
> + if (WARN_ON(!found)) <--- *** Line #1011 ***
> + err = 0;
> +
> + return err;
> +}
>
> Hope this helps.
>
> Regards,
> - Sedat -
>
> [1] http://git.kernel.org/cgit/linux/kernel/git/davem/net.git/commit/net/netlink/genetlink.c?id=c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962
[ CCing Fengguang Wu who reported the same issue on LKML (see [0]) ]
Was "netlink/genetlink: pass network namespace to bind/unbind" patch
[1] forgotten in this 'netlink_multicast' merge?
I also tested with that patch on top of net.git#master.
The warning still remains.
I have #if 0-ed the WARN_ON() for now (see attached patch), this makes
the warning go away for me.
BTW, I looked through the patches listed in [2] but this list seems to
be truncated.
Then I looked again at the linux-netdev ML where I found Johannes'
patch and Dave replied "Applied, thanks Johannes." (see thread in
[3]).
Forgot to push out?
- Sedat -
[0] http://marc.info/?l=linux-kernel&m=141972716410805&w=2
[1] http://patchwork.ozlabs.org/patch/423799/
[2] http://patchwork.ozlabs.org/project/netdev/list/
[3] http://marc.info/?t=141936487400002&r=1&w=2
[-- Attachment #2: 0001-genetlink-Comment-out-WARN_ON-in-genl_bind.patch --]
[-- Type: text/x-diff, Size: 653 bytes --]
From 02730e1fb7ffda68f16abdf310d36fabc4e25154 Mon Sep 17 00:00:00 2001
From: Sedat Dilek <sedat.dilek@gmail.com>
Date: Sat, 27 Dec 2014 17:36:23 +0100
Subject: [PATCH] genetlink: Comment out WARN_ON() in genl_bind()
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
---
net/netlink/genetlink.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/netlink/genetlink.c b/net/netlink/genetlink.c
index 05bf40b..3637369 100644
--- a/net/netlink/genetlink.c
+++ b/net/netlink/genetlink.c
@@ -1008,8 +1008,10 @@ static int genl_bind(int group)
}
up_read(&cb_lock);
+#if 0
if (WARN_ON(!found))
err = 0;
+#endif
return err;
}
--
2.2.1
^ permalink raw reply related
* [genetlink] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind()
From: Fengguang Wu @ 2014-12-28 0:38 UTC (permalink / raw)
To: Johannes Berg; +Cc: LKP, netdev, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 7209 bytes --]
Greetings,
0day kernel testing robot got the below dmesg and the first bad commit is
commit c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962
Author: Johannes Berg <johannes.berg@intel.com>
AuthorDate: Tue Dec 23 20:54:40 2014 +0100
Commit: David S. Miller <davem@davemloft.net>
CommitDate: Sat Dec 27 02:20:23 2014 -0500
genetlink: pass multicast bind/unbind to families
In order to make the newly fixed multicast bind/unbind
functionality in generic netlink, pass them down to the
appropriate family.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
+---------------------------------------------------+------------+------------+------------+
| | 7d68536bed | c380d9a7af | bdf7b239ea |
+---------------------------------------------------+------------+------------+------------+
| boot_successes | 279 | 34 | 0 |
| boot_failures | 0 | 59 | 12 |
| WARNING:at_net/netlink/genetlink.c:#genl_bind() | 0 | 59 | 12 |
| WARNING:at_net/netlink/genetlink.c:#genl_unbind() | 0 | 59 | 12 |
| backtrace:netlink_bind | 0 | 59 | 12 |
| backtrace:SyS_bind | 0 | 59 | 12 |
| backtrace:do_group_exit | 0 | 59 | 12 |
| backtrace:SyS_exit_group | 0 | 59 | 12 |
| backtrace:netlink_setsockopt | 0 | 15 | 4 |
| backtrace:SyS_setsockopt | 0 | 15 | 4 |
+---------------------------------------------------+------------+------------+------------+
/bin/sh: /proc/self/fd/9: No such file or directory
/bin/sh: /proc/self/fd/9: No such file or directory
[ 17.673482] ------------[ cut here ]------------
[ 17.674874] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.676682] CPU: 0 PID: 109 Comm: trinity-main Not tainted 3.18.0-11169-gc380d9a #9
[ 17.678005] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.679450] ffffffff810b55aa 0000000000000000 ffffffff8174d931 ffffffff834a3400
[ 17.680929] 0000000000000000 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.682377] Call Trace:
[ 17.682820] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.683753] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.684801] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.685797] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.686930] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.688149] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.689413] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.690564] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.691875] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.693471] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.694823] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.696182] ---[ end trace f8ae22d84a926b3f ]---
[ 17.697267] ------------[ cut here ]------------
git bisect start bdf7b239ea04ec0372de511b630858d31ce0a27d 97bf6af1f928216fd6c5a66e8a57bfa95a659672 --
git bisect good 353ffe5824fadf421e54334766749a621875bf25 # 17:12 85+ 0 Merge 'iio/testing' into devel-lkp-nhm1-smoke-201412271621
git bisect bad e110b301867f3479fe39b036cd25c8dd9587a348 # 17:12 0- 9 Merge 'vfs/for-linus' into devel-lkp-nhm1-smoke-201412271621
git bisect bad b15800a33d77b5efeb46467961694acc3b9a86f5 # 17:17 9- 5 Merge 'net/master' into devel-lkp-nhm1-smoke-201412271621
git bisect good e88bf5beea5b1cf596aec20cbe298080ee5c56ba # 17:20 93+ 0 Merge 'arm-integrator/realview-dt' into devel-lkp-nhm1-smoke-201412271621
git bisect good ec449f40bb3e19c77f62ddabf7c1fe3ccefece6f # 17:25 93+ 0 openvswitch: Fix MPLS action validation.
git bisect good 5f35227ea34bb616c436d9da47fc325866c428f3 # 17:31 93+ 0 net: Generalize ndo_gso_check to ndo_features_check
git bisect good b63a2a1ff1f7cde479aef091a4b9a9f7238a0657 # 17:37 93+ 0 Merge tag 'wireless-drivers-for-davem-2014-12-26' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers
git bisect good b10dcb3b94010e3ac3951f68789400b1665effb1 # 17:42 93+ 0 netlink: update listeners directly when removing socket
git bisect bad 24f626d3439f61d87fca0c0c07f614fba41a4e92 # 17:45 15- 10 Merge branch 'netlink_multicast'
git bisect bad c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962 # 17:49 13- 33 genetlink: pass multicast bind/unbind to families
git bisect good 7d68536bed72b09de03b07479dd707c5831b3b94 # 17:56 93+ 0 netlink: call unbind when releasing socket
# first bad commit: [c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962] genetlink: pass multicast bind/unbind to families
git bisect good 7d68536bed72b09de03b07479dd707c5831b3b94 # 17:59 279+ 0 netlink: call unbind when releasing socket
# extra tests with DEBUG_INFO
git bisect good c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962 # 18:08 279+ 0 genetlink: pass multicast bind/unbind to families
# extra tests on HEAD of linux-devel/devel-lkp-nhm1-smoke-201412271621
git bisect bad bdf7b239ea04ec0372de511b630858d31ce0a27d # 18:08 0- 12 0day head guard for 'devel-lkp-nhm1-smoke-201412271621'
# extra tests on tree/branch linux-devel/devel-hourly-2014122715
git bisect bad 462a586c1d24c1935547379c98d99e96d83c7b8f # 18:55 7- 29 0day head guard for 'devel-hourly-2014122715'
# extra tests on tree/branch linus/master
git bisect good 58628a7831edac5f7a13baa9d9320c758c5204c8 # 19:02 279+ 0 Merge branch 'parisc-3.19-1' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux
# extra tests on tree/branch next/master
git bisect good 2fb8bdb2ca2808ce901fdfc1eda31bcb488156d0 # 19:07 279+ 0 Add linux-next specific files for 20141226
This script may reproduce the error.
----------------------------------------------------------------------------
#!/bin/bash
kernel=$1
initrd=quantal-core-x86_64.cgz
wget --no-clobber https://github.com/fengguang/reproduce-kernel-bug/raw/master/initrd/$initrd
kvm=(
qemu-system-x86_64
-cpu kvm64
-enable-kvm
-kernel $kernel
-initrd $initrd
-m 320
-smp 2
-net nic,vlan=1,model=e1000
-net user,vlan=1
-boot order=nc
-no-reboot
-watchdog i6300esb
-rtc base=localtime
-serial stdio
-display none
-monitor null
)
append=(
hung_task_panic=1
earlyprintk=ttyS0,115200
debug
apic=debug
sysrq_always_enabled
rcupdate.rcu_cpu_stall_timeout=100
panic=-1
softlockup_panic=1
nmi_watchdog=panic
oops=panic
load_ramdisk=2
prompt_ramdisk=0
console=ttyS0,115200
console=tty0
vga=normal
root=/dev/ram0
rw
drbd.minor_count=8
)
"${kvm[@]}" --append "${append[*]}"
----------------------------------------------------------------------------
Thanks,
Fengguang
[-- Attachment #2: dmesg-quantal-client7-25:20141227174912:x86_64-randconfig-n0-12271619:3.18.0-11169-gc380d9a:9 --]
[-- Type: text/plain, Size: 263417 bytes --]
early console in setup code
early console in decompress_kernel
Decompressing Linux... Parsing ELF... done.
Booting the kernel.
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.18.0-11169-gc380d9a (kbuild@lkp-nhm1) (gcc version 4.9.1 (Debian 4.9.1-19) ) #9 Sat Dec 27 17:44:15 CST 2014
[ 0.000000] Command line: hung_task_panic=1 earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=-1 softlockup_panic=1 nmi_watchdog=panic oops=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal root=/dev/ram0 rw link=/kbuild-tests/run-queue/kvm/x86_64-randconfig-n0-12271619/linux-devel:devel-lkp-nhm1-smoke-201412271621:c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962:bisect-linux-1/.vmlinuz-c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962-20141227174430-26-client7 branch=linux-devel/devel-lkp-nhm1-smoke-201412271621 BOOT_IMAGE=/kernel/x86_64-randconfig-n0-12271619/c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962/vmlinuz-3.18.0-11169-gc380d9a drbd.minor_count=8
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000013fdffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000013fe0000-0x0000000013ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[ 0.000000] bootconsole [earlyser0] enabled
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x13fe0 max_arch_pfn = 0x400000000
[ 0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
[ 0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[ 0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
[ 0.000000] found SMP MP-table at [mem 0x000f0eb0-0x000f0ebf] mapped at [ffff8800000f0eb0]
[ 0.000000] mpc: f0ec0-f0fa4
[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x034a8000, 0x034a8fff] PGTABLE
[ 0.000000] BRK [0x034a9000, 0x034a9fff] PGTABLE
[ 0.000000] BRK [0x034aa000, 0x034aafff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x12600000-0x127fffff]
[ 0.000000] [mem 0x12600000-0x127fffff] page 4k
[ 0.000000] BRK [0x034ab000, 0x034abfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x10000000-0x125fffff]
[ 0.000000] [mem 0x10000000-0x125fffff] page 4k
[ 0.000000] BRK [0x034ac000, 0x034acfff] PGTABLE
[ 0.000000] BRK [0x034ad000, 0x034adfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x0fffffff]
[ 0.000000] [mem 0x00100000-0x0fffffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x12800000-0x13fdffff]
[ 0.000000] [mem 0x12800000-0x13fdffff] page 4k
[ 0.000000] RAMDISK: [mem 0x12925000-0x13fd7fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0C90 000014 (v00 BOCHS )
[ 0.000000] ACPI: RSDT 0x0000000013FE18BD 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: FACP 0x0000000013FE0B37 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)
[ 0.000000] ACPI: DSDT 0x0000000013FE0040 000AF7 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: FACS 0x0000000013FE0000 000040
[ 0.000000] ACPI: SSDT 0x0000000013FE0BAB 000C5A (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: APIC 0x0000000013FE1805 000080 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)
[ 0.000000] ACPI: HPET 0x0000000013FE1885 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] mapped APIC to ffffffffff5fc000 ( fee00000)
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: cpu 0, msr 0:13fdf001, primary cpu clock
[ 0.000000] [ffffea0000000000-ffffea00005fffff] PMD -> [ffff880011800000-ffff880011dfffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0x13fdffff]
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009efff]
[ 0.000000] node 0: [mem 0x00100000-0x13fdffff]
[ 0.000000] Initmem setup node 0 [mem 0x00001000-0x13fdffff]
[ 0.000000] On node 0 totalpages: 81790
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3998 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 1216 pages used for memmap
[ 0.000000] DMA32 zone: 77792 pages, LIFO batch:15
[ 0.000000] ACPI: PM-Timer IO Port: 0x608
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] mapped APIC to ffffffffff5fc000 ( fee00000)
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 1/0x1 ignored.
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 0, APIC INT 02
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 05, APIC ID 0, APIC INT 05
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 09, APIC ID 0, APIC INT 09
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 0a, APIC ID 0, APIC INT 0a
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 0b, APIC ID 0, APIC INT 0b
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 0, APIC INT 01
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 0, APIC INT 03
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 0, APIC INT 04
[ 0.000000] ACPI: IRQ5 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 0, APIC INT 06
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 0, APIC INT 07
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 0, APIC INT 08
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] ACPI: IRQ10 used by override.
[ 0.000000] ACPI: IRQ11 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 0, APIC INT 0c
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 0, APIC INT 0d
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 0, APIC INT 0e
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 0, APIC INT 0f
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] mapped IOAPIC to ffffffffff5fb000 (fec00000)
[ 0.000000] KVM setup async PF for cpu 0
[ 0.000000] kvm-stealtime: cpu 0, msr 1e4c040
[ 0.000000] e820: [mem 0x14000000-0xfeffbfff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on KVM
[ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 80489
[ 0.000000] Kernel command line: hung_task_panic=1 earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=-1 softlockup_panic=1 nmi_watchdog=panic oops=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal root=/dev/ram0 rw link=/kbuild-tests/run-queue/kvm/x86_64-randconfig-n0-12271619/linux-devel:devel-lkp-nhm1-smoke-201412271621:c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962:bisect-linux-1/.vmlinuz-c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962-20141227174430-26-client7 branch=linux-devel/devel-lkp-nhm1-smoke-201412271621 BOOT_IMAGE=/kernel/x86_64-randconfig-n0-12271619/c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962/vmlinuz-3.18.0-11169-gc380d9a drbd.minor_count=8
[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.000000] Memory: 258612K/327160K available (7600K kernel code, 5127K rwdata, 4848K rodata, 824K init, 17244K bss, 68548K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] NR_IRQS:4352 nr_irqs:256 0
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.18.0-11169-gc380d9a (kbuild@lkp-nhm1) (gcc version 4.9.1 (Debian 4.9.1-19) ) #9 Sat Dec 27 17:44:15 CST 2014
[ 0.000000] Command line: hung_task_panic=1 earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=-1 softlockup_panic=1 nmi_watchdog=panic oops=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal root=/dev/ram0 rw link=/kbuild-tests/run-queue/kvm/x86_64-randconfig-n0-12271619/linux-devel:devel-lkp-nhm1-smoke-201412271621:c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962:bisect-linux-1/.vmlinuz-c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962-20141227174430-26-client7 branch=linux-devel/devel-lkp-nhm1-smoke-201412271621 BOOT_IMAGE=/kernel/x86_64-randconfig-n0-12271619/c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962/vmlinuz-3.18.0-11169-gc380d9a drbd.minor_count=8
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000013fdffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000013fe0000-0x0000000013ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[ 0.000000] bootconsole [earlyser0] enabled
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x13fe0 max_arch_pfn = 0x400000000
[ 0.000000] Scan for SMP in [mem 0x00000000-0x000003ff]
[ 0.000000] Scan for SMP in [mem 0x0009fc00-0x0009ffff]
[ 0.000000] Scan for SMP in [mem 0x000f0000-0x000fffff]
[ 0.000000] found SMP MP-table at [mem 0x000f0eb0-0x000f0ebf] mapped at [ffff8800000f0eb0]
[ 0.000000] mpc: f0ec0-f0fa4
[ 0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[ 0.000000] [mem 0x00000000-0x000fffff] page 4k
[ 0.000000] BRK [0x034a8000, 0x034a8fff] PGTABLE
[ 0.000000] BRK [0x034a9000, 0x034a9fff] PGTABLE
[ 0.000000] BRK [0x034aa000, 0x034aafff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x12600000-0x127fffff]
[ 0.000000] [mem 0x12600000-0x127fffff] page 4k
[ 0.000000] BRK [0x034ab000, 0x034abfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x10000000-0x125fffff]
[ 0.000000] [mem 0x10000000-0x125fffff] page 4k
[ 0.000000] BRK [0x034ac000, 0x034acfff] PGTABLE
[ 0.000000] BRK [0x034ad000, 0x034adfff] PGTABLE
[ 0.000000] init_memory_mapping: [mem 0x00100000-0x0fffffff]
[ 0.000000] [mem 0x00100000-0x0fffffff] page 4k
[ 0.000000] init_memory_mapping: [mem 0x12800000-0x13fdffff]
[ 0.000000] [mem 0x12800000-0x13fdffff] page 4k
[ 0.000000] RAMDISK: [mem 0x12925000-0x13fd7fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0C90 000014 (v00 BOCHS )
[ 0.000000] ACPI: RSDT 0x0000000013FE18BD 000034 (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: FACP 0x0000000013FE0B37 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001)
[ 0.000000] ACPI: DSDT 0x0000000013FE0040 000AF7 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: FACS 0x0000000013FE0000 000040
[ 0.000000] ACPI: SSDT 0x0000000013FE0BAB 000C5A (v01 BOCHS BXPCSSDT 00000001 BXPC 00000001)
[ 0.000000] ACPI: APIC 0x0000000013FE1805 000080 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001)
[ 0.000000] ACPI: HPET 0x0000000013FE1885 000038 (v01 BOCHS BXPCHPET 00000001 BXPC 00000001)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] mapped APIC to ffffffffff5fc000 ( fee00000)
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: cpu 0, msr 0:13fdf001, primary cpu clock
[ 0.000000] [ffffea0000000000-ffffea00005fffff] PMD -> [ffff880011800000-ffff880011dfffff] on node 0
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00001000-0x00ffffff]
[ 0.000000] DMA32 [mem 0x01000000-0x13fdffff]
[ 0.000000] Normal empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00001000-0x0009efff]
[ 0.000000] node 0: [mem 0x00100000-0x13fdffff]
[ 0.000000] Initmem setup node 0 [mem 0x00001000-0x13fdffff]
[ 0.000000] On node 0 totalpages: 81790
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 21 pages reserved
[ 0.000000] DMA zone: 3998 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 1216 pages used for memmap
[ 0.000000] DMA32 zone: 77792 pages, LIFO batch:15
[ 0.000000] ACPI: PM-Timer IO Port: 0x608
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] mapped APIC to ffffffffff5fc000 ( fee00000)
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[ 0.000000] ACPI: NR_CPUS/possible_cpus limit of 1 reached. Processor 1/0x1 ignored.
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 00, APIC ID 0, APIC INT 02
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 05, APIC ID 0, APIC INT 05
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 09, APIC ID 0, APIC INT 09
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 0a, APIC ID 0, APIC INT 0a
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[ 0.000000] Int: type 0, pol 1, trig 3, bus 00, IRQ 0b, APIC ID 0, APIC INT 0b
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 01, APIC ID 0, APIC INT 01
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 03, APIC ID 0, APIC INT 03
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 04, APIC ID 0, APIC INT 04
[ 0.000000] ACPI: IRQ5 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 06, APIC ID 0, APIC INT 06
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 07, APIC ID 0, APIC INT 07
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 08, APIC ID 0, APIC INT 08
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] ACPI: IRQ10 used by override.
[ 0.000000] ACPI: IRQ11 used by override.
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0c, APIC ID 0, APIC INT 0c
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0d, APIC ID 0, APIC INT 0d
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0e, APIC ID 0, APIC INT 0e
[ 0.000000] Int: type 0, pol 0, trig 0, bus 00, IRQ 0f, APIC ID 0, APIC INT 0f
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] mapped IOAPIC to ffffffffff5fb000 (fec00000)
[ 0.000000] KVM setup async PF for cpu 0
[ 0.000000] kvm-stealtime: cpu 0, msr 1e4c040
[ 0.000000] e820: [mem 0x14000000-0xfeffbfff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on KVM
[ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 80489
[ 0.000000] Kernel command line: hung_task_panic=1 earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=-1 softlockup_panic=1 nmi_watchdog=panic oops=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal root=/dev/ram0 rw link=/kbuild-tests/run-queue/kvm/x86_64-randconfig-n0-12271619/linux-devel:devel-lkp-nhm1-smoke-201412271621:c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962:bisect-linux-1/.vmlinuz-c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962-20141227174430-26-client7 branch=linux-devel/devel-lkp-nhm1-smoke-201412271621 BOOT_IMAGE=/kernel/x86_64-randconfig-n0-12271619/c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962/vmlinuz-3.18.0-11169-gc380d9a drbd.minor_count=8
[ 0.000000] PID hash table entries: 2048 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.000000] Memory: 258612K/327160K available (7600K kernel code, 5127K rwdata, 4848K rodata, 824K init, 17244K bss, 68548K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] NR_IRQS:4352 nr_irqs:256 0
[ 0.000000] console [ttyS0] enabled
[ 0.000000] console [ttyS0] enabled
[ 0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[ 0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[ 0.000000] ... MAX_LOCKDEP_SUBCLASSES: 8
[ 0.000000] ... MAX_LOCKDEP_SUBCLASSES: 8
[ 0.000000] ... MAX_LOCK_DEPTH: 48
[ 0.000000] ... MAX_LOCK_DEPTH: 48
[ 0.000000] ... MAX_LOCKDEP_KEYS: 8191
[ 0.000000] ... MAX_LOCKDEP_KEYS: 8191
[ 0.000000] ... CLASSHASH_SIZE: 4096
[ 0.000000] ... CLASSHASH_SIZE: 4096
[ 0.000000] ... MAX_LOCKDEP_ENTRIES: 32768
[ 0.000000] ... MAX_LOCKDEP_ENTRIES: 32768
[ 0.000000] ... MAX_LOCKDEP_CHAINS: 65536
[ 0.000000] ... MAX_LOCKDEP_CHAINS: 65536
[ 0.000000] ... CHAINHASH_SIZE: 32768
[ 0.000000] ... CHAINHASH_SIZE: 32768
[ 0.000000] memory used by lock dependency info: 8671 kB
[ 0.000000] memory used by lock dependency info: 8671 kB
[ 0.000000] per task-struct memory footprint: 2688 bytes
[ 0.000000] per task-struct memory footprint: 2688 bytes
[ 0.000000] ------------------------
[ 0.000000] ------------------------
[ 0.000000] | Locking API testsuite:
[ 0.000000] | Locking API testsuite:
[ 0.000000] ----------------------------------------------------------------------------
[ 0.000000] ----------------------------------------------------------------------------
[ 0.000000] | spin |wlock |rlock |mutex | wsem | rsem |
[ 0.000000] | spin |wlock |rlock |mutex | wsem | rsem |
[ 0.000000] --------------------------------------------------------------------------
[ 0.000000] --------------------------------------------------------------------------
[ 0.000000] A-A deadlock:
[ 0.000000] A-A deadlock: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] A-B-B-A deadlock:
[ 0.000000] A-B-B-A deadlock: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] A-B-B-C-C-A deadlock:
[ 0.000000] A-B-B-C-C-A deadlock: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] A-B-C-A-B-C deadlock:
[ 0.000000] A-B-C-A-B-C deadlock: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] A-B-B-C-C-D-D-A deadlock:
[ 0.000000] A-B-B-C-C-D-D-A deadlock: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] A-B-C-D-B-D-D-A deadlock:
[ 0.000000] A-B-C-D-B-D-D-A deadlock: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] A-B-C-D-B-C-D-A deadlock:
[ 0.000000] A-B-C-D-B-C-D-A deadlock: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] double unlock:
[ 0.000000] double unlock: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] initialize held:
[ 0.000000] initialize held: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] bad unlock order:
[ 0.000000] bad unlock order: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] --------------------------------------------------------------------------
[ 0.000000] --------------------------------------------------------------------------
[ 0.000000] recursive read-lock:
[ 0.000000] recursive read-lock: | | ok | ok | | | ok | ok |
[ 0.000000] recursive read-lock #2:
[ 0.000000] recursive read-lock #2: | | ok | ok | | | ok | ok |
[ 0.000000] mixed read-write-lock:
[ 0.000000] mixed read-write-lock: | | ok | ok | | | ok | ok |
[ 0.000000] mixed write-read-lock:
[ 0.000000] mixed write-read-lock: | | ok | ok | | | ok | ok |
[ 0.000000] --------------------------------------------------------------------------
[ 0.000000] --------------------------------------------------------------------------
[ 0.000000] hard-irqs-on + irq-safe-A/12:
[ 0.000000] hard-irqs-on + irq-safe-A/12: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-irqs-on + irq-safe-A/12:
[ 0.000000] soft-irqs-on + irq-safe-A/12: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-irqs-on + irq-safe-A/21:
[ 0.000000] hard-irqs-on + irq-safe-A/21: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-irqs-on + irq-safe-A/21:
[ 0.000000] soft-irqs-on + irq-safe-A/21: ok | ok | ok | ok | ok | ok |
[ 0.000000] sirq-safe-A => hirqs-on/12:
[ 0.000000] sirq-safe-A => hirqs-on/12: ok | ok | ok | ok | ok | ok |
[ 0.000000] sirq-safe-A => hirqs-on/21:
[ 0.000000] sirq-safe-A => hirqs-on/21: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + irqs-on/12:
[ 0.000000] hard-safe-A + irqs-on/12: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + irqs-on/12:
[ 0.000000] soft-safe-A + irqs-on/12: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + irqs-on/21:
[ 0.000000] hard-safe-A + irqs-on/21: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + irqs-on/21:
[ 0.000000] soft-safe-A + irqs-on/21: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #1/123:
[ 0.000000] hard-safe-A + unsafe-B #1/123: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #1/123:
[ 0.000000] soft-safe-A + unsafe-B #1/123: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #1/132:
[ 0.000000] hard-safe-A + unsafe-B #1/132: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #1/132:
[ 0.000000] soft-safe-A + unsafe-B #1/132: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #1/213:
[ 0.000000] hard-safe-A + unsafe-B #1/213: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #1/213:
[ 0.000000] soft-safe-A + unsafe-B #1/213: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #1/231:
[ 0.000000] hard-safe-A + unsafe-B #1/231: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #1/231:
[ 0.000000] soft-safe-A + unsafe-B #1/231: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #1/312:
[ 0.000000] hard-safe-A + unsafe-B #1/312: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #1/312:
[ 0.000000] soft-safe-A + unsafe-B #1/312: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #1/321:
[ 0.000000] hard-safe-A + unsafe-B #1/321: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #1/321:
[ 0.000000] soft-safe-A + unsafe-B #1/321: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #2/123:
[ 0.000000] hard-safe-A + unsafe-B #2/123: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #2/123:
[ 0.000000] soft-safe-A + unsafe-B #2/123: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #2/132:
[ 0.000000] hard-safe-A + unsafe-B #2/132: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #2/132:
[ 0.000000] soft-safe-A + unsafe-B #2/132: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #2/213:
[ 0.000000] hard-safe-A + unsafe-B #2/213: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #2/213:
[ 0.000000] soft-safe-A + unsafe-B #2/213: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #2/231:
[ 0.000000] hard-safe-A + unsafe-B #2/231: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #2/231:
[ 0.000000] soft-safe-A + unsafe-B #2/231: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #2/312:
[ 0.000000] hard-safe-A + unsafe-B #2/312: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #2/312:
[ 0.000000] soft-safe-A + unsafe-B #2/312: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-safe-A + unsafe-B #2/321:
[ 0.000000] hard-safe-A + unsafe-B #2/321: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-safe-A + unsafe-B #2/321:
[ 0.000000] soft-safe-A + unsafe-B #2/321: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-irq lock-inversion/123:
[ 0.000000] hard-irq lock-inversion/123: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-irq lock-inversion/123:
[ 0.000000] soft-irq lock-inversion/123: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-irq lock-inversion/132:
[ 0.000000] hard-irq lock-inversion/132: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-irq lock-inversion/132:
[ 0.000000] soft-irq lock-inversion/132: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-irq lock-inversion/213:
[ 0.000000] hard-irq lock-inversion/213: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-irq lock-inversion/213:
[ 0.000000] soft-irq lock-inversion/213: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-irq lock-inversion/231:
[ 0.000000] hard-irq lock-inversion/231: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-irq lock-inversion/231:
[ 0.000000] soft-irq lock-inversion/231: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-irq lock-inversion/312:
[ 0.000000] hard-irq lock-inversion/312: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-irq lock-inversion/312:
[ 0.000000] soft-irq lock-inversion/312: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-irq lock-inversion/321:
[ 0.000000] hard-irq lock-inversion/321: ok | ok | ok | ok | ok | ok |
[ 0.000000] soft-irq lock-inversion/321:
[ 0.000000] soft-irq lock-inversion/321: ok | ok | ok | ok | ok | ok |
[ 0.000000] hard-irq read-recursion/123:
[ 0.000000] hard-irq read-recursion/123: ok | ok |
[ 0.000000] soft-irq read-recursion/123:
[ 0.000000] soft-irq read-recursion/123: ok | ok |
[ 0.000000] hard-irq read-recursion/132:
[ 0.000000] hard-irq read-recursion/132: ok | ok |
[ 0.000000] soft-irq read-recursion/132:
[ 0.000000] soft-irq read-recursion/132: ok | ok |
[ 0.000000] hard-irq read-recursion/213:
[ 0.000000] hard-irq read-recursion/213: ok | ok |
[ 0.000000] soft-irq read-recursion/213:
[ 0.000000] soft-irq read-recursion/213: ok | ok |
[ 0.000000] hard-irq read-recursion/231:
[ 0.000000] hard-irq read-recursion/231: ok | ok |
[ 0.000000] soft-irq read-recursion/231:
[ 0.000000] soft-irq read-recursion/231: ok | ok |
[ 0.000000] hard-irq read-recursion/312:
[ 0.000000] hard-irq read-recursion/312: ok | ok |
[ 0.000000] soft-irq read-recursion/312:
[ 0.000000] soft-irq read-recursion/312: ok | ok |
[ 0.000000] hard-irq read-recursion/321:
[ 0.000000] hard-irq read-recursion/321: ok | ok |
[ 0.000000] soft-irq read-recursion/321:
[ 0.000000] soft-irq read-recursion/321: ok | ok |
[ 0.000000] --------------------------------------------------------------------------
[ 0.000000] --------------------------------------------------------------------------
[ 0.000000] | Wound/wait tests |
[ 0.000000] | Wound/wait tests |
[ 0.000000] ---------------------
[ 0.000000] ---------------------
[ 0.000000] ww api failures:
[ 0.000000] ww api failures: ok | ok | ok | ok | ok | ok |
[ 0.000000] ww contexts mixing:
[ 0.000000] ww contexts mixing: ok | ok | ok | ok |
[ 0.000000] finishing ww context:
[ 0.000000] finishing ww context: ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] locking mismatches:
[ 0.000000] locking mismatches: ok | ok | ok | ok | ok | ok |
[ 0.000000] EDEADLK handling:
[ 0.000000] EDEADLK handling: ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok | ok |
[ 0.000000] spinlock nest unlocked:
[ 0.000000] spinlock nest unlocked: ok | ok |
[ 0.000000] -----------------------------------------------------
[ 0.000000] -----------------------------------------------------
[ 0.000000] |block | try |context|
[ 0.000000] |block | try |context|
[ 0.000000] -----------------------------------------------------
[ 0.000000] -----------------------------------------------------
[ 0.000000] context:
[ 0.000000] context: ok | ok | ok | ok | ok | ok |
[ 0.000000] try:
[ 0.000000] try: ok | ok | ok | ok | ok | ok |
[ 0.000000] block:
[ 0.000000] block: ok | ok | ok | ok | ok | ok |
[ 0.000000] spinlock:
[ 0.000000] spinlock: ok | ok | ok | ok | ok | ok |
[ 0.000000] -------------------------------------------------------
[ 0.000000] -------------------------------------------------------
[ 0.000000] Good, all 253 testcases passed! |
[ 0.000000] Good, all 253 testcases passed! |
[ 0.000000] ---------------------------------
[ 0.000000] ---------------------------------
[ 0.000000] hpet clockevent registered
[ 0.000000] hpet clockevent registered
[ 0.000000] tsc: Detected 2925.998 MHz processor
[ 0.000000] tsc: Detected 2925.998 MHz processor
[ 0.008000] Calibrating delay loop (skipped) preset value..
[ 0.008000] Calibrating delay loop (skipped) preset value.. 5851.99 BogoMIPS (lpj=11703992)
5851.99 BogoMIPS (lpj=11703992)
[ 0.008832] pid_max: default: 32768 minimum: 301
[ 0.008832] pid_max: default: 32768 minimum: 301
[ 0.010369] ACPI: Core revision 20141107
[ 0.010369] ACPI: Core revision 20141107
[ 0.018143] ACPI:
[ 0.018143] ACPI: All ACPI Tables successfully acquiredAll ACPI Tables successfully acquired
[ 0.020061] Security Framework initialized
[ 0.020061] Security Framework initialized
[ 0.021315] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
[ 0.021315] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes)
[ 0.023255] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
[ 0.023255] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes)
[ 0.024922] Initializing cgroup subsys devices
[ 0.024922] Initializing cgroup subsys devices
[ 0.026207] Initializing cgroup subsys perf_event
[ 0.026207] Initializing cgroup subsys perf_event
[ 0.028036] Initializing cgroup subsys debug
[ 0.028036] Initializing cgroup subsys debug
[ 0.029543] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.029543] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.029543] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.029543] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.032011] CPU:
[ 0.032011] CPU: Intel Intel Common KVM processorCommon KVM processor (fam: 0f, model: 06 (fam: 0f, model: 06, stepping: 01)
, stepping: 01)
[ 0.040588] Performance Events:
[ 0.040588] Performance Events: unsupported Netburst CPU model 6 unsupported Netburst CPU model 6 no PMU driver, software events only.
no PMU driver, software events only.
[ 0.044396] Getting VERSION: 1050014
[ 0.044396] Getting VERSION: 1050014
[ 0.045468] Getting VERSION: 1050014
[ 0.045468] Getting VERSION: 1050014
[ 0.046737] Getting ID: 0
[ 0.046737] Getting ID: 0
[ 0.047532] Getting ID: ff000000
[ 0.047532] Getting ID: ff000000
[ 0.048034] Getting LVT0: 8700
[ 0.048034] Getting LVT0: 8700
[ 0.048980] Getting LVT1: 8400
[ 0.048980] Getting LVT1: 8400
[ 0.050115] enabled ExtINT on CPU#0
[ 0.050115] enabled ExtINT on CPU#0
[ 0.053076] ENABLING IO-APIC IRQs
[ 0.053076] ENABLING IO-APIC IRQs
[ 0.054139] NMI watchdog: disabled (cpu0): hardware events not enabled
[ 0.054139] NMI watchdog: disabled (cpu0): hardware events not enabled
[ 0.056139] init IO_APIC IRQs
[ 0.056139] init IO_APIC IRQs
[ 0.056993] apic 0 pin 0 not connected
[ 0.056993] apic 0 pin 0 not connected
[ 0.058130] IOAPIC[0]: Set routing entry (0-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[ 0.058130] IOAPIC[0]: Set routing entry (0-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[ 0.060073] IOAPIC[0]: Set routing entry (0-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[ 0.060073] IOAPIC[0]: Set routing entry (0-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[ 0.062407] IOAPIC[0]: Set routing entry (0-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[ 0.062407] IOAPIC[0]: Set routing entry (0-2 -> 0x30 -> IRQ 0 Mode:0 Active:0 Dest:1)
[ 0.064055] IOAPIC[0]: Set routing entry (0-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:1)
[ 0.064055] IOAPIC[0]: Set routing entry (0-3 -> 0x33 -> IRQ 3 Mode:0 Active:0 Dest:1)
[ 0.068037] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[ 0.068037] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[ 0.070616] IOAPIC[0]: Set routing entry (0-5 -> 0x35 -> IRQ 5 Mode:1 Active:0 Dest:1)
[ 0.070616] IOAPIC[0]: Set routing entry (0-5 -> 0x35 -> IRQ 5 Mode:1 Active:0 Dest:1)
[ 0.072045] IOAPIC[0]: Set routing entry (0-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[ 0.072045] IOAPIC[0]: Set routing entry (0-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[ 0.076035] IOAPIC[0]: Set routing entry (0-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[ 0.076035] IOAPIC[0]: Set routing entry (0-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[ 0.078395] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[ 0.078395] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[ 0.080045] IOAPIC[0]: Set routing entry (0-9 -> 0x39 -> IRQ 9 Mode:1 Active:0 Dest:1)
[ 0.080045] IOAPIC[0]: Set routing entry (0-9 -> 0x39 -> IRQ 9 Mode:1 Active:0 Dest:1)
[ 0.084040] IOAPIC[0]: Set routing entry (0-10 -> 0x3a -> IRQ 10 Mode:1 Active:0 Dest:1)
[ 0.084040] IOAPIC[0]: Set routing entry (0-10 -> 0x3a -> IRQ 10 Mode:1 Active:0 Dest:1)
[ 0.086728] IOAPIC[0]: Set routing entry (0-11 -> 0x3b -> IRQ 11 Mode:1 Active:0 Dest:1)
[ 0.086728] IOAPIC[0]: Set routing entry (0-11 -> 0x3b -> IRQ 11 Mode:1 Active:0 Dest:1)
[ 0.088041] IOAPIC[0]: Set routing entry (0-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[ 0.088041] IOAPIC[0]: Set routing entry (0-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[ 0.092047] IOAPIC[0]: Set routing entry (0-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:1)
[ 0.092047] IOAPIC[0]: Set routing entry (0-13 -> 0x3d -> IRQ 13 Mode:0 Active:0 Dest:1)
[ 0.096045] IOAPIC[0]: Set routing entry (0-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:1)
[ 0.096045] IOAPIC[0]: Set routing entry (0-14 -> 0x3e -> IRQ 14 Mode:0 Active:0 Dest:1)
[ 0.098600] IOAPIC[0]: Set routing entry (0-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:1)
[ 0.098600] IOAPIC[0]: Set routing entry (0-15 -> 0x3f -> IRQ 15 Mode:0 Active:0 Dest:1)
[ 0.100040] apic 0 pin 16 not connected
[ 0.100040] apic 0 pin 16 not connected
[ 0.101265] apic 0 pin 17 not connected
[ 0.101265] apic 0 pin 17 not connected
[ 0.102493] apic 0 pin 18 not connected
[ 0.102493] apic 0 pin 18 not connected
[ 0.104008] apic 0 pin 19 not connected
[ 0.104008] apic 0 pin 19 not connected
[ 0.105436] apic 0 pin 20 not connected
[ 0.105436] apic 0 pin 20 not connected
[ 0.106703] apic 0 pin 21 not connected
[ 0.106703] apic 0 pin 21 not connected
[ 0.108006] apic 0 pin 22 not connected
[ 0.108006] apic 0 pin 22 not connected
[ 0.109181] apic 0 pin 23 not connected
[ 0.109181] apic 0 pin 23 not connected
[ 0.110556] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.110556] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.112023] Using local APIC timer interrupts.
[ 0.112023] calibrating APIC timer ...
[ 0.112023] Using local APIC timer interrupts.
[ 0.112023] calibrating APIC timer ...
[ 0.120000] ... lapic delta = 6248603
[ 0.120000] ... lapic delta = 6248603
[ 0.120000] ... PM-Timer delta = 357857
[ 0.120000] ... PM-Timer delta = 357857
[ 0.120000] ... PM-Timer result ok
[ 0.120000] ... PM-Timer result ok
[ 0.120000] ..... delta 6248603
[ 0.120000] ..... delta 6248603
[ 0.120000] ..... mult: 268375455
[ 0.120000] ..... mult: 268375455
[ 0.120000] ..... calibration result: 3999105
[ 0.120000] ..... calibration result: 3999105
[ 0.120000] ..... CPU clock speed is 2925.0865 MHz.
[ 0.120000] ..... CPU clock speed is 2925.0865 MHz.
[ 0.120000] ..... host bus clock speed is 999.3105 MHz.
[ 0.120000] ..... host bus clock speed is 999.3105 MHz.
[ 0.120915] gcov: version magic: 0x3430392a
[ 0.120915] gcov: version magic: 0x3430392a
[ 0.126240] prandom: seed boundary self test passed
[ 0.126240] prandom: seed boundary self test passed
[ 0.131106] prandom: 100 self tests passed
[ 0.131106] prandom: 100 self tests passed
[ 0.132049] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 0.132049] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 0.137075] RTC time: 17:47:56, date: 12/27/14
[ 0.137075] RTC time: 17:47:56, date: 12/27/14
[ 0.139495] NET: Registered protocol family 16
[ 0.139495] NET: Registered protocol family 16
[ 0.144054] cpuidle: using governor ladder
[ 0.144054] cpuidle: using governor ladder
[ 0.145685] cpuidle: using governor menu
[ 0.145685] cpuidle: using governor menu
[ 0.147839] ACPI: bus type PCI registered
[ 0.147839] ACPI: bus type PCI registered
[ 0.148135] PCI: Using configuration type 1 for base access
[ 0.148135] PCI: Using configuration type 1 for base access
[ 0.173353] Running resizable hashtable tests...
[ 0.173353] Running resizable hashtable tests...
[ 0.175618] Adding 2048 keys
[ 0.175618] Adding 2048 keys
[ 0.177129] Traversal complete: counted=2048, nelems=2048, entries=2048
[ 0.177129] Traversal complete: counted=2048, nelems=2048, entries=2048
[ 0.180233] Table expansion iteration 0...
[ 0.180233] Table expansion iteration 0...
[ 0.182598] Verifying lookups...
[ 0.182598] Verifying lookups...
[ 0.184191] Table expansion iteration 1...
[ 0.184191] Table expansion iteration 1...
[ 0.186416] Verifying lookups...
[ 0.186416] Verifying lookups...
[ 0.188251] Table expansion iteration 2...
[ 0.188251] Table expansion iteration 2...
[ 0.192269] Verifying lookups...
[ 0.192269] Verifying lookups...
[ 0.193943] Table expansion iteration 3...
[ 0.193943] Table expansion iteration 3...
[ 0.196931] Verifying lookups...
[ 0.196931] Verifying lookups...
[ 0.198673] Table shrinkage iteration 0...
[ 0.198673] Table shrinkage iteration 0...
[ 0.200269] Verifying lookups...
[ 0.200269] Verifying lookups...
[ 0.201907] Table shrinkage iteration 1...
[ 0.201907] Table shrinkage iteration 1...
[ 0.204156] Verifying lookups...
[ 0.204156] Verifying lookups...
[ 0.205683] Table shrinkage iteration 2...
[ 0.205683] Table shrinkage iteration 2...
[ 0.207496] Verifying lookups...
[ 0.207496] Verifying lookups...
[ 0.208208] Table shrinkage iteration 3...
[ 0.208208] Table shrinkage iteration 3...
[ 0.210051] Verifying lookups...
[ 0.210051] Verifying lookups...
[ 0.212359] Traversal complete: counted=2048, nelems=2048, entries=2048
[ 0.212359] Traversal complete: counted=2048, nelems=2048, entries=2048
[ 0.216008] Deleting 2048 keys
[ 0.216008] Deleting 2048 keys
[ 0.218545] ACPI: Added _OSI(Module Device)
[ 0.218545] ACPI: Added _OSI(Module Device)
[ 0.220010] ACPI: Added _OSI(Processor Device)
[ 0.220010] ACPI: Added _OSI(Processor Device)
[ 0.221995] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.221995] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.224010] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.224010] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.232104] IOAPIC[0]: Set routing entry (0-9 -> 0x39 -> IRQ 9 Mode:1 Active:0 Dest:1)
[ 0.232104] IOAPIC[0]: Set routing entry (0-9 -> 0x39 -> IRQ 9 Mode:1 Active:0 Dest:1)
[ 0.243274] ACPI: Interpreter enabled
[ 0.243274] ACPI: Interpreter enabled
[ 0.244018] ACPI Exception: AE_NOT_FOUND,
[ 0.244018] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_]While evaluating Sleep State [\_S1_] (20141107/hwxface-580)
(20141107/hwxface-580)
[ 0.248016] ACPI Exception: AE_NOT_FOUND,
[ 0.248016] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_]While evaluating Sleep State [\_S2_] (20141107/hwxface-580)
(20141107/hwxface-580)
[ 0.252099] ACPI: (supports S0 S3 S5)
[ 0.252099] ACPI: (supports S0 S3 S5)
[ 0.253596] ACPI: Using IOAPIC for interrupt routing
[ 0.253596] ACPI: Using IOAPIC for interrupt routing
[ 0.256100] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.256100] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.281651] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.281651] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.284038] acpi PNP0A03:00: _OSC: OS supports [Segments]
[ 0.284038] acpi PNP0A03:00: _OSC: OS supports [Segments]
[ 0.286299] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[ 0.286299] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[ 0.288859] PCI host bridge to bus 0000:00
[ 0.288859] PCI host bridge to bus 0000:00
[ 0.292010] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.292010] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.294502] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.294502] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
[ 0.296018] pci_bus 0000:00: root bus resource [io 0x0d00-0xadff]
[ 0.296018] pci_bus 0000:00: root bus resource [io 0x0d00-0xadff]
[ 0.300018] pci_bus 0000:00: root bus resource [io 0xae0f-0xaeff]
[ 0.300018] pci_bus 0000:00: root bus resource [io 0xae0f-0xaeff]
[ 0.302660] pci_bus 0000:00: root bus resource [io 0xaf20-0xafdf]
[ 0.302660] pci_bus 0000:00: root bus resource [io 0xaf20-0xafdf]
[ 0.304011] pci_bus 0000:00: root bus resource [io 0xafe4-0xffff]
[ 0.304011] pci_bus 0000:00: root bus resource [io 0xafe4-0xffff]
[ 0.308016] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.308016] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[ 0.312011] pci_bus 0000:00: root bus resource [mem 0x14000000-0xfebfffff]
[ 0.312011] pci_bus 0000:00: root bus resource [mem 0x14000000-0xfebfffff]
[ 0.316061] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[ 0.316061] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[ 0.319878] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[ 0.319878] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[ 0.324928] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[ 0.324928] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[ 0.330718] pci 0000:00:01.1: reg 0x20: [io 0xc040-0xc04f]
[ 0.330718] pci 0000:00:01.1: reg 0x20: [io 0xc040-0xc04f]
[ 0.333234] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.333234] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.336019] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.336019] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.340016] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.340016] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.343112] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.343112] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.344755] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[ 0.344755] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[ 0.348645] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
[ 0.348645] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
[ 0.352042] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
[ 0.352042] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
[ 0.357728] pci 0000:00:02.0: [1013:00b8] type 00 class 0x030000
[ 0.357728] pci 0000:00:02.0: [1013:00b8] type 00 class 0x030000
[ 0.361686] pci 0000:00:02.0: reg 0x10: [mem 0xfc000000-0xfdffffff pref]
[ 0.361686] pci 0000:00:02.0: reg 0x10: [mem 0xfc000000-0xfdffffff pref]
[ 0.365378] pci 0000:00:02.0: reg 0x14: [mem 0xfebf0000-0xfebf0fff]
[ 0.365378] pci 0000:00:02.0: reg 0x14: [mem 0xfebf0000-0xfebf0fff]
[ 0.377410] pci 0000:00:02.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref]
[ 0.377410] pci 0000:00:02.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref]
[ 0.380845] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
[ 0.380845] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
[ 0.385187] pci 0000:00:03.0: reg 0x10: [mem 0xfebc0000-0xfebdffff]
[ 0.385187] pci 0000:00:03.0: reg 0x10: [mem 0xfebc0000-0xfebdffff]
[ 0.388564] pci 0000:00:03.0: reg 0x14: [io 0xc000-0xc03f]
[ 0.388564] pci 0000:00:03.0: reg 0x14: [io 0xc000-0xc03f]
[ 0.397161] pci 0000:00:03.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
[ 0.397161] pci 0000:00:03.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
[ 0.400730] pci 0000:00:04.0: [8086:25ab] type 00 class 0x088000
[ 0.400730] pci 0000:00:04.0: [8086:25ab] type 00 class 0x088000
[ 0.404015] pci 0000:00:04.0: reg 0x10: [mem 0xfebf1000-0xfebf100f]
[ 0.404015] pci 0000:00:04.0: reg 0x10: [mem 0xfebf1000-0xfebf100f]
[ 0.411335] pci_bus 0000:00: on NUMA node 0
[ 0.411335] pci_bus 0000:00: on NUMA node 0
[ 0.413724] ACPI: PCI Interrupt Link [LNKA] (IRQs
[ 0.413724] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 5 *10 *10 11 11))
[ 0.416971] ACPI: PCI Interrupt Link [LNKB] (IRQs
[ 0.416971] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 5 *10 *10 11 11))
[ 0.420939] ACPI: PCI Interrupt Link [LNKC] (IRQs
[ 0.420939] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 5 10 10 *11 *11))
[ 0.424642] ACPI: PCI Interrupt Link [LNKD] (IRQs
[ 0.424642] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 5 10 10 *11 *11))
[ 0.427143] ACPI: PCI Interrupt Link [LNKS] (IRQs
[ 0.427143] ACPI: PCI Interrupt Link [LNKS] (IRQs *9 *9))
[ 0.429618] ACPI:
[ 0.429618] ACPI: Enabled 16 GPEs in block 00 to 0FEnabled 16 GPEs in block 00 to 0F
[ 0.433712] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.433712] vgaarb: setting as boot device: PCI:0000:00:02.0
[ 0.435913] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.435913] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.436023] vgaarb: loaded
[ 0.436023] vgaarb: loaded
[ 0.437093] vgaarb: bridge control possible 0000:00:02.0
[ 0.437093] vgaarb: bridge control possible 0000:00:02.0
[ 0.440673] Linux video capture interface: v2.00
[ 0.440673] Linux video capture interface: v2.00
[ 0.442671] EDAC MC: Ver: 3.0.0
[ 0.442671] EDAC MC: Ver: 3.0.0
[ 0.444395] EDAC DEBUG: edac_mc_sysfs_init: device mc created
[ 0.444395] EDAC DEBUG: edac_mc_sysfs_init: device mc created
[ 0.447649] Advanced Linux Sound Architecture Driver Initialized.
[ 0.447649] Advanced Linux Sound Architecture Driver Initialized.
[ 0.448071] PCI: Using ACPI for IRQ routing
[ 0.448071] PCI: Using ACPI for IRQ routing
[ 0.452009] PCI: pci_cache_line_size set to 64 bytes
[ 0.452009] PCI: pci_cache_line_size set to 64 bytes
[ 0.454381] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 0.454381] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[ 0.456025] e820: reserve RAM buffer [mem 0x13fe0000-0x13ffffff]
[ 0.456025] e820: reserve RAM buffer [mem 0x13fe0000-0x13ffffff]
[ 0.461659] Switched to clocksource kvm-clock
[ 0.461659] Switched to clocksource kvm-clock
[ 0.463610] FS-Cache: Loaded
[ 0.463610] FS-Cache: Loaded
[ 0.463731] pnp: PnP ACPI init
[ 0.463731] pnp: PnP ACPI init
[ 0.465150] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[ 0.465150] IOAPIC[0]: Set routing entry (0-8 -> 0x38 -> IRQ 8 Mode:0 Active:0 Dest:1)
[ 0.468676] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.468676] pnp 00:00: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.471309] IOAPIC[0]: Set routing entry (0-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[ 0.471309] IOAPIC[0]: Set routing entry (0-1 -> 0x31 -> IRQ 1 Mode:0 Active:0 Dest:1)
[ 0.474864] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.474864] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.477771] IOAPIC[0]: Set routing entry (0-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[ 0.477771] IOAPIC[0]: Set routing entry (0-12 -> 0x3c -> IRQ 12 Mode:0 Active:0 Dest:1)
[ 0.481123] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.481123] pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.485417] IOAPIC[0]: Set routing entry (0-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[ 0.485417] IOAPIC[0]: Set routing entry (0-6 -> 0x36 -> IRQ 6 Mode:0 Active:0 Dest:1)
[ 0.488828] pnp 00:03: [dma 2]
[ 0.488828] pnp 00:03: [dma 2]
[ 0.490114] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)
[ 0.490114] pnp 00:03: Plug and Play ACPI device, IDs PNP0700 (active)
[ 0.493149] IOAPIC[0]: Set routing entry (0-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[ 0.493149] IOAPIC[0]: Set routing entry (0-7 -> 0x37 -> IRQ 7 Mode:0 Active:0 Dest:1)
[ 0.496587] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
[ 0.496587] pnp 00:04: Plug and Play ACPI device, IDs PNP0400 (active)
[ 0.500083] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[ 0.500083] IOAPIC[0]: Set routing entry (0-4 -> 0x34 -> IRQ 4 Mode:0 Active:0 Dest:1)
[ 0.503596] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.503596] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.507431] pnp: PnP ACPI: found 6 devices
[ 0.507431] pnp: PnP ACPI: found 6 devices
[ 0.515217] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.515217] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.517674] pci_bus 0000:00: resource 5 [io 0x0d00-0xadff]
[ 0.517674] pci_bus 0000:00: resource 5 [io 0x0d00-0xadff]
[ 0.519821] pci_bus 0000:00: resource 6 [io 0xae0f-0xaeff]
[ 0.519821] pci_bus 0000:00: resource 6 [io 0xae0f-0xaeff]
[ 0.522125] pci_bus 0000:00: resource 7 [io 0xaf20-0xafdf]
[ 0.522125] pci_bus 0000:00: resource 7 [io 0xaf20-0xafdf]
[ 0.525584] pci_bus 0000:00: resource 8 [io 0xafe4-0xffff]
[ 0.525584] pci_bus 0000:00: resource 8 [io 0xafe4-0xffff]
[ 0.528089] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff]
[ 0.528089] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff]
[ 0.530649] pci_bus 0000:00: resource 10 [mem 0x14000000-0xfebfffff]
[ 0.530649] pci_bus 0000:00: resource 10 [mem 0x14000000-0xfebfffff]
[ 0.533698] NET: Registered protocol family 1
[ 0.533698] NET: Registered protocol family 1
[ 0.535507] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 0.535507] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 0.538220] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[ 0.538220] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[ 0.540590] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 0.540590] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 0.543371] pci 0000:00:02.0: Video device with shadowed ROM
[ 0.543371] pci 0000:00:02.0: Video device with shadowed ROM
[ 0.545675] PCI: CLS 0 bytes, default 64
[ 0.545675] PCI: CLS 0 bytes, default 64
[ 0.547887] Unpacking initramfs...
[ 0.547887] Unpacking initramfs...
[ 1.668569] debug: unmapping init [mem 0xffff880012925000-0xffff880013fd7fff]
[ 1.668569] debug: unmapping init [mem 0xffff880012925000-0xffff880013fd7fff]
[ 1.673379] microcode: CPU0 sig=0xf61, pf=0x1, revision=0x1
[ 1.673379] microcode: CPU0 sig=0xf61, pf=0x1, revision=0x1
[ 1.675362] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.675362] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[ 1.680740] des3_ede-x86_64: performance on this CPU would be suboptimal: disabling des3_ede-x86_64.
[ 1.680740] des3_ede-x86_64: performance on this CPU would be suboptimal: disabling des3_ede-x86_64.
[ 1.683800] camellia-x86_64: performance on this CPU would be suboptimal: disabling camellia-x86_64.
[ 1.683800] camellia-x86_64: performance on this CPU would be suboptimal: disabling camellia-x86_64.
[ 1.687163] cryptomgr_test (15) used greatest stack depth: 14400 bytes left
[ 1.687163] cryptomgr_test (15) used greatest stack depth: 14400 bytes left
[ 1.689766] blowfish-x86_64: performance on this CPU would be suboptimal: disabling blowfish-x86_64.
[ 1.689766] blowfish-x86_64: performance on this CPU would be suboptimal: disabling blowfish-x86_64.
[ 1.693044] twofish-x86_64-3way: performance on this CPU would be suboptimal: disabling twofish-x86_64-3way.
[ 1.693044] twofish-x86_64-3way: performance on this CPU would be suboptimal: disabling twofish-x86_64-3way.
[ 1.698288] sha1_ssse3: Neither AVX nor AVX2 nor SSSE3 is available/usable.
[ 1.698288] sha1_ssse3: Neither AVX nor AVX2 nor SSSE3 is available/usable.
[ 1.700732] PCLMULQDQ-NI instructions are not detected.
[ 1.700732] PCLMULQDQ-NI instructions are not detected.
[ 1.702558] sha512_ssse3: Neither AVX nor SSSE3 is available/usable.
[ 1.702558] sha512_ssse3: Neither AVX nor SSSE3 is available/usable.
[ 1.704807] AVX or AES-NI instructions are not detected.
[ 1.704807] AVX or AES-NI instructions are not detected.
[ 1.706685] AVX instructions are not detected.
[ 1.706685] AVX instructions are not detected.
[ 1.708211] AVX instructions are not detected.
[ 1.708211] AVX instructions are not detected.
[ 1.709803] AVX2 or AES-NI instructions are not detected.
[ 1.709803] AVX2 or AES-NI instructions are not detected.
[ 1.711660] AVX2 instructions are not detected.
[ 1.711660] AVX2 instructions are not detected.
[ 1.713261] rcu-torture:--- Start of test: nreaders=1 nfakewriters=4 stat_interval=60 verbose=1 test_no_idle_hz=1 shuffle_interval=3 stutter=5 irqreader=1 fqs_duration=0 fqs_holdoff=0 fqs_stutter=3 test_boost=1/0 test_boost_interval=7 test_boost_duration=4 shutdown_secs=0 stall_cpu=0 stall_cpu_holdoff=10 n_barrier_cbs=0 onoff_interval=0 onoff_holdoff=0
[ 1.713261] rcu-torture:--- Start of test: nreaders=1 nfakewriters=4 stat_interval=60 verbose=1 test_no_idle_hz=1 shuffle_interval=3 stutter=5 irqreader=1 fqs_duration=0 fqs_holdoff=0 fqs_stutter=3 test_boost=1/0 test_boost_interval=7 test_boost_duration=4 shutdown_secs=0 stall_cpu=0 stall_cpu_holdoff=10 n_barrier_cbs=0 onoff_interval=0 onoff_holdoff=0
[ 1.723986] rcu-torture: Creating rcu_torture_writer task
[ 1.723986] rcu-torture: Creating rcu_torture_writer task
[ 1.726016] rcu-torture: Creating rcu_torture_fakewriter task
[ 1.726016] rcu-torture: Creating rcu_torture_fakewriter task
[ 1.728111] rcu-torture: rcu_torture_writer task started
[ 1.728111] rcu-torture: rcu_torture_writer task started
[ 1.729986] rcu-torture: Creating rcu_torture_fakewriter task
[ 1.729986] rcu-torture: Creating rcu_torture_fakewriter task
[ 1.732009] rcu-torture: rcu_torture_fakewriter task started
[ 1.732009] rcu-torture: rcu_torture_fakewriter task started
[ 1.734977] rcu-torture: Creating rcu_torture_fakewriter task
[ 1.734977] rcu-torture: Creating rcu_torture_fakewriter task
[ 1.736944] rcu-torture: rcu_torture_fakewriter task started
[ 1.736944] rcu-torture: rcu_torture_fakewriter task started
[ 1.738998] rcu-torture: Creating rcu_torture_fakewriter task
[ 1.738998] rcu-torture: Creating rcu_torture_fakewriter task
[ 1.741068] rcu-torture: rcu_torture_fakewriter task started
[ 1.741068] rcu-torture: rcu_torture_fakewriter task started
[ 1.743087] rcu-torture: Creating rcu_torture_reader task
[ 1.743087] rcu-torture: Creating rcu_torture_reader task
[ 1.744992] rcu-torture: rcu_torture_fakewriter task started
[ 1.744992] rcu-torture: rcu_torture_fakewriter task started
[ 1.747011] rcu-torture: Creating rcu_torture_stats task
[ 1.747011] rcu-torture: Creating rcu_torture_stats task
[ 1.748959] rcu-torture: rcu_torture_reader task started
[ 1.748959] rcu-torture: rcu_torture_reader task started
[ 1.750859] rcu-torture: Creating torture_shuffle task
[ 1.750859] rcu-torture: Creating torture_shuffle task
[ 1.752677] rcu-torture: rcu_torture_stats task started
[ 1.752677] rcu-torture: rcu_torture_stats task started
[ 1.756722] rcu-torture: Creating torture_stutter task
[ 1.756722] rcu-torture: Creating torture_stutter task
[ 1.758540] rcu-torture: torture_shuffle task started
[ 1.758540] rcu-torture: torture_shuffle task started
[ 1.760441] rcu-torture: Creating rcu_torture_cbflood task
[ 1.760441] rcu-torture: Creating rcu_torture_cbflood task
[ 1.762402] rcu-torture: torture_stutter task started
[ 1.762402] rcu-torture: torture_stutter task started
[ 1.765916] futex hash table entries: 256 (order: 2, 24576 bytes)
[ 1.765916] futex hash table entries: 256 (order: 2, 24576 bytes)
[ 1.770410] rcu-torture: rcu_torture_cbflood task started
[ 1.770410] rcu-torture: rcu_torture_cbflood task started
[ 2.441496] zpool: loaded
[ 2.441496] zpool: loaded
[ 2.454545] zbud: loaded
[ 2.454545] zbud: loaded
[ 2.459435] romfs: ROMFS MTD (C) 2007 Red Hat, Inc.
[ 2.459435] romfs: ROMFS MTD (C) 2007 Red Hat, Inc.
[ 2.461517] fuse init (API version 7.23)
[ 2.461517] fuse init (API version 7.23)
[ 2.480463] cryptomgr_test (64) used greatest stack depth: 14336 bytes left
[ 2.480463] cryptomgr_test (64) used greatest stack depth: 14336 bytes left
[ 2.484333] Key type asymmetric registered
[ 2.484333] Key type asymmetric registered
[ 2.485786] start plist test
[ 2.485786] start plist test
[ 2.489895] end plist test
[ 2.489895] end plist test
[ 2.490937] test_string_helpers: Running tests...
[ 2.490937] test_string_helpers: Running tests...
[ 2.493064] test_firmware: interface ready
[ 2.493064] test_firmware: interface ready
[ 2.528414] crc32: CRC_LE_BITS = 1, CRC_BE BITS = 1
[ 2.528414] crc32: CRC_LE_BITS = 1, CRC_BE BITS = 1
[ 2.530034] crc32: self tests passed, processed 225944 bytes in 10331516 nsec
[ 2.530034] crc32: self tests passed, processed 225944 bytes in 10331516 nsec
[ 2.544647] crc32c: CRC_LE_BITS = 1
[ 2.544647] crc32c: CRC_LE_BITS = 1
[ 2.545780] crc32c: self tests passed, processed 225944 bytes in 5198416 nsec
[ 2.545780] crc32c: self tests passed, processed 225944 bytes in 5198416 nsec
[ 2.672168] tsc: Refined TSC clocksource calibration: 2925.998 MHz
[ 2.672168] tsc: Refined TSC clocksource calibration: 2925.998 MHz
[ 3.137370] crc32_combine: 8373 self tests passed
[ 3.137370] crc32_combine: 8373 self tests passed
[ 3.654462] crc32c_combine: 8373 self tests passed
[ 3.654462] crc32c_combine: 8373 self tests passed
[ 3.656420] rbtree testing
[ 3.656420] rbtree testing -> 40979 cycles
-> 40979 cycles
[ 5.159165] augmented rbtree testing
[ 5.159165] augmented rbtree testing -> 58008 cycles
-> 58008 cycles
[ 7.267331] sched: RT throttling activated
[ 7.267331] sched: RT throttling activated
[ 7.267721] no IO addresses supplied
[ 7.267721] no IO addresses supplied
[ 7.269688] hgafb: HGA card not detected.
[ 7.269688] hgafb: HGA card not detected.
[ 7.270590] hgafb: probe of hgafb.0 failed with error -22
[ 7.270590] hgafb: probe of hgafb.0 failed with error -22
[ 7.271984] ipmi message handler version 39.2
[ 7.271984] ipmi message handler version 39.2
[ 7.273099] ipmi device interface
[ 7.273099] ipmi device interface
[ 7.273902] IPMI System Interface driver.
[ 7.273902] IPMI System Interface driver.
[ 7.275017] ipmi_si: Unable to find any System Interface(s)
[ 7.275017] ipmi_si: Unable to find any System Interface(s)
[ 7.276871] IPMI Watchdog: driver initialized
[ 7.276871] IPMI Watchdog: driver initialized
[ 7.279188] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 7.279188] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 7.282292] ACPI: Power Button [PWRF]
[ 7.282292] ACPI: Power Button [PWRF]
[ 7.285161] r3964: Philips r3964 Driver $Revision: 1.10 $
[ 7.285161] r3964: Philips r3964 Driver $Revision: 1.10 $
[ 7.286894] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 7.286894] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 7.319803] serial 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 7.319803] serial 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 7.325567] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds).
[ 7.325567] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds).
[ 7.330914] mtdoops: mtd device (mtddev=name/number) must be supplied
[ 7.330914] mtdoops: mtd device (mtddev=name/number) must be supplied
[ 7.333248] platform physmap-flash.0: failed to claim resource 0
[ 7.333248] platform physmap-flash.0: failed to claim resource 0
[ 7.335307] slram: not enough parameters.
[ 7.335307] slram: not enough parameters.
[ 7.338722] HSI/SSI char device loaded
[ 7.338722] HSI/SSI char device loaded
[ 7.339807] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 7.339807] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 7.342475] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 7.342475] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 7.343728] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 7.343728] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 7.345652] mousedev: PS/2 mouse device common for all mice
[ 7.345652] mousedev: PS/2 mouse device common for all mice
[ 7.347045] evbug: Connected device: input0 (Power Button at LNXPWRBN/button/input0)
[ 7.347045] evbug: Connected device: input0 (Power Button at LNXPWRBN/button/input0)
[ 7.350883] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[ 7.350883] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[ 7.355863] IR NEC protocol handler initialized
[ 7.355863] IR NEC protocol handler initialized
[ 7.357530] evbug: Connected device: input1 (AT Translated Set 2 keyboard at isa0060/serio0/input0)
[ 7.357530] evbug: Connected device: input1 (AT Translated Set 2 keyboard at isa0060/serio0/input0)
[ 7.360384] IR RC5(x/sz) protocol handler initialized
[ 7.360384] IR RC5(x/sz) protocol handler initialized
[ 7.361942] IR RC6 protocol handler initialized
[ 7.361942] IR RC6 protocol handler initialized
[ 7.363489] IR JVC protocol handler initialized
[ 7.363489] IR JVC protocol handler initialized
[ 7.365157] IR Sony protocol handler initialized
[ 7.365157] IR Sony protocol handler initialized
[ 7.366538] IR Sharp protocol handler initialized
[ 7.366538] IR Sharp protocol handler initialized
[ 7.368150] IR XMP protocol handler initialized
[ 7.368150] IR XMP protocol handler initialized
[ 7.369622] smssdio: Siano SMS1xxx SDIO driver
[ 7.369622] smssdio: Siano SMS1xxx SDIO driver
[ 7.370927] smssdio: Copyright Pierre Ossman
[ 7.370927] smssdio: Copyright Pierre Ossman
[ 7.372366] Driver for 1-wire Dallas network protocol.
[ 7.372366] Driver for 1-wire Dallas network protocol.
[ 7.374106] DS1WM w1 busmaster driver - (c) 2004 Szabolcs Gyurko
[ 7.374106] DS1WM w1 busmaster driver - (c) 2004 Szabolcs Gyurko
[ 7.376232] 1-Wire driver for the DS2760 battery monitor chip - (c) 2004-2005, Szabolcs Gyurko
[ 7.376232] 1-Wire driver for the DS2760 battery monitor chip - (c) 2004-2005, Szabolcs Gyurko
[ 7.379408] applesmc: supported laptop not found!
[ 7.379408] applesmc: supported laptop not found!
[ 7.380495] applesmc: driver init failed (ret=-19)!
[ 7.380495] applesmc: driver init failed (ret=-19)!
[ 7.381753] f71882fg: Not a Fintek device
[ 7.381753] f71882fg: Not a Fintek device
[ 7.382632] f71882fg: Not a Fintek device
[ 7.382632] f71882fg: Not a Fintek device
[ 7.384647] sch56xx_common: Unsupported device id: 0xff
[ 7.384647] sch56xx_common: Unsupported device id: 0xff
[ 7.385851] sch56xx_common: Unsupported device id: 0xff
[ 7.385851] sch56xx_common: Unsupported device id: 0xff
[ 7.387385] intel_powerclamp: Intel powerclamp does not run on family 15 model 6
[ 7.387385] intel_powerclamp: Intel powerclamp does not run on family 15 model 6
[ 7.389135] it87_wdt: no device
[ 7.389135] it87_wdt: no device
[ 7.389875] pc87413_wdt: Version 1.1 at io 0x2E
[ 7.389875] pc87413_wdt: Version 1.1 at io 0x2E
[ 7.390988] pc87413_wdt: initialized. timeout=1 min
[ 7.390988] pc87413_wdt: initialized. timeout=1 min
[ 7.392573] pc87413_wdt: cannot request SWC region at 0xffff
[ 7.392573] pc87413_wdt: cannot request SWC region at 0xffff
[ 7.395128] sbc60xxwdt: WDT driver for 60XX single board computer initialised. timeout=30 sec (nowayout=1)
[ 7.395128] sbc60xxwdt: WDT driver for 60XX single board computer initialised. timeout=30 sec (nowayout=1)
[ 7.398866] cpu5wdt: misc_register failed
[ 7.398866] cpu5wdt: misc_register failed
[ 7.400267] smsc37b787_wdt: SMsC 37B787 watchdog component driver 1.1 initialising...
[ 7.400267] smsc37b787_wdt: SMsC 37B787 watchdog component driver 1.1 initialising...
[ 7.403642] smsc37b787_wdt: Unable to register miscdev on minor 130
[ 7.403642] smsc37b787_wdt: Unable to register miscdev on minor 130
[ 7.405647] w83877f_wdt: I/O address 0x0443 already in use
[ 7.405647] w83877f_wdt: I/O address 0x0443 already in use
[ 7.407311] w83977f_wdt: driver v1.00
[ 7.407311] w83977f_wdt: driver v1.00
[ 7.408454] w83977f_wdt: cannot register miscdev on minor=130 (err=-16)
[ 7.408454] w83977f_wdt: cannot register miscdev on minor=130 (err=-16)
[ 7.410436] machzwd: MachZ ZF-Logic Watchdog driver initializing
[ 7.410436] machzwd: MachZ ZF-Logic Watchdog driver initializing
[ 7.412283] machzwd: no ZF-Logic found
[ 7.412283] machzwd: no ZF-Logic found
[ 7.413443] sbc_epx_c3: cannot register miscdev on minor=130 (err=-16)
[ 7.413443] sbc_epx_c3: cannot register miscdev on minor=130 (err=-16)
[ 7.415552] watchdog: Software Watchdog: cannot register miscdev on minor=130 (err=-16).
[ 7.415552] watchdog: Software Watchdog: cannot register miscdev on minor=130 (err=-16).
[ 7.418006] watchdog: Software Watchdog: a legacy watchdog module is probably present.
[ 7.418006] watchdog: Software Watchdog: a legacy watchdog module is probably present.
[ 7.420533] softdog: Software Watchdog Timer: 0.08 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=1)
[ 7.420533] softdog: Software Watchdog Timer: 0.08 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=1)
[ 7.424120] Driver 'mmc_test' needs updating - please use bus_type methods
[ 7.424120] Driver 'mmc_test' needs updating - please use bus_type methods
[ 7.426226] sdhci: Secure Digital Host Controller Interface driver
[ 7.426226] sdhci: Secure Digital Host Controller Interface driver
[ 7.428155] sdhci: Copyright(c) Pierre Ossman
[ 7.428155] sdhci: Copyright(c) Pierre Ossman
[ 7.429451] sdhci-pltfm: SDHCI platform and OF driver helper
[ 7.429451] sdhci-pltfm: SDHCI platform and OF driver helper
[ 7.432507] logger: created 256K log 'log_main'
[ 7.432507] logger: created 256K log 'log_main'
[ 7.434543] logger: created 256K log 'log_events'
[ 7.434543] logger: created 256K log 'log_events'
[ 7.436196] logger: created 256K log 'log_radio'
[ 7.436196] logger: created 256K log 'log_radio'
[ 7.437748] logger: created 256K log 'log_system'
[ 7.437748] logger: created 256K log 'log_system'
[ 7.439240] FPGA DOWNLOAD --->
[ 7.439240] FPGA DOWNLOAD --->
[ 7.440142] FPGA image file name: xlinx_fpga_firmware.bit
[ 7.440142] FPGA image file name: xlinx_fpga_firmware.bit
[ 7.441952] GPIO INIT FAIL!!
[ 7.441952] GPIO INIT FAIL!!
[ 7.450449]
[ 7.450449] printing PIC contents
[ 7.450449]
[ 7.450449] printing PIC contents
[ 7.451892] ... PIC IMR: ffff
[ 7.451892] ... PIC IMR: ffff
[ 7.452020] ... PIC IRR: 1013
[ 7.452020] ... PIC IRR: 1013
[ 7.453787] ... PIC ISR: 0000
[ 7.453787] ... PIC ISR: 0000
[ 7.454700] ... PIC ELCR: 0c00
[ 7.454700] ... PIC ELCR: 0c00
[ 7.455658] printing local APIC contents on CPU#0/0:
[ 7.455658] printing local APIC contents on CPU#0/0:
[ 7.457097] ... APIC ID: 00000000 (0)
[ 7.457097] ... APIC ID: 00000000 (0)
[ 7.457770] ... APIC VERSION: 01050014
[ 7.457770] ... APIC VERSION: 01050014
[ 7.457770] ... APIC TASKPRI: 00000000 (00)
[ 7.457770] ... APIC TASKPRI: 00000000 (00)
[ 7.457770] ... APIC PROCPRI: 00000000
[ 7.457770] ... APIC PROCPRI: 00000000
[ 7.457770] ... APIC LDR: 01000000
[ 7.457770] ... APIC LDR: 01000000
[ 7.457770] ... APIC DFR: ffffffff
[ 7.457770] ... APIC DFR: ffffffff
[ 7.457770] ... APIC SPIV: 000001ff
[ 7.457770] ... APIC SPIV: 000001ff
[ 7.457770] ... APIC ISR field:
[ 7.457770] ... APIC ISR field:
[ 7.457770] 00000000
[ 7.457770] 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
[ 7.457770] ... APIC TMR field:
[ 7.457770] ... APIC TMR field:
[ 7.457770] 00000000
[ 7.457770] 000000000e2000000e200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
[ 7.457770] ... APIC IRR field:
[ 7.457770] ... APIC IRR field:
[ 7.457770] 00000000
[ 7.457770] 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000008000
[ 7.457770] ... APIC ESR: 00000000
[ 7.457770] ... APIC ESR: 00000000
[ 7.457770] ... APIC ICR: 00000831
[ 7.457770] ... APIC ICR: 00000831
[ 7.457770] ... APIC ICR2: 01000000
[ 7.457770] ... APIC ICR2: 01000000
[ 7.457770] ... APIC LVTT: 000000ef
[ 7.457770] ... APIC LVTT: 000000ef
[ 7.457770] ... APIC LVTPC: 00010000
[ 7.457770] ... APIC LVTPC: 00010000
[ 7.457770] ... APIC LVT0: 00010700
[ 7.457770] ... APIC LVT0: 00010700
[ 7.457770] ... APIC LVT1: 00000400
[ 7.457770] ... APIC LVT1: 00000400
[ 7.457770] ... APIC LVTERR: 000000fe
[ 7.457770] ... APIC LVTERR: 000000fe
[ 7.457770] ... APIC TMICT: 00021f13
[ 7.457770] ... APIC TMICT: 00021f13
[ 7.457770] ... APIC TMCCT: 00000000
[ 7.457770] ... APIC TMCCT: 00000000
[ 7.457770] ... APIC TDCR: 00000003
[ 7.457770] ... APIC TDCR: 00000003
[ 7.457770]
[ 7.457770]
[ 7.487009] number of MP IRQ sources: 15.
[ 7.487009] number of MP IRQ sources: 15.
[ 7.488655] number of IO-APIC #0 registers: 24.
[ 7.488655] number of IO-APIC #0 registers: 24.
[ 7.490381] testing the IO APIC.......................
[ 7.490381] testing the IO APIC.......................
[ 7.492537] IO APIC #0......
[ 7.492537] IO APIC #0......
[ 7.493691] .... register #00: 00000000
[ 7.493691] .... register #00: 00000000
[ 7.495293] ....... : physical APIC id: 00
[ 7.495293] ....... : physical APIC id: 00
[ 7.496654] ....... : Delivery Type: 0
[ 7.496654] ....... : Delivery Type: 0
[ 7.497528] ....... : LTS : 0
[ 7.497528] ....... : LTS : 0
[ 7.498436] .... register #01: 00170011
[ 7.498436] .... register #01: 00170011
[ 7.499428] ....... : max redirection entries: 17
[ 7.499428] ....... : max redirection entries: 17
[ 7.500540] ....... : PRQ implemented: 0
[ 7.500540] ....... : PRQ implemented: 0
[ 7.501440] ....... : IO APIC version: 11
[ 7.501440] ....... : IO APIC version: 11
[ 7.502359] .... register #02: 00000000
[ 7.502359] .... register #02: 00000000
[ 7.503238] ....... : arbitration: 00
[ 7.503238] ....... : arbitration: 00
[ 7.504121] .... IRQ redirection table:
[ 7.504121] .... IRQ redirection table:
[ 7.505001] 1 0 0 0 0 0 0 00
[ 7.505001] 1 0 0 0 0 0 0 00
[ 7.506692] 0 0 0 0 0 1 1 31
[ 7.506692] 0 0 0 0 0 1 1 31
[ 7.508437] 0 0 0 0 0 1 1 30
[ 7.508437] 0 0 0 0 0 1 1 30
[ 7.510265] 0 0 0 0 0 1 1 33
[ 7.510265] 0 0 0 0 0 1 1 33
[ 7.512164] 1 0 0 0 0 1 1 34
[ 7.512164] 1 0 0 0 0 1 1 34
[ 7.513934] 1 1 0 0 0 1 1 35
[ 7.513934] 1 1 0 0 0 1 1 35
[ 7.515721] 0 0 0 0 0 1 1 36
[ 7.515721] 0 0 0 0 0 1 1 36
[ 7.517639] 0 0 0 0 0 1 1 37
[ 7.517639] 0 0 0 0 0 1 1 37
[ 7.519454] 0 0 0 0 0 1 1 38
[ 7.519454] 0 0 0 0 0 1 1 38
[ 7.521018] 0 1 0 0 0 1 1 39
[ 7.521018] 0 1 0 0 0 1 1 39
[ 7.522644] 1 1 0 0 0 1 1 3A
[ 7.522644] 1 1 0 0 0 1 1 3A
[ 7.524504] 1 1 0 0 0 1 1 3B
[ 7.524504] 1 1 0 0 0 1 1 3B
[ 7.526393] 0 0 0 0 0 1 1 3C
[ 7.526393] 0 0 0 0 0 1 1 3C
[ 7.528193] 0 0 0 0 0 1 1 3D
[ 7.528193] 0 0 0 0 0 1 1 3D
[ 7.529992] 0 0 0 0 0 1 1 3E
[ 7.529992] 0 0 0 0 0 1 1 3E
[ 7.531888] 0 0 0 0 0 1 1 3F
[ 7.531888] 0 0 0 0 0 1 1 3F
[ 7.533708] 1 0 0 0 0 0 0 00
[ 7.533708] 1 0 0 0 0 0 0 00
[ 7.535369] 1 0 0 0 0 0 0 00
[ 7.535369] 1 0 0 0 0 0 0 00
[ 7.536381] 1 0 0 0 0 0 0 00
[ 7.536381] 1 0 0 0 0 0 0 00
[ 7.537416] 1 0 0 0 0 0 0 00
[ 7.537416] 1 0 0 0 0 0 0 00
[ 7.538448] 1 0 0 0 0 0 0 00
[ 7.538448] 1 0 0 0 0 0 0 00
[ 7.539540] 1 0 0 0 0 0 0 00
[ 7.539540] 1 0 0 0 0 0 0 00
[ 7.540521] 1 0 0 0 0 0 0 00
[ 7.540521] 1 0 0 0 0 0 0 00
[ 7.541482] 1 0 0 0 0 0 0 00
[ 7.541482] 1 0 0 0 0 0 0 00
[ 7.542519] IRQ to pin mappings:
[ 7.542519] IRQ to pin mappings:
[ 7.543281] IRQ0
[ 7.543281] IRQ0 -> 0:2-> 0:2
[ 7.543881] IRQ1
[ 7.543881] IRQ1 -> 0:1-> 0:1
[ 7.544636] IRQ3
[ 7.544636] IRQ3 -> 0:3-> 0:3
[ 7.545489] IRQ4
[ 7.545489] IRQ4 -> 0:4-> 0:4
[ 7.546369] IRQ5
[ 7.546369] IRQ5 -> 0:5-> 0:5
[ 7.547296] IRQ6
[ 7.547296] IRQ6 -> 0:6-> 0:6
[ 7.548052] IRQ7
[ 7.548052] IRQ7 -> 0:7-> 0:7
[ 7.548617] IRQ8
[ 7.548617] IRQ8 -> 0:8-> 0:8
[ 7.549547] IRQ9
[ 7.549547] IRQ9 -> 0:9-> 0:9
[ 7.550216] IRQ10
[ 7.550216] IRQ10 -> 0:10-> 0:10
[ 7.551095] IRQ11
[ 7.551095] IRQ11 -> 0:11-> 0:11
[ 7.551997] IRQ12
[ 7.551997] IRQ12 -> 0:12-> 0:12
[ 7.553075] IRQ13
[ 7.553075] IRQ13 -> 0:13-> 0:13
[ 7.554136] IRQ14
[ 7.554136] IRQ14 -> 0:14-> 0:14
[ 7.555084] IRQ15
[ 7.555084] IRQ15 -> 0:15-> 0:15
[ 7.555771] .................................... done.
[ 7.555771] .................................... done.
[ 7.557537] bootconsole [earlyser0] disabled
[ 7.557537] bootconsole [earlyser0] disabled
[ 7.559369] cryptomgr_probe (83) used greatest stack depth: 13768 bytes left
[ 7.560366] Key type encrypted registered
[ 7.561772] Magic number: 10:107:796
[ 7.562741] ALSA device list:
[ 7.563292] No soundcards found.
[ 7.564660] debug: unmapping init [mem 0xffffffff82303000-0xffffffff823d0fff]
[ 7.566071] Write protecting the kernel read-only data: 14336k
[ 7.567512] debug: unmapping init [mem 0xffff880001776000-0xffff8800017fffff]
[ 7.568803] debug: unmapping init [mem 0xffff880001cbc000-0xffff880001dfffff]
[ 7.581740] random: init urandom read with 2 bits of entropy available
[ 7.595331] mount (90) used greatest stack depth: 13104 bytes left
/bin/sh: /proc/self/fd/9: No such file or directory
/bin/sh: /proc/self/fd/9: No such file or directory
/bin/sh: /proc/self/fd/9: No such file or directory
[ 17.673482] ------------[ cut here ]------------
[ 17.674874] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.676682] CPU: 0 PID: 109 Comm: trinity-main Not tainted 3.18.0-11169-gc380d9a #9
[ 17.678005] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.679450] ffffffff810b55aa 0000000000000000 ffffffff8174d931 ffffffff834a3400
[ 17.680929] 0000000000000000 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.682377] Call Trace:
[ 17.682820] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.683753] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.684801] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.685797] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.686930] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.688149] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.689413] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.690564] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.691875] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.693471] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.694823] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.696182] ---[ end trace f8ae22d84a926b3f ]---
[ 17.697267] ------------[ cut here ]------------
[ 17.698355] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.700582] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.702557] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.704435] ffffffff810b55aa 0000000000000001 ffffffff8174d931 ffffffff834a3400
[ 17.706213] 0000000000000001 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.707938] Call Trace:
[ 17.708529] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.709787] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.711150] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.712397] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.713700] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.714904] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.716150] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.717325] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.718645] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.720172] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.721651] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.722942] ---[ end trace f8ae22d84a926b40 ]---
[ 17.723829] ------------[ cut here ]------------
[ 17.725074] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.727120] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.729225] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.730536] ffffffff810b55aa 0000000000000004 ffffffff8174d931 ffffffff834a3400
[ 17.731749] 0000000000000004 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.733340] Call Trace:
[ 17.733786] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.734690] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.735747] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.736751] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.737778] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.738697] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.739666] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.740590] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.741606] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.742779] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.743815] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.744880] ---[ end trace f8ae22d84a926b41 ]---
[ 17.745668] ------------[ cut here ]------------
[ 17.746471] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.748214] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.749715] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.751041] ffffffff810b55aa 0000000000000005 ffffffff8174d931 ffffffff834a3400
[ 17.752433] 0000000000000005 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.753757] Call Trace:
[ 17.754175] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.755055] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.756084] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.756947] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.757906] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.758784] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.759710] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.760577] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.761554] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.762645] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.763615] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.764426] ---[ end trace f8ae22d84a926b42 ]---
[ 17.764904] ------------[ cut here ]------------
[ 17.765507] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.766541] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.767470] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.768404] ffffffff810b55aa 0000000000000006 ffffffff8174d931 ffffffff834a3400
[ 17.769396] 0000000000000006 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.770222] Call Trace:
[ 17.770497] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.771052] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.771702] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.772518] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.773317] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.773867] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.774435] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.774989] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.775618] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.776412] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.777044] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.777752] ---[ end trace f8ae22d84a926b43 ]---
[ 17.778221] ------------[ cut here ]------------
[ 17.778717] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.779838] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.780813] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.781770] ffffffff810b55aa 0000000000000007 ffffffff8174d931 ffffffff834a3400
[ 17.782592] 0000000000000007 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.783443] Call Trace:
[ 17.783715] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.784350] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.784992] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.785646] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.786253] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.786815] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.787407] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.788037] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.788649] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.789534] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.790136] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.790780] ---[ end trace f8ae22d84a926b44 ]---
[ 17.791281] ------------[ cut here ]------------
[ 17.791777] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.792876] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.793856] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.794692] ffffffff810b55aa 0000000000000008 ffffffff8174d931 ffffffff834a3400
[ 17.795544] 0000000000000008 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.796494] Call Trace:
[ 17.796741] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.797328] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.797939] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.798527] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.799208] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.799769] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.800441] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.800920] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.801611] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.802302] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.802937] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.803579] ---[ end trace f8ae22d84a926b45 ]---
[ 17.804157] ------------[ cut here ]------------
[ 17.804637] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.805728] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.806634] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.807483] ffffffff810b55aa 0000000000000009 ffffffff8174d931 ffffffff834a3400
[ 17.808415] 0000000000000009 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.809278] Call Trace:
[ 17.809550] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.810060] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.810703] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.811282] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.811926] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.812547] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.813078] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.813622] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.814219] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.814945] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.815583] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.816317] ---[ end trace f8ae22d84a926b46 ]---
[ 17.817008] ------------[ cut here ]------------
[ 17.817515] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.818523] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.819499] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.820439] ffffffff810b55aa 000000000000000a ffffffff8174d931 ffffffff834a3400
[ 17.821229] 000000000000000a 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.822046] Call Trace:
[ 17.822322] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.822868] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.823507] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.824161] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.824758] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.825288] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.825862] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.826392] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.827008] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.827735] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.828452] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.829073] ---[ end trace f8ae22d84a926b47 ]---
[ 17.829616] ------------[ cut here ]------------
[ 17.830086] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.831155] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.832171] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.832953] ffffffff810b55aa 000000000000000b ffffffff8174d931 ffffffff834a3400
[ 17.833799] 000000000000000b 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.834619] Call Trace:
[ 17.834889] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.835443] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.836160] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.836716] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.837309] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.837858] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.838424] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.839020] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.839623] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.840436] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.841008] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.841652] ---[ end trace f8ae22d84a926b48 ]---
[ 17.842146] ------------[ cut here ]------------
[ 17.842651] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.843701] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.844688] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.845521] ffffffff810b55aa 000000000000000c ffffffff8174d931 ffffffff834a3400
[ 17.846349] 000000000000000c 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.847195] Call Trace:
[ 17.847471] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.848104] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.848717] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.849330] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.849931] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.850497] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.851083] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.851628] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.852335] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.853000] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.853645] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.854265] ---[ end trace f8ae22d84a926b49 ]---
[ 17.854806] ------------[ cut here ]------------
[ 17.855309] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.856448] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.857323] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.858193] ffffffff810b55aa 000000000000000d ffffffff8174d931 ffffffff834a3400
[ 17.859693] 000000000000000d 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.861019] Call Trace:
[ 17.861437] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.862288] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.863283] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.864128] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.864727] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.865258] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.865856] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.866424] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.867037] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.867903] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.868652] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.869575] ---[ end trace f8ae22d84a926b4a ]---
[ 17.870402] ------------[ cut here ]------------
[ 17.871298] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.873154] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.874882] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.876170] ffffffff810b55aa 000000000000000e ffffffff8174d931 ffffffff834a3400
[ 17.877176] 000000000000000e 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.878483] Call Trace:
[ 17.878881] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.879699] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.880732] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.881627] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.882545] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.883372] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.884263] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.885069] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.885996] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.887068] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.888042] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.888994] ---[ end trace f8ae22d84a926b4b ]---
[ 17.889784] ------------[ cut here ]------------
[ 17.890527] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.892324] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.893715] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.895053] ffffffff810b55aa 000000000000000f ffffffff8174d931 ffffffff834a3400
[ 17.896499] 000000000000000f 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.898043] Call Trace:
[ 17.898436] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.899279] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.900271] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.901132] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.901977] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.902704] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.903388] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.904224] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.905183] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.906261] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.907193] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.908173] ---[ end trace f8ae22d84a926b4c ]---
[ 17.917625] sock: process `trinity-main' is using obsolete setsockopt SO_BSDCOMPAT
[ 17.921756] ------------[ cut here ]------------
[ 17.922514] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.924101] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.925487] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.926737] ffffffff810b55aa 0000000000000004 ffffffff8174d931 ffffffff834a3400
[ 17.927989] 0000000000000004 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.929143] Call Trace:
[ 17.929429] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.930002] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.930919] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.931783] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.932734] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.933573] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.934448] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.935256] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.936204] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.937281] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.938219] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.939175] ---[ end trace f8ae22d84a926b4d ]---
[ 17.940120] ------------[ cut here ]------------
[ 17.941010] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.942610] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.943983] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.945268] ffffffff810b55aa 0000000000000005 ffffffff8174d931 ffffffff834a3400
[ 17.946517] 0000000000000005 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.947762] Call Trace:
[ 17.948179] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.948963] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.949600] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.950204] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.950866] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.951433] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.952048] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.952609] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.953236] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.953996] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.954651] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.955318] ---[ end trace f8ae22d84a926b4e ]---
[ 17.955872] ------------[ cut here ]------------
[ 17.956416] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.957488] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.958443] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.959373] ffffffff810b55aa 0000000000000007 ffffffff8174d931 ffffffff834a3400
[ 17.960294] 0000000000000007 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.961139] Call Trace:
[ 17.961400] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.961964] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.962621] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.963166] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.963801] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.964387] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.964969] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.965499] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.966137] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.967061] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.967741] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.968431] ---[ end trace f8ae22d84a926b4f ]---
[ 17.969026] ------------[ cut here ]------------
[ 17.969513] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.970568] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.971504] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.972711] ffffffff810b55aa 000000000000000a ffffffff8174d931 ffffffff834a3400
[ 17.973914] 000000000000000a 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.975173] Call Trace:
[ 17.975570] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.976230] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.977005] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.977585] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.978238] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.978913] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.979496] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.980085] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.980960] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.982004] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.982779] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.983422] ---[ end trace f8ae22d84a926b50 ]---
[ 17.983987] ------------[ cut here ]------------
[ 17.984692] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 17.986293] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 17.987730] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 17.988803] ffffffff810b55aa 000000000000000c ffffffff8174d931 ffffffff834a3400
[ 17.989708] 000000000000000c 0000000000000000 0000000000000000 ffff88000b44fe28
[ 17.990514] Call Trace:
[ 17.990782] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 17.991268] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 17.992044] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 17.992903] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 17.993822] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 17.994829] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 17.995614] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 17.996504] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 17.997190] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 17.997907] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 17.998777] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 17.999771] ---[ end trace f8ae22d84a926b51 ]---
[ 18.023483] ------------[ cut here ]------------
[ 18.024452] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.025978] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.027105] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.027974] ffffffff810b55aa 0000000000000004 ffffffff8174d931 ffffffff834a3400
[ 18.029000] 0000000000000004 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.030117] Call Trace:
[ 18.030510] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.031273] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.032424] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.033458] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.034287] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.035226] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.035926] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.036522] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.037378] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.038560] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.039462] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.040342] ---[ end trace f8ae22d84a926b52 ]---
[ 18.041172] ------------[ cut here ]------------
[ 18.041831] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.043254] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.044641] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.045886] ffffffff810b55aa 0000000000000005 ffffffff8174d931 ffffffff834a3400
[ 18.047267] 0000000000000005 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.048708] Call Trace:
[ 18.049182] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.050162] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.051324] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.052342] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.053388] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.054329] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.055339] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.056333] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.057459] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.058698] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.059764] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.060904] ---[ end trace f8ae22d84a926b53 ]---
[ 18.061865] ------------[ cut here ]------------
[ 18.062742] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.064535] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.066115] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.067606] ffffffff810b55aa 0000000000000006 ffffffff8174d931 ffffffff834a3400
[ 18.069068] 0000000000000006 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.070507] Call Trace:
[ 18.070966] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.071940] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.073068] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.074040] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.075077] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.076060] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.077106] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.078060] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.079095] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.080401] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.081427] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.082504] ---[ end trace f8ae22d84a926b54 ]---
[ 18.083440] ------------[ cut here ]------------
[ 18.084358] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.086147] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.087685] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.089267] ffffffff810b55aa 000000000000000a ffffffff8174d931 ffffffff834a3400
[ 18.090927] 000000000000000a 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.092493] Call Trace:
[ 18.092992] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.094039] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.095311] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.096425] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.097560] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.098507] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.099515] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.100450] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.101551] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.102823] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.103894] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.105044] ---[ end trace f8ae22d84a926b55 ]---
[ 18.105987] ------------[ cut here ]------------
[ 18.106880] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.108774] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.110409] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.111956] ffffffff810b55aa 000000000000000b ffffffff8174d931 ffffffff834a3400
[ 18.113503] 000000000000000b 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.115102] Call Trace:
[ 18.115546] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.116513] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.117648] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.118696] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.119870] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.120942] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.122006] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.122975] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.124084] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.125432] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.126629] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.127798] ---[ end trace f8ae22d84a926b56 ]---
[ 18.128752] ------------[ cut here ]------------
[ 18.129656] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.131557] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.132941] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.134301] ffffffff810b55aa 000000000000000c ffffffff8174d931 ffffffff834a3400
[ 18.135717] 000000000000000c 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.137168] Call Trace:
[ 18.137585] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.138501] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.139583] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.140569] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.141581] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.142350] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.143105] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.143795] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.144619] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.145554] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.146374] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.147211] ---[ end trace f8ae22d84a926b57 ]---
[ 18.147898] ------------[ cut here ]------------
[ 18.148612] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.150247] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.151697] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.153036] ffffffff810b55aa 000000000000000e ffffffff8174d931 ffffffff834a3400
[ 18.154330] 000000000000000e 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.155656] Call Trace:
[ 18.156098] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.156988] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.157945] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.158860] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.159847] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.160725] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.161618] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.162469] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.163446] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.164586] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.165551] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.166526] ---[ end trace f8ae22d84a926b58 ]---
[ 18.209366] ------------[ cut here ]------------
[ 18.210210] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.211982] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.213530] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.214937] ffffffff810b55aa 0000000000000000 ffffffff8174d931 ffffffff834a3400
[ 18.216369] 0000000000000000 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.217766] Call Trace:
[ 18.218224] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.219133] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.220214] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.221166] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.222206] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.223138] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.224145] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.225056] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.226061] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.227287] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.228353] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.229425] ---[ end trace f8ae22d84a926b59 ]---
[ 18.230405] ------------[ cut here ]------------
[ 18.231284] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.233126] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.234693] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.236147] ffffffff810b55aa 0000000000000001 ffffffff8174d931 ffffffff834a3400
[ 18.237545] 0000000000000001 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.238848] Call Trace:
[ 18.239110] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.239642] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.240270] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.240815] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.241388] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.241916] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.242508] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.243429] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.244493] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.245671] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.246731] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.247707] ---[ end trace f8ae22d84a926b5a ]---
[ 18.248244] ------------[ cut here ]------------
[ 18.248724] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.249713] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.250599] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.251410] ffffffff810b55aa 0000000000000004 ffffffff8174d931 ffffffff834a3400
[ 18.252246] 0000000000000004 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.253111] Call Trace:
[ 18.253362] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.253887] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.254491] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.255037] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.255626] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.256171] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.256730] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.257226] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.257812] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.258497] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.259095] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.259710] ---[ end trace f8ae22d84a926b5b ]---
[ 18.260246] ------------[ cut here ]------------
[ 18.260722] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.261696] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.262696] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.264126] ffffffff810b55aa 0000000000000005 ffffffff8174d931 ffffffff834a3400
[ 18.265493] 0000000000000005 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.266894] Call Trace:
[ 18.267354] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.268296] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.269254] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.269794] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.270381] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.270906] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.271489] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.272059] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.272781] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.273510] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.274151] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.274804] ---[ end trace f8ae22d84a926b5c ]---
[ 18.275353] ------------[ cut here ]------------
[ 18.275868] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.276970] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.277919] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.278800] ffffffff810b55aa 0000000000000006 ffffffff8174d931 ffffffff834a3400
[ 18.279639] 0000000000000006 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.280555] Call Trace:
[ 18.280830] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.281387] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.282039] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.282677] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.283315] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.283885] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.284492] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.285051] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.285664] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.286400] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.287032] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.287689] ---[ end trace f8ae22d84a926b5d ]---
[ 18.288250] ------------[ cut here ]------------
[ 18.288776] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.289835] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.290785] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.291652] ffffffff810b55aa 0000000000000008 ffffffff8174d931 ffffffff834a3400
[ 18.292584] 0000000000000008 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.293533] Call Trace:
[ 18.293813] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.294392] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.295037] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.295621] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.296281] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.296857] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.297461] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.298011] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.298655] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.299562] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.300533] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.301494] ---[ end trace f8ae22d84a926b5e ]---
[ 18.302271] ------------[ cut here ]------------
[ 18.303016] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.304609] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.305994] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.307258] ffffffff810b55aa 0000000000000009 ffffffff8174d931 ffffffff834a3400
[ 18.308536] 0000000000000009 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.309790] Call Trace:
[ 18.310194] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.311019] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.311984] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.312881] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.313813] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.314652] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.315531] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.316361] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.317291] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.318375] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.319317] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.320287] ---[ end trace f8ae22d84a926b5f ]---
[ 18.321053] ------------[ cut here ]------------
[ 18.321801] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.323385] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.324787] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.326052] ffffffff810b55aa 000000000000000e ffffffff8174d931 ffffffff834a3400
[ 18.327311] 000000000000000e 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.328588] Call Trace:
[ 18.328991] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.329847] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.330803] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.331665] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.332607] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.333156] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.333757] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.334311] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.334963] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.335710] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.336401] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.337056] ---[ end trace f8ae22d84a926b60 ]---
[ 18.337613] ------------[ cut here ]------------
[ 18.338127] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.339226] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.340204] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.341085] ffffffff810b55aa 000000000000000f ffffffff8174d931 ffffffff834a3400
[ 18.341962] 000000000000000f 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.343096] Call Trace:
[ 18.343541] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.344476] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.345484] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.346428] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.347469] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.348387] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.349334] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.350228] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.351240] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.352467] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.353445] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.354491] ---[ end trace f8ae22d84a926b61 ]---
[ 18.377403] ------------[ cut here ]------------
[ 18.378238] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.379894] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.381373] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.382773] ffffffff810b55aa 0000000000000000 ffffffff8174d931 ffffffff834a3400
[ 18.384095] 0000000000000000 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.385151] Call Trace:
[ 18.385599] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.386440] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.387446] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.388391] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.389401] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.390228] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.391119] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.391963] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.392993] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.394095] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.395069] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.396056] ---[ end trace f8ae22d84a926b62 ]---
[ 18.396945] ------------[ cut here ]------------
[ 18.397719] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.399382] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.400845] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.402176] ffffffff810b55aa 0000000000000001 ffffffff8174d931 ffffffff834a3400
[ 18.403552] 0000000000000001 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.404877] Call Trace:
[ 18.405280] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.406151] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.407250] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.408294] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.409267] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.410215] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.411143] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.411844] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.412435] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.413178] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.413843] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.414516] ---[ end trace f8ae22d84a926b63 ]---
[ 18.415080] ------------[ cut here ]------------
[ 18.415622] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.416739] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.417715] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.418601] ffffffff810b55aa 0000000000000005 ffffffff8174d931 ffffffff834a3400
[ 18.419471] 0000000000000005 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.420333] Call Trace:
[ 18.420619] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.421167] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.421839] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.422415] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.423283] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.423882] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.424735] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.425559] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.426483] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.427573] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.428546] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.429482] ---[ end trace f8ae22d84a926b64 ]---
[ 18.430260] ------------[ cut here ]------------
[ 18.431012] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.432621] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.434021] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.435307] ffffffff810b55aa 0000000000000006 ffffffff8174d931 ffffffff834a3400
[ 18.436572] 0000000000000006 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.437815] Call Trace:
[ 18.438189] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.439014] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.439951] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.440841] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.441768] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.442611] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.443509] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.444342] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.445255] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.446323] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.447256] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.448233] ---[ end trace f8ae22d84a926b65 ]---
[ 18.448874] ------------[ cut here ]------------
[ 18.449616] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.451203] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.452610] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.453885] ffffffff810b55aa 0000000000000007 ffffffff8174d931 ffffffff834a3400
[ 18.455155] 0000000000000007 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.456460] Call Trace:
[ 18.456875] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.457715] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.458671] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.459547] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.460503] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.461364] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.462248] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.463072] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.464035] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.465162] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.466119] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.467089] ---[ end trace f8ae22d84a926b66 ]---
[ 18.472659] ------------[ cut here ]------------
[ 18.473423] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.474995] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.476435] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.477738] ffffffff810b55aa 0000000000000001 ffffffff8174d931 ffffffff834a3400
[ 18.479000] 0000000000000001 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.480337] Call Trace:
[ 18.480767] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.481612] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.482619] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.483502] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.484451] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.485229] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.486058] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.486828] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.487734] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.488746] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.489704] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.490536] ---[ end trace f8ae22d84a926b67 ]---
[ 18.491330] ------------[ cut here ]------------
[ 18.492121] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.493702] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.495066] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.496366] ffffffff810b55aa 000000000000001f ffffffff8174d931 ffffffff834a3400
[ 18.497635] 000000000000001f 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.498908] Call Trace:
[ 18.499340] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.500179] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.501133] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.501992] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.502945] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.503817] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.504742] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.505535] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.506517] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.507582] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.508529] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.509469] ---[ end trace f8ae22d84a926b68 ]---
[ 18.584421] ------------[ cut here ]------------
[ 18.585268] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.586968] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.588478] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.590026] ffffffff810b55aa 0000000000000000 ffffffff8174d931 ffffffff834a3400
[ 18.591565] 0000000000000000 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.593513] Call Trace:
[ 18.594171] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.595468] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.596927] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.598240] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.599736] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.601047] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.602361] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.603528] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.604922] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.606546] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.608045] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.609466] ---[ end trace f8ae22d84a926b69 ]---
[ 18.610663] ------------[ cut here ]------------
[ 18.611771] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.614158] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.616193] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.617959] ffffffff810b55aa 0000000000000005 ffffffff8174d931 ffffffff834a3400
[ 18.619897] 0000000000000005 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.621845] Call Trace:
[ 18.622463] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.623726] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.625221] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.626625] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.628086] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.629343] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.630675] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.631968] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.633420] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.635045] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.636540] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.638025] ---[ end trace f8ae22d84a926b6a ]---
[ 18.639155] ------------[ cut here ]------------
[ 18.640271] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.642734] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.644790] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.646675] ffffffff810b55aa 0000000000000006 ffffffff8174d931 ffffffff834a3400
[ 18.648682] 0000000000000006 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.650545] Call Trace:
[ 18.651148] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.652437] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.653735] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.654742] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.656054] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.657015] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.658062] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.659014] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.660303] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.661543] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.662595] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.663730] ---[ end trace f8ae22d84a926b6b ]---
[ 18.664733] ------------[ cut here ]------------
[ 18.665605] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.667460] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.669289] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.670723] ffffffff810b55aa 0000000000000008 ffffffff8174d931 ffffffff834a3400
[ 18.672312] 0000000000000008 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.674501] Call Trace:
[ 18.675002] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.676058] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.677169] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.678130] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.679032] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.679845] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.680531] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.681188] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.681824] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.682606] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.683253] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.683927] ---[ end trace f8ae22d84a926b6c ]---
[ 18.684593] ------------[ cut here ]------------
[ 18.685215] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.686330] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.687298] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.688353] ffffffff810b55aa 0000000000000009 ffffffff8174d931 ffffffff834a3400
[ 18.689563] 0000000000000009 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.690740] Call Trace:
[ 18.691126] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.691916] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.692777] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.693430] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.694026] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.694636] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.695243] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.695783] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.696553] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.697332] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.697941] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.698633] ---[ end trace f8ae22d84a926b6d ]---
[ 18.699213] ------------[ cut here ]------------
[ 18.699718] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.700839] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.702192] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.703433] ffffffff810b55aa 000000000000000a ffffffff8174d931 ffffffff834a3400
[ 18.704643] 000000000000000a 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.705874] Call Trace:
[ 18.706287] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.707057] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.707959] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.708774] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.709726] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.710507] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.711350] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.712127] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.712786] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.713595] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.714277] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.714908] ---[ end trace f8ae22d84a926b6e ]---
[ 18.715439] ------------[ cut here ]------------
[ 18.715979] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.717152] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.718051] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.719006] ffffffff810b55aa 000000000000000c ffffffff8174d931 ffffffff834a3400
[ 18.719868] 000000000000000c 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.720791] Call Trace:
[ 18.721255] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.722235] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.723429] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.724550] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.725663] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.726622] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.727682] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.728698] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.729899] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.731204] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.732410] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.733596] ---[ end trace f8ae22d84a926b6f ]---
[ 18.734551] ------------[ cut here ]------------
[ 18.735520] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.737558] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.739286] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.740868] ffffffff810b55aa 000000000000000f ffffffff8174d931 ffffffff834a3400
[ 18.742454] 000000000000000f 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.744091] Call Trace:
[ 18.744620] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.745624] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.746868] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.748001] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.749189] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.750305] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.751467] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.752562] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.753734] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.755094] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.756312] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.757555] ---[ end trace f8ae22d84a926b70 ]---
[ 18.758524] ------------[ cut here ]------------
[ 18.759506] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.761646] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.763508] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.765115] ffffffff810b55aa 0000000000000011 ffffffff8174d931 ffffffff834a3400
[ 18.766721] 0000000000000011 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.768479] Call Trace:
[ 18.768974] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.770001] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.771230] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.772361] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.773524] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.774536] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.775692] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.776737] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.777925] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.779289] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.780524] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.781752] ---[ end trace f8ae22d84a926b71 ]---
[ 18.782658] ------------[ cut here ]------------
[ 18.783610] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.785647] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.787400] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.789041] ffffffff810b55aa 0000000000000012 ffffffff8174d931 ffffffff834a3400
[ 18.790622] 0000000000000012 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.792254] Call Trace:
[ 18.792745] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.793846] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.794986] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.796115] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.797275] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.798322] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.799449] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.800510] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.801678] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.802986] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.804221] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.805408] ---[ end trace f8ae22d84a926b72 ]---
[ 18.806151] ------------[ cut here ]------------
[ 18.806888] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.808459] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.809896] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.811127] ffffffff810b55aa 0000000000000014 ffffffff8174d931 ffffffff834a3400
[ 18.812401] 0000000000000014 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.813692] Call Trace:
[ 18.814089] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.814901] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.815827] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.816746] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.817725] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.818546] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.819407] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.820254] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.821170] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.822215] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.823161] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.824157] ---[ end trace f8ae22d84a926b73 ]---
[ 18.825047] ------------[ cut here ]------------
[ 18.825886] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.827657] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.829295] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.830698] ffffffff810b55aa 0000000000000016 ffffffff8174d931 ffffffff834a3400
[ 18.831863] 0000000000000016 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.833322] Call Trace:
[ 18.833692] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.834502] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.835553] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.836612] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.837696] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.838656] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.839705] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.840898] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.842262] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.843841] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.845289] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.846702] ---[ end trace f8ae22d84a926b74 ]---
[ 18.847818] ------------[ cut here ]------------
[ 18.848951] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.851316] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.854781] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.857904] ffffffff810b55aa 0000000000000017 ffffffff8174d931 ffffffff834a3400
[ 18.860907] 0000000000000017 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.864063] Call Trace:
[ 18.865079] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.867108] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.869412] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.871471] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.873611] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.875568] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.877620] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.879555] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.881670] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.884260] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.886380] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.888639] ---[ end trace f8ae22d84a926b75 ]---
[ 18.907052] ------------[ cut here ]------------
[ 18.907961] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.909922] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.911638] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.913188] ffffffff810b55aa 0000000000000000 ffffffff8174d931 ffffffff834a3400
[ 18.914823] 0000000000000000 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.916389] Call Trace:
[ 18.916892] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.917870] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.919016] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.920101] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.921251] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.922303] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.923344] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.924322] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.925211] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.926486] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.927577] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.928454] ---[ end trace f8ae22d84a926b76 ]---
[ 18.929307] ------------[ cut here ]------------
[ 18.930049] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.931656] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.933059] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.934321] ffffffff810b55aa 0000000000000006 ffffffff8174d931 ffffffff834a3400
[ 18.935568] 0000000000000006 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.936836] Call Trace:
[ 18.937241] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.938053] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.939001] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.939860] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.940803] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.941635] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.942501] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.943325] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.944493] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.945822] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.946979] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.948171] ---[ end trace f8ae22d84a926b77 ]---
[ 18.949106] ------------[ cut here ]------------
[ 18.950028] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.951971] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.953702] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.955284] ffffffff810b55aa 0000000000000008 ffffffff8174d931 ffffffff834a3400
[ 18.956850] 0000000000000008 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.958410] Call Trace:
[ 18.958907] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.959924] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.961125] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.962265] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.963493] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.964616] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.965752] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.966818] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.968056] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.969466] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.970707] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.971962] ---[ end trace f8ae22d84a926b78 ]---
[ 18.972954] ------------[ cut here ]------------
[ 18.973928] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 18.976025] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 18.977860] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 18.979506] ffffffff810b55aa 000000000000000c ffffffff8174d931 ffffffff834a3400
[ 18.981188] 000000000000000c 0000000000000000 0000000000000000 ffff88000b44fe28
[ 18.982857] Call Trace:
[ 18.983402] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 18.984498] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 18.985765] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 18.986909] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 18.988147] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 18.989237] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 18.990402] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 18.991471] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 18.992731] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 18.994146] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 18.995387] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 18.996668] ---[ end trace f8ae22d84a926b79 ]---
[ 18.997675] ------------[ cut here ]------------
[ 18.998660] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 19.000728] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.002496] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 19.004170] ffffffff810b55aa 000000000000000f ffffffff8174d931 ffffffff834a3400
[ 19.005815] 000000000000000f 0000000000000000 0000000000000000 ffff88000b44fe28
[ 19.007493] Call Trace:
[ 19.008045] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.009131] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.010395] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 19.011528] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.012776] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 19.013873] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 19.015024] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 19.016112] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 19.017349] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.018775] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 19.020037] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.021300] ---[ end trace f8ae22d84a926b7a ]---
[ 19.022310] ------------[ cut here ]------------
[ 19.023278] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 19.025354] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.027179] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 19.028865] ffffffff810b55aa 0000000000000012 ffffffff8174d931 ffffffff834a3400
[ 19.030516] 0000000000000012 0000000000000000 0000000000000000 ffff88000b44fe28
[ 19.032183] Call Trace:
[ 19.032724] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.033808] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.035072] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 19.036228] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.037455] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 19.038552] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 19.039708] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 19.040784] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 19.042008] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.043444] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 19.044692] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.045961] ---[ end trace f8ae22d84a926b7b ]---
[ 19.046957] ------------[ cut here ]------------
[ 19.047940] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 19.050042] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.051864] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 19.053547] ffffffff810b55aa 0000000000000013 ffffffff8174d931 ffffffff834a3400
[ 19.055222] 0000000000000013 0000000000000000 0000000000000000 ffff88000b44fe28
[ 19.056899] Call Trace:
[ 19.057432] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.058462] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.059730] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 19.060906] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.062128] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 19.063244] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 19.064420] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 19.065484] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 19.066669] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.068120] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 19.069390] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.070598] ---[ end trace f8ae22d84a926b7c ]---
[ 19.071546] ------------[ cut here ]------------
[ 19.072497] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1011 genl_bind+0x142/0x15e()
[ 19.074433] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.076210] 0000000000000009 ffff88000b44fdd8 ffffffff8175b593 ffff88000b44fe18
[ 19.077755] ffffffff810b55aa 0000000000000017 ffffffff8174d931 ffffffff834a3400
[ 19.079303] 0000000000000017 0000000000000000 0000000000000000 ffff88000b44fe28
[ 19.080909] Call Trace:
[ 19.081391] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.082392] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.083596] [<ffffffff8174d931>] ? genl_bind+0x142/0x15e
[ 19.084691] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.085837] [<ffffffff8174d931>] genl_bind+0x142/0x15e
[ 19.086965] [<ffffffff8174ab86>] netlink_bind+0x155/0x2ce
[ 19.088085] [<ffffffff8170e512>] SyS_bind+0xc1/0x117
[ 19.089106] [<ffffffff81769058>] ? _raw_spin_unlock+0x38/0x50
[ 19.090230] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.091595] [<ffffffff810eafbd>] ? trace_hardirqs_on+0x1b/0x24
[ 19.092806] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.093980] ---[ end trace f8ae22d84a926b7d ]---
[ 19.538986] ------------[ cut here ]------------
[ 19.539567] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.540710] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.541698] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.542581] ffffffff810b55aa 0000000000000001 ffffffff8174d7e0 ffffffff834a3400
[ 19.543481] 0000000000000001 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.544373] Call Trace:
[ 19.544665] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.545257] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.545930] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.546544] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.547195] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.547804] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.548463] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.549072] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.549646] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.550232] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.550793] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.551405] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.551950] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.552710] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.553359] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.553982] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.554654] ---[ end trace f8ae22d84a926b7e ]---
[ 19.555248] ------------[ cut here ]------------
[ 19.555777] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.556927] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.557915] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.558799] ffffffff810b55aa 0000000000000004 ffffffff8174d7e0 ffffffff834a3400
[ 19.559700] 0000000000000004 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.560613] Call Trace:
[ 19.560895] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.561463] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.562117] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.562699] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.563344] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.563943] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.564573] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.565185] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.566160] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.567133] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.568101] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.569125] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.570108] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.571365] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.572438] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.573392] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.574453] ---[ end trace f8ae22d84a926b7f ]---
[ 19.575366] ------------[ cut here ]------------
[ 19.576307] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.578651] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.580405] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.581944] ffffffff810b55aa 0000000000000005 ffffffff8174d7e0 ffffffff834a3400
[ 19.583833] 0000000000000005 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.585700] Call Trace:
[ 19.586342] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.587626] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.589066] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.590410] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.591776] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.593120] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.594466] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.595752] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.596989] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.598159] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.599363] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.600668] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.601899] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.603480] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.604851] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.606138] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.607562] ---[ end trace f8ae22d84a926b80 ]---
[ 19.608796] ------------[ cut here ]------------
[ 19.609885] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.612320] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.614368] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.616270] ffffffff810b55aa 0000000000000006 ffffffff8174d7e0 ffffffff834a3400
[ 19.618127] 0000000000000006 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.619983] Call Trace:
[ 19.620643] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.621833] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.623269] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.624598] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.626002] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.627294] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.628704] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.629948] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.631151] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.632358] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.633556] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.634873] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.636087] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.637692] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.639002] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.640341] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.641783] ---[ end trace f8ae22d84a926b81 ]---
[ 19.642956] ------------[ cut here ]------------
[ 19.644129] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.646634] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.648769] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.650625] ffffffff810b55aa 0000000000000007 ffffffff8174d7e0 ffffffff834a3400
[ 19.652504] 0000000000000007 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.654364] Call Trace:
[ 19.654959] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.656229] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.657636] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.658972] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.660380] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.661658] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.663020] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.664339] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.665571] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.666757] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.667946] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.669253] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.670492] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.672099] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.673827] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.674853] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.675924] ---[ end trace f8ae22d84a926b82 ]---
[ 19.676837] ------------[ cut here ]------------
[ 19.677661] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.679433] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.681052] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.682507] ffffffff810b55aa 0000000000000008 ffffffff8174d7e0 ffffffff834a3400
[ 19.683877] 0000000000000008 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.685300] Call Trace:
[ 19.685742] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.686671] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.687793] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.688819] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.689827] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.690779] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.691815] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.692757] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.693641] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.694522] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.695450] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.696477] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.697339] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.698493] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.699493] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.700588] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.701731] ---[ end trace f8ae22d84a926b83 ]---
[ 19.703156] ------------[ cut here ]------------
[ 19.704007] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.705927] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.707512] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.708926] ffffffff810b55aa 0000000000000009 ffffffff8174d7e0 ffffffff834a3400
[ 19.710326] 0000000000000009 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.711806] Call Trace:
[ 19.712284] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.713187] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.714213] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.715180] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.716278] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.717290] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.718315] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.719233] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.720152] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.721060] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.722012] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.722984] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.723853] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.725053] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.726068] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.727076] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.728175] ---[ end trace f8ae22d84a926b84 ]---
[ 19.729057] ------------[ cut here ]------------
[ 19.729846] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.731888] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.733619] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.735019] ffffffff810b55aa 000000000000000a ffffffff8174d7e0 ffffffff834a3400
[ 19.736939] 000000000000000a 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.738744] Call Trace:
[ 19.739241] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.740247] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.742245] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.743286] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.744402] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.745392] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.746471] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.747459] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.748442] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.749528] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.750467] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.751487] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.752423] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.753749] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.754769] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.755791] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.756931] ---[ end trace f8ae22d84a926b85 ]---
[ 19.757908] ------------[ cut here ]------------
[ 19.758863] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.760741] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.762366] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.763931] ffffffff810b55aa 000000000000000b ffffffff8174d7e0 ffffffff834a3400
[ 19.765532] 000000000000000b 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.767069] Call Trace:
[ 19.767544] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.768562] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.769724] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.770732] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.771790] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.772834] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.773871] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.774846] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.775785] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.776724] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.777707] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.778727] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.779725] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.781039] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.782060] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.783059] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.784202] ---[ end trace f8ae22d84a926b86 ]---
[ 19.785145] ------------[ cut here ]------------
[ 19.785865] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.787616] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.789248] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.790747] ffffffff810b55aa 000000000000000c ffffffff8174d7e0 ffffffff834a3400
[ 19.792281] 000000000000000c 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.793905] Call Trace:
[ 19.794419] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.795365] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.796369] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.797274] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.798205] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.799001] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.799656] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.800281] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.800831] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.801341] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.801884] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.802499] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.803066] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.803830] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.804461] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.805073] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.805721] ---[ end trace f8ae22d84a926b87 ]---
[ 19.806307] ------------[ cut here ]------------
[ 19.806832] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.807968] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.808955] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.809834] ffffffff810b55aa 000000000000000d ffffffff8174d7e0 ffffffff834a3400
[ 19.810739] 000000000000000d 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.811639] Call Trace:
[ 19.811924] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.812511] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.813174] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.813809] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.814455] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.815063] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.815713] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.816315] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.816893] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.817444] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.818006] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.818616] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.819173] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.819910] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.820552] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.821161] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.821836] ---[ end trace f8ae22d84a926b88 ]---
[ 19.822388] ------------[ cut here ]------------
[ 19.822915] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.824058] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.825033] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.825920] ffffffff810b55aa 000000000000000e ffffffff8174d7e0 ffffffff834a3400
[ 19.826808] 000000000000000e 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.827687] Call Trace:
[ 19.827954] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.828534] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.829175] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.829808] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.830466] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.831070] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.831720] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.832293] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.832857] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.833409] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.833970] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.834595] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.835164] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.835930] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.836567] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.837174] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.837853] ---[ end trace f8ae22d84a926b89 ]---
[ 19.838406] ------------[ cut here ]------------
[ 19.838925] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.840066] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.841015] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.841895] ffffffff810b55aa 000000000000000f ffffffff8174d7e0 ffffffff834a3400
[ 19.842756] 000000000000000f 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.843648] Call Trace:
[ 19.843935] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.844537] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.845202] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.845768] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.846374] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.846915] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.847500] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.848056] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.848584] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.849097] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.849601] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.850162] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.850703] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.851426] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.852040] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.852629] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.853252] ---[ end trace f8ae22d84a926b8a ]---
[ 19.854252] ------------[ cut here ]------------
[ 19.855308] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.857478] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.859345] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.861096] ffffffff810b55aa 0000000000000005 ffffffff8174d7e0 ffffffff834a3400
[ 19.862712] 0000000000000005 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.864407] Call Trace:
[ 19.864942] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.866002] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.867115] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.868228] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.869315] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.870322] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.871312] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.872301] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.873277] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.874221] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.875117] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.876191] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.877237] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.878717] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.879899] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.881041] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.882303] ---[ end trace f8ae22d84a926b8b ]---
[ 19.883435] ------------[ cut here ]------------
[ 19.884438] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.886544] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.888412] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.889972] ffffffff810b55aa 0000000000000006 ffffffff8174d7e0 ffffffff834a3400
[ 19.891583] 0000000000000006 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.893293] Call Trace:
[ 19.893824] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.894834] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.896015] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.897237] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.898460] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.899555] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.900787] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.901934] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.902992] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.903986] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.905045] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.906185] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.907229] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.908561] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.909643] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.910791] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.911995] ---[ end trace f8ae22d84a926b8c ]---
[ 19.912996] ------------[ cut here ]------------
[ 19.914077] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.916415] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.918039] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.919544] ffffffff810b55aa 0000000000000008 ffffffff8174d7e0 ffffffff834a3400
[ 19.921052] 0000000000000008 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.922499] Call Trace:
[ 19.922983] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.923968] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.925116] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.926156] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.927319] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.928393] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.929506] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.930557] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.931579] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.932581] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.933574] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.934658] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.935664] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.936998] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.938054] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.939126] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.940337] ---[ end trace f8ae22d84a926b8d ]---
[ 19.941280] ------------[ cut here ]------------
[ 19.942184] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.944158] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.945686] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.947119] ffffffff810b55aa 000000000000000b ffffffff8174d7e0 ffffffff834a3400
[ 19.948548] 000000000000000b 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.949923] Call Trace:
[ 19.950404] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.951343] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.952462] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.953454] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.954471] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.955460] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.956534] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.957472] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.958419] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.959318] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.960224] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.961162] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.962052] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.963257] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.963857] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.964440] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.965071] ---[ end trace f8ae22d84a926b8e ]---
[ 19.965558] ------------[ cut here ]------------
[ 19.966058] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.967105] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.968028] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.968898] ffffffff810b55aa 000000000000000d ffffffff8174d7e0 ffffffff834a3400
[ 19.969702] 000000000000000d 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.970528] Call Trace:
[ 19.970791] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.971342] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.971969] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.972572] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.973177] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.973751] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.974339] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.974898] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.975459] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.975984] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.976573] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.977150] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.977685] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.978411] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.978990] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.979572] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.980194] ---[ end trace f8ae22d84a926b8f ]---
[ 19.981122] ------------[ cut here ]------------
[ 19.981650] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.982679] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.983601] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 19.984453] ffffffff810b55aa 0000000000000005 ffffffff8174d7e0 ffffffff834a3400
[ 19.985269] 0000000000000005 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 19.986115] Call Trace:
[ 19.986387] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 19.986968] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 19.987624] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 19.988212] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 19.988840] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 19.989403] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 19.989998] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 19.990552] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 19.991098] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 19.991630] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 19.992141] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 19.992708] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 19.993220] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 19.993938] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 19.994517] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 19.995121] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 19.995747] ---[ end trace f8ae22d84a926b90 ]---
[ 19.996321] ------------[ cut here ]------------
[ 19.996833] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 19.998220] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 19.999663] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.000554] ffffffff810b55aa 0000000000000006 ffffffff8174d7e0 ffffffff834a3400
[ 20.001368] 0000000000000006 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.002191] Call Trace:
[ 20.002478] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.003045] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.003716] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.004301] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.004911] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.005468] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.006085] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.006630] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.007151] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.007692] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.008208] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.008824] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.009351] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.010070] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.010634] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.011224] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.011887] ---[ end trace f8ae22d84a926b91 ]---
[ 20.012442] ------------[ cut here ]------------
[ 20.012919] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.013969] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.014895] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.015767] ffffffff810b55aa 0000000000000007 ffffffff8174d7e0 ffffffff834a3400
[ 20.016611] 0000000000000007 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.017445] Call Trace:
[ 20.017738] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.018281] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.018901] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.019492] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.020096] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.020718] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.021312] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.021862] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.022384] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.022884] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.023424] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.024022] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.024567] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.025247] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.025839] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.026413] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.027074] ---[ end trace f8ae22d84a926b92 ]---
[ 20.027623] ------------[ cut here ]------------
[ 20.028120] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.029169] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.030104] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.030942] ffffffff810b55aa 000000000000000b ffffffff8174d7e0 ffffffff834a3400
[ 20.031781] 000000000000000b 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.032598] Call Trace:
[ 20.032876] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.033404] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.034040] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.034607] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.035226] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.035807] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.036407] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.036976] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.037505] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.038032] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.038532] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.039111] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.039657] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.040375] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.040966] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.041531] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.042147] ---[ end trace f8ae22d84a926b93 ]---
[ 20.042650] ------------[ cut here ]------------
[ 20.043146] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.044231] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.045130] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.045981] ffffffff810b55aa 000000000000000c ffffffff8174d7e0 ffffffff834a3400
[ 20.047324] 000000000000000c 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.048903] Call Trace:
[ 20.049402] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.050406] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.051549] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.052668] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.053818] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.054858] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.055986] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.057052] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.058079] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.058966] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.059821] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.060795] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.061682] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.062839] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.063802] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.064776] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.065822] ---[ end trace f8ae22d84a926b94 ]---
[ 20.066681] ------------[ cut here ]------------
[ 20.067505] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.069267] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.070764] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.072162] ffffffff810b55aa 000000000000000d ffffffff8174d7e0 ffffffff834a3400
[ 20.073534] 000000000000000d 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.074904] Call Trace:
[ 20.075353] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.076272] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.077300] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.078269] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.079276] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.080233] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.081237] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.082154] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.083038] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.083912] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.084713] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.085652] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.086555] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.087743] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.088726] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.089685] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.090715] ---[ end trace f8ae22d84a926b95 ]---
[ 20.091569] ------------[ cut here ]------------
[ 20.092397] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.094137] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.095641] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.097033] ffffffff810b55aa 000000000000000f ffffffff8174d7e0 ffffffff834a3400
[ 20.098402] 000000000000000f 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.099749] Call Trace:
[ 20.100205] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.101085] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.102122] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.103089] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.104106] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.105055] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.106047] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.106962] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.107902] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.108770] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.109625] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.110570] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.111435] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.112625] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.113578] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.114558] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.115590] ---[ end trace f8ae22d84a926b96 ]---
[ 20.117494] ------------[ cut here ]------------
[ 20.118343] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.120082] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.121574] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.122980] ffffffff810b55aa 0000000000000001 ffffffff8174d7e0 ffffffff834a3400
[ 20.124374] 0000000000000001 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.125745] Call Trace:
[ 20.126178] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.127068] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.128122] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.129084] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.130084] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.131022] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.132033] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.132975] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.133867] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.134725] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.135600] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.136541] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.137319] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.138304] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.138908] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.139511] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.140195] ---[ end trace f8ae22d84a926b97 ]---
[ 20.140885] ------------[ cut here ]------------
[ 20.141413] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.142460] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.143860] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.145159] ffffffff810b55aa 0000000000000004 ffffffff8174d7e0 ffffffff834a3400
[ 20.146295] 0000000000000004 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.147507] Call Trace:
[ 20.147834] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.148648] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.149415] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.150253] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.150871] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.151475] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.152103] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.152677] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.153264] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.153829] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.154396] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.155017] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.155583] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.156322] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.156943] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.157580] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.158284] ---[ end trace f8ae22d84a926b98 ]---
[ 20.158829] ------------[ cut here ]------------
[ 20.159360] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.160479] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.161482] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.162407] ffffffff810b55aa 0000000000000005 ffffffff8174d7e0 ffffffff834a3400
[ 20.163323] 0000000000000005 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.164213] Call Trace:
[ 20.164499] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.165074] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.165757] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.166391] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.167009] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.167576] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.168193] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.168789] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.169388] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.169974] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.170566] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.171218] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.171815] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.172610] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.173273] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.173921] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.174632] ---[ end trace f8ae22d84a926b99 ]---
[ 20.175228] ------------[ cut here ]------------
[ 20.175761] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.176907] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.177836] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.178708] ffffffff810b55aa 0000000000000006 ffffffff8174d7e0 ffffffff834a3400
[ 20.179599] 0000000000000006 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.180513] Call Trace:
[ 20.180800] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.181385] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.182062] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.182691] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.183350] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.183950] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.184583] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.185138] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.185731] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.186304] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.186831] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.187416] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.187981] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.188772] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.189380] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.189967] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.190610] ---[ end trace f8ae22d84a926b9a ]---
[ 20.191123] ------------[ cut here ]------------
[ 20.191611] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.192682] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.193714] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.194643] ffffffff810b55aa 0000000000000007 ffffffff8174d7e0 ffffffff834a3400
[ 20.195574] 0000000000000007 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.196482] Call Trace:
[ 20.196769] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.197349] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.198020] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.198646] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.199269] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.199872] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.200635] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.201232] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.201814] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.202382] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.202940] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.203565] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.204129] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.204872] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.205507] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.206131] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.206778] ---[ end trace f8ae22d84a926b9b ]---
[ 20.207288] ------------[ cut here ]------------
[ 20.207816] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.208951] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.209861] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.210713] ffffffff810b55aa 0000000000000009 ffffffff8174d7e0 ffffffff834a3400
[ 20.211581] 0000000000000009 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.212469] Call Trace:
[ 20.212752] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.213340] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.214018] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.214649] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.215311] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.215905] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.216561] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.217147] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.217736] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.218299] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.218847] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.219442] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.219989] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.220747] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.221357] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.221930] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.222565] ---[ end trace f8ae22d84a926b9c ]---
[ 20.223107] ------------[ cut here ]------------
[ 20.223641] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.224787] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.225768] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.226646] ffffffff810b55aa 000000000000000a ffffffff8174d7e0 ffffffff834a3400
[ 20.227515] 000000000000000a 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.228385] Call Trace:
[ 20.228663] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.229232] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.229882] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.230497] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.231123] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.231720] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.232345] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.232959] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.233526] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.234082] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.234642] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.235262] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.235829] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.236577] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.237186] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.237809] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.238467] ---[ end trace f8ae22d84a926b9d ]---
[ 20.239002] ------------[ cut here ]------------
[ 20.239521] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.240629] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.241547] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.242357] ffffffff810b55aa 000000000000000f ffffffff8174d7e0 ffffffff834a3400
[ 20.243155] 000000000000000f 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.243961] Call Trace:
[ 20.244240] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.244758] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.245366] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.245925] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.246514] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.247055] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.247640] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.248191] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.248717] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.249227] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.249730] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.250289] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.250801] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.251489] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.252065] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.252621] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.253226] ---[ end trace f8ae22d84a926b9e ]---
[ 20.254171] ------------[ cut here ]------------
[ 20.254658] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.255676] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.256577] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.257392] ffffffff810b55aa 0000000000000001 ffffffff8174d7e0 ffffffff834a3400
[ 20.258195] 0000000000000001 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.259004] Call Trace:
[ 20.259270] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.259789] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.260412] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.260971] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.261559] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.262105] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.262688] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.263230] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.263748] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.264273] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.264776] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.265335] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.265844] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.266530] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.267088] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.267652] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.268268] ---[ end trace f8ae22d84a926b9f ]---
[ 20.268847] ------------[ cut here ]------------
[ 20.269327] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.270346] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.271224] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.272073] ffffffff810b55aa 0000000000000004 ffffffff8174d7e0 ffffffff834a3400
[ 20.272885] 0000000000000004 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.273691] Call Trace:
[ 20.273950] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.274474] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.275079] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.275643] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.276250] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.276802] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.277394] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.277933] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.278457] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.278959] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.279468] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.280037] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.280560] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.281249] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.281810] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.282372] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.282976] ---[ end trace f8ae22d84a926ba0 ]---
[ 20.283476] ------------[ cut here ]------------
[ 20.283948] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.284985] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.285867] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.286677] ffffffff810b55aa 0000000000000006 ffffffff8174d7e0 ffffffff834a3400
[ 20.287486] 0000000000000006 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.288317] Call Trace:
[ 20.288577] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.289099] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.289709] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.290274] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.290861] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.291409] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.291991] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.292546] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.293066] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.293581] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.294082] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.294641] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.295154] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.295838] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.296417] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.296968] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.297577] ---[ end trace f8ae22d84a926ba1 ]---
[ 20.298064] ------------[ cut here ]------------
[ 20.298542] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.299558] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.300451] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.301266] ffffffff810b55aa 0000000000000007 ffffffff8174d7e0 ffffffff834a3400
[ 20.302085] 0000000000000007 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.302901] Call Trace:
[ 20.303161] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.303687] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.304308] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.304871] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.305464] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.306011] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.306596] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.307132] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.307659] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.308176] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.308688] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.309249] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.309762] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.310448] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.311007] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.311567] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.312182] ---[ end trace f8ae22d84a926ba2 ]---
[ 20.312686] ------------[ cut here ]------------
[ 20.313161] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.314179] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.315052] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.315861] ffffffff810b55aa 0000000000000008 ffffffff8174d7e0 ffffffff834a3400
[ 20.316690] 0000000000000008 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.317499] Call Trace:
[ 20.317760] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.318289] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.318899] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.319474] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.320089] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.320646] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.321231] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.321766] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.322293] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.322796] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.323301] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.323853] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.324385] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.325067] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.325636] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.326191] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.326797] ---[ end trace f8ae22d84a926ba3 ]---
[ 20.327683] ------------[ cut here ]------------
[ 20.329150] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.330757] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.332173] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.333446] ffffffff810b55aa 0000000000000020 ffffffff8174d7e0 ffffffff834a3400
[ 20.334705] 0000000000000020 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.335962] Call Trace:
[ 20.336392] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.337217] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.338170] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.339054] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.339981] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.340850] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.341771] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.342626] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.343447] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.344256] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.345050] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.345930] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.346749] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.347830] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.348753] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.349631] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.350592] ---[ end trace f8ae22d84a926ba4 ]---
[ 20.352841] ------------[ cut here ]------------
[ 20.353599] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.355205] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.356620] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.357874] ffffffff810b55aa 0000000000000001 ffffffff8174d7e0 ffffffff834a3400
[ 20.359133] 0000000000000001 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.360420] Call Trace:
[ 20.360822] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.361644] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.362618] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.363512] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.364408] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.365028] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.365650] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.366226] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.366763] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.367308] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.367871] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.368532] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.369105] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.369894] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.370541] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.371170] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.371841] ---[ end trace f8ae22d84a926ba5 ]---
[ 20.372609] ------------[ cut here ]------------
[ 20.373112] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.374280] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.375204] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.376089] ffffffff810b55aa 0000000000000004 ffffffff8174d7e0 ffffffff834a3400
[ 20.376991] 0000000000000004 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.377849] Call Trace:
[ 20.378130] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.378711] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.379365] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.379970] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.380643] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.381236] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.381892] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.382498] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.383063] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.383612] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.384177] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.384811] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.385388] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.386150] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.386774] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.387408] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.388081] ---[ end trace f8ae22d84a926ba6 ]---
[ 20.388644] ------------[ cut here ]------------
[ 20.389147] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.390325] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.391283] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.392168] ffffffff810b55aa 0000000000000006 ffffffff8174d7e0 ffffffff834a3400
[ 20.393050] 0000000000000006 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.393973] Call Trace:
[ 20.394282] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.394886] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.395574] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.396223] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.396882] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.397511] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.398171] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.398796] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.399402] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.399956] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.400556] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.401211] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.401812] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.402694] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.403328] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.403937] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.404625] ---[ end trace f8ae22d84a926ba7 ]---
[ 20.405171] ------------[ cut here ]------------
[ 20.405706] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.406954] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.407931] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.408842] ffffffff810b55aa 0000000000000007 ffffffff8174d7e0 ffffffff834a3400
[ 20.409734] 0000000000000007 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.410737] Call Trace:
[ 20.411023] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.411599] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.412284] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.412916] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.413578] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.414225] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.414907] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.415504] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.416084] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.416642] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.417213] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.417832] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.418513] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.419274] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.419898] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.420531] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.421221] ---[ end trace f8ae22d84a926ba8 ]---
[ 20.421745] ------------[ cut here ]------------
[ 20.422338] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.423520] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.424508] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.425415] ffffffff810b55aa 0000000000000009 ffffffff8174d7e0 ffffffff834a3400
[ 20.426381] 0000000000000009 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.427322] Call Trace:
[ 20.427604] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.428185] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.428876] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.429515] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.430232] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.430893] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.431541] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.432141] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.432732] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.433309] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.433876] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.434594] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.435164] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.435917] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.436550] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.437174] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.437863] ---[ end trace f8ae22d84a926ba9 ]---
[ 20.438523] ------------[ cut here ]------------
[ 20.439048] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.440186] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.441183] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.442134] ffffffff810b55aa 000000000000000a ffffffff8174d7e0 ffffffff834a3400
[ 20.443081] 000000000000000a 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.443966] Call Trace:
[ 20.444268] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.444856] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.445546] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.446236] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.446952] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.447568] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.448226] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.448834] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.449425] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.449988] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.450664] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.451290] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.451854] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.452632] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.453277] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.453895] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.454661] ---[ end trace f8ae22d84a926baa ]---
[ 20.455212] ------------[ cut here ]------------
[ 20.455734] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.456872] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.457867] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.458870] ffffffff810b55aa 000000000000000b ffffffff8174d7e0 ffffffff834a3400
[ 20.459759] 000000000000000b 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.460663] Call Trace:
[ 20.460954] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.461547] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.462289] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.462981] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.463631] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.464282] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.464930] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.465538] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.466168] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.466820] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.467384] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.467992] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.468638] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.469414] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.470045] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.470833] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.471508] ---[ end trace f8ae22d84a926bab ]---
[ 20.472098] ------------[ cut here ]------------
[ 20.472641] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.473786] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.474921] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.475815] ffffffff810b55aa 000000000000000d ffffffff8174d7e0 ffffffff834a3400
[ 20.476761] 000000000000000d 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.477659] Call Trace:
[ 20.477950] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.478695] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.479375] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.479987] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.480719] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.481344] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.481997] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.482760] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.483344] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.483899] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.484524] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.485151] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.485730] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.486640] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.487268] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.487882] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.488619] ---[ end trace f8ae22d84a926bac ]---
[ 20.489148] ------------[ cut here ]------------
[ 20.489679] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.490832] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.491832] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.492716] ffffffff810b55aa 0000000000000012 ffffffff8174d7e0 ffffffff834a3400
[ 20.493615] 0000000000000012 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.494501] Call Trace:
[ 20.494783] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.495369] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.496090] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.496726] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.497392] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.498041] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.498676] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.499285] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.499863] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.500445] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.501007] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.501620] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.502165] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.502935] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.503550] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.504187] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.504868] ---[ end trace f8ae22d84a926bad ]---
[ 20.505448] ------------[ cut here ]------------
[ 20.505985] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.507126] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.508089] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.508932] ffffffff810b55aa 0000000000000013 ffffffff8174d7e0 ffffffff834a3400
[ 20.509813] 0000000000000013 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.510725] Call Trace:
[ 20.511021] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.511602] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.512313] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.512936] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.513562] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.514176] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.514782] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.515355] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.515918] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.516478] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.517097] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.517689] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.518314] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.519272] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.519982] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.520589] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.521340] ---[ end trace f8ae22d84a926bae ]---
[ 20.521876] ------------[ cut here ]------------
[ 20.522538] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.523705] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.524725] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.525693] ffffffff810b55aa 0000000000000015 ffffffff8174d7e0 ffffffff834a3400
[ 20.526597] 0000000000000015 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.527496] Call Trace:
[ 20.527785] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.528379] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.529060] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.529690] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.530339] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.530912] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.531536] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.532105] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.532673] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.533186] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.533711] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.534392] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.535015] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.535828] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.536539] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.537226] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.537868] ---[ end trace f8ae22d84a926baf ]---
[ 20.538554] ------------[ cut here ]------------
[ 20.539147] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.540522] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.541536] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.542535] ffffffff810b55aa 0000000000000017 ffffffff8174d7e0 ffffffff834a3400
[ 20.543469] 0000000000000017 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.544427] Call Trace:
[ 20.544695] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.545336] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.545962] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.546675] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.547279] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.548009] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.548633] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.549300] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.549846] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.550493] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.551017] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.551694] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.552324] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.553243] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.553831] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.554519] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.555154] ---[ end trace f8ae22d84a926bb0 ]---
[ 20.555794] ------------[ cut here ]------------
[ 20.556484] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.557674] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.558807] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.559667] ffffffff810b55aa 0000000000000018 ffffffff8174d7e0 ffffffff834a3400
[ 20.560616] 0000000000000018 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.561543] Call Trace:
[ 20.561841] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.562442] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.563117] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.563766] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.564463] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.565078] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.565727] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.566377] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.566955] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.567558] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.568164] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.568830] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.569424] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.570225] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.570858] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.571487] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.572146] ---[ end trace f8ae22d84a926bb1 ]---
[ 20.573027] ------------[ cut here ]------------
[ 20.573565] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.574722] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.575748] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.576738] ffffffff810b55aa 0000000000000001 ffffffff8174d7e0 ffffffff834a3400
[ 20.577669] 0000000000000001 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.578605] Call Trace:
[ 20.578925] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.579555] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.580279] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.580977] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.581703] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.582395] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.583105] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.583779] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.584448] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.585078] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.585684] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.586416] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.587040] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.587912] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.588573] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.589243] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.589915] ---[ end trace f8ae22d84a926bb2 ]---
[ 20.590493] ------------[ cut here ]------------
[ 20.591024] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.592280] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.593321] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.594218] ffffffff810b55aa 0000000000000007 ffffffff8174d7e0 ffffffff834a3400
[ 20.595144] 0000000000000007 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.596080] Call Trace:
[ 20.596384] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.596961] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.597648] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.598289] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.599034] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.599640] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.600469] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.601073] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.601649] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.602292] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.602939] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.603627] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.604296] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.605120] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.605743] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.606480] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.607142] ---[ end trace f8ae22d84a926bb3 ]---
[ 20.607763] ------------[ cut here ]------------
[ 20.608392] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.609622] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.610766] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.611726] ffffffff810b55aa 0000000000000009 ffffffff8174d7e0 ffffffff834a3400
[ 20.612806] 0000000000000009 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.613762] Call Trace:
[ 20.614045] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.614750] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.615492] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.616221] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.616954] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.617663] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.618461] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.619176] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.619831] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.620492] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.621130] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.621719] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.622296] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.623049] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.623753] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.624554] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.625303] ---[ end trace f8ae22d84a926bb4 ]---
[ 20.625838] ------------[ cut here ]------------
[ 20.626539] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.627736] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.628890] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.629772] ffffffff810b55aa 000000000000000d ffffffff8174d7e0 ffffffff834a3400
[ 20.630830] 000000000000000d 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.631783] Call Trace:
[ 20.632165] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.632823] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.633583] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.634320] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.635056] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.635745] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.636617] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.637299] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.637863] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.638589] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.639237] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.640015] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.640603] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.641445] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.642154] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.642861] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.643608] ---[ end trace f8ae22d84a926bb5 ]---
[ 20.644251] ------------[ cut here ]------------
[ 20.644766] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.645961] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.647100] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.648166] ffffffff810b55aa 0000000000000013 ffffffff8174d7e0 ffffffff834a3400
[ 20.649146] 0000000000000013 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.650016] Call Trace:
[ 20.650394] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.651045] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.651800] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.652628] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.653368] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.653958] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.654777] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.655358] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.656152] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.656794] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.657433] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.658030] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.658849] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.659685] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.660404] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.661005] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.661755] ---[ end trace f8ae22d84a926bb6 ]---
[ 20.662394] ------------[ cut here ]------------
[ 20.662984] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.664306] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.665355] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.666293] ffffffff810b55aa 0000000000000014 ffffffff8174d7e0 ffffffff834a3400
[ 20.667220] 0000000000000014 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.668163] Call Trace:
[ 20.668457] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.669039] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.669711] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.670385] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.671065] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.671706] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.672364] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.673102] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.674701] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.675247] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.675991] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.676724] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.677373] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.678192] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.678990] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.679693] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.680461] ---[ end trace f8ae22d84a926bb7 ]---
[ 20.681095] ------------[ cut here ]------------
[ 20.681627] WARNING: CPU: 0 PID: 109 at net/netlink/genetlink.c:1040 genl_unbind+0x133/0x142()
[ 20.682904] CPU: 0 PID: 109 Comm: trinity-main Tainted: G W 3.18.0-11169-gc380d9a #9
[ 20.684073] 0000000000000009 ffff88000b44fd38 ffffffff8175b593 ffff88000b44fd78
[ 20.684943] ffffffff810b55aa 0000000000000018 ffffffff8174d7e0 ffffffff834a3400
[ 20.685902] 0000000000000018 0000000000000000 ffff88001202a520 ffff88000b44fd88
[ 20.686989] Call Trace:
[ 20.687265] [<ffffffff8175b593>] dump_stack+0x2e/0x3e
[ 20.688006] [<ffffffff810b55aa>] warn_slowpath_common+0xb6/0xe5
[ 20.688690] [<ffffffff8174d7e0>] ? genl_unbind+0x133/0x142
[ 20.689484] [<ffffffff810b56db>] warn_slowpath_null+0x23/0x2c
[ 20.690210] [<ffffffff8174d7e0>] genl_unbind+0x133/0x142
[ 20.690900] [<ffffffff8174b063>] netlink_release+0x364/0x3fd
[ 20.691621] [<ffffffff8170d262>] sock_release+0x23/0xa3
[ 20.692343] [<ffffffff8170d2f6>] sock_close+0x14/0x1f
[ 20.692991] [<ffffffff81199c9f>] __fput+0x16c/0x28e
[ 20.693632] [<ffffffff81199dd1>] ____fput+0x10/0x19
[ 20.694272] [<ffffffff810d1d20>] task_work_run+0xc7/0x116
[ 20.694974] [<ffffffff810b7e57>] do_exit+0x550/0xd1f
[ 20.695607] [<ffffffff8114553f>] ? context_tracking_user_exit+0xe2/0x101
[ 20.696549] [<ffffffff810b8776>] do_group_exit+0x107/0x127
[ 20.697264] [<ffffffff810b87ac>] SyS_exit_group+0x16/0x16
[ 20.697867] [<ffffffff8176a2e7>] system_call_fastpath+0x12/0x17
[ 20.698704] ---[ end trace f8ae22d84a926bb8 ]---
[ 61.756085] rcu-torture: rtc: ffffffff83194300 ver: 1 tfle: 0 rta: 1 rtaf: 0 rtf: 0 rtmbe: 0 rtbke: 0 rtbre: 0 rtbf: 0 rtb: 0 nt: 1 barrier: 0/0:0 cbflood: 1
[ 61.758004] rcu-torture: Reader Pipe: 2 0 0 0 0 0 0 0 0 0 0
[ 61.758804] rcu-torture: Reader Batch: 2 0 0 0 0 0 0 0 0 0 0
[ 61.759743] rcu-torture: Free-Block Circulation: 0 0 0 0 0 0 0 0 0 0 0
mount: proc has wrong device number or fs type proc not supported
/etc/rc6.d/S40umountfs: line 20: /proc/mounts: No such file or directory
cat: /proc/1/maps: No such file or directory
cat: /proc/1/maps: No such file or directory
cat: /proc/1/maps: No such file or directory
cat: /proc/1/maps: No such file or directory
cat: /proc/1/maps: No such file or directory
cat: /proc/1/maps: No such file or directory
umount: /var/run: not mounted
umount: /var/lock: not mounted
umount: /dev/shm: not mounted
* Will now restart
[ 72.956306] Unregister pv shared memory for cpu 0
[ 72.956909] rcu-torture: Unscheduled system shutdown detected
[ 72.957557] sbc60xxwdt: Watchdog timer is now disabled...
[ 72.958779] reboot: Restarting system
[ 72.959189] reboot: machine restart
Elapsed time: 80
qemu-system-x86_64 -cpu kvm64 -enable-kvm -kernel /kernel/x86_64-randconfig-n0-12271619/c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962/vmlinuz-3.18.0-11169-gc380d9a -append 'hung_task_panic=1 earlyprintk=ttyS0,115200 debug apic=debug sysrq_always_enabled rcupdate.rcu_cpu_stall_timeout=100 panic=-1 softlockup_panic=1 nmi_watchdog=panic oops=panic load_ramdisk=2 prompt_ramdisk=0 console=ttyS0,115200 console=tty0 vga=normal root=/dev/ram0 rw link=/kbuild-tests/run-queue/kvm/x86_64-randconfig-n0-12271619/linux-devel:devel-lkp-nhm1-smoke-201412271621:c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962:bisect-linux-1/.vmlinuz-c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962-20141227174430-26-client7 branch=linux-devel/devel-lkp-nhm1-smoke-201412271621 BOOT_IMAGE=/kernel/x86_64-randconfig-n0-12271619/c380d9a7afff0e4c2e5f3c1c2dc7d2f4214dd962/vmlinuz-3.18.0-11169-gc380d9a drbd.minor_count=8' -initrd /kernel-tests/initrd/quantal-core-x86_64.cgz -m 320 -smp 2 -net nic,vlan=1,model=e1000 -net user,vlan=1 -boot order=nc -no-reboot -watchdog i6300esb -rtc base=localtime -pidfile /dev/shm/kboot/pid-quantal-client7-25 -serial file:/dev/shm/kboot/serial-quantal-client7-25 -daemonize -display none -monitor null
[-- Attachment #3: config-3.18.0-11169-gc380d9a --]
[-- Type: text/plain, Size: 70782 bytes --]
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86_64 3.18.0 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_PERF_EVENTS_INTEL_UNCORE=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_X86_INTEL_MPX=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_CONSTRUCTORS=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y
#
# General setup
#
CONFIG_BROKEN_ON_SMP=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=""
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
# CONFIG_KERNEL_GZIP is not set
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
CONFIG_KERNEL_LZO=y
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SYSVIPC=y
# CONFIG_POSIX_MQUEUE is not set
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_FHANDLE=y
CONFIG_USELIB=y
# CONFIG_AUDIT is not set
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_LEGACY_ALLOC_HWIRQ=y
CONFIG_IRQ_DOMAIN=y
# CONFIG_IRQ_DOMAIN_DEBUG is not set
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y
#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
# CONFIG_TICK_CPU_ACCOUNTING is not set
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
# CONFIG_TASKSTATS is not set
#
# RCU Subsystem
#
CONFIG_TINY_RCU=y
# CONFIG_TASKS_RCU is not set
# CONFIG_RCU_STALL_COMMON is not set
CONFIG_CONTEXT_TRACKING=y
CONFIG_CONTEXT_TRACKING_FORCE=y
# CONFIG_TREE_RCU_TRACE is not set
CONFIG_BUILD_BIN2C=y
CONFIG_IKCONFIG=y
CONFIG_LOG_BUF_SHIFT=17
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_CGROUPS=y
CONFIG_CGROUP_DEBUG=y
# CONFIG_CGROUP_FREEZER is not set
CONFIG_CGROUP_DEVICE=y
CONFIG_CPUSETS=y
# CONFIG_PROC_PID_CPUSET is not set
# CONFIG_CGROUP_CPUACCT is not set
# CONFIG_MEMCG is not set
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
# CONFIG_CFS_BANDWIDTH is not set
CONFIG_RT_GROUP_SCHED=y
CONFIG_CHECKPOINT_RESTORE=y
# CONFIG_NAMESPACES is not set
CONFIG_SCHED_AUTOGROUP=y
# CONFIG_SYSFS_DEPRECATED is not set
# CONFIG_RELAY is not set
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
# CONFIG_RD_BZIP2 is not set
# CONFIG_RD_LZMA is not set
# CONFIG_RD_XZ is not set
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
# CONFIG_INIT_FALLBACK is not set
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_ANON_INODES=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BPF=y
CONFIG_EXPERT=y
# CONFIG_SGETMASK_SYSCALL is not set
# CONFIG_SYSFS_SYSCALL is not set
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
# CONFIG_SIGNALFD is not set
# CONFIG_TIMERFD is not set
CONFIG_EVENTFD=y
CONFIG_BPF_SYSCALL=y
# CONFIG_SHMEM is not set
CONFIG_AIO=y
# CONFIG_ADVISE_SYSCALLS is not set
CONFIG_PCI_QUIRKS=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y
#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
# CONFIG_VM_EVENT_COUNTERS is not set
# CONFIG_SLUB_DEBUG is not set
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
# CONFIG_SLOB is not set
# CONFIG_SYSTEM_TRUSTED_KEYRING is not set
CONFIG_PROFILING=y
# CONFIG_OPROFILE is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
CONFIG_JUMP_LABEL=y
# CONFIG_UPROBES is not set
# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_ATTRS=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_HAVE_CC_STACKPROTECTOR=y
CONFIG_CC_STACKPROTECTOR=y
# CONFIG_CC_STACKPROTECTOR_NONE is not set
CONFIG_CC_STACKPROTECTOR_REGULAR=y
# CONFIG_CC_STACKPROTECTOR_STRONG is not set
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
#
# GCOV-based kernel profiling
#
CONFIG_GCOV_KERNEL=y
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
CONFIG_GCOV_PROFILE_ALL=y
# CONFIG_GCOV_FORMAT_AUTODETECT is not set
# CONFIG_GCOV_FORMAT_3_4 is not set
CONFIG_GCOV_FORMAT_4_7=y
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
# CONFIG_MODULES is not set
# CONFIG_BLOCK is not set
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_ARCH_USE_QUEUE_RWLOCK=y
CONFIG_FREEZER=y
#
# Processor type and features
#
CONFIG_ZONE_DMA=y
# CONFIG_SMP is not set
CONFIG_X86_FEATURE_NAMES=y
CONFIG_X86_MPPARSE=y
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_GOLDFISH is not set
# CONFIG_X86_INTEL_LPSS is not set
# CONFIG_IOSF_MBI is not set
# CONFIG_SCHED_OMIT_FRAME_POINTER is not set
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_DEBUG is not set
# CONFIG_XEN is not set
CONFIG_KVM_GUEST=y
# CONFIG_KVM_DEBUG_FS is not set
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
CONFIG_PARAVIRT_CLOCK=y
CONFIG_NO_BOOTMEM=y
# CONFIG_MEMTEST is not set
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
CONFIG_MCORE2=y
# CONFIG_MATOM is not set
# CONFIG_GENERIC_CPU is not set
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_P6_NOP=y
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
# CONFIG_PROCESSOR_SELECT is not set
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
# CONFIG_DMI is not set
# CONFIG_GART_IOMMU is not set
# CONFIG_CALGARY_IOMMU is not set
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
CONFIG_NR_CPUS=1
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_COUNT=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set
# CONFIG_X86_MCE is not set
# CONFIG_X86_16BIT is not set
CONFIG_X86_VSYSCALL_EMULATION=y
CONFIG_I8K=y
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
# CONFIG_MICROCODE_INTEL_EARLY is not set
# CONFIG_MICROCODE_AMD_EARLY is not set
# CONFIG_MICROCODE_EARLY is not set
CONFIG_X86_MSR=y
# CONFIG_X86_CPUID is not set
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_DIRECT_GBPAGES=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_VIRT_TO_BUS=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
CONFIG_NEED_PER_CPU_KM=y
# CONFIG_CLEANCACHE is not set
# CONFIG_CMA is not set
CONFIG_ZPOOL=y
CONFIG_ZBUD=y
CONFIG_ZSMALLOC=y
# CONFIG_PGTABLE_MAPPING is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set
CONFIG_X86_RESERVE_LOW=64
# CONFIG_MTRR is not set
CONFIG_ARCH_RANDOM=y
# CONFIG_X86_SMAP is not set
# CONFIG_EFI is not set
# CONFIG_SECCOMP is not set
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_SCHED_HRTICK=y
# CONFIG_KEXEC is not set
CONFIG_CRASH_DUMP=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
# CONFIG_RANDOMIZE_BASE is not set
CONFIG_PHYSICAL_ALIGN=0x200000
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
#
# Power management and ACPI options
#
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
CONFIG_PM_SLEEP=y
# CONFIG_PM_AUTOSLEEP is not set
CONFIG_PM_WAKELOCKS=y
CONFIG_PM_WAKELOCKS_LIMIT=100
CONFIG_PM_WAKELOCKS_GC=y
CONFIG_PM_RUNTIME=y
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_ADVANCED_DEBUG is not set
CONFIG_PM_SLEEP_DEBUG=y
CONFIG_PM_TRACE=y
CONFIG_PM_TRACE_RTC=y
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_EC_DEBUGFS is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
# CONFIG_ACPI_DOCK is not set
CONFIG_ACPI_PROCESSOR=y
# CONFIG_ACPI_IPMI is not set
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
# CONFIG_ACPI_CUSTOM_DSDT is not set
# CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
# CONFIG_ACPI_CONTAINER is not set
# CONFIG_ACPI_SBS is not set
# CONFIG_ACPI_HED is not set
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
# CONFIG_ACPI_APEI is not set
# CONFIG_PMIC_OPREGION is not set
CONFIG_SFI=y
#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_COMMON=y
# CONFIG_CPU_FREQ_STAT is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
#
# CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
# CONFIG_X86_PCC_CPUFREQ is not set
# CONFIG_X86_ACPI_CPUFREQ is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
CONFIG_X86_P4_CLOCKMOD=y
#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=y
#
# CPU Idle
#
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
CONFIG_INTEL_IDLE=y
#
# Memory power savings
#
CONFIG_I7300_IDLE_IOAT_CHANNEL=y
CONFIG_I7300_IDLE=y
#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
# CONFIG_PCI_MMCONFIG is not set
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
# CONFIG_PCIEPORTBUS is not set
# CONFIG_PCI_MSI is not set
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
CONFIG_HT_IRQ=y
# CONFIG_PCI_IOV is not set
# CONFIG_PCI_PRI is not set
# CONFIG_PCI_PASID is not set
# CONFIG_PCI_IOAPIC is not set
CONFIG_PCI_LABEL=y
#
# PCI host controller drivers
#
# CONFIG_ISA_DMA_API is not set
CONFIG_AMD_NB=y
CONFIG_PCCARD=y
CONFIG_PCMCIA=y
# CONFIG_PCMCIA_LOAD_CIS is not set
CONFIG_CARDBUS=y
#
# PC-card bridges
#
# CONFIG_YENTA is not set
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
# CONFIG_HOTPLUG_PCI is not set
# CONFIG_RAPIDIO is not set
# CONFIG_X86_SYSFB is not set
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
CONFIG_BINFMT_SCRIPT=y
# CONFIG_HAVE_AOUT is not set
# CONFIG_BINFMT_MISC is not set
# CONFIG_COREDUMP is not set
# CONFIG_IA32_EMULATION is not set
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_PMC_ATOM=y
CONFIG_NET=y
#
# Networking options
#
# CONFIG_PACKET is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_NET_KEY is not set
# CONFIG_INET is not set
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NET_PTP_CLASSIFY is not set
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
# CONFIG_NETFILTER is not set
# CONFIG_ATM is not set
# CONFIG_BRIDGE is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_IEEE802154 is not set
# CONFIG_NET_SCHED is not set
# CONFIG_DCB is not set
# CONFIG_DNS_RESOLVER is not set
# CONFIG_BATMAN_ADV is not set
# CONFIG_VSOCKETS is not set
# CONFIG_NETLINK_MMAP is not set
# CONFIG_NETLINK_DIAG is not set
# CONFIG_NET_MPLS_GSO is not set
# CONFIG_HSR is not set
# CONFIG_CGROUP_NET_PRIO is not set
# CONFIG_CGROUP_NET_CLASSID is not set
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
#
# Network testing
#
# CONFIG_HAMRADIO is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
# CONFIG_BT is not set
CONFIG_WIRELESS=y
# CONFIG_CFG80211 is not set
# CONFIG_LIB80211 is not set
#
# CFG80211 needs to be enabled for MAC80211
#
# CONFIG_WIMAX is not set
# CONFIG_RFKILL is not set
# CONFIG_RFKILL_REGULATOR is not set
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
# CONFIG_NFC is not set
CONFIG_HAVE_BPF_JIT=y
#
# Device Drivers
#
#
# Generic Driver Options
#
# CONFIG_UEVENT_HELPER is not set
# CONFIG_DEVTMPFS is not set
CONFIG_STANDALONE=y
# CONFIG_PREVENT_FIRMWARE_BUILD is not set
CONFIG_FW_LOADER=y
# CONFIG_FIRMWARE_IN_KERNEL is not set
CONFIG_EXTRA_FIRMWARE=""
CONFIG_FW_LOADER_USER_HELPER=y
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
# CONFIG_SYS_HYPERVISOR is not set
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_REGMAP_MMIO=y
CONFIG_REGMAP_IRQ=y
# CONFIG_DMA_SHARED_BUFFER is not set
#
# Bus devices
#
# CONFIG_CONNECTOR is not set
CONFIG_MTD=y
# CONFIG_MTD_REDBOOT_PARTS is not set
# CONFIG_MTD_CMDLINE_PARTS is not set
# CONFIG_MTD_AR7_PARTS is not set
#
# User Modules And Translation Layers
#
CONFIG_MTD_OOPS=y
#
# RAM/ROM/Flash chip drivers
#
# CONFIG_MTD_CFI is not set
CONFIG_MTD_JEDECPROBE=y
CONFIG_MTD_GEN_PROBE=y
# CONFIG_MTD_CFI_ADV_OPTIONS is not set
CONFIG_MTD_MAP_BANK_WIDTH_1=y
CONFIG_MTD_MAP_BANK_WIDTH_2=y
CONFIG_MTD_MAP_BANK_WIDTH_4=y
# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set
# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set
# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set
CONFIG_MTD_CFI_I1=y
CONFIG_MTD_CFI_I2=y
# CONFIG_MTD_CFI_I4 is not set
# CONFIG_MTD_CFI_I8 is not set
CONFIG_MTD_CFI_INTELEXT=y
# CONFIG_MTD_CFI_AMDSTD is not set
# CONFIG_MTD_CFI_STAA is not set
CONFIG_MTD_CFI_UTIL=y
CONFIG_MTD_RAM=y
CONFIG_MTD_ROM=y
CONFIG_MTD_ABSENT=y
#
# Mapping drivers for chip access
#
# CONFIG_MTD_COMPLEX_MAPPINGS is not set
CONFIG_MTD_PHYSMAP=y
CONFIG_MTD_PHYSMAP_COMPAT=y
CONFIG_MTD_PHYSMAP_START=0x8000000
CONFIG_MTD_PHYSMAP_LEN=0
CONFIG_MTD_PHYSMAP_BANKWIDTH=2
CONFIG_MTD_AMD76XROM=y
# CONFIG_MTD_ICHXROM is not set
# CONFIG_MTD_ESB2ROM is not set
# CONFIG_MTD_CK804XROM is not set
# CONFIG_MTD_SCB2_FLASH is not set
# CONFIG_MTD_NETtel is not set
# CONFIG_MTD_L440GX is not set
# CONFIG_MTD_INTEL_VR_NOR is not set
CONFIG_MTD_PLATRAM=y
#
# Self-contained MTD device drivers
#
# CONFIG_MTD_PMC551 is not set
CONFIG_MTD_SLRAM=y
CONFIG_MTD_PHRAM=y
CONFIG_MTD_MTDRAM=y
CONFIG_MTDRAM_TOTAL_SIZE=4096
CONFIG_MTDRAM_ERASE_SIZE=128
CONFIG_MTDRAM_ABS_POS=0
#
# Disk-On-Chip Device Drivers
#
# CONFIG_MTD_DOCG3 is not set
CONFIG_MTD_NAND_ECC=y
CONFIG_MTD_NAND_ECC_SMC=y
CONFIG_MTD_NAND=y
CONFIG_MTD_NAND_BCH=y
CONFIG_MTD_NAND_ECC_BCH=y
# CONFIG_MTD_SM_COMMON is not set
CONFIG_MTD_NAND_DENALI=y
# CONFIG_MTD_NAND_DENALI_PCI is not set
# CONFIG_MTD_NAND_OMAP_BCH_BUILD is not set
CONFIG_MTD_NAND_IDS=y
# CONFIG_MTD_NAND_RICOH is not set
# CONFIG_MTD_NAND_DISKONCHIP is not set
CONFIG_MTD_NAND_DOCG4=y
# CONFIG_MTD_NAND_CAFE is not set
# CONFIG_MTD_NAND_NANDSIM is not set
# CONFIG_MTD_NAND_PLATFORM is not set
CONFIG_MTD_ONENAND=y
# CONFIG_MTD_ONENAND_VERIFY_WRITE is not set
CONFIG_MTD_ONENAND_GENERIC=y
# CONFIG_MTD_ONENAND_OTP is not set
CONFIG_MTD_ONENAND_2X_PROGRAM=y
#
# LPDDR & LPDDR2 PCM memory drivers
#
# CONFIG_MTD_LPDDR is not set
CONFIG_MTD_SPI_NOR=y
CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y
CONFIG_MTD_UBI=y
CONFIG_MTD_UBI_WL_THRESHOLD=4096
CONFIG_MTD_UBI_BEB_LIMIT=20
CONFIG_MTD_UBI_FASTMAP=y
# CONFIG_MTD_UBI_GLUEBI is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
# CONFIG_PARPORT is not set
CONFIG_PNP=y
CONFIG_PNP_DEBUG_MESSAGES=y
#
# Protocols
#
CONFIG_PNPACPI=y
#
# Misc devices
#
CONFIG_SENSORS_LIS3LV02D=y
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
CONFIG_ENCLOSURE_SERVICES=y
# CONFIG_HP_ILO is not set
CONFIG_APDS9802ALS=y
CONFIG_ISL29003=y
CONFIG_ISL29020=y
# CONFIG_SENSORS_TSL2550 is not set
CONFIG_SENSORS_BH1780=y
CONFIG_SENSORS_BH1770=y
CONFIG_SENSORS_APDS990X=y
CONFIG_HMC6352=y
CONFIG_DS1682=y
CONFIG_VMWARE_BALLOON=y
# CONFIG_BMP085_I2C is not set
CONFIG_USB_SWITCH_FSA9480=y
CONFIG_SRAM=y
# CONFIG_C2PORT is not set
#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
CONFIG_EEPROM_LEGACY=y
CONFIG_EEPROM_MAX6875=y
CONFIG_EEPROM_93CX6=y
# CONFIG_CB710_CORE is not set
#
# Texas Instruments shared transport line discipline
#
CONFIG_SENSORS_LIS3_I2C=y
#
# Altera FPGA firmware download module
#
CONFIG_ALTERA_STAPL=y
# CONFIG_INTEL_MEI is not set
# CONFIG_INTEL_MEI_ME is not set
# CONFIG_INTEL_MEI_TXE is not set
# CONFIG_VMWARE_VMCI is not set
#
# Intel MIC Bus Driver
#
# CONFIG_INTEL_MIC_BUS is not set
#
# Intel MIC Host Driver
#
#
# Intel MIC Card Driver
#
# CONFIG_GENWQE is not set
CONFIG_ECHO=y
# CONFIG_CXL_BASE is not set
CONFIG_HAVE_IDE=y
#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_SCSI_DMA is not set
# CONFIG_SCSI_NETLINK is not set
# CONFIG_FUSION is not set
#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# CONFIG_I2O is not set
CONFIG_MACINTOSH_DRIVERS=y
# CONFIG_NETDEVICES is not set
#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_FF_MEMLESS=y
CONFIG_INPUT_POLLDEV=y
CONFIG_INPUT_SPARSEKMAP=y
CONFIG_INPUT_MATRIXKMAP=y
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=y
CONFIG_INPUT_EVDEV=y
CONFIG_INPUT_EVBUG=y
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
CONFIG_KEYBOARD_ADP5589=y
CONFIG_KEYBOARD_ATKBD=y
CONFIG_KEYBOARD_QT1070=y
CONFIG_KEYBOARD_QT2160=y
CONFIG_KEYBOARD_LKKBD=y
# CONFIG_KEYBOARD_TCA6416 is not set
CONFIG_KEYBOARD_TCA8418=y
CONFIG_KEYBOARD_LM8323=y
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
CONFIG_KEYBOARD_MCS=y
CONFIG_KEYBOARD_MPR121=y
# CONFIG_KEYBOARD_NEWTON is not set
CONFIG_KEYBOARD_OPENCORES=y
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
CONFIG_KEYBOARD_XTKBD=y
CONFIG_KEYBOARD_CROS_EC=y
# CONFIG_INPUT_MOUSE is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TABLET is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set
#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
CONFIG_SERIO_CT82C710=y
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=y
# CONFIG_SERIO_ALTERA_PS2 is not set
CONFIG_SERIO_PS2MULT=y
# CONFIG_SERIO_ARC_PS2 is not set
CONFIG_GAMEPORT=y
# CONFIG_GAMEPORT_NS558 is not set
# CONFIG_GAMEPORT_L4 is not set
# CONFIG_GAMEPORT_EMU10K1 is not set
# CONFIG_GAMEPORT_FM801 is not set
#
# Character devices
#
CONFIG_TTY=y
# CONFIG_VT is not set
CONFIG_UNIX98_PTYS=y
# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set
# CONFIG_LEGACY_PTYS is not set
# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_NOZOMI is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_ROUTER is not set
CONFIG_TRACE_SINK=y
# CONFIG_DEVKMEM is not set
#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCI=y
# CONFIG_SERIAL_8250_CS is not set
CONFIG_SERIAL_8250_NR_UARTS=4
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
# CONFIG_SERIAL_8250_EXTENDED is not set
# CONFIG_SERIAL_8250_DW is not set
# CONFIG_SERIAL_8250_FINTEK is not set
#
# Non-8250 serial port support
#
# CONFIG_SERIAL_MFD_HSU is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
CONFIG_SERIAL_SCCNXP=y
CONFIG_SERIAL_SCCNXP_CONSOLE=y
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
CONFIG_SERIAL_ARC=y
CONFIG_SERIAL_ARC_CONSOLE=y
CONFIG_SERIAL_ARC_NR_PORTS=1
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
CONFIG_TTY_PRINTK=y
CONFIG_IPMI_HANDLER=y
# CONFIG_IPMI_PANIC_EVENT is not set
CONFIG_IPMI_DEVICE_INTERFACE=y
CONFIG_IPMI_SI=y
# CONFIG_IPMI_SI_PROBE_DEFAULTS is not set
# CONFIG_IPMI_SSIF is not set
CONFIG_IPMI_WATCHDOG=y
# CONFIG_IPMI_POWEROFF is not set
CONFIG_HW_RANDOM=y
CONFIG_HW_RANDOM_TIMERIOMEM=y
CONFIG_HW_RANDOM_INTEL=y
CONFIG_HW_RANDOM_AMD=y
CONFIG_HW_RANDOM_VIA=y
# CONFIG_NVRAM is not set
CONFIG_R3964=y
# CONFIG_APPLICOM is not set
#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
CONFIG_CARDMAN_4000=y
CONFIG_CARDMAN_4040=y
# CONFIG_MWAVE is not set
# CONFIG_HPET is not set
CONFIG_HANGCHECK_TIMER=y
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
# CONFIG_XILLYBUS is not set
#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
CONFIG_I2C_MUX=y
#
# Multiplexer I2C Chip support
#
CONFIG_I2C_MUX_PCA9541=y
# CONFIG_I2C_HELPER_AUTO is not set
# CONFIG_I2C_SMBUS is not set
#
# I2C Algorithms
#
CONFIG_I2C_ALGOBIT=y
# CONFIG_I2C_ALGOPCF is not set
CONFIG_I2C_ALGOPCA=y
#
# I2C Hardware Bus support
#
#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_ISMT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set
#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_KEMPLD is not set
# CONFIG_I2C_OCORES is not set
CONFIG_I2C_PCA_PLATFORM=y
# CONFIG_I2C_PXA_PCI is not set
CONFIG_I2C_SIMTEC=y
# CONFIG_I2C_XILINX is not set
#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_TAOS_EVM is not set
#
# Other I2C/SMBus bus drivers
#
CONFIG_I2C_CROS_EC_TUNNEL=y
CONFIG_I2C_SLAVE=y
CONFIG_I2C_SLAVE_EEPROM=y
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_SPI is not set
# CONFIG_SPMI is not set
CONFIG_HSI=y
CONFIG_HSI_BOARDINFO=y
#
# HSI controllers
#
#
# HSI clients
#
CONFIG_HSI_CHAR=y
#
# PPS support
#
# CONFIG_PPS is not set
#
# PPS generators support
#
#
# PTP clock support
#
# CONFIG_PTP_1588_CLOCK is not set
#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
# CONFIG_GPIOLIB is not set
CONFIG_W1=y
#
# 1-wire Bus Masters
#
# CONFIG_W1_MASTER_MATROX is not set
CONFIG_W1_MASTER_DS2482=y
CONFIG_W1_MASTER_DS1WM=y
#
# 1-wire Slaves
#
CONFIG_W1_SLAVE_THERM=y
CONFIG_W1_SLAVE_SMEM=y
# CONFIG_W1_SLAVE_DS2408 is not set
# CONFIG_W1_SLAVE_DS2413 is not set
CONFIG_W1_SLAVE_DS2406=y
CONFIG_W1_SLAVE_DS2423=y
# CONFIG_W1_SLAVE_DS2431 is not set
CONFIG_W1_SLAVE_DS2433=y
CONFIG_W1_SLAVE_DS2433_CRC=y
CONFIG_W1_SLAVE_DS2760=y
# CONFIG_W1_SLAVE_DS2780 is not set
CONFIG_W1_SLAVE_DS2781=y
CONFIG_W1_SLAVE_DS28E04=y
CONFIG_W1_SLAVE_BQ27000=y
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_GENERIC_ADC_BATTERY is not set
# CONFIG_MAX8925_POWER is not set
# CONFIG_WM831X_BACKUP is not set
# CONFIG_WM831X_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_DS2760 is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_BATTERY_BQ27x00 is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_LP8788 is not set
# CONFIG_CHARGER_MAX14577 is not set
# CONFIG_CHARGER_MAX8997 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_POWER_RESET is not set
# CONFIG_POWER_AVS is not set
CONFIG_HWMON=y
CONFIG_HWMON_VID=y
CONFIG_HWMON_DEBUG_CHIP=y
#
# Native drivers
#
CONFIG_SENSORS_AD7414=y
# CONFIG_SENSORS_AD7418 is not set
CONFIG_SENSORS_ADM1021=y
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
CONFIG_SENSORS_ADM1031=y
CONFIG_SENSORS_ADM9240=y
# CONFIG_SENSORS_ADT7410 is not set
CONFIG_SENSORS_ADT7411=y
CONFIG_SENSORS_ADT7462=y
# CONFIG_SENSORS_ADT7470 is not set
CONFIG_SENSORS_ADT7475=y
CONFIG_SENSORS_ASC7621=y
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
CONFIG_SENSORS_APPLESMC=y
# CONFIG_SENSORS_ASB100 is not set
CONFIG_SENSORS_ATXP1=y
CONFIG_SENSORS_DS620=y
CONFIG_SENSORS_DS1621=y
# CONFIG_SENSORS_I5K_AMB is not set
CONFIG_SENSORS_F71805F=y
CONFIG_SENSORS_F71882FG=y
# CONFIG_SENSORS_F75375S is not set
CONFIG_SENSORS_MC13783_ADC=y
# CONFIG_SENSORS_FSCHMD is not set
CONFIG_SENSORS_GL518SM=y
CONFIG_SENSORS_GL520SM=y
CONFIG_SENSORS_G760A=y
CONFIG_SENSORS_G762=y
CONFIG_SENSORS_HIH6130=y
CONFIG_SENSORS_IBMAEM=y
CONFIG_SENSORS_IBMPEX=y
CONFIG_SENSORS_IIO_HWMON=y
# CONFIG_SENSORS_CORETEMP is not set
CONFIG_SENSORS_IT87=y
CONFIG_SENSORS_JC42=y
CONFIG_SENSORS_POWR1220=y
CONFIG_SENSORS_LINEAGE=y
CONFIG_SENSORS_LTC2945=y
CONFIG_SENSORS_LTC4151=y
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4222 is not set
CONFIG_SENSORS_LTC4245=y
CONFIG_SENSORS_LTC4260=y
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_MAX16065 is not set
CONFIG_SENSORS_MAX1619=y
CONFIG_SENSORS_MAX1668=y
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX6639 is not set
CONFIG_SENSORS_MAX6642=y
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
CONFIG_SENSORS_HTU21=y
CONFIG_SENSORS_MCP3021=y
# CONFIG_SENSORS_LM63 is not set
CONFIG_SENSORS_LM73=y
CONFIG_SENSORS_LM75=y
# CONFIG_SENSORS_LM77 is not set
CONFIG_SENSORS_LM78=y
CONFIG_SENSORS_LM80=y
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
CONFIG_SENSORS_LM87=y
CONFIG_SENSORS_LM90=y
CONFIG_SENSORS_LM92=y
# CONFIG_SENSORS_LM93 is not set
CONFIG_SENSORS_LM95234=y
# CONFIG_SENSORS_LM95241 is not set
CONFIG_SENSORS_LM95245=y
# CONFIG_SENSORS_PC87360 is not set
CONFIG_SENSORS_PC87427=y
# CONFIG_SENSORS_NTC_THERMISTOR is not set
CONFIG_SENSORS_NCT6683=y
CONFIG_SENSORS_NCT6775=y
CONFIG_SENSORS_NCT7802=y
CONFIG_SENSORS_PCF8591=y
# CONFIG_PMBUS is not set
CONFIG_SENSORS_SHT21=y
CONFIG_SENSORS_SHTC1=y
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
CONFIG_SENSORS_EMC6W201=y
# CONFIG_SENSORS_SMSC47M1 is not set
CONFIG_SENSORS_SMSC47M192=y
# CONFIG_SENSORS_SMSC47B397 is not set
CONFIG_SENSORS_SCH56XX_COMMON=y
CONFIG_SENSORS_SCH5627=y
CONFIG_SENSORS_SCH5636=y
# CONFIG_SENSORS_SMM665 is not set
CONFIG_SENSORS_ADC128D818=y
# CONFIG_SENSORS_ADS1015 is not set
CONFIG_SENSORS_ADS7828=y
CONFIG_SENSORS_AMC6821=y
CONFIG_SENSORS_INA209=y
CONFIG_SENSORS_INA2XX=y
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
CONFIG_SENSORS_TMP103=y
CONFIG_SENSORS_TMP401=y
CONFIG_SENSORS_TMP421=y
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
CONFIG_SENSORS_VT1211=y
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
CONFIG_SENSORS_W83791D=y
CONFIG_SENSORS_W83792D=y
# CONFIG_SENSORS_W83793 is not set
CONFIG_SENSORS_W83795=y
CONFIG_SENSORS_W83795_FANCTRL=y
CONFIG_SENSORS_W83L785TS=y
CONFIG_SENSORS_W83L786NG=y
CONFIG_SENSORS_W83627HF=y
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_WM831X is not set
#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
# CONFIG_THERMAL_HWMON is not set
# CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE is not set
CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE=y
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
CONFIG_THERMAL_GOV_FAIR_SHARE=y
# CONFIG_THERMAL_GOV_STEP_WISE is not set
# CONFIG_THERMAL_GOV_BANG_BANG is not set
CONFIG_THERMAL_GOV_USER_SPACE=y
# CONFIG_THERMAL_EMULATION is not set
CONFIG_INTEL_POWERCLAMP=y
# CONFIG_INT340X_THERMAL is not set
#
# Texas Instruments thermal drivers
#
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
CONFIG_WATCHDOG_NOWAYOUT=y
#
# Watchdog Device Drivers
#
CONFIG_SOFT_WATCHDOG=y
CONFIG_WM831X_WATCHDOG=y
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
CONFIG_RN5T618_WATCHDOG=y
CONFIG_RETU_WATCHDOG=y
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
CONFIG_F71808E_WDT=y
# CONFIG_SP5100_TCO is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
CONFIG_IBMASR=y
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_ITCO_WDT is not set
CONFIG_IT8712F_WDT=y
CONFIG_IT87_WDT=y
# CONFIG_HP_WATCHDOG is not set
CONFIG_KEMPLD_WDT=y
# CONFIG_SC1200_WDT is not set
CONFIG_PC87413_WDT=y
# CONFIG_NV_TCO is not set
CONFIG_60XX_WDT=y
CONFIG_CPU5_WDT=y
CONFIG_SMSC_SCH311X_WDT=y
CONFIG_SMSC37B787_WDT=y
# CONFIG_VIA_WDT is not set
CONFIG_W83627HF_WDT=y
CONFIG_W83877F_WDT=y
CONFIG_W83977F_WDT=y
CONFIG_MACHZ_WDT=y
CONFIG_SBC_EPX_C3_WATCHDOG=y
#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set
CONFIG_SSB_POSSIBLE=y
#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
#
# Broadcom specific AMBA
#
CONFIG_BCMA=y
CONFIG_BCMA_HOST_PCI_POSSIBLE=y
CONFIG_BCMA_HOST_PCI=y
CONFIG_BCMA_HOST_SOC=y
CONFIG_BCMA_DRIVER_GMAC_CMN=y
CONFIG_BCMA_DEBUG=y
#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
CONFIG_MFD_AS3711=y
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_BCM590XX is not set
CONFIG_MFD_AXP20X=y
CONFIG_MFD_CROS_EC=y
# CONFIG_MFD_CROS_EC_I2C is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9063 is not set
CONFIG_MFD_MC13XXX=y
CONFIG_MFD_MC13XXX_I2C=y
# CONFIG_HTC_PASIC3 is not set
# CONFIG_LPC_ICH is not set
# CONFIG_LPC_SCH is not set
# CONFIG_INTEL_SOC_PMIC is not set
# CONFIG_MFD_JANZ_CMODIO is not set
CONFIG_MFD_KEMPLD=y
CONFIG_MFD_88PM800=y
CONFIG_MFD_88PM805=y
# CONFIG_MFD_88PM860X is not set
CONFIG_MFD_MAX14577=y
# CONFIG_MFD_MAX77686 is not set
CONFIG_MFD_MAX77693=y
CONFIG_MFD_MAX8907=y
CONFIG_MFD_MAX8925=y
CONFIG_MFD_MAX8997=y
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_MENF21BMC is not set
CONFIG_MFD_RETU=y
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RTSX_PCI is not set
# CONFIG_MFD_RC5T583 is not set
CONFIG_MFD_RN5T618=y
# CONFIG_MFD_SEC_CORE is not set
CONFIG_MFD_SI476X_CORE=y
# CONFIG_MFD_SM501 is not set
CONFIG_MFD_SMSC=y
# CONFIG_ABX500_CORE is not set
CONFIG_MFD_SYSCON=y
# CONFIG_MFD_TI_AM335X_TSCADC is not set
CONFIG_MFD_LP3943=y
CONFIG_MFD_LP8788=y
# CONFIG_MFD_PALMAS is not set
CONFIG_TPS6105X=y
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TPS65217 is not set
# CONFIG_MFD_TPS65218 is not set
CONFIG_MFD_TPS6586X=y
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
CONFIG_TWL6040_CORE=y
CONFIG_MFD_WL1273_CORE=y
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TC3589X is not set
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_ARIZONA_I2C is not set
CONFIG_MFD_WM8400=y
CONFIG_MFD_WM831X=y
CONFIG_MFD_WM831X_I2C=y
# CONFIG_MFD_WM8350_I2C is not set
CONFIG_MFD_WM8994=y
CONFIG_REGULATOR=y
# CONFIG_REGULATOR_DEBUG is not set
CONFIG_REGULATOR_FIXED_VOLTAGE=y
CONFIG_REGULATOR_VIRTUAL_CONSUMER=y
CONFIG_REGULATOR_USERSPACE_CONSUMER=y
CONFIG_REGULATOR_88PM800=y
# CONFIG_REGULATOR_ACT8865 is not set
CONFIG_REGULATOR_AD5398=y
CONFIG_REGULATOR_ANATOP=y
CONFIG_REGULATOR_AS3711=y
CONFIG_REGULATOR_AXP20X=y
CONFIG_REGULATOR_DA9210=y
CONFIG_REGULATOR_DA9211=y
CONFIG_REGULATOR_FAN53555=y
CONFIG_REGULATOR_ISL9305=y
CONFIG_REGULATOR_ISL6271A=y
# CONFIG_REGULATOR_LP3971 is not set
CONFIG_REGULATOR_LP3972=y
CONFIG_REGULATOR_LP872X=y
CONFIG_REGULATOR_LP8755=y
CONFIG_REGULATOR_LP8788=y
CONFIG_REGULATOR_LTC3589=y
CONFIG_REGULATOR_MAX14577=y
CONFIG_REGULATOR_MAX1586=y
CONFIG_REGULATOR_MAX8649=y
# CONFIG_REGULATOR_MAX8660 is not set
# CONFIG_REGULATOR_MAX8907 is not set
CONFIG_REGULATOR_MAX8925=y
CONFIG_REGULATOR_MAX8952=y
CONFIG_REGULATOR_MAX8973=y
CONFIG_REGULATOR_MAX8997=y
CONFIG_REGULATOR_MAX77693=y
CONFIG_REGULATOR_MC13XXX_CORE=y
CONFIG_REGULATOR_MC13783=y
CONFIG_REGULATOR_MC13892=y
CONFIG_REGULATOR_PFUZE100=y
CONFIG_REGULATOR_RN5T618=y
CONFIG_REGULATOR_TPS51632=y
# CONFIG_REGULATOR_TPS6105X is not set
# CONFIG_REGULATOR_TPS62360 is not set
CONFIG_REGULATOR_TPS65023=y
CONFIG_REGULATOR_TPS6507X=y
CONFIG_REGULATOR_TPS6586X=y
CONFIG_REGULATOR_WM831X=y
# CONFIG_REGULATOR_WM8400 is not set
CONFIG_REGULATOR_WM8994=y
CONFIG_MEDIA_SUPPORT=y
#
# Multimedia core support
#
# CONFIG_MEDIA_CAMERA_SUPPORT is not set
# CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set
CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
CONFIG_MEDIA_RADIO_SUPPORT=y
# CONFIG_MEDIA_SDR_SUPPORT is not set
CONFIG_MEDIA_RC_SUPPORT=y
CONFIG_VIDEO_DEV=y
CONFIG_VIDEO_V4L2=y
# CONFIG_VIDEO_ADV_DEBUG is not set
CONFIG_VIDEO_FIXED_MINOR_RANGES=y
CONFIG_DVB_CORE=y
# CONFIG_TTPCI_EEPROM is not set
CONFIG_DVB_MAX_ADAPTERS=8
# CONFIG_DVB_DYNAMIC_MINORS is not set
#
# Media drivers
#
CONFIG_RC_CORE=y
# CONFIG_RC_MAP is not set
CONFIG_RC_DECODERS=y
# CONFIG_LIRC is not set
CONFIG_IR_NEC_DECODER=y
CONFIG_IR_RC5_DECODER=y
CONFIG_IR_RC6_DECODER=y
CONFIG_IR_JVC_DECODER=y
CONFIG_IR_SONY_DECODER=y
# CONFIG_IR_SANYO_DECODER is not set
CONFIG_IR_SHARP_DECODER=y
# CONFIG_IR_MCE_KBD_DECODER is not set
CONFIG_IR_XMP_DECODER=y
CONFIG_RC_DEVICES=y
# CONFIG_RC_ATI_REMOTE is not set
# CONFIG_IR_ENE is not set
CONFIG_IR_HIX5HD2=y
# CONFIG_IR_IMON is not set
# CONFIG_IR_MCEUSB is not set
# CONFIG_IR_ITE_CIR is not set
# CONFIG_IR_FINTEK is not set
# CONFIG_IR_NUVOTON is not set
# CONFIG_IR_REDRAT3 is not set
# CONFIG_IR_STREAMZAP is not set
# CONFIG_IR_WINBOND_CIR is not set
# CONFIG_IR_IGORPLUGUSB is not set
# CONFIG_IR_IGUANA is not set
# CONFIG_IR_TTUSBIR is not set
# CONFIG_RC_LOOPBACK is not set
# CONFIG_IR_GPIO_CIR is not set
# CONFIG_MEDIA_PCI_SUPPORT is not set
#
# Supported MMC/SDIO adapters
#
CONFIG_SMS_SDIO_DRV=y
# CONFIG_RADIO_ADAPTERS is not set
CONFIG_MEDIA_COMMON_OPTIONS=y
#
# common driver options
#
CONFIG_SMS_SIANO_MDTV=y
CONFIG_SMS_SIANO_RC=y
#
# Media ancillary drivers (tuners, sensors, i2c, frontends)
#
# CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
CONFIG_VIDEO_IR_I2C=y
#
# Encoders, decoders, sensors and other helper chips
#
#
# Audio decoders, processors and mixers
#
CONFIG_VIDEO_TVAUDIO=y
# CONFIG_VIDEO_TDA7432 is not set
# CONFIG_VIDEO_TDA9840 is not set
# CONFIG_VIDEO_TEA6415C is not set
CONFIG_VIDEO_TEA6420=y
CONFIG_VIDEO_MSP3400=y
# CONFIG_VIDEO_CS5345 is not set
# CONFIG_VIDEO_CS53L32A is not set
CONFIG_VIDEO_TLV320AIC23B=y
# CONFIG_VIDEO_UDA1342 is not set
CONFIG_VIDEO_WM8775=y
CONFIG_VIDEO_WM8739=y
CONFIG_VIDEO_VP27SMPX=y
CONFIG_VIDEO_SONY_BTF_MPX=y
#
# RDS decoders
#
# CONFIG_VIDEO_SAA6588 is not set
#
# Video decoders
#
CONFIG_VIDEO_ADV7180=y
CONFIG_VIDEO_ADV7183=y
CONFIG_VIDEO_BT819=y
CONFIG_VIDEO_BT856=y
# CONFIG_VIDEO_BT866 is not set
CONFIG_VIDEO_KS0127=y
CONFIG_VIDEO_ML86V7667=y
CONFIG_VIDEO_SAA7110=y
CONFIG_VIDEO_SAA711X=y
CONFIG_VIDEO_TVP514X=y
CONFIG_VIDEO_TVP5150=y
# CONFIG_VIDEO_TVP7002 is not set
CONFIG_VIDEO_TW2804=y
CONFIG_VIDEO_TW9903=y
CONFIG_VIDEO_TW9906=y
# CONFIG_VIDEO_VPX3220 is not set
#
# Video and audio decoders
#
CONFIG_VIDEO_SAA717X=y
CONFIG_VIDEO_CX25840=y
#
# Video encoders
#
# CONFIG_VIDEO_SAA7127 is not set
CONFIG_VIDEO_SAA7185=y
CONFIG_VIDEO_ADV7170=y
CONFIG_VIDEO_ADV7175=y
# CONFIG_VIDEO_ADV7343 is not set
CONFIG_VIDEO_ADV7393=y
CONFIG_VIDEO_AK881X=y
CONFIG_VIDEO_THS8200=y
#
# Camera sensor devices
#
#
# Flash devices
#
#
# Video improvement chips
#
# CONFIG_VIDEO_UPD64031A is not set
# CONFIG_VIDEO_UPD64083 is not set
#
# Audio/Video compression chips
#
CONFIG_VIDEO_SAA6752HS=y
#
# Miscellaneous helper chips
#
CONFIG_VIDEO_THS7303=y
CONFIG_VIDEO_M52790=y
#
# Sensors used on soc_camera driver
#
CONFIG_MEDIA_TUNER=y
#
# Customize TV tuners
#
CONFIG_MEDIA_TUNER_SIMPLE=y
# CONFIG_MEDIA_TUNER_TDA8290 is not set
CONFIG_MEDIA_TUNER_TDA827X=y
# CONFIG_MEDIA_TUNER_TDA18271 is not set
CONFIG_MEDIA_TUNER_TDA9887=y
# CONFIG_MEDIA_TUNER_TEA5761 is not set
CONFIG_MEDIA_TUNER_TEA5767=y
# CONFIG_MEDIA_TUNER_MT20XX is not set
CONFIG_MEDIA_TUNER_MT2060=y
# CONFIG_MEDIA_TUNER_MT2063 is not set
# CONFIG_MEDIA_TUNER_MT2266 is not set
CONFIG_MEDIA_TUNER_MT2131=y
CONFIG_MEDIA_TUNER_QT1010=y
CONFIG_MEDIA_TUNER_XC2028=y
# CONFIG_MEDIA_TUNER_XC5000 is not set
CONFIG_MEDIA_TUNER_XC4000=y
CONFIG_MEDIA_TUNER_MXL5005S=y
CONFIG_MEDIA_TUNER_MXL5007T=y
# CONFIG_MEDIA_TUNER_MC44S803 is not set
# CONFIG_MEDIA_TUNER_MAX2165 is not set
# CONFIG_MEDIA_TUNER_TDA18218 is not set
# CONFIG_MEDIA_TUNER_FC0011 is not set
# CONFIG_MEDIA_TUNER_FC0012 is not set
CONFIG_MEDIA_TUNER_FC0013=y
CONFIG_MEDIA_TUNER_TDA18212=y
CONFIG_MEDIA_TUNER_E4000=y
# CONFIG_MEDIA_TUNER_FC2580 is not set
CONFIG_MEDIA_TUNER_M88TS2022=y
CONFIG_MEDIA_TUNER_M88RS6000T=y
CONFIG_MEDIA_TUNER_TUA9001=y
# CONFIG_MEDIA_TUNER_SI2157 is not set
# CONFIG_MEDIA_TUNER_IT913X is not set
CONFIG_MEDIA_TUNER_R820T=y
# CONFIG_MEDIA_TUNER_MXL301RF is not set
CONFIG_MEDIA_TUNER_QM1D1C0042=y
#
# Customise DVB Frontends
#
#
# Multistandard (satellite) frontends
#
CONFIG_DVB_STB0899=y
CONFIG_DVB_STB6100=y
# CONFIG_DVB_STV090x is not set
# CONFIG_DVB_STV6110x is not set
CONFIG_DVB_M88DS3103=y
#
# Multistandard (cable + terrestrial) frontends
#
CONFIG_DVB_DRXK=y
# CONFIG_DVB_TDA18271C2DD is not set
CONFIG_DVB_SI2165=y
#
# DVB-S (satellite) frontends
#
CONFIG_DVB_CX24110=y
CONFIG_DVB_CX24123=y
# CONFIG_DVB_MT312 is not set
CONFIG_DVB_ZL10036=y
# CONFIG_DVB_ZL10039 is not set
CONFIG_DVB_S5H1420=y
CONFIG_DVB_STV0288=y
CONFIG_DVB_STB6000=y
CONFIG_DVB_STV0299=y
# CONFIG_DVB_STV6110 is not set
# CONFIG_DVB_STV0900 is not set
CONFIG_DVB_TDA8083=y
CONFIG_DVB_TDA10086=y
CONFIG_DVB_TDA8261=y
CONFIG_DVB_VES1X93=y
CONFIG_DVB_TUNER_ITD1000=y
CONFIG_DVB_TUNER_CX24113=y
CONFIG_DVB_TDA826X=y
CONFIG_DVB_TUA6100=y
CONFIG_DVB_CX24116=y
CONFIG_DVB_CX24117=y
# CONFIG_DVB_SI21XX is not set
CONFIG_DVB_TS2020=y
CONFIG_DVB_DS3000=y
CONFIG_DVB_MB86A16=y
# CONFIG_DVB_TDA10071 is not set
#
# DVB-T (terrestrial) frontends
#
# CONFIG_DVB_SP8870 is not set
CONFIG_DVB_SP887X=y
CONFIG_DVB_CX22700=y
CONFIG_DVB_CX22702=y
# CONFIG_DVB_S5H1432 is not set
CONFIG_DVB_DRXD=y
# CONFIG_DVB_L64781 is not set
CONFIG_DVB_TDA1004X=y
CONFIG_DVB_NXT6000=y
CONFIG_DVB_MT352=y
CONFIG_DVB_ZL10353=y
# CONFIG_DVB_DIB3000MB is not set
CONFIG_DVB_DIB3000MC=y
# CONFIG_DVB_DIB7000M is not set
# CONFIG_DVB_DIB7000P is not set
# CONFIG_DVB_DIB9000 is not set
CONFIG_DVB_TDA10048=y
# CONFIG_DVB_AF9013 is not set
# CONFIG_DVB_EC100 is not set
CONFIG_DVB_HD29L2=y
# CONFIG_DVB_STV0367 is not set
# CONFIG_DVB_CXD2820R is not set
CONFIG_DVB_RTL2830=y
# CONFIG_DVB_RTL2832 is not set
CONFIG_DVB_SI2168=y
# CONFIG_DVB_AS102_FE is not set
#
# DVB-C (cable) frontends
#
CONFIG_DVB_VES1820=y
# CONFIG_DVB_TDA10021 is not set
# CONFIG_DVB_TDA10023 is not set
CONFIG_DVB_STV0297=y
#
# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
#
# CONFIG_DVB_NXT200X is not set
CONFIG_DVB_OR51211=y
# CONFIG_DVB_OR51132 is not set
# CONFIG_DVB_BCM3510 is not set
CONFIG_DVB_LGDT330X=y
# CONFIG_DVB_LGDT3305 is not set
# CONFIG_DVB_LG2160 is not set
CONFIG_DVB_S5H1409=y
CONFIG_DVB_AU8522=y
CONFIG_DVB_AU8522_DTV=y
CONFIG_DVB_AU8522_V4L=y
CONFIG_DVB_S5H1411=y
#
# ISDB-T (terrestrial) frontends
#
CONFIG_DVB_S921=y
CONFIG_DVB_DIB8000=y
# CONFIG_DVB_MB86A20S is not set
#
# ISDB-S (satellite) & ISDB-T (terrestrial) frontends
#
# CONFIG_DVB_TC90522 is not set
#
# Digital terrestrial only tuners/PLL
#
CONFIG_DVB_PLL=y
# CONFIG_DVB_TUNER_DIB0070 is not set
CONFIG_DVB_TUNER_DIB0090=y
#
# SEC control devices for DVB-S
#
# CONFIG_DVB_DRX39XYJ is not set
CONFIG_DVB_LNBP21=y
CONFIG_DVB_LNBP22=y
# CONFIG_DVB_ISL6405 is not set
# CONFIG_DVB_ISL6421 is not set
CONFIG_DVB_ISL6423=y
# CONFIG_DVB_A8293 is not set
# CONFIG_DVB_SP2 is not set
# CONFIG_DVB_LGS8GL5 is not set
CONFIG_DVB_LGS8GXX=y
CONFIG_DVB_ATBM8830=y
# CONFIG_DVB_TDA665x is not set
CONFIG_DVB_IX2505V=y
# CONFIG_DVB_M88RS2000 is not set
# CONFIG_DVB_AF9033 is not set
#
# Tools to develop new frontends
#
CONFIG_DVB_DUMMY_FE=y
#
# Graphics support
#
# CONFIG_AGP is not set
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
# CONFIG_VGA_SWITCHEROO is not set
#
# Direct Rendering Manager
#
# CONFIG_DRM is not set
#
# Frame buffer Devices
#
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_CMDLINE=y
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
CONFIG_FB_FOREIGN_ENDIAN=y
# CONFIG_FB_BOTH_ENDIAN is not set
# CONFIG_FB_BIG_ENDIAN is not set
CONFIG_FB_LITTLE_ENDIAN=y
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_HECUBA=y
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
CONFIG_FB_ARC=y
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_VESA is not set
CONFIG_FB_N411=y
CONFIG_FB_HGA=y
# CONFIG_FB_OPENCORES is not set
CONFIG_FB_S1D13XXX=y
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
CONFIG_FB_VIRTUAL=y
CONFIG_FB_METRONOME=y
# CONFIG_FB_MB862XX is not set
CONFIG_FB_BROADSHEET=y
# CONFIG_FB_AUO_K190X is not set
# CONFIG_FB_SIMPLE is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
CONFIG_LCD_CLASS_DEVICE=y
CONFIG_LCD_PLATFORM=y
# CONFIG_BACKLIGHT_CLASS_DEVICE is not set
# CONFIG_VGASTATE is not set
CONFIG_LOGO=y
CONFIG_LOGO_LINUX_MONO=y
# CONFIG_LOGO_LINUX_VGA16 is not set
# CONFIG_LOGO_LINUX_CLUT224 is not set
CONFIG_SOUND=y
CONFIG_SOUND_OSS_CORE=y
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_COMPRESS_OFFLOAD=y
CONFIG_SND_JACK=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_SEQ_DUMMY=y
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_SEQUENCER_OSS=y
# CONFIG_SND_HRTIMER is not set
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
# CONFIG_SND_SUPPORT_OLD_API is not set
# CONFIG_SND_VERBOSE_PRINTK is not set
CONFIG_SND_DEBUG=y
# CONFIG_SND_DEBUG_VERBOSE is not set
CONFIG_SND_DMA_SGBUF=y
# CONFIG_SND_RAWMIDI_SEQ is not set
# CONFIG_SND_OPL3_LIB_SEQ is not set
# CONFIG_SND_OPL4_LIB_SEQ is not set
# CONFIG_SND_SBAWE_SEQ is not set
# CONFIG_SND_EMU10K1_SEQ is not set
# CONFIG_SND_DRIVERS is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
#
# HD-Audio
#
# CONFIG_SND_HDA_INTEL is not set
# CONFIG_SND_PCMCIA is not set
CONFIG_SND_SOC=y
CONFIG_SND_ATMEL_SOC=y
#
# SoC Audio for Freescale CPUs
#
#
# Common SoC Audio options for Freescale CPUs:
#
# CONFIG_SND_SOC_FSL_ASRC is not set
# CONFIG_SND_SOC_FSL_SAI is not set
# CONFIG_SND_SOC_FSL_SSI is not set
CONFIG_SND_SOC_FSL_SPDIF=y
CONFIG_SND_SOC_FSL_ESAI=y
CONFIG_SND_SOC_IMX_AUDMUX=y
CONFIG_SND_SST_MFLD_PLATFORM=y
CONFIG_SND_SST_IPC=y
CONFIG_SND_SST_IPC_ACPI=y
CONFIG_SND_SOC_INTEL_SST=y
CONFIG_SND_SOC_INTEL_SST_ACPI=y
CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=y
CONFIG_SND_SOC_I2C_AND_SPI=y
#
# CODEC drivers
#
CONFIG_SND_SOC_ADAU1701=y
CONFIG_SND_SOC_AK4554=y
CONFIG_SND_SOC_AK4642=y
CONFIG_SND_SOC_AK5386=y
CONFIG_SND_SOC_ALC5623=y
CONFIG_SND_SOC_CS35L32=y
CONFIG_SND_SOC_CS42L51=y
CONFIG_SND_SOC_CS42L51_I2C=y
CONFIG_SND_SOC_CS42L52=y
CONFIG_SND_SOC_CS42L56=y
CONFIG_SND_SOC_CS42L73=y
CONFIG_SND_SOC_CS4265=y
CONFIG_SND_SOC_CS4270=y
CONFIG_SND_SOC_CS4271=y
CONFIG_SND_SOC_CS4271_I2C=y
CONFIG_SND_SOC_CS42XX8=y
CONFIG_SND_SOC_CS42XX8_I2C=y
CONFIG_SND_SOC_HDMI_CODEC=y
CONFIG_SND_SOC_ES8328=y
CONFIG_SND_SOC_PCM1681=y
CONFIG_SND_SOC_PCM512x=y
CONFIG_SND_SOC_PCM512x_I2C=y
CONFIG_SND_SOC_RL6231=y
CONFIG_SND_SOC_RT5631=y
CONFIG_SND_SOC_RT5640=y
# CONFIG_SND_SOC_RT5677_SPI is not set
CONFIG_SND_SOC_SGTL5000=y
CONFIG_SND_SOC_SIGMADSP=y
CONFIG_SND_SOC_SIGMADSP_I2C=y
CONFIG_SND_SOC_SIRF_AUDIO_CODEC=y
CONFIG_SND_SOC_SPDIF=y
CONFIG_SND_SOC_SSM2602=y
CONFIG_SND_SOC_SSM2602_I2C=y
CONFIG_SND_SOC_SSM4567=y
CONFIG_SND_SOC_STA350=y
CONFIG_SND_SOC_TAS2552=y
CONFIG_SND_SOC_TAS5086=y
CONFIG_SND_SOC_TFA9879=y
CONFIG_SND_SOC_TLV320AIC23=y
CONFIG_SND_SOC_TLV320AIC23_I2C=y
CONFIG_SND_SOC_TLV320AIC31XX=y
CONFIG_SND_SOC_TLV320AIC3X=y
CONFIG_SND_SOC_TS3A227E=y
CONFIG_SND_SOC_WM8510=y
CONFIG_SND_SOC_WM8523=y
CONFIG_SND_SOC_WM8580=y
CONFIG_SND_SOC_WM8711=y
CONFIG_SND_SOC_WM8728=y
CONFIG_SND_SOC_WM8731=y
CONFIG_SND_SOC_WM8737=y
CONFIG_SND_SOC_WM8741=y
CONFIG_SND_SOC_WM8750=y
CONFIG_SND_SOC_WM8753=y
CONFIG_SND_SOC_WM8776=y
CONFIG_SND_SOC_WM8804=y
CONFIG_SND_SOC_WM8903=y
CONFIG_SND_SOC_WM8962=y
CONFIG_SND_SOC_WM8978=y
CONFIG_SND_SOC_TPA6130A2=y
# CONFIG_SND_SIMPLE_CARD is not set
# CONFIG_SOUND_PRIME is not set
#
# HID support
#
# CONFIG_HID is not set
#
# I2C HID support
#
# CONFIG_I2C_HID is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_ARCH_HAS_HCD=y
# CONFIG_USB is not set
#
# USB port drivers
#
#
# USB Physical Layer drivers
#
# CONFIG_USB_PHY is not set
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_TAHVO_USB is not set
# CONFIG_USB_GADGET is not set
# CONFIG_UWB is not set
CONFIG_MMC=y
# CONFIG_MMC_DEBUG is not set
CONFIG_MMC_CLKGATE=y
#
# MMC/SD/SDIO Card Drivers
#
CONFIG_SDIO_UART=y
CONFIG_MMC_TEST=y
#
# MMC/SD/SDIO Host Controller Drivers
#
CONFIG_MMC_SDHCI=y
# CONFIG_MMC_SDHCI_PCI is not set
# CONFIG_MMC_SDHCI_ACPI is not set
CONFIG_MMC_SDHCI_PLTFM=y
# CONFIG_MMC_TIFM_SD is not set
# CONFIG_MMC_SDRICOH_CS is not set
# CONFIG_MMC_CB710 is not set
# CONFIG_MMC_VIA_SDMMC is not set
# CONFIG_MMC_USDHI6ROL0 is not set
# CONFIG_MMC_TOSHIBA_PCI is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
#
# LED drivers
#
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
CONFIG_LEDS_LP3944=y
CONFIG_LEDS_LP55XX_COMMON=y
CONFIG_LEDS_LP5521=y
CONFIG_LEDS_LP5523=y
# CONFIG_LEDS_LP5562 is not set
# CONFIG_LEDS_LP8501 is not set
CONFIG_LEDS_LP8788=y
CONFIG_LEDS_LP8860=y
CONFIG_LEDS_PCA955X=y
CONFIG_LEDS_PCA963X=y
CONFIG_LEDS_WM831X_STATUS=y
CONFIG_LEDS_REGULATOR=y
CONFIG_LEDS_BD2802=y
CONFIG_LEDS_MC13783=y
CONFIG_LEDS_TCA6507=y
CONFIG_LEDS_MAX8997=y
CONFIG_LEDS_LM355x=y
#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
CONFIG_LEDS_BLINKM=y
#
# LED Triggers
#
# CONFIG_LEDS_TRIGGERS is not set
# CONFIG_ACCESSIBILITY is not set
CONFIG_EDAC=y
# CONFIG_EDAC_LEGACY_SYSFS is not set
CONFIG_EDAC_DEBUG=y
CONFIG_EDAC_MM_EDAC=y
# CONFIG_EDAC_E752X is not set
# CONFIG_EDAC_I82975X is not set
# CONFIG_EDAC_I3000 is not set
# CONFIG_EDAC_I3200 is not set
# CONFIG_EDAC_IE31200 is not set
# CONFIG_EDAC_X38 is not set
# CONFIG_EDAC_I5400 is not set
# CONFIG_EDAC_I5000 is not set
# CONFIG_EDAC_I5100 is not set
# CONFIG_EDAC_I7300 is not set
CONFIG_RTC_LIB=y
# CONFIG_RTC_CLASS is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set
#
# DMA Devices
#
# CONFIG_INTEL_MID_DMAC is not set
# CONFIG_INTEL_IOATDMA is not set
CONFIG_DW_DMAC_CORE=y
CONFIG_DW_DMAC=y
# CONFIG_DW_DMAC_PCI is not set
CONFIG_DMA_ENGINE=y
CONFIG_DMA_ACPI=y
#
# DMA Clients
#
CONFIG_ASYNC_TX_DMA=y
CONFIG_DMATEST=y
CONFIG_AUXDISPLAY=y
# CONFIG_UIO is not set
# CONFIG_VIRT_DRIVERS is not set
#
# Virtio drivers
#
# CONFIG_VIRTIO_PCI is not set
# CONFIG_VIRTIO_MMIO is not set
#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
CONFIG_STAGING=y
# CONFIG_SLICOSS is not set
#
# IIO staging drivers
#
#
# Accelerometers
#
#
# Analog to digital converters
#
#
# Analog digital bi-direction converters
#
#
# Capacitance to digital converters
#
# CONFIG_AD7150 is not set
CONFIG_AD7152=y
CONFIG_AD7746=y
#
# Direct Digital Synthesis
#
#
# Digital gyroscope sensors
#
#
# Network Analyzer, Impedance Converters
#
CONFIG_AD5933=y
#
# Light sensors
#
# CONFIG_SENSORS_ISL29018 is not set
# CONFIG_SENSORS_ISL29028 is not set
# CONFIG_TSL2583 is not set
CONFIG_TSL2x7x=y
#
# Magnetometer sensors
#
CONFIG_SENSORS_HMC5843=y
CONFIG_SENSORS_HMC5843_I2C=y
#
# Active energy metering IC
#
CONFIG_ADE7854=y
# CONFIG_ADE7854_I2C is not set
#
# Resolver to digital converters
#
#
# Triggers - standalone
#
# CONFIG_IIO_SIMPLE_DUMMY is not set
# CONFIG_FB_XGI is not set
CONFIG_FT1000=y
# CONFIG_FT1000_PCMCIA is not set
#
# Speakup console speech
#
CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4=y
CONFIG_STAGING_MEDIA=y
# CONFIG_DVB_CXD2099 is not set
# CONFIG_VIDEO_DT3155 is not set
# CONFIG_VIDEO_TLG2300 is not set
CONFIG_DVB_MN88472=y
CONFIG_DVB_MN88473=y
# CONFIG_VIDEO_SAA7191 is not set
#
# Android
#
CONFIG_ANDROID_LOGGER=y
CONFIG_ANDROID_TIMED_OUTPUT=y
CONFIG_ANDROID_LOW_MEMORY_KILLER=y
# CONFIG_SYNC is not set
# CONFIG_ION is not set
# CONFIG_WIMAX_GDM72XX is not set
# CONFIG_DGNC is not set
# CONFIG_DGAP is not set
CONFIG_GS_FPGABOOT=y
CONFIG_CRYPTO_SKEIN=y
CONFIG_UNISYSSPAR=y
CONFIG_UNISYS_VISORUTIL=y
CONFIG_UNISYS_VISORCHANNEL=y
CONFIG_UNISYS_VISORCHIPSET=y
CONFIG_UNISYS_CHANNELSTUB=y
# CONFIG_UNISYS_UISLIB is not set
# CONFIG_X86_PLATFORM_DEVICES is not set
CONFIG_CHROME_PLATFORMS=y
# CONFIG_CHROMEOS_PSTORE is not set
#
# SOC (System On Chip) specific Drivers
#
CONFIG_SOC_TI=y
#
# Hardware Spinlock drivers
#
#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# CONFIG_ATMEL_PIT is not set
# CONFIG_SH_TIMER_CMT is not set
# CONFIG_SH_TIMER_MTU2 is not set
# CONFIG_SH_TIMER_TMU is not set
# CONFIG_EM_TIMER_STI is not set
# CONFIG_MAILBOX is not set
CONFIG_IOMMU_SUPPORT=y
# CONFIG_AMD_IOMMU is not set
#
# Remoteproc drivers
#
# CONFIG_STE_MODEM_RPROC is not set
#
# Rpmsg drivers
#
#
# SOC (System On Chip) specific Drivers
#
# CONFIG_PM_DEVFREQ is not set
CONFIG_EXTCON=y
#
# Extcon Device Drivers
#
CONFIG_EXTCON_ADC_JACK=y
CONFIG_EXTCON_MAX14577=y
CONFIG_EXTCON_MAX77693=y
CONFIG_EXTCON_MAX8997=y
# CONFIG_EXTCON_RT8973A is not set
CONFIG_EXTCON_SM5502=y
CONFIG_MEMORY=y
CONFIG_IIO=y
CONFIG_IIO_BUFFER=y
# CONFIG_IIO_BUFFER_CB is not set
CONFIG_IIO_KFIFO_BUF=y
CONFIG_IIO_TRIGGERED_BUFFER=y
CONFIG_IIO_TRIGGER=y
CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
#
# Accelerometers
#
CONFIG_BMA180=y
# CONFIG_BMC150_ACCEL is not set
CONFIG_IIO_ST_ACCEL_3AXIS=y
CONFIG_IIO_ST_ACCEL_I2C_3AXIS=y
# CONFIG_MMA8452 is not set
CONFIG_KXCJK1013=y
#
# Analog to digital converters
#
CONFIG_AD7291=y
# CONFIG_AD799X is not set
CONFIG_AXP288_ADC=y
CONFIG_LP8788_ADC=y
CONFIG_MAX1363=y
# CONFIG_MCP3422 is not set
# CONFIG_NAU7802 is not set
CONFIG_TI_ADC081C=y
#
# Amplifiers
#
#
# Hid Sensor IIO Common
#
CONFIG_IIO_ST_SENSORS_I2C=y
CONFIG_IIO_ST_SENSORS_CORE=y
#
# Digital to analog converters
#
CONFIG_AD5064=y
CONFIG_AD5380=y
CONFIG_AD5446=y
CONFIG_MAX517=y
CONFIG_MCP4725=y
#
# Frequency Synthesizers DDS/PLL
#
#
# Clock Generator/Distribution
#
#
# Phase-Locked Loop (PLL) frequency synthesizers
#
#
# Digital gyroscope sensors
#
CONFIG_BMG160=y
# CONFIG_IIO_ST_GYRO_3AXIS is not set
CONFIG_ITG3200=y
#
# Humidity sensors
#
CONFIG_SI7005=y
CONFIG_SI7020=y
#
# Inertial measurement units
#
CONFIG_INV_MPU6050_IIO=y
#
# Light sensors
#
CONFIG_ADJD_S311=y
CONFIG_AL3320A=y
CONFIG_APDS9300=y
CONFIG_CM32181=y
CONFIG_CM36651=y
CONFIG_GP2AP020A00F=y
CONFIG_ISL29125=y
# CONFIG_LTR501 is not set
CONFIG_TCS3414=y
CONFIG_TCS3472=y
CONFIG_SENSORS_TSL2563=y
CONFIG_TSL4531=y
CONFIG_VCNL4000=y
#
# Magnetometer sensors
#
CONFIG_AK09911=y
# CONFIG_MAG3110 is not set
CONFIG_IIO_ST_MAGN_3AXIS=y
CONFIG_IIO_ST_MAGN_I2C_3AXIS=y
#
# Inclinometer sensors
#
#
# Triggers - standalone
#
CONFIG_IIO_INTERRUPT_TRIGGER=y
CONFIG_IIO_SYSFS_TRIGGER=y
#
# Pressure sensors
#
CONFIG_BMP280=y
# CONFIG_MPL115 is not set
# CONFIG_MPL3115 is not set
CONFIG_IIO_ST_PRESS=y
CONFIG_IIO_ST_PRESS_I2C=y
CONFIG_T5403=y
#
# Lightning sensors
#
#
# Temperature sensors
#
CONFIG_MLX90614=y
CONFIG_TMP006=y
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
# CONFIG_PWM is not set
# CONFIG_IPACK_BUS is not set
CONFIG_RESET_CONTROLLER=y
# CONFIG_FMC is not set
#
# PHY Subsystem
#
CONFIG_GENERIC_PHY=y
CONFIG_BCM_KONA_USB2_PHY=y
CONFIG_POWERCAP=y
# CONFIG_MCB is not set
CONFIG_RAS=y
# CONFIG_THUNDERBOLT is not set
#
# Android
#
CONFIG_ANDROID=y
CONFIG_ANDROID_BINDER_IPC=y
#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_FIRMWARE_MEMMAP is not set
CONFIG_DELL_RBU=y
# CONFIG_DCDBAS is not set
# CONFIG_ISCSI_IBFT_FIND is not set
CONFIG_GOOGLE_FIRMWARE=y
#
# Google Firmware Drivers
#
#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
CONFIG_FILE_LOCKING=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
# CONFIG_FANOTIFY is not set
# CONFIG_QUOTA is not set
# CONFIG_QUOTACTL is not set
CONFIG_AUTOFS4_FS=y
CONFIG_FUSE_FS=y
# CONFIG_CUSE is not set
# CONFIG_OVERLAY_FS is not set
#
# Caches
#
CONFIG_FSCACHE=y
CONFIG_FSCACHE_DEBUG=y
#
# Pseudo filesystems
#
# CONFIG_PROC_FS is not set
CONFIG_KERNFS=y
CONFIG_SYSFS=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_CONFIGFS_FS=y
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ECRYPT_FS is not set
CONFIG_JFFS2_FS=y
CONFIG_JFFS2_FS_DEBUG=0
CONFIG_JFFS2_FS_WRITEBUFFER=y
# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
# CONFIG_JFFS2_SUMMARY is not set
CONFIG_JFFS2_FS_XATTR=y
CONFIG_JFFS2_FS_POSIX_ACL=y
# CONFIG_JFFS2_FS_SECURITY is not set
CONFIG_JFFS2_COMPRESSION_OPTIONS=y
CONFIG_JFFS2_ZLIB=y
CONFIG_JFFS2_LZO=y
# CONFIG_JFFS2_RTIME is not set
# CONFIG_JFFS2_RUBIN is not set
# CONFIG_JFFS2_CMODE_NONE is not set
CONFIG_JFFS2_CMODE_PRIORITY=y
# CONFIG_JFFS2_CMODE_SIZE is not set
# CONFIG_JFFS2_CMODE_FAVOURLZO is not set
CONFIG_UBIFS_FS=y
CONFIG_UBIFS_FS_ADVANCED_COMPR=y
# CONFIG_UBIFS_FS_LZO is not set
# CONFIG_UBIFS_FS_ZLIB is not set
# CONFIG_LOGFS is not set
CONFIG_ROMFS_FS=y
CONFIG_ROMFS_BACKED_BY_MTD=y
CONFIG_ROMFS_ON_MTD=y
# CONFIG_PSTORE is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_CODEPAGE_737=y
CONFIG_NLS_CODEPAGE_775=y
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
CONFIG_NLS_CODEPAGE_855=y
CONFIG_NLS_CODEPAGE_857=y
CONFIG_NLS_CODEPAGE_860=y
CONFIG_NLS_CODEPAGE_861=y
CONFIG_NLS_CODEPAGE_862=y
# CONFIG_NLS_CODEPAGE_863 is not set
CONFIG_NLS_CODEPAGE_864=y
CONFIG_NLS_CODEPAGE_865=y
CONFIG_NLS_CODEPAGE_866=y
# CONFIG_NLS_CODEPAGE_869 is not set
CONFIG_NLS_CODEPAGE_936=y
# CONFIG_NLS_CODEPAGE_950 is not set
CONFIG_NLS_CODEPAGE_932=y
# CONFIG_NLS_CODEPAGE_949 is not set
CONFIG_NLS_CODEPAGE_874=y
# CONFIG_NLS_ISO8859_8 is not set
CONFIG_NLS_CODEPAGE_1250=y
CONFIG_NLS_CODEPAGE_1251=y
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=y
CONFIG_NLS_ISO8859_2=y
CONFIG_NLS_ISO8859_3=y
CONFIG_NLS_ISO8859_4=y
CONFIG_NLS_ISO8859_5=y
CONFIG_NLS_ISO8859_6=y
# CONFIG_NLS_ISO8859_7 is not set
CONFIG_NLS_ISO8859_9=y
CONFIG_NLS_ISO8859_13=y
CONFIG_NLS_ISO8859_14=y
CONFIG_NLS_ISO8859_15=y
CONFIG_NLS_KOI8_R=y
CONFIG_NLS_KOI8_U=y
CONFIG_NLS_MAC_ROMAN=y
CONFIG_NLS_MAC_CELTIC=y
CONFIG_NLS_MAC_CENTEURO=y
CONFIG_NLS_MAC_CROATIAN=y
CONFIG_NLS_MAC_CYRILLIC=y
CONFIG_NLS_MAC_GAELIC=y
# CONFIG_NLS_MAC_GREEK is not set
CONFIG_NLS_MAC_ICELAND=y
# CONFIG_NLS_MAC_INUIT is not set
CONFIG_NLS_MAC_ROMANIAN=y
CONFIG_NLS_MAC_TURKISH=y
CONFIG_NLS_UTF8=y
#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_DYNAMIC_DEBUG is not set
#
# Compile-time checks and compiler options
#
# CONFIG_DEBUG_INFO is not set
CONFIG_ENABLE_WARN_DEPRECATED=y
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_FRAME_WARN=2048
# CONFIG_STRIP_ASM_SYMS is not set
CONFIG_READABLE_ASM=y
# CONFIG_UNUSED_SYMBOLS is not set
# CONFIG_PAGE_OWNER is not set
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y
# CONFIG_MAGIC_SYSRQ is not set
CONFIG_DEBUG_KERNEL=y
#
# Memory Debugging
#
CONFIG_PAGE_EXTENSION=y
CONFIG_DEBUG_PAGEALLOC=y
CONFIG_WANT_PAGE_DEBUG_FLAGS=y
CONFIG_PAGE_GUARD=y
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_SLUB_STATS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
CONFIG_DEBUG_STACK_USAGE=y
CONFIG_DEBUG_VM=y
# CONFIG_DEBUG_VM_VMACACHE is not set
# CONFIG_DEBUG_VM_RB is not set
# CONFIG_DEBUG_VIRTUAL is not set
# CONFIG_DEBUG_MEMORY_INIT is not set
CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
CONFIG_HAVE_ARCH_KMEMCHECK=y
# CONFIG_DEBUG_SHIRQ is not set
#
# Debug Lockups and Hangs
#
CONFIG_LOCKUP_DETECTOR=y
CONFIG_HARDLOCKUP_DETECTOR=y
# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=1
# CONFIG_DETECT_HUNG_TASK is not set
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
CONFIG_PANIC_TIMEOUT=0
CONFIG_SCHED_STACK_END_CHECK=y
#
# Lock Debugging (spinlocks, mutexes, etc...)
#
# CONFIG_DEBUG_RT_MUTEXES is not set
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
CONFIG_LOCK_STAT=y
CONFIG_DEBUG_LOCKDEP=y
CONFIG_DEBUG_ATOMIC_SLEEP=y
CONFIG_DEBUG_LOCKING_API_SELFTESTS=y
# CONFIG_LOCK_TORTURE_TEST is not set
CONFIG_TRACE_IRQFLAGS=y
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_LIST=y
CONFIG_DEBUG_PI_LIST=y
CONFIG_DEBUG_SG=y
CONFIG_DEBUG_NOTIFIERS=y
# CONFIG_DEBUG_CREDENTIALS is not set
#
# RCU Debugging
#
# CONFIG_PROVE_RCU is not set
CONFIG_SPARSE_RCU_POINTER=y
CONFIG_TORTURE_TEST=y
CONFIG_RCU_TORTURE_TEST=y
# CONFIG_RCU_TORTURE_TEST_RUNNABLE is not set
# CONFIG_RCU_TRACE is not set
CONFIG_NOTIFIER_ERROR_INJECTION=y
CONFIG_PM_NOTIFIER_ERROR_INJECT=y
# CONFIG_FAULT_INJECTION is not set
CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACING_SUPPORT=y
# CONFIG_FTRACE is not set
#
# Runtime Testing
#
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
CONFIG_RBTREE_TEST=y
CONFIG_ATOMIC64_SELFTEST=y
CONFIG_TEST_STRING_HELPERS=y
CONFIG_TEST_KSTRTOX=y
CONFIG_TEST_RHASHTABLE=y
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_DMA_API_DEBUG is not set
CONFIG_TEST_FIRMWARE=y
# CONFIG_TEST_UDELAY is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
# CONFIG_STRICT_DEVMEM is not set
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
# CONFIG_EARLY_PRINTK_DBGP is not set
CONFIG_X86_PTDUMP=y
CONFIG_DEBUG_RODATA=y
CONFIG_DEBUG_RODATA_TEST=y
CONFIG_DOUBLEFAULT=y
# CONFIG_DEBUG_TLBFLUSH is not set
CONFIG_IOMMU_STRESS=y
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
# CONFIG_IO_DELAY_0X80 is not set
# CONFIG_IO_DELAY_0XED is not set
CONFIG_IO_DELAY_UDELAY=y
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=2
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
# CONFIG_OPTIMIZE_INLINING is not set
CONFIG_DEBUG_NMI_SELFTEST=y
CONFIG_X86_DEBUG_STATIC_CPU_HAS=y
#
# Security options
#
CONFIG_KEYS=y
CONFIG_PERSISTENT_KEYRINGS=y
CONFIG_ENCRYPTED_KEYS=y
# CONFIG_KEYS_DEBUG_PROC_KEYS is not set
CONFIG_SECURITY_DMESG_RESTRICT=y
CONFIG_SECURITY=y
# CONFIG_SECURITYFS is not set
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_PATH=y
# CONFIG_SECURITY_TOMOYO is not set
# CONFIG_SECURITY_APPARMOR is not set
# CONFIG_SECURITY_YAMA is not set
# CONFIG_INTEGRITY is not set
CONFIG_DEFAULT_SECURITY_DAC=y
CONFIG_DEFAULT_SECURITY=""
CONFIG_CRYPTO=y
#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP=y
CONFIG_CRYPTO_PCOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=y
CONFIG_CRYPTO_MCRYPTD=y
CONFIG_CRYPTO_AUTHENC=y
CONFIG_CRYPTO_ABLK_HELPER=y
CONFIG_CRYPTO_GLUE_HELPER_X86=y
#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
# CONFIG_CRYPTO_SEQIV is not set
#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CTR is not set
CONFIG_CRYPTO_CTS=y
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=y
# CONFIG_CRYPTO_PCBC is not set
CONFIG_CRYPTO_XTS=y
#
# Hash modes
#
CONFIG_CRYPTO_CMAC=y
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_XCBC=y
CONFIG_CRYPTO_VMAC=y
#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
# CONFIG_CRYPTO_CRC32C_INTEL is not set
# CONFIG_CRYPTO_CRC32 is not set
CONFIG_CRYPTO_CRC32_PCLMUL=y
CONFIG_CRYPTO_CRCT10DIF=y
CONFIG_CRYPTO_GHASH=y
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=y
# CONFIG_CRYPTO_RMD128 is not set
CONFIG_CRYPTO_RMD160=y
CONFIG_CRYPTO_RMD256=y
CONFIG_CRYPTO_RMD320=y
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA1_SSSE3=y
# CONFIG_CRYPTO_SHA256_SSSE3 is not set
CONFIG_CRYPTO_SHA512_SSSE3=y
CONFIG_CRYPTO_SHA1_MB=y
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set
#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_X86_64=y
CONFIG_CRYPTO_AES_NI_INTEL=y
CONFIG_CRYPTO_ANUBIS=y
# CONFIG_CRYPTO_ARC4 is not set
# CONFIG_CRYPTO_BLOWFISH is not set
CONFIG_CRYPTO_BLOWFISH_COMMON=y
CONFIG_CRYPTO_BLOWFISH_X86_64=y
CONFIG_CRYPTO_CAMELLIA=y
CONFIG_CRYPTO_CAMELLIA_X86_64=y
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=y
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=y
CONFIG_CRYPTO_CAST_COMMON=y
CONFIG_CRYPTO_CAST5=y
CONFIG_CRYPTO_CAST5_AVX_X86_64=y
CONFIG_CRYPTO_CAST6=y
# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_DES3_EDE_X86_64=y
CONFIG_CRYPTO_FCRYPT=y
CONFIG_CRYPTO_KHAZAD=y
# CONFIG_CRYPTO_SALSA20 is not set
CONFIG_CRYPTO_SALSA20_X86_64=y
CONFIG_CRYPTO_SEED=y
CONFIG_CRYPTO_SERPENT=y
CONFIG_CRYPTO_SERPENT_SSE2_X86_64=y
CONFIG_CRYPTO_SERPENT_AVX_X86_64=y
CONFIG_CRYPTO_SERPENT_AVX2_X86_64=y
# CONFIG_CRYPTO_TEA is not set
CONFIG_CRYPTO_TWOFISH=y
CONFIG_CRYPTO_TWOFISH_COMMON=y
CONFIG_CRYPTO_TWOFISH_X86_64=y
CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=y
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set
#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_ZLIB=y
# CONFIG_CRYPTO_LZO is not set
CONFIG_CRYPTO_LZ4=y
CONFIG_CRYPTO_LZ4HC=y
#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=y
# CONFIG_CRYPTO_DRBG_MENU is not set
# CONFIG_CRYPTO_USER_API_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
# CONFIG_CRYPTO_HW is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
# CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE is not set
CONFIG_PUBLIC_KEY_ALGO_RSA=y
CONFIG_HAVE_KVM=y
# CONFIG_VIRTUALIZATION is not set
# CONFIG_BINARY_PRINTF is not set
#
# Library routines
#
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
# CONFIG_CRC_CCITT is not set
CONFIG_CRC16=y
# CONFIG_CRC_T10DIF is not set
# CONFIG_CRC_ITU_T is not set
CONFIG_CRC32=y
CONFIG_CRC32_SELFTEST=y
# CONFIG_CRC32_SLICEBY8 is not set
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
CONFIG_CRC32_BIT=y
CONFIG_CRC7=y
# CONFIG_LIBCRC32C is not set
CONFIG_CRC8=y
# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
CONFIG_RANDOM32_SELFTEST=y
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_COMPRESS=y
CONFIG_LZ4HC_COMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
# CONFIG_XZ_DEC is not set
# CONFIG_XZ_DEC_BCJ is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_BCH=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_DQL=y
CONFIG_NLATTR=y
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
CONFIG_AVERAGE=y
CONFIG_CLZ_TAB=y
CONFIG_CORDIC=y
CONFIG_DDR=y
CONFIG_MPILIB=y
CONFIG_ARCH_HAS_SG_CHAIN=y
[-- Attachment #4: Type: text/plain, Size: 85 bytes --]
_______________________________________________
LKP mailing list
LKP@linux.intel.com
^ permalink raw reply
* Re: [PATCH iproute2 v2 0/4] Switch network ns w/o 'netns exec' for iproute2 tools
From: Vadim Kochan @ 2014-12-27 20:24 UTC (permalink / raw)
To: Stephen Hemminger; +Cc: Vadim Kochan, netdev
In-Reply-To: <20141227102453.4f4093f5@urahara>
On Sat, Dec 27, 2014 at 10:24:53AM -0800, Stephen Hemminger wrote:
> On Wed, 24 Dec 2014 23:04:07 +0200
> Vadim Kochan <vadim4j@gmail.com> wrote:
>
> > From: Vadim Kochan <vadim4j@gmail.com>
> >
> > This series adds new -n[etns] option to ip, tc & bridge tools which
> > allows to easy and faster switch to specified network namespace. So instead of:
> >
> > ip netns exec NETNS { ip | tc | bridge } OBJECT COMMAND
> >
> > it will be possible do the same by:
> >
> > { ip | tc | bridge } -n[etns] NETNS OBJECT COMMAND
> >
> > I skipped misc tools and will work on them later.
> >
> > Vadim Kochan (4):
> > lib: Add netns_switch func for change network namespace
> > ip: Allow to easy change network namespace
> > bridge: Allow to easy change network namespace
> > tc: Allow to easy change network namespace
> >
> > bridge/Makefile | 4 ++
> > bridge/bridge.c | 7 +++-
> > include/namespace.h | 46 +++++++++++++++++++++++
> > ip/ip.c | 7 +++-
> > ip/ipnetns.c | 106 ++--------------------------------------------------
> > lib/Makefile | 6 ++-
> > lib/namespace.c | 86 ++++++++++++++++++++++++++++++++++++++++++
> > man/man8/bridge.8 | 23 +++++++++++-
> > man/man8/ip.8 | 23 +++++++++++-
> > man/man8/tc.8 | 65 ++++++++++++++++++++++++--------
> > tc/Makefile | 5 +++
> > tc/tc.c | 8 +++-
> > 12 files changed, 262 insertions(+), 124 deletions(-)
> > create mode 100644 include/namespace.h
> > create mode 100644 lib/namespace.c
>
> Applied.
> Note: kernel.org git is not available so will push later.
>
Seems works now.
^ permalink raw reply
* [PATCH 23/23 V2 for 3.19] rtlwifi: Fix error when accessing unmapped memory in skb
From: Larry Finger @ 2014-12-27 20:17 UTC (permalink / raw)
To: kvalo; +Cc: linux-wireless, Larry Finger, netdev, Stable, Eric Biggers
These drivers use 9100-byte receive buffers, thus allocating an skb requires
an O(3) memory allocation. Under heavy memory loads and fragmentation, such
a request can fail. Previous versions of the driver have dropped the packet
and reused the old buffer; however, the new version introduced a bug in that
it released the old buffer before trying to allocate a new one. The previous
method is implemented here.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Cc: Stable <stable@vger.kernel.org> [v3.18]
Reported-by: Eric Biggers <ebiggers3@gmail.com>
Cc: Eric Biggers <ebiggers3@gmail.com>
---
V2 - Fixes an error in the logic of V1. Realtek is working on a change to
the RX buffer allocation, but that is likely to be too invasive for
a fix to -rc or stable. In the meantime, this will help.
Larry
---
drivers/net/wireless/rtlwifi/pci.c | 32 ++++++++++++++++++++++++--------
1 file changed, 24 insertions(+), 8 deletions(-)
diff --git a/drivers/net/wireless/rtlwifi/pci.c b/drivers/net/wireless/rtlwifi/pci.c
index 846a2e6..cf4e2c6 100644
--- a/drivers/net/wireless/rtlwifi/pci.c
+++ b/drivers/net/wireless/rtlwifi/pci.c
@@ -666,7 +666,8 @@ tx_status_ok:
}
static int _rtl_pci_init_one_rxdesc(struct ieee80211_hw *hw,
- u8 *entry, int rxring_idx, int desc_idx)
+ struct sk_buff *new_skb, u8 *entry,
+ int rxring_idx, int desc_idx)
{
struct rtl_priv *rtlpriv = rtl_priv(hw);
struct rtl_pci *rtlpci = rtl_pcidev(rtl_pcipriv(hw));
@@ -674,11 +675,15 @@ static int _rtl_pci_init_one_rxdesc(struct ieee80211_hw *hw,
u8 tmp_one = 1;
struct sk_buff *skb;
+ if (likely(new_skb)) {
+ skb = new_skb;
+ goto remap;
+ }
skb = dev_alloc_skb(rtlpci->rxbuffersize);
if (!skb)
return 0;
- rtlpci->rx_ring[rxring_idx].rx_buf[desc_idx] = skb;
+remap:
/* just set skb->cb to mapping addr for pci_unmap_single use */
*((dma_addr_t *)skb->cb) =
pci_map_single(rtlpci->pdev, skb_tail_pointer(skb),
@@ -686,6 +691,7 @@ static int _rtl_pci_init_one_rxdesc(struct ieee80211_hw *hw,
bufferaddress = *((dma_addr_t *)skb->cb);
if (pci_dma_mapping_error(rtlpci->pdev, bufferaddress))
return 0;
+ rtlpci->rx_ring[rxring_idx].rx_buf[desc_idx] = skb;
if (rtlpriv->use_new_trx_flow) {
rtlpriv->cfg->ops->set_desc(hw, (u8 *)entry, false,
HW_DESC_RX_PREPARE,
@@ -781,6 +787,7 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
/*rx pkt */
struct sk_buff *skb = rtlpci->rx_ring[rxring_idx].rx_buf[
rtlpci->rx_ring[rxring_idx].idx];
+ struct sk_buff *new_skb;
if (rtlpriv->use_new_trx_flow) {
rx_remained_cnt =
@@ -800,6 +807,13 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
return;
}
+ /* get a new skb - if fail, old one will be reused */
+ new_skb = dev_alloc_skb(rtlpci->rxbuffersize);
+ if (unlikely(!new_skb)) {
+ pr_err("Allocation of new skb failed in %s\n",
+ __func__);
+ goto no_new;
+ }
/* Reaching this point means: data is filled already
* AAAAAAttention !!!
* We can NOT access 'skb' before 'pci_unmap_single'
@@ -911,14 +925,16 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
schedule_work(&rtlpriv->works.lps_change_work);
}
end:
+ skb = new_skb;
+no_new:
if (rtlpriv->use_new_trx_flow) {
- _rtl_pci_init_one_rxdesc(hw, (u8 *)buffer_desc,
+ _rtl_pci_init_one_rxdesc(hw, skb, (u8 *)buffer_desc,
rxring_idx,
- rtlpci->rx_ring[rxring_idx].idx);
+ rtlpci->rx_ring[rxring_idx].idx);
} else {
- _rtl_pci_init_one_rxdesc(hw, (u8 *)pdesc, rxring_idx,
+ _rtl_pci_init_one_rxdesc(hw, skb, (u8 *)pdesc,
+ rxring_idx,
rtlpci->rx_ring[rxring_idx].idx);
-
if (rtlpci->rx_ring[rxring_idx].idx ==
rtlpci->rxringcount - 1)
rtlpriv->cfg->ops->set_desc(hw, (u8 *)pdesc,
@@ -1307,7 +1323,7 @@ static int _rtl_pci_init_rx_ring(struct ieee80211_hw *hw, int rxring_idx)
rtlpci->rx_ring[rxring_idx].idx = 0;
for (i = 0; i < rtlpci->rxringcount; i++) {
entry = &rtlpci->rx_ring[rxring_idx].buffer_desc[i];
- if (!_rtl_pci_init_one_rxdesc(hw, (u8 *)entry,
+ if (!_rtl_pci_init_one_rxdesc(hw, NULL, (u8 *)entry,
rxring_idx, i))
return -ENOMEM;
}
@@ -1332,7 +1348,7 @@ static int _rtl_pci_init_rx_ring(struct ieee80211_hw *hw, int rxring_idx)
for (i = 0; i < rtlpci->rxringcount; i++) {
entry = &rtlpci->rx_ring[rxring_idx].desc[i];
- if (!_rtl_pci_init_one_rxdesc(hw, (u8 *)entry,
+ if (!_rtl_pci_init_one_rxdesc(hw, NULL, (u8 *)entry,
rxring_idx, i))
return -ENOMEM;
}
--
2.1.2
^ permalink raw reply related
* Re: [PATCH 12/27] iwlwifi: dvm: main: Use setup_timer
From: Grumbach, Emmanuel @ 2014-12-27 19:55 UTC (permalink / raw)
To: Julia.Lawall@lip6.fr
Cc: linux-wireless@vger.kernel.org, kvalo@codeaurora.org,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
ilw@linux.intel.com, Berg, Johannes,
kernel-janitors@vger.kernel.org
In-Reply-To: <1419604558-29743-14-git-send-email-Julia.Lawall@lip6.fr>
On Fri, 2014-12-26 at 15:35 +0100, Julia Lawall wrote:
> Convert a call to init_timer and accompanying intializations of
> the timer's data and function fields to a call to setup_timer.
>
> A simplified version of the semantic match that fixes this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> expression t,f,d;
> @@
>
> -init_timer(&t);
> +setup_timer(&t,f,d);
> -t.data = d;
> -t.function = f;
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
>
Both applied - thanks.
^ permalink raw reply
* Re: [PATCH] netlink/genetlink: pass network namespace to bind/unbind
From: David Miller @ 2014-12-27 8:08 UTC (permalink / raw)
To: johannes; +Cc: netdev, johannes.berg
In-Reply-To: <1419364806-8753-1-git-send-email-johannes@sipsolutions.net>
From: Johannes Berg <johannes@sipsolutions.net>
Date: Tue, 23 Dec 2014 21:00:06 +0100
> From: Johannes Berg <johannes.berg@intel.com>
>
> Netlink families can exist in multiple namespaces, and for the most
> part multicast subscriptions are per network namespace. Thus it only
> makes sense to have bind/unbind notifications per network namespace.
>
> To achieve this, pass the network namespace of a given client socket
> to the bind/unbind functions.
>
> Also do this in generic netlink, and there also make sure that any
> bind for multicast groups that only exist in init_net is rejected.
> This isn't really a problem if it is accepted since a client in a
> different namespace will never receive any notifications from such
> a group, but it can confuse the family if not rejected (it's also
> possible to silently (without telling the family) accept it, but it
> would also have to be ignored on unbind so families that take any
> kind of action on bind/unbind won't do unnecessary work for invalid
> clients like that.
>
> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Applied, thanks Johannes.
^ permalink raw reply
* Re: [PATCH iproute2 v2 0/4] Switch network ns w/o 'netns exec' for iproute2 tools
From: Stephen Hemminger @ 2014-12-27 18:24 UTC (permalink / raw)
To: Vadim Kochan; +Cc: netdev
In-Reply-To: <1419455051-23397-1-git-send-email-vadim4j@gmail.com>
On Wed, 24 Dec 2014 23:04:07 +0200
Vadim Kochan <vadim4j@gmail.com> wrote:
> From: Vadim Kochan <vadim4j@gmail.com>
>
> This series adds new -n[etns] option to ip, tc & bridge tools which
> allows to easy and faster switch to specified network namespace. So instead of:
>
> ip netns exec NETNS { ip | tc | bridge } OBJECT COMMAND
>
> it will be possible do the same by:
>
> { ip | tc | bridge } -n[etns] NETNS OBJECT COMMAND
>
> I skipped misc tools and will work on them later.
>
> Vadim Kochan (4):
> lib: Add netns_switch func for change network namespace
> ip: Allow to easy change network namespace
> bridge: Allow to easy change network namespace
> tc: Allow to easy change network namespace
>
> bridge/Makefile | 4 ++
> bridge/bridge.c | 7 +++-
> include/namespace.h | 46 +++++++++++++++++++++++
> ip/ip.c | 7 +++-
> ip/ipnetns.c | 106 ++--------------------------------------------------
> lib/Makefile | 6 ++-
> lib/namespace.c | 86 ++++++++++++++++++++++++++++++++++++++++++
> man/man8/bridge.8 | 23 +++++++++++-
> man/man8/ip.8 | 23 +++++++++++-
> man/man8/tc.8 | 65 ++++++++++++++++++++++++--------
> tc/Makefile | 5 +++
> tc/tc.c | 8 +++-
> 12 files changed, 262 insertions(+), 124 deletions(-)
> create mode 100644 include/namespace.h
> create mode 100644 lib/namespace.c
Applied.
Note: kernel.org git is not available so will push later.
^ permalink raw reply
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox