Linux-Next discussions
 help / color / mirror / Atom feed
* Re: next-20170217 boot on POWER8 LPAR : WARNING @kernel/jump_label.c:287
From: Jason Baron @ 2017-02-21 16:37 UTC (permalink / raw)
  To: Sachin Sant, Steven Rostedt
  Cc: linux-next, LKML, linuxppc-dev, Michael Ellerman
In-Reply-To: <02B52EFB-4608-47F3-A81C-B8B52DB11233@linux.vnet.ibm.com>

On 02/20/2017 10:05 PM, Sachin Sant wrote:
>
>> On 20-Feb-2017, at 8:27 PM, Jason Baron <jbaron@akamai.com
>> <mailto:jbaron@akamai.com>> wrote:
>>
>> Hi,
>>
>> On 02/19/2017 09:07 AM, Sachin Sant wrote:
>>> While booting next-20170217 on a POWER8 LPAR following
>>> warning is displayed.
>>>
>>> Reverting the following commit helps boot cleanly.
>>> commit 3821fd35b5 :  jump_label: Reduce the size of struct static_key
>>>
>>> [   11.393008] ------------[ cut here ]------------
>>> [   11.393031] WARNING: CPU: 5 PID: 2890 at kernel/jump_label.c:287
>>> static_key_set_entries.isra.10+0x3c/0x50
>>
>> Thanks for the report. So this is saying that the jump_entry table is
>> not at least 4-byte aligned. I wonder if this fixes it up?
>>
>
> Yes. With this patch the warning is gone.
>

Hi,

Thanks for testing. We probably need something like the following to 
make sure we don't hit this on other arches. Steve - I will send 4 
separate patches for this to get arch maintainers' acks for this?

Thanks,

-Jason

diff --git a/arch/arm/include/asm/jump_label.h 
b/arch/arm/include/asm/jump_label.h
index 34f7b6980d21..9720c2f1850b 100644
--- a/arch/arm/include/asm/jump_label.h
+++ b/arch/arm/include/asm/jump_label.h
@@ -13,6 +13,7 @@ static __always_inline bool arch_static_branch(struct 
static_key *key, bool bran
         asm_volatile_goto("1:\n\t"
                  WASM(nop) "\n\t"
                  ".pushsection __jump_table,  \"aw\"\n\t"
+                ".balign 4 \n\t"
                  ".word 1b, %l[l_yes], %c0\n\t"
                  ".popsection\n\t"
                  : :  "i" (&((char *)key)[branch]) :  : l_yes);
@@ -27,6 +28,7 @@ static __always_inline bool 
arch_static_branch_jump(struct static_key *key, bool
         asm_volatile_goto("1:\n\t"
                  WASM(b) " %l[l_yes]\n\t"
                  ".pushsection __jump_table,  \"aw\"\n\t"
+                ".balign 4 \n\t"
                  ".word 1b, %l[l_yes], %c0\n\t"
                  ".popsection\n\t"
                  : :  "i" (&((char *)key)[branch]) :  : l_yes);
diff --git a/arch/mips/include/asm/jump_label.h 
b/arch/mips/include/asm/jump_label.h
index e77672539e8e..51ce97dda3cc 100644
--- a/arch/mips/include/asm/jump_label.h
+++ b/arch/mips/include/asm/jump_label.h
@@ -31,6 +31,7 @@ static __always_inline bool arch_static_branch(struct 
static_key *key, bool bran
         asm_volatile_goto("1:\t" NOP_INSN "\n\t"
                 "nop\n\t"
                 ".pushsection __jump_table,  \"aw\"\n\t"
+               ".balign 4 \n\t"
                 WORD_INSN " 1b, %l[l_yes], %0\n\t"
                 ".popsection\n\t"
                 : :  "i" (&((char *)key)[branch]) : : l_yes);
@@ -45,6 +46,7 @@ static __always_inline bool 
arch_static_branch_jump(struct static_key *key, bool
         asm_volatile_goto("1:\tj %l[l_yes]\n\t"
                 "nop\n\t"
                 ".pushsection __jump_table,  \"aw\"\n\t"
+               ".balign 4 \n\t"
                 WORD_INSN " 1b, %l[l_yes], %0\n\t"
                 ".popsection\n\t"
                 : :  "i" (&((char *)key)[branch]) : : l_yes);
diff --git a/arch/powerpc/include/asm/jump_label.h 
b/arch/powerpc/include/asm/jump_label.h
index 9a287e0ac8b1..f870a85bac46 100644
--- a/arch/powerpc/include/asm/jump_label.h
+++ b/arch/powerpc/include/asm/jump_label.h
@@ -24,6 +24,7 @@ static __always_inline bool arch_static_branch(struct 
static_key *key, bool bran
         asm_volatile_goto("1:\n\t"
                  "nop # arch_static_branch\n\t"
                  ".pushsection __jump_table,  \"aw\"\n\t"
+                ".balign 4 \n\t"
                  JUMP_ENTRY_TYPE "1b, %l[l_yes], %c0\n\t"
                  ".popsection \n\t"
                  : :  "i" (&((char *)key)[branch]) : : l_yes);
@@ -38,6 +39,7 @@ static __always_inline bool 
arch_static_branch_jump(struct static_key *key, bool
         asm_volatile_goto("1:\n\t"
                  "b %l[l_yes] # arch_static_branch_jump\n\t"
                  ".pushsection __jump_table,  \"aw\"\n\t"
+                ".balign 4 \n\t"
                  JUMP_ENTRY_TYPE "1b, %l[l_yes], %c0\n\t"
                  ".popsection \n\t"
                  : :  "i" (&((char *)key)[branch]) : : l_yes);
@@ -63,6 +65,7 @@ struct jump_entry {
  #define ARCH_STATIC_BRANCH(LABEL, KEY)         \
  1098:  nop;                                    \
         .pushsection __jump_table, "aw";        \
+       .balign 4;                              \
         FTR_ENTRY_LONG 1098b, LABEL, KEY;       \
         .popsection
  #endif
diff --git a/arch/tile/include/asm/jump_label.h 
b/arch/tile/include/asm/jump_label.h
index cde7573f397b..c9f6125c41ef 100644
--- a/arch/tile/include/asm/jump_label.h
+++ b/arch/tile/include/asm/jump_label.h
@@ -25,6 +25,7 @@ static __always_inline bool arch_static_branch(struct 
static_key *key,
         asm_volatile_goto("1:\n\t"
                 "nop" "\n\t"
                 ".pushsection __jump_table,  \"aw\"\n\t"
+               ".balign 4 \n\t"
                 ".quad 1b, %l[l_yes], %0 + %1 \n\t"
                 ".popsection\n\t"
                 : :  "i" (key), "i" (branch) : : l_yes);
@@ -39,6 +40,7 @@ static __always_inline bool 
arch_static_branch_jump(struct static_key *key,
         asm_volatile_goto("1:\n\t"
                 "j %l[l_yes]" "\n\t"
                 ".pushsection __jump_table,  \"aw\"\n\t"
+               ".balign 4 \n\t"
                 ".quad 1b, %l[l_yes], %0 + %1 \n\t"
                 ".popsection\n\t"
                 : :  "i" (key), "i" (branch) : : l_yes);

^ permalink raw reply related

* Re: + mm-x86-add-support-for-pud-sized-transparent-hugepages-fix-fix.patch added to -mm tree
From: Alexander Kapshuk @ 2017-02-21 17:12 UTC (permalink / raw)
  To: akpm; +Cc: dave.jiang, mm-commits, linux-next
In-Reply-To: <58a4bc95.wUw3v0FZUCnAXeFL%akpm@linux-foundation.org>

On Wed, Feb 15, 2017 at 12:39:49PM -0800, akpm@linux-foundation.org wrote:
> 
> The patch titled
>      Subject: mm,x86: fix SMP x86 32bit build for native_pud_clear()
> has been added to the -mm tree.  Its filename is
>      mm-x86-add-support-for-pud-sized-transparent-hugepages-fix-fix.patch
> 
> This patch should soon appear at
>     http://ozlabs.org/~akpm/mmots/broken-out/mm-x86-add-support-for-pud-sized-transparent-hugepages-fix-fix.patch
> and later at
>     http://ozlabs.org/~akpm/mmotm/broken-out/mm-x86-add-support-for-pud-sized-transparent-hugepages-fix-fix.patch
> 
> Before you just go and hit "reply", please:
>    a) Consider who else should be cc'ed
>    b) Prefer to cc a suitable mailing list as well
>    c) Ideally: find the original patch on the mailing list and do a
>       reply-to-all to that, adding suitable additional cc's
> 
> *** Remember to use Documentation/SubmitChecklist when testing your code ***
> 
> The -mm tree is included into linux-next and is updated
> there every 3-4 working days
> 
> ------------------------------------------------------
> From: Dave Jiang <dave.jiang@intel.com>
> Subject: mm,x86: fix SMP x86 32bit build for native_pud_clear()
> 
> The fix introduced by e4decc90 to fix the UP case for 32bit x86, however
> that broke the SMP case that was working previously. Add ifdef so the dummy
> function only show up for 32bit UP case only.
> 
> Fix: e4decc90 mm,x86: native_pud_clear missing on i386 build
> 
> Link: http://lkml.kernel.org/r/148719066814.31111.3239231168815337012.stgit@djiang5-desk3.ch.intel.com
> Signed-off-by: Dave Jiang <dave.jiang@intel.com>
> Reported-by: Alexander Kapshuk <alexander.kapshuk@gmail.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
> 
>  arch/x86/include/asm/pgtable-3level.h |    2 ++
>  1 file changed, 2 insertions(+)
> 
> diff -puN arch/x86/include/asm/pgtable-3level.h~mm-x86-add-support-for-pud-sized-transparent-hugepages-fix-fix arch/x86/include/asm/pgtable-3level.h
> --- a/arch/x86/include/asm/pgtable-3level.h~mm-x86-add-support-for-pud-sized-transparent-hugepages-fix-fix
> +++ a/arch/x86/include/asm/pgtable-3level.h
> @@ -121,9 +121,11 @@ static inline void native_pmd_clear(pmd_
>  	*(tmp + 1) = 0;
>  }
>  
> +#ifndef CONFIG_SMP
>  static inline void native_pud_clear(pud_t *pudp)
>  {
>  }
> +#endif
>  
>  static inline void pud_clear(pud_t *pudp)
>  {
> _
> 
> Patches currently in -mm which might be from dave.jiang@intel.com are
> 
> mm-dax-make-pmd_fault-and-friends-to-be-the-same-as-fault.patch
> mm-dax-make-pmd_fault-and-friends-to-be-the-same-as-fault-v7.patch
> mm-dax-move-pmd_fault-to-take-only-vmf-parameter.patch
> mm-fs-reduce-fault-page_mkwrite-and-pfn_mkwrite-to-take-only-vmf.patch
> mmfsdax-change-pmd_fault-to-huge_fault.patch
> mmfsdax-change-pmd_fault-to-huge_fault-fix.patch
> mm-x86-add-support-for-pud-sized-transparent-hugepages-fix.patch
> mm-x86-add-support-for-pud-sized-transparent-hugepages-fix-fix.patch
> dax-support-for-transparent-pud-pages-for-device-dax.patch
> mm-replace-fault_flag_size-with-parameter-to-huge_fault.patch
> 

Just a quick note to let you know that the patch included in next-20170221 did fix the problem I reported.

Thanks once again.

^ permalink raw reply

* Re: next-20170221 build: 2 failures 9 warnings (next-20170221)
From: Mark Brown @ 2017-02-21 17:47 UTC (permalink / raw)
  To: Kishon Vijay Abraham I, Bjorn Helgaas, Jingoo Han
  Cc: kernel-build-reports, linaro-kernel, linux-next, linux-arm-kernel,
	linux-samsung-soc, linux-pci
In-Reply-To: <E1cg6WK-0000gP-QT@optimist>

[-- Attachment #1: Type: text/plain, Size: 611 bytes --]

On Tue, Feb 21, 2017 at 09:14:04AM +0000, Build bot for Mark Brown wrote:

Today's -next fails to build an ARM allmodconfig due to:

> 	arm-allmodconfig
> ../drivers/pci/dwc/pci-exynos.c:132:25: error: 'struct exynos_pcie' has no member named 'pp'
> ../drivers/pci/dwc/pci-exynos.c:162:25: error: 'struct exynos_pcie' has no member named 'pp'
> ../drivers/pci/dwc/pci-exynos.c:185:25: error: 'struct exynos_pcie' has no member named 'pp'

due to b09d4ac91a3934e9 (PCI: dwc: all: Split struct pcie_port into
host-only and core structures) which replaced the struct member pp with
*pci but has missed some users.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply

* Re: next-20170221 build: 2 failures 9 warnings (next-20170221)
From: Bjorn Helgaas @ 2017-02-21 21:31 UTC (permalink / raw)
  To: Mark Brown
  Cc: Kishon Vijay Abraham I, Bjorn Helgaas, Jingoo Han,
	linux-samsung-soc, kernel-build-reports, linux-pci, linaro-kernel,
	linux-next, linux-arm-kernel
In-Reply-To: <20170221174737.2gf63ywzdjrh33ub@sirena.org.uk>

On Tue, Feb 21, 2017 at 09:47:37AM -0800, Mark Brown wrote:
> On Tue, Feb 21, 2017 at 09:14:04AM +0000, Build bot for Mark Brown wrote:
> 
> Today's -next fails to build an ARM allmodconfig due to:
> 
> > 	arm-allmodconfig
> > ../drivers/pci/dwc/pci-exynos.c:132:25: error: 'struct exynos_pcie' has no member named 'pp'
> > ../drivers/pci/dwc/pci-exynos.c:162:25: error: 'struct exynos_pcie' has no member named 'pp'
> > ../drivers/pci/dwc/pci-exynos.c:185:25: error: 'struct exynos_pcie' has no member named 'pp'
> 
> due to b09d4ac91a3934e9 (PCI: dwc: all: Split struct pcie_port into
> host-only and core structures) which replaced the struct member pp with
> *pci but has missed some users.

Thanks a lot, Mark!

b09d4ac91a3934e9 converted all the users at the time, but 327847808474
("PCI: exynos: Refactor to make it easier to support other SoCs") from
another branch added some new uses, and I missed those when I merged the
branches together.  I think I fixed it but I can't build it personally.

Bjorn

^ permalink raw reply

* Re: linux-next: manual merge of the block tree with the vfs tree
From: Stephen Rothwell @ 2017-02-21 22:14 UTC (permalink / raw)
  To: Jens Axboe, Al Viro; +Cc: linux-next, linux-kernel, Christoph Hellwig
In-Reply-To: <20170202134407.4403ad3a@canb.auug.org.au>

Hi all,

On Thu, 2 Feb 2017 13:44:07 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Today's linux-next merge of the block tree got a conflict in:
> 
>   drivers/block/nbd.c
> 
> between commit:
> 
>   c9f2b6aeb922 ("[nbd] pass iov_iter to nbd_xmit()")
> 
> from the vfs tree and commit:
> 
>   09fc54ccc427 ("nbd: move request validity checking into nbd_send_cmd")
>   aebf526b53ae ("block: fold cmd_type into the REQ_OP_ space")
> 
> from the block tree.
> 
> I fixed it up (see below) and can carry the fix as necessary. This
> is now fixed as far as linux-next is concerned, but any non trivial
> conflicts should be mentioned to your upstream maintainer when your tree
> is submitted for merging.  You may also want to consider cooperating
> with the maintainer of the conflicting tree to minimise any particularly
> complex conflicts.
> 
> -- 
> Cheers,
> Stephen Rothwell
> 
> diff --cc drivers/block/nbd.c
> index 48132b0530fe,0be84a3cb6d7..000000000000
> --- a/drivers/block/nbd.c
> +++ b/drivers/block/nbd.c
> @@@ -265,17 -275,32 +262,32 @@@ static int nbd_send_cmd(struct nbd_devi
>   	u32 type;
>   	u32 tag = blk_mq_unique_tag(req);
>   
>  +	iov_iter_kvec(&from, WRITE | ITER_KVEC, &iov, 1, sizeof(request));
>  +
> - 	if (req_op(req) == REQ_OP_DISCARD)
> + 	switch (req_op(req)) {
> + 	case REQ_OP_DISCARD:
>   		type = NBD_CMD_TRIM;
> - 	else if (req_op(req) == REQ_OP_FLUSH)
> + 		break;
> + 	case REQ_OP_FLUSH:
>   		type = NBD_CMD_FLUSH;
> - 	else if (rq_data_dir(req) == WRITE)
> + 		break;
> + 	case REQ_OP_WRITE:
>   		type = NBD_CMD_WRITE;
> - 	else
> + 		break;
> + 	case REQ_OP_READ:
>   		type = NBD_CMD_READ;
> + 		break;
> + 	default:
> + 		return -EIO;
> + 	}
> + 
> + 	if (rq_data_dir(req) == WRITE &&
> + 	    (nbd->flags & NBD_FLAG_READ_ONLY)) {
> + 		dev_err_ratelimited(disk_to_dev(nbd->disk),
> + 				    "Write on read-only\n");
> + 		return -EIO;
> + 	}
>   
>  -	memset(&request, 0, sizeof(request));
>  -	request.magic = htonl(NBD_REQUEST_MAGIC);
>   	request.type = htonl(type);
>   	if (type != NBD_CMD_FLUSH) {
>   		request.from = cpu_to_be64((u64)blk_rq_pos(req) << 9);

This is now a conflict between the vfs tree and Linus' tree.

-- 
Cheers,
Stephen Rothwell

^ permalink raw reply

* Re: linux-next: manual merge of the tip tree with the powerpc tree
From: Stephen Rothwell @ 2017-02-21 22:15 UTC (permalink / raw)
  To: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, Peter Zijlstra,
	Michael Ellerman, Benjamin Herrenschmidt, PowerPC
  Cc: linux-next, linux-kernel, Rashmica Gupta, Frederic Weisbecker
In-Reply-To: <20170217124843.7ea6e3d8@canb.auug.org.au>

Hi all,

On Fri, 17 Feb 2017 12:48:43 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Today's linux-next merge of the tip tree got a conflict in:
> 
>   arch/powerpc/kernel/asm-offsets.c
> 
> between commit:
> 
>   454656155110 ("powerpc/asm: Use OFFSET macro in asm-offsets.c")
> 
> from the powerpc tree and commit:
> 
>   8c8b73c4811f ("sched/cputime, powerpc: Prepare accounting structure for cputime flush on tick")
> 
> from the tip tree.
> 
> I fixed it up (see below) and can carry the fix as necessary. This
> is now fixed as far as linux-next is concerned, but any non trivial
> conflicts should be mentioned to your upstream maintainer when your tree
> is submitted for merging.  You may also want to consider cooperating
> with the maintainer of the conflicting tree to minimise any particularly
> complex conflicts.
> 
> -- 
> Cheers,
> Stephen Rothwell
> 
> diff --cc arch/powerpc/kernel/asm-offsets.c
> index d918338b54b0,9e8e771f8acb..000000000000
> --- a/arch/powerpc/kernel/asm-offsets.c
> +++ b/arch/powerpc/kernel/asm-offsets.c
> @@@ -208,48 -213,58 +208,48 @@@ int main(void
>   #endif /* CONFIG_PPC_BOOK3E */
>   
>   #ifdef CONFIG_PPC_STD_MMU_64
>  -	DEFINE(PACASLBCACHE, offsetof(struct paca_struct, slb_cache));
>  -	DEFINE(PACASLBCACHEPTR, offsetof(struct paca_struct, slb_cache_ptr));
>  -	DEFINE(PACAVMALLOCSLLP, offsetof(struct paca_struct, vmalloc_sllp));
>  +	OFFSET(PACASLBCACHE, paca_struct, slb_cache);
>  +	OFFSET(PACASLBCACHEPTR, paca_struct, slb_cache_ptr);
>  +	OFFSET(PACAVMALLOCSLLP, paca_struct, vmalloc_sllp);
>   #ifdef CONFIG_PPC_MM_SLICES
>  -	DEFINE(MMUPSIZESLLP, offsetof(struct mmu_psize_def, sllp));
>  +	OFFSET(MMUPSIZESLLP, mmu_psize_def, sllp);
>   #else
>  -	DEFINE(PACACONTEXTSLLP, offsetof(struct paca_struct, mm_ctx_sllp));
>  +	OFFSET(PACACONTEXTSLLP, paca_struct, mm_ctx_sllp);
>   #endif /* CONFIG_PPC_MM_SLICES */
>  -	DEFINE(PACA_EXGEN, offsetof(struct paca_struct, exgen));
>  -	DEFINE(PACA_EXMC, offsetof(struct paca_struct, exmc));
>  -	DEFINE(PACA_EXSLB, offsetof(struct paca_struct, exslb));
>  -	DEFINE(PACALPPACAPTR, offsetof(struct paca_struct, lppaca_ptr));
>  -	DEFINE(PACA_SLBSHADOWPTR, offsetof(struct paca_struct, slb_shadow_ptr));
>  -	DEFINE(SLBSHADOW_STACKVSID,
>  -	       offsetof(struct slb_shadow, save_area[SLB_NUM_BOLTED - 1].vsid));
>  -	DEFINE(SLBSHADOW_STACKESID,
>  -	       offsetof(struct slb_shadow, save_area[SLB_NUM_BOLTED - 1].esid));
>  -	DEFINE(SLBSHADOW_SAVEAREA, offsetof(struct slb_shadow, save_area));
>  -	DEFINE(LPPACA_PMCINUSE, offsetof(struct lppaca, pmcregs_in_use));
>  -	DEFINE(LPPACA_DTLIDX, offsetof(struct lppaca, dtl_idx));
>  -	DEFINE(LPPACA_YIELDCOUNT, offsetof(struct lppaca, yield_count));
>  -	DEFINE(PACA_DTL_RIDX, offsetof(struct paca_struct, dtl_ridx));
>  +	OFFSET(PACA_EXGEN, paca_struct, exgen);
>  +	OFFSET(PACA_EXMC, paca_struct, exmc);
>  +	OFFSET(PACA_EXSLB, paca_struct, exslb);
>  +	OFFSET(PACALPPACAPTR, paca_struct, lppaca_ptr);
>  +	OFFSET(PACA_SLBSHADOWPTR, paca_struct, slb_shadow_ptr);
>  +	OFFSET(SLBSHADOW_STACKVSID, slb_shadow, save_area[SLB_NUM_BOLTED - 1].vsid);
>  +	OFFSET(SLBSHADOW_STACKESID, slb_shadow, save_area[SLB_NUM_BOLTED - 1].esid);
>  +	OFFSET(SLBSHADOW_SAVEAREA, slb_shadow, save_area);
>  +	OFFSET(LPPACA_PMCINUSE, lppaca, pmcregs_in_use);
>  +	OFFSET(LPPACA_DTLIDX, lppaca, dtl_idx);
>  +	OFFSET(LPPACA_YIELDCOUNT, lppaca, yield_count);
>  +	OFFSET(PACA_DTL_RIDX, paca_struct, dtl_ridx);
>   #endif /* CONFIG_PPC_STD_MMU_64 */
>  -	DEFINE(PACAEMERGSP, offsetof(struct paca_struct, emergency_sp));
>  +	OFFSET(PACAEMERGSP, paca_struct, emergency_sp);
>   #ifdef CONFIG_PPC_BOOK3S_64
>  -	DEFINE(PACAMCEMERGSP, offsetof(struct paca_struct, mc_emergency_sp));
>  -	DEFINE(PACA_IN_MCE, offsetof(struct paca_struct, in_mce));
>  -#endif
>  -	DEFINE(PACAHWCPUID, offsetof(struct paca_struct, hw_cpu_id));
>  -	DEFINE(PACAKEXECSTATE, offsetof(struct paca_struct, kexec_state));
>  -	DEFINE(PACA_DSCR_DEFAULT, offsetof(struct paca_struct, dscr_default));
>  -	DEFINE(ACCOUNT_STARTTIME,
>  -	       offsetof(struct paca_struct, accounting.starttime));
>  -	DEFINE(ACCOUNT_STARTTIME_USER,
>  -	       offsetof(struct paca_struct, accounting.starttime_user));
>  -	DEFINE(ACCOUNT_USER_TIME,
>  -	       offsetof(struct paca_struct, accounting.utime));
>  -	DEFINE(ACCOUNT_SYSTEM_TIME,
>  -	       offsetof(struct paca_struct, accounting.stime));
>  -	DEFINE(PACA_TRAP_SAVE, offsetof(struct paca_struct, trap_save));
>  -	DEFINE(PACA_NAPSTATELOST, offsetof(struct paca_struct, nap_state_lost));
>  -	DEFINE(PACA_SPRG_VDSO, offsetof(struct paca_struct, sprg_vdso));
>  +	OFFSET(PACAMCEMERGSP, paca_struct, mc_emergency_sp);
>  +	OFFSET(PACA_IN_MCE, paca_struct, in_mce);
>  +#endif
>  +	OFFSET(PACAHWCPUID, paca_struct, hw_cpu_id);
>  +	OFFSET(PACAKEXECSTATE, paca_struct, kexec_state);
>  +	OFFSET(PACA_DSCR_DEFAULT, paca_struct, dscr_default);
>  +	OFFSET(ACCOUNT_STARTTIME, paca_struct, accounting.starttime);
>  +	OFFSET(ACCOUNT_STARTTIME_USER, paca_struct, accounting.starttime_user);
> - 	OFFSET(ACCOUNT_USER_TIME, paca_struct, accounting.user_time);
> - 	OFFSET(ACCOUNT_SYSTEM_TIME, paca_struct, accounting.system_time);
> ++	OFFSET(ACCOUNT_USER_TIME, paca_struct, accounting.utime);
> ++	OFFSET(ACCOUNT_SYSTEM_TIME, paca_struct, accounting.stime);
>  +	OFFSET(PACA_TRAP_SAVE, paca_struct, trap_save);
>  +	OFFSET(PACA_NAPSTATELOST, paca_struct, nap_state_lost);
>  +	OFFSET(PACA_SPRG_VDSO, paca_struct, sprg_vdso);
>   #else /* CONFIG_PPC64 */
>   #ifdef CONFIG_VIRT_CPU_ACCOUNTING_NATIVE
>  -	DEFINE(ACCOUNT_STARTTIME,
>  -	       offsetof(struct thread_info, accounting.starttime));
>  -	DEFINE(ACCOUNT_STARTTIME_USER,
>  -	       offsetof(struct thread_info, accounting.starttime_user));
>  -	DEFINE(ACCOUNT_USER_TIME,
>  -	       offsetof(struct thread_info, accounting.utime));
>  -	DEFINE(ACCOUNT_SYSTEM_TIME,
>  -	       offsetof(struct thread_info, accounting.stime));
>  +	OFFSET(ACCOUNT_STARTTIME, thread_info, accounting.starttime);
>  +	OFFSET(ACCOUNT_STARTTIME_USER, thread_info, accounting.starttime_user);
> - 	OFFSET(ACCOUNT_USER_TIME, thread_info, accounting.user_time);
> - 	OFFSET(ACCOUNT_SYSTEM_TIME, thread_info, accounting.system_time);
> ++	OFFSET(ACCOUNT_USER_TIME, thread_info, accounting.utime);
> ++	OFFSET(ACCOUNT_SYSTEM_TIME, thread_info, accounting.stime);
>   #endif
>   #endif /* CONFIG_PPC64 */
>   

This is now a conflict between the powerpc tree and Linus' tree.

-- 
Cheers,
Stephen Rothwell

^ permalink raw reply

* linux-next: manual merge of the net-next tree with the s390 tree
From: Stephen Rothwell @ 2017-02-21 23:15 UTC (permalink / raw)
  To: David Miller, Networking, Martin Schwidefsky, Heiko Carstens
  Cc: linux-next, linux-kernel, Daniel Borkmann

Hi all,

Today's linux-next merge of the net-next tree got a conflict in:

  arch/s390/net/bpf_jit_comp.c

between commit:

  9437964885f8 ("s390/bpf: remove redundant check for non-null image")

from the s390 tree and commit:

  9d876e79df6a ("bpf: fix unlocking of jited image when module ronx not set")

from the net-next tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc arch/s390/net/bpf_jit_comp.c
index b3b0af86b84e,b49c52a02087..000000000000
--- a/arch/s390/net/bpf_jit_comp.c
+++ b/arch/s390/net/bpf_jit_comp.c
@@@ -1331,11 -1323,14 +1323,11 @@@ struct bpf_prog *bpf_int_jit_compile(st
  	}
  	if (bpf_jit_enable > 1) {
  		bpf_jit_dump(fp->len, jit.size, pass, jit.prg_buf);
 -		if (jit.prg_buf)
 -			print_fn_code(jit.prg_buf, jit.size_prg);
 -	}
 -	if (jit.prg_buf) {
 -		bpf_jit_binary_lock_ro(header);
 -		fp->bpf_func = (void *) jit.prg_buf;
 -		fp->jited = 1;
 +		print_fn_code(jit.prg_buf, jit.size_prg);
  	}
- 	set_memory_ro((unsigned long)header, header->pages);
++	bpf_jit_binary_lock_ro(header);
 +	fp->bpf_func = (void *) jit.prg_buf;
 +	fp->jited = 1;
  free_addrs:
  	kfree(jit.addrs);
  out:

^ permalink raw reply

* linux-next: manual merge of the kspp tree with the net-next tree
From: Stephen Rothwell @ 2017-02-21 23:51 UTC (permalink / raw)
  To: Kees Cook, David Miller, Networking
  Cc: linux-next, linux-kernel, Daniel Borkmann, Laura Abbott

Hi Kees,

Today's linux-next merge of the kspp tree got a conflict in:

  arch/arm/Kconfig

between commit:

  d2852a224050 ("arch: add ARCH_HAS_SET_MEMORY config")

from the net-next tree and commit:

  ad21fc4faa2a ("arch: Move CONFIG_DEBUG_RODATA and CONFIG_SET_MODULE_RONX to be common")

from the kspp tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

diff --cc arch/arm/Kconfig
index 08d6a701c4fd,8748353ed5e0..000000000000
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@@ -2,10 -2,10 +2,12 @@@ config AR
  	bool
  	default y
  	select ARCH_CLOCKSOURCE_DATA
 +	select ARCH_HAS_DEBUG_VIRTUAL
  	select ARCH_HAS_DEVMEM_IS_ALLOWED
  	select ARCH_HAS_ELF_RANDOMIZE
 +	select ARCH_HAS_SET_MEMORY
+ 	select ARCH_HAS_STRICT_KERNEL_RWX if MMU && !XIP_KERNEL
+ 	select ARCH_HAS_STRICT_MODULE_RWX if MMU
  	select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
  	select ARCH_HAVE_CUSTOM_GPIO_H
  	select ARCH_HAS_GCOV_PROFILE_ALL

^ permalink raw reply

* linux-next: manual merge of the kspp tree with the net-next tree
From: Stephen Rothwell @ 2017-02-22  0:06 UTC (permalink / raw)
  To: Kees Cook, David Miller, Networking
  Cc: linux-next, linux-kernel, Laura Abbott, Daniel Borkmann

Hi all,

Today's linux-next merge of the kspp tree got a conflict in:

  include/linux/filter.h

between commit:

  9d876e79df6a ("bpf: fix unlocking of jited image when module ronx not set")

from the net-next tree and commit:

  0f5bf6d0afe4 ("arch: Rename CONFIG_DEBUG_RODATA and CONFIG_DEBUG_MODULE_RONX")

from the kspp tree.

Hmmm, both these change the ifdef guards I have used the one from the
net-next tree (CONFIG_ARCH_HAS_SET_MEMORY) for today, please let me know
if that is not correct.

I fixed it up (see above) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

-- 
Cheers,
Stephen Rothwell

^ permalink raw reply

* Starting kvm/qemu guest crash kernel linux-next 0221 tree
From: Xiong Zhou @ 2017-02-22  1:52 UTC (permalink / raw)
  To: qemu-devel, kvm; +Cc: linux-kernel, linux-next

Hi,

Starting a guest begin to crash kernel on 0221 -next tree.

It's fine on 0220 tree.

Thanks,
Xiong

-------------
Feb 22 09:24:29 host-12 systemd-journald[405]: Received SIGTERM from PID 1 (systemd).
Feb 22 09:24:29 host-12 kernel: systemd: 24 output lines suppressed due to ratelimiting
Feb 22 09:24:29 host-12 kernel: audit: type=1404 audit(1487755465.919:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
Feb 22 09:24:29 host-12 kernel: SELinux:  Permission validate_trans in class security not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Permission module_load in class system not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class binder not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class cap_userns not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class cap2_userns not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class sctp_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class icmp_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class ax25_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class ipx_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class netrom_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class atmpvc_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class x25_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class rose_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class decnet_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class atmsvc_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class rds_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class irda_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class pppox_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class llc_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class can_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class tipc_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class bluetooth_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class iucv_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class rxrpc_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class isdn_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class phonet_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class ieee802154_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class caif_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class alg_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class nfc_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class vsock_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class kcm_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class qipcrtr_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux:  Class smc_socket not defined in policy.
Feb 22 09:24:29 host-12 kernel: SELinux: the above unknown classes and permissions will be allowed
Feb 22 09:24:29 host-12 kernel: audit: type=1403 audit(1487755467.188:3): policy loaded auid=4294967295 ses=4294967295
Feb 22 09:24:29 host-12 systemd[1]: Successfully loaded SELinux policy in 1.293388s.
Feb 22 09:24:29 host-12 systemd[1]: RTC configured in localtime, applying delta of 480 minutes to system time.
Feb 22 09:24:29 host-12 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Feb 22 09:24:29 host-12 systemd[1]: Inserted module 'ip_tables'
Feb 22 09:24:29 host-12 systemd[1]: Relabelled /dev and /run in 41.372ms.
Feb 22 09:24:29 host-12 journal: Journal started
Feb 22 09:24:29 host-12 systemd: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
Feb 22 09:24:29 host-12 systemd: Detected architecture x86-64.
Feb 22 09:24:29 host-12 systemd: Set hostname to <localhost.localdomain>.
Feb 22 09:24:29 host-12 systemd: Starting Flush Journal to Persistent Storage...
Feb 22 09:24:29 host-12 systemd: Mounted Arbitrary Executable File Formats File System.
Feb 22 09:24:29 host-12 journal: Runtime journal is using 8.0M (max allowed 1.6G, trying to leave 2.4G free of 16.4G available → current limit 1.6G).
Feb 22 09:24:29 host-12 kernel: RPC: Registered named UNIX socket transport module.
Feb 22 09:24:29 host-12 kernel: RPC: Registered udp transport module.
Feb 22 09:24:29 host-12 kernel: RPC: Registered tcp transport module.
Feb 22 09:24:29 host-12 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Feb 22 09:24:30 host-12 systemd: Started Flush Journal to Persistent Storage.
Feb 22 09:24:30 host-12 systemd: Mounted RPC Pipe File System.
Feb 22 09:24:30 host-12 systemd: Started Set Up Additional Binary Formats.
Feb 22 09:24:30 host-12 systemd: Started Create Static Device Nodes in /dev.
Feb 22 09:24:30 host-12 systemd: Starting udev Kernel Device Manager...
Feb 22 09:24:30 host-12 systemd: Started LVM2 metadata daemon.
Feb 22 09:24:30 host-12 systemd: Starting LVM2 metadata daemon...
Feb 22 09:24:30 host-12 systemd: Started udev Coldplug all Devices.
Feb 22 09:24:30 host-12 systemd: Starting udev Wait for Complete Device Initialization...
Feb 22 09:24:30 host-12 systemd: Started Configure read-only root support.
Feb 22 09:24:30 host-12 systemd-udevd: starting version 219
Feb 22 09:24:30 host-12 kernel: Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
Feb 22 09:24:30 host-12 systemd: Mounted NFSD configuration filesystem.
Feb 22 09:24:30 host-12 systemd: Started udev Kernel Device Manager.
Feb 22 09:24:30 host-12 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Feb 22 09:24:30 host-12 kernel: dca service started, version 1.12.1
Feb 22 09:24:30 host-12 systemd: Found device /dev/ttyS1.
Feb 22 09:24:30 host-12 kernel: ipmi message handler version 39.2
Feb 22 09:24:30 host-12 kernel: power_meter ACPI000D:00: Found ACPI power meter.
Feb 22 09:24:30 host-12 kernel: power_meter ACPI000D:00: Ignoring unsafe software power cap!
Feb 22 09:24:30 host-12 kernel: power_meter ACPI000D:00: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
Feb 22 09:24:31 host-12 kernel: ipmi device interface
Feb 22 09:24:31 host-12 kernel: wmi: Mapper loaded
Feb 22 09:24:31 host-12 kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
Feb 22 09:24:31 host-12 kernel: ioatdma: Intel(R) QuickData Technology Driver 4.00
Feb 22 09:24:31 host-12 kernel: hpwdt 0000:01:00.0: HPE Watchdog Timer Driver: NMI decoding initialized, allow kernel dump: ON (default = 1/ON)
Feb 22 09:24:31 host-12 kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Feb 22 09:24:31 host-12 kernel: hpwdt 0000:01:00.0: HPE Watchdog Timer Driver: 1.4.0, timer margin: 30 seconds (nowayout=0).
Feb 22 09:24:31 host-12 kernel: iTCO_vendor_support: vendor-support=0
Feb 22 09:24:31 host-12 kernel: ipmi_si IPI0001:00: ipmi_si: probing via ACPI
Feb 22 09:24:31 host-12 kernel: scsi 0:0:0:0: Attached scsi generic sg0 type 12
Feb 22 09:24:31 host-12 kernel: sd 0:1:0:0: Attached scsi generic sg1 type 0
Feb 22 09:24:31 host-12 kernel: ipmi_si IPI0001:00: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
Feb 22 09:24:31 host-12 kernel: ipmi_si: Adding ACPI-specified kcs state machine
Feb 22 09:24:31 host-12 kernel: IPMI System Interface driver.
Feb 22 09:24:31 host-12 kernel: ipmi_si: probing via SMBIOS
Feb 22 09:24:31 host-12 kernel: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Feb 22 09:24:31 host-12 kernel: ipmi_si: SMBIOS-specified kcs state machine: duplicate
Feb 22 09:24:31 host-12 kernel: ipmi_si: probing via SPMI
Feb 22 09:24:31 host-12 kernel: ipmi_si: SPMI: io 0xca3 regsize 1 spacing 1 irq 0
Feb 22 09:24:31 host-12 kernel: ipmi_si: Adding SPMI-specified kcs state machine
Feb 22 09:24:31 host-12 kernel: ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x20, irq 0
Feb 22 09:24:31 host-12 kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
Feb 22 09:24:31 host-12 kernel: iTCO_wdt: unable to reset NO_REBOOT flag, device disabled by hardware/BIOS
Feb 22 09:24:31 host-12 kernel: ipmi_si IPI0001:00: Found new BMC (man_id: 0x00000b, prod_id: 0x2000, dev_id: 0x13)
Feb 22 09:24:31 host-12 kernel: ipmi_si IPI0001:00: IPMI kcs interface initialized
Feb 22 09:24:31 host-12 kernel: AVX2 version of gcm_enc/dec engaged.
Feb 22 09:24:31 host-12 kernel: AES CTR mode by8 optimization enabled
Feb 22 09:24:31 host-12 kernel: IPMI SSIF Interface driver
Feb 22 09:24:31 host-12 systemd: Found device LOGICAL_VOLUME 2.
Feb 22 09:24:31 host-12 kernel: alg: No test for pcbc(aes) (pcbc-aes-aesni)
Feb 22 09:24:31 host-12 systemd: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Feb 22 09:24:31 host-12 systemd: Found device LOGICAL_VOLUME 3.
Feb 22 09:24:31 host-12 systemd: Activating swap /dev/disk/by-uuid/a7a8c90b-1d4b-4312-9d4c-2c83e83c3b06...
Feb 22 09:24:31 host-12 systemd: Reached target Local File Systems (Pre).
Feb 22 09:24:31 host-12 systemd: Starting Local File Systems (Pre).
Feb 22 09:24:31 host-12 systemd: Mounting /boot...
Feb 22 09:24:32 host-12 kernel: XFS (sda2): Mounting V5 Filesystem
Feb 22 09:24:32 host-12 kernel: Adding 31457276k swap on /dev/sda3.  Priority:-1 extents:1 across:31457276k FS
Feb 22 09:24:32 host-12 systemd: Activated swap /dev/disk/by-uuid/a7a8c90b-1d4b-4312-9d4c-2c83e83c3b06.
Feb 22 09:24:32 host-12 systemd: Reached target Swap.
Feb 22 09:24:32 host-12 systemd: Starting Swap.
Feb 22 09:24:32 host-12 kernel: XFS (sda2): Starting recovery (logdev: internal)
Feb 22 09:24:32 host-12 systemd: Mounted /boot.
Feb 22 09:24:32 host-12 kernel: EDAC MC: Ver: 3.0.0
Feb 22 09:24:32 host-12 kernel: XFS (sda2): Ending recovery (logdev: internal)
Feb 22 09:24:32 host-12 kernel: EDAC MC0: Giving out device to module sbridge_edac.c controller Haswell Socket#0: DEV 0000:7f:12.0 (INTERRUPT)
Feb 22 09:24:32 host-12 kernel: EDAC MC1: Giving out device to module sbridge_edac.c controller Haswell Socket#1: DEV 0000:ff:12.0 (INTERRUPT)
Feb 22 09:24:32 host-12 kernel: EDAC sbridge:  Ver: 1.1.1 
Feb 22 09:24:33 host-12 kernel: intel_rapl: Found RAPL domain package
Feb 22 09:24:33 host-12 kernel: intel_rapl: Found RAPL domain dram
Feb 22 09:24:33 host-12 kernel: intel_rapl: DRAM domain energy unit 15300pj
Feb 22 09:24:33 host-12 kernel: intel_rapl: Found RAPL domain package
Feb 22 09:24:33 host-12 kernel: intel_rapl: Found RAPL domain dram
Feb 22 09:24:33 host-12 kernel: intel_rapl: DRAM domain energy unit 15300pj
Feb 22 09:24:33 host-12 systemd: Started udev Wait for Complete Device Initialization.
Feb 22 09:24:33 host-12 systemd: Starting Activation of DM RAID sets...
Feb 22 09:24:33 host-12 kernel: device-mapper: uevent: version 1.0.3
Feb 22 09:24:33 host-12 kernel: device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
Feb 22 09:24:33 host-12 systemd: Started Activation of DM RAID sets.
Feb 22 09:24:33 host-12 systemd: Reached target Encrypted Volumes.
Feb 22 09:24:33 host-12 systemd: Starting Encrypted Volumes.
Feb 22 09:24:33 host-12 systemd: Reached target Local File Systems.
Feb 22 09:24:33 host-12 systemd: Starting Local File Systems.
Feb 22 09:24:33 host-12 systemd: Starting Import network configuration from initramfs...
Feb 22 09:24:33 host-12 systemd: Starting Preprocess NFS configuration...
Feb 22 09:24:33 host-12 systemd: Starting Tell Plymouth To Write Out Runtime Data...
Feb 22 09:24:33 host-12 systemd: Started Preprocess NFS configuration.
Feb 22 09:24:33 host-12 systemd: Started Import network configuration from initramfs.
Feb 22 09:24:33 host-12 systemd: Starting Create Volatile Files and Directories...
Feb 22 09:24:33 host-12 systemd: Started Tell Plymouth To Write Out Runtime Data.
Feb 22 09:24:34 host-12 systemd: Started Create Volatile Files and Directories.
Feb 22 09:24:34 host-12 systemd: Starting Security Auditing Service...
Feb 22 09:24:34 host-12 augenrules: /sbin/augenrules: No change
Feb 22 09:24:34 host-12 systemd: Started Security Auditing Service.
Feb 22 09:24:34 host-12 systemd: Starting Update UTMP about System Boot/Shutdown...
Feb 22 09:24:34 host-12 systemd: Started Update UTMP about System Boot/Shutdown.
Feb 22 09:24:34 host-12 systemd: Reached target System Initialization.
Feb 22 09:24:34 host-12 systemd: Starting System Initialization.
Feb 22 09:24:34 host-12 systemd: Started Flexible branding.
Feb 22 09:24:34 host-12 systemd: Starting Flexible branding.
Feb 22 09:24:34 host-12 systemd: Reached target Paths.
Feb 22 09:24:34 host-12 systemd: Starting Paths.
Feb 22 09:24:34 host-12 systemd: Listening on Virtual machine lock manager socket.
Feb 22 09:24:34 host-12 systemd: Starting Virtual machine lock manager socket.
Feb 22 09:24:34 host-12 systemd: Listening on Open-iSCSI iscsid Socket.
Feb 22 09:24:34 host-12 systemd: Starting Open-iSCSI iscsid Socket.
Feb 22 09:24:34 host-12 systemd: Started Daily Cleanup of Temporary Directories.
Feb 22 09:24:34 host-12 systemd: Starting Daily Cleanup of Temporary Directories.
Feb 22 09:24:34 host-12 systemd: Listening on RPCbind Server Activation Socket.
Feb 22 09:24:34 host-12 systemd: Starting RPCbind Server Activation Socket.
Feb 22 09:24:34 host-12 systemd: Listening on Virtual machine log manager socket.
Feb 22 09:24:34 host-12 systemd: Starting Virtual machine log manager socket.
Feb 22 09:24:34 host-12 auditd[1108]: Started dispatcher: /sbin/audispd pid: 1125
Feb 22 09:24:34 host-12 auditd[1108]: Init complete, auditd 2.6.5 listening for events (startup state enable)
Feb 22 09:24:34 host-12 systemd: Listening on PC/SC Smart Card Daemon Activation Socket.
Feb 22 09:24:34 host-12 systemd: Starting PC/SC Smart Card Daemon Activation Socket.
Feb 22 09:24:34 host-12 systemd: Listening on Open-iSCSI iscsiuio Socket.
Feb 22 09:24:34 host-12 systemd: Starting Open-iSCSI iscsiuio Socket.
Feb 22 09:24:34 host-12 systemd: Listening on D-Bus System Message Bus Socket.
Feb 22 09:24:34 host-12 systemd: Starting D-Bus System Message Bus Socket.
Feb 22 09:24:34 host-12 systemd: Reached target Sockets.
Feb 22 09:24:34 host-12 systemd: Starting Sockets.
Feb 22 09:24:34 host-12 systemd: Reached target Basic System.
Feb 22 09:24:34 host-12 systemd: Starting Basic System.
Feb 22 09:24:34 host-12 systemd: Starting Load CPU microcode update...
Feb 22 09:24:34 host-12 audispd: No plugins found, exiting
Feb 22 09:24:34 host-12 systemd: Starting NTP client/server...
Feb 22 09:24:34 host-12 systemd: Starting Resets System Activity Logs...
Feb 22 09:24:34 host-12 systemd: Starting GSSAPI Proxy Daemon...
Feb 22 09:24:34 host-12 systemd: Started libstoragemgmt plug-in server daemon.
Feb 22 09:24:34 host-12 systemd: Starting libstoragemgmt plug-in server daemon...
Feb 22 09:24:34 host-12 systemd: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Feb 22 09:24:34 host-12 systemd: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Feb 22 09:24:34 host-12 systemd: Starting Authorization Manager...
Feb 22 09:24:34 host-12 systemd: Started Hardware RNG Entropy Gatherer Daemon.
Feb 22 09:24:34 host-12 systemd: Starting Hardware RNG Entropy Gatherer Daemon...
Feb 22 09:24:34 host-12 systemd: Starting Login Service...
Feb 22 09:24:34 host-12 systemd: Started ABRT Automated Bug Reporting Tool.
Feb 22 09:24:34 host-12 systemd: Starting ABRT Automated Bug Reporting Tool...
Feb 22 09:24:34 host-12 systemd: Started ABRT kernel log watcher.
Feb 22 09:24:34 host-12 systemd: Starting ABRT kernel log watcher...
Feb 22 09:24:34 host-12 systemd: Starting Kernel Samepage Merging...
Feb 22 09:24:34 host-12 systemd: Starting Dump dmesg to /var/log/dmesg...
Feb 22 09:24:34 host-12 rngd: read error
Feb 22 09:24:34 host-12 rngd: read error
Feb 22 09:24:34 host-12 systemd: Started irqbalance daemon.
Feb 22 09:24:34 host-12 systemd: Starting irqbalance daemon...
Feb 22 09:24:34 host-12 systemd: Starting Install ABRT coredump hook...
Feb 22 09:24:34 host-12 systemd: Started D-Bus System Message Bus.
Feb 22 09:24:35 host-12 chronyd[1157]: chronyd version 3.1 starting (+CMDMON +NTP +REFCLOCK +RTC +PRIVDROP +SCFILTER +SECHASH +SIGND +ASYNCDNS +IPV6 +DEBUG)
Feb 22 09:24:35 host-12 chronyd[1157]: commandkey directive is no longer supported
Feb 22 09:24:35 host-12 chronyd[1157]: generatecommandkey directive is no longer supported
Feb 22 09:24:35 host-12 chronyd[1157]: Could not change ownership of /var/run/chrony : Operation not permitted
Feb 22 09:24:35 host-12 chronyd[1157]: Could not access /var/run/chrony : No such file or directory
Feb 22 09:24:35 host-12 chronyd[1157]: Disabled command socket /var/run/chrony/chronyd.sock
Feb 22 09:24:35 host-12 chronyd[1157]: Frequency -3.470 +/- 0.756 ppm read from /var/lib/chrony/drift
Feb 22 09:24:35 host-12 smartd[1137]: smartd 6.2 2013-07-26 r3841 [x86_64-linux-4.10.0-linux-next-3d4ffb9-next-20170221] (local build)
Feb 22 09:24:35 host-12 smartd[1137]: Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org
Feb 22 09:24:35 host-12 smartd[1137]: Opened configuration file /etc/smartmontools/smartd.conf
Feb 22 09:24:35 host-12 smartd[1137]: Configuration file /etc/smartmontools/smartd.conf was parsed, found DEVICESCAN, scanning devices
Feb 22 09:24:35 host-12 smartd[1137]: Device: /dev/sda, opened
Feb 22 09:24:35 host-12 smartd[1137]: Device: /dev/sda, [HP       LOGICAL VOLUME   2.52], lu id: 0x600508b1001c7fba6a25449895be4539, S/N: PDNLH0BRH8Y1EX, 3.00 TB
Feb 22 09:24:35 host-12 smartd[1137]: Device: /dev/sda, is SMART capable. Adding to "monitor" list.
Feb 22 09:24:35 host-12 smartd[1137]: Monitoring 0 ATA and 1 SCSI devices
Feb 22 09:24:35 host-12 polkitd[1138]: Started polkitd version 0.112
Feb 22 09:24:35 host-12 dbus-daemon: dbus[1152]: [system] Successfully activated service 'org.freedesktop.systemd1'
Feb 22 09:24:35 host-12 dbus[1152]: [system] Successfully activated service 'org.freedesktop.systemd1'
Feb 22 09:24:35 host-12 systemd: Starting D-Bus System Message Bus...
Feb 22 09:24:35 host-12 systemd: Starting Network Manager...
Feb 22 09:24:35 host-12 systemd: Started Load CPU microcode update.
Feb 22 09:24:35 host-12 systemd: Started Resets System Activity Logs.
Feb 22 09:24:35 host-12 systemd: Started GSSAPI Proxy Daemon.
Feb 22 09:24:35 host-12 systemd: Started Kernel Samepage Merging.
Feb 22 09:24:35 host-12 systemd: Started Dump dmesg to /var/log/dmesg.
Feb 22 09:24:35 host-12 systemd: Starting Kernel Samepage Merging (KSM) Tuning Daemon...
Feb 22 09:24:35 host-12 systemd: Reached target NFS client services.
Feb 22 09:24:35 host-12 systemd: Starting NFS client services.
Feb 22 09:24:35 host-12 systemd-logind: New seat seat0.
Feb 22 09:24:35 host-12 systemd: Started Login Service.
Feb 22 09:24:35 host-12 systemd-logind: Watching system buttons on /dev/input/event0 (Power Button)
Feb 22 09:24:35 host-12 systemd: Started Kernel Samepage Merging (KSM) Tuning Daemon.
Feb 22 09:24:35 host-12 systemd: Started Install ABRT coredump hook.
Feb 22 09:24:35 host-12 systemd: Started NTP client/server.
Feb 22 09:24:35 host-12 systemd: Starting Wait for chrony to synchronize system clock...
Feb 22 09:24:35 host-12 systemd: Started Authorization Manager.
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.0696] NetworkManager (version 1.4.0-14.el7_3) is starting...
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.0703] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 00-server.conf)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.0888] manager[0x55b4fe010110]: monitoring kernel firmware directory '/lib/firmware'.
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.1296] dns-mgr[0x55b4fe00a960]: init: dns=default, rc-manager=file
Feb 22 09:24:36 host-12 systemd: Started Network Manager.
Feb 22 09:24:36 host-12 systemd: Starting Network Manager Wait Online...
Feb 22 09:24:36 host-12 dbus-daemon: dbus[1152]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Feb 22 09:24:36 host-12 dbus[1152]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Feb 22 09:24:36 host-12 systemd: Starting Network Manager Script Dispatcher Service...
Feb 22 09:24:36 host-12 dbus[1152]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Feb 22 09:24:36 host-12 dbus-daemon: dbus[1152]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Feb 22 09:24:36 host-12 systemd: Started Network Manager Script Dispatcher Service.
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.2824] settings: loaded plugin ifcfg-rh: (c) 2007 - 2015 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list. (/usr/lib64/NetworkManager/libnm-settings-plugin-ifcfg-rh.so)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.2831] settings: loaded plugin iBFT: (c) 2014 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list. (/usr/lib64/NetworkManager/libnm-settings-plugin-ibft.so)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.2834] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.3013] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-eno1 (d1edabff-e2a2-4738-8a9a-2c6f4c485f7c,"eno1")
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.3026] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-eno2 (d7c68eab-b7aa-4751-989d-7b63c72a9f93,"eno2")
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.3038] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-eno3 (1a3db594-f8cc-4bc7-8aea-91cae79a7ded,"eno3")
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.3051] ifcfg-rh: new connection /etc/sysconfig/network-scripts/ifcfg-eno4 (38153877-28b2-4ddd-b60d-e1c9d60ec771,"eno4")
Feb 22 09:24:36 host-12 dbus[1152]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Feb 22 09:24:36 host-12 dbus-daemon: dbus[1152]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Feb 22 09:24:36 host-12 abrtd: '/var/spool/abrt/oops-2016-10-27-10:38:26-12224-0' is not a problem directory
Feb 22 09:24:36 host-12 systemd: Starting Hostname Service...
Feb 22 09:24:36 host-12 dbus[1152]: [system] Successfully activated service 'org.freedesktop.hostname1'
Feb 22 09:24:36 host-12 dbus-daemon: dbus[1152]: [system] Successfully activated service 'org.freedesktop.hostname1'
Feb 22 09:24:36 host-12 systemd: Started Hostname Service.
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.7807] settings: hostname: using hostnamed
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.7807] settings: hostname changed from (none) to "localhost.localdomain"
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8046] dhcp-init: Using DHCP client 'dhclient'
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8046] manager: WiFi enabled by radio killswitch; enabled by state file
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8047] manager: WWAN enabled by radio killswitch; enabled by state file
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8047] manager: Networking is enabled by state file
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8047] Loaded device plugin: NMVxlanFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8047] Loaded device plugin: NMVlanFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8047] Loaded device plugin: NMVethFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8048] Loaded device plugin: NMTunFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8048] Loaded device plugin: NMMacvlanFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8048] Loaded device plugin: NMIPTunnelFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8048] Loaded device plugin: NMInfinibandFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8048] Loaded device plugin: NMEthernetFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8049] Loaded device plugin: NMBridgeFactory (internal)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8049] Loaded device plugin: NMBondFactory (internal)
Feb 22 09:24:36 host-12 nm-dispatcher: req:1 'hostname': new request (4 scripts)
Feb 22 09:24:36 host-12 nm-dispatcher: req:1 'hostname': start running ordered scripts...
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8845] Loaded device plugin: NMTeamFactory (/usr/lib64/NetworkManager/libnm-device-plugin-team.so)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8857] device (lo): link connected
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8866] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/0)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8878] manager: (eno1): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Feb 22 09:24:36 host-12 NetworkManager[1167]: <info>  [1487726676.8896] device (eno1): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Feb 22 09:24:36 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.0815] manager: (eno2): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.0828] device (eno2): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno2: link is not ready
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno2: link is not ready
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.2589] manager: (eno3): new Ethernet device (/org/freedesktop/NetworkManager/Devices/3)
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.2601] device (eno3): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno3: link is not ready
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno3: link is not ready
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.4385] manager: (eno4): new Ethernet device (/org/freedesktop/NetworkManager/Devices/4)
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.4402] device (eno4): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno4: link is not ready
Feb 22 09:24:37 host-12 abrtd: Init complete, entering main loop
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno4: link is not ready
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.6503] device (eno1): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.6782] device (eno2): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.7055] device (eno3): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno2: link is not ready
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno3: link is not ready
Feb 22 09:24:37 host-12 NetworkManager[1167]: <info>  [1487726677.7325] device (eno4): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Feb 22 09:24:37 host-12 kernel: IPv6: ADDRCONF(NETDEV_UP): eno4: link is not ready
Feb 22 09:24:40 host-12 kernel: tg3 0000:02:00.0 eno1: Link is up at 1000 Mbps, full duplex
Feb 22 09:24:40 host-12 kernel: tg3 0000:02:00.0 eno1: Flow control is on for TX and on for RX
Feb 22 09:24:40 host-12 kernel: tg3 0000:02:00.0 eno1: EEE is disabled
Feb 22 09:24:40 host-12 NetworkManager[1167]: <info>  [1487726680.8676] device (eno1): link connected
Feb 22 09:24:40 host-12 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
Feb 22 09:24:40 host-12 NetworkManager[1167]: <info>  [1487726680.8683] policy: auto-activating connection 'eno1'
Feb 22 09:24:40 host-12 NetworkManager[1167]: <info>  [1487726680.8700] device (eno1): Activation: starting connection 'eno1' (d1edabff-e2a2-4738-8a9a-2c6f4c485f7c)
Feb 22 09:24:40 host-12 NetworkManager[1167]: <info>  [1487726680.8704] device (eno1): state change: disconnected -> prepare (reason 'none') [30 40 0]
Feb 22 09:24:40 host-12 NetworkManager[1167]: <info>  [1487726680.8706] manager: NetworkManager state is now CONNECTING
Feb 22 09:24:40 host-12 NetworkManager[1167]: <info>  [1487726680.8721] device (eno1): state change: prepare -> config (reason 'none') [40 50 0]
Feb 22 09:24:40 host-12 NetworkManager[1167]: <info>  [1487726680.8729] device (eno1): state change: config -> ip-config (reason 'none') [50 70 0]
Feb 22 09:24:40 host-12 NetworkManager[1167]: <info>  [1487726680.8741] dhcp4 (eno1): activation: beginning transaction (timeout in 45 seconds)
Feb 22 09:24:41 host-12 NetworkManager[1167]: <info>  [1487726681.0377] dhcp4 (eno1): dhclient started with pid 1245
Feb 22 09:24:41 host-12 dhclient[1245]: DHCPREQUEST on eno1 to 255.255.255.255 port 67 (xid=0x41868d30)
Feb 22 09:24:47 host-12 dhclient[1245]: DHCPREQUEST on eno1 to 255.255.255.255 port 67 (xid=0x41868d30)
Feb 22 09:24:47 host-12 dhclient[1245]: DHCPACK from 10.73.5.254 (xid=0x41868d30)
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6377] dhcp4 (eno1):   address 10.73.4.145
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6380] dhcp4 (eno1):   plen 23 (255.255.254.0)
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6380] dhcp4 (eno1):   gateway 10.73.5.254
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6380] dhcp4 (eno1):   server identifier 10.73.2.108
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6380] dhcp4 (eno1):   lease time 43200
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6380] dhcp4 (eno1):   hostname 'host-12.rhts.eng.sw.com'
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6380] dhcp4 (eno1):   nameserver '10.73.2.107'
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6381] dhcp4 (eno1):   nameserver '10.73.2.108'
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6381] dhcp4 (eno1):   nameserver '10.10.160.1'
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6381] dhcp4 (eno1):   domain name 'rhts.eng.sw.com'
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6381] dhcp4 (eno1): state changed unknown -> bound
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6397] device (eno1): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Feb 22 09:24:47 host-12 dhclient[1245]: bound to 10.73.4.145 -- renewal in 20999 seconds.
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6413] device (eno1): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6418] device (eno1): state change: secondaries -> activated (reason 'none') [90 100 0]
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6421] manager: NetworkManager state is now CONNECTED_LOCAL
Feb 22 09:24:47 host-12 nm-dispatcher: req:2 'connectivity-change': new request (4 scripts)
Feb 22 09:24:47 host-12 nm-dispatcher: req:2 'connectivity-change': start running ordered scripts...
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6990] manager: NetworkManager state is now CONNECTED_GLOBAL
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6992] policy: set 'eno1' (eno1) as default for IPv4 routing and DNS
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6993] policy: set 'eno1' (eno1) as default for IPv6 routing and DNS
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.6994] policy: setting system hostname to 'host-12.rhts.eng.sw.com' (from DHCPv4)
Feb 22 09:24:47 host-12 systemd-hostnamed: Changed host name to 'host-12.rhts.eng.sw.com'
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.7989] device (eno1): Activation: successful, device activated.
Feb 22 09:24:47 host-12 NetworkManager[1167]: <info>  [1487726687.7996] manager: startup complete
Feb 22 09:24:47 host-12 nm-dispatcher: req:3 'up' [eno1]: new request (4 scripts)
Feb 22 09:24:47 host-12 nm-dispatcher: req:3 'up' [eno1]: start running ordered scripts...
Feb 22 09:24:47 host-12 nm-dispatcher: req:4 'hostname': new request (4 scripts)
Feb 22 09:24:47 host-12 systemd: Started Network Manager Wait Online.
Feb 22 09:24:47 host-12 systemd: Starting LSB: Bring up/down networking...
Feb 22 09:24:48 host-12 nm-dispatcher: req:4 'hostname': start running ordered scripts...
Feb 22 09:24:48 host-12 network: Bringing up loopback interface:  [  OK  ]
Feb 22 09:24:49 host-12 network: Bringing up interface eno1:  [  OK  ]
Feb 22 09:24:49 host-12 systemd: Started LSB: Bring up/down networking.
Feb 22 09:24:49 host-12 systemd: Reached target Network.
Feb 22 09:24:49 host-12 systemd: Starting Network.
Feb 22 09:24:49 host-12 systemd: Starting Postfix Mail Transport Agent...
Feb 22 09:24:49 host-12 systemd: Starting Logout off all iSCSI sessions on shutdown...
Feb 22 09:24:49 host-12 systemd: Starting System Logging Service...
Feb 22 09:24:49 host-12 systemd: Starting Dynamic System Tuning Daemon...
Feb 22 09:24:49 host-12 systemd: Starting OpenSSH server daemon...
Feb 22 09:24:49 host-12 systemd: Reached target Network is Online.
Feb 22 09:24:49 host-12 systemd: Starting Network is Online.
Feb 22 09:24:49 host-12 systemd: Starting Enable periodic update of entitlement certificates....
Feb 22 09:24:49 host-12 systemd: Starting Notify NFS peers of a restart...
Feb 22 09:24:49 host-12 systemd: Started Logout off all iSCSI sessions on shutdown.
Feb 22 09:24:49 host-12 systemd: Reached target Remote File Systems (Pre).
Feb 22 09:24:49 host-12 systemd: Starting Remote File Systems (Pre).
Feb 22 09:24:49 host-12 systemd: Reached target Remote File Systems.
Feb 22 09:24:49 host-12 systemd: Starting Remote File Systems.
Feb 22 09:24:49 host-12 systemd: Starting Virtualization daemon...
Feb 22 09:24:49 host-12 systemd: Starting Permit User Sessions...
Feb 22 09:24:49 host-12 systemd: Starting Crash recovery kernel arming...
Feb 22 09:24:49 host-12 systemd: Starting Availability of block devices...
Feb 22 09:24:49 host-12 systemd: Started Enable periodic update of entitlement certificates..
Feb 22 09:24:49 host-12 systemd: Started Availability of block devices.
Feb 22 09:24:49 host-12 systemd: Started Permit User Sessions.
Feb 22 09:24:49 host-12 systemd: Starting Wait for Plymouth Boot Screen to Quit...
Feb 22 09:24:49 host-12 systemd: Starting Terminate Plymouth Boot Screen...
Feb 22 09:24:49 host-12 systemd: Started Job spooling tools.
Feb 22 09:24:49 host-12 systemd: Starting Job spooling tools...
Feb 22 09:24:49 host-12 systemd: Received SIGRTMIN+21 from PID 533 (plymouthd).
Feb 22 09:24:49 host-12 systemd: Started Wait for Plymouth Boot Screen to Quit.
Feb 22 09:24:49 host-12 systemd: Started Terminate Plymouth Boot Screen.
Feb 22 09:24:49 host-12 systemd: Started Getty on tty1.
Feb 22 09:24:49 host-12 systemd: Starting Getty on tty1...
Feb 22 09:24:49 host-12 systemd: Started Serial Getty on ttyS1.
Feb 22 09:24:49 host-12 systemd: Starting Serial Getty on ttyS1...
Feb 22 09:24:49 host-12 systemd: Reached target Login Prompts.
Feb 22 09:24:49 host-12 systemd: Starting Login Prompts.
Feb 22 09:24:49 host-12 sm-notify[1518]: Version 1.3.0 starting
Feb 22 09:24:49 host-12 systemd: Started Notify NFS peers of a restart.
Feb 22 09:24:49 host-12 systemd: PID file /var/run/sshd.pid not readable (yet?) after start.
Feb 22 09:24:49 host-12 systemd: Started OpenSSH server daemon.
Feb 22 09:24:49 host-12 systemd: Started System Logging Service.
Feb 22 09:24:51 host-12 systemd: Started Postfix Mail Transport Agent.
Feb 22 09:24:51 host-12 kdumpctl: Detected change(s) in the following file(s):
Feb 22 09:24:51 host-12 kdumpctl: /etc/fstab
Feb 22 09:24:51 host-12 kdumpctl: Rebuilding /boot/initramfs-4.10.0-linux-next-3d4ffb9-next-20170221kdump.img
Feb 22 09:24:51 host-12 systemd: Started Virtualization daemon.
Feb 22 09:24:51 host-12 systemd: Created slice user-0.slice.
Feb 22 09:24:51 host-12 systemd: Starting user-0.slice.
Feb 22 09:24:51 host-12 systemd-logind: New session 1 of user root.
Feb 22 09:24:51 host-12 systemd: Started Session 1 of user root.
Feb 22 09:24:51 host-12 systemd: Starting Session 1 of user root.
Feb 22 09:24:52 host-12 dbus-daemon: dbus[1152]: [system] Activating service name='org.freedesktop.problems' (using servicehelper)
Feb 22 09:24:52 host-12 dbus[1152]: [system] Activating service name='org.freedesktop.problems' (using servicehelper)
Feb 22 09:24:52 host-12 dbus[1152]: [system] Successfully activated service 'org.freedesktop.problems'
Feb 22 09:24:52 host-12 dbus-daemon: dbus[1152]: [system] Successfully activated service 'org.freedesktop.problems'
Feb 22 09:24:52 host-12 systemd: Started Dynamic System Tuning Daemon.
Feb 22 09:24:52 host-12 dracut: dracut-
Feb 22 09:24:53 host-12 dracut: Executing: /usr/sbin/dracut --hostonly --hostonly-cmdline --hostonly-i18n -o "plymouth dash resume ifcfg" -f /boot/initramfs-4.10.0-linux-next-3d4ffb9-next-20170221kdump.img 4.10.0-linux-next-3d4ffb9-next-20170221
Feb 22 09:24:54 host-12 dracut: dracut module 'ifcfg' will not be installed, because it's in the list to be omitted!
Feb 22 09:24:54 host-12 dracut: dracut module 'plymouth' will not be installed, because it's in the list to be omitted!
Feb 22 09:24:54 host-12 dracut: dracut module 'resume' will not be installed, because it's in the list to be omitted!
Feb 22 09:24:56 host-12 dracut: *** Including module: bash ***
Feb 22 09:24:56 host-12 dracut: *** Including module: nss-softokn ***
Feb 22 09:24:56 host-12 dracut: *** Including module: i18n ***
Feb 22 09:24:56 host-12 dracut: *** Including module: network ***
Feb 22 09:24:58 host-12 kernel: ip6_tables: (C) 2000-2006 Netfilter Core Team
Feb 22 09:24:59 host-12 kernel: Ebtables v2.0 registered
Feb 22 09:24:59 host-12 dracut: *** Including module: drm ***
Feb 22 09:25:01 host-12 kernel: bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
Feb 22 09:25:01 host-12 NetworkManager[1167]: <info>  [1487726701.0933] manager: (virbr0): new Bridge device (/org/freedesktop/NetworkManager/Devices/5)
Feb 22 09:25:01 host-12 kernel: tun: Universal TUN/TAP device driver, 1.6
Feb 22 09:25:01 host-12 kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Feb 22 09:25:01 host-12 NetworkManager[1167]: <info>  [1487726701.1483] manager: (virbr0-nic): new Tun device (/org/freedesktop/NetworkManager/Devices/6)
Feb 22 09:25:01 host-12 kernel: virbr0: port 1(virbr0-nic) entered blocking state
Feb 22 09:25:01 host-12 kernel: virbr0: port 1(virbr0-nic) entered disabled state
Feb 22 09:25:01 host-12 kernel: device virbr0-nic entered promiscuous mode
Feb 22 09:25:01 host-12 NetworkManager[1167]: <info>  [1487726701.3172] device (virbr0-nic): state change: unmanaged -> unavailable (reason 'connection-assumed') [10 20 41]
Feb 22 09:25:01 host-12 NetworkManager[1167]: <info>  [1487726701.3178] device (virbr0-nic): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Feb 22 09:25:01 host-12 kernel: nf_conntrack version 0.5.0 (65536 buckets, 262144 max)
Feb 22 09:25:02 host-12 kernel: virbr0: port 1(virbr0-nic) entered blocking state
Feb 22 09:25:02 host-12 kernel: virbr0: port 1(virbr0-nic) entered listening state
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1799] device (virbr0): state change: unmanaged -> unavailable (reason 'connection-assumed') [10 20 41]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1813] ifcfg-rh: add connection in-memory (8c034082-9e28-4df5-b826-74165219e79b,"virbr0")
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1821] device (virbr0): state change: unavailable -> disconnected (reason 'connection-assumed') [20 30 41]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1828] device (virbr0): Activation: starting connection 'virbr0' (8c034082-9e28-4df5-b826-74165219e79b)
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1831] device (virbr0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1835] device (virbr0): state change: prepare -> config (reason 'none') [40 50 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1841] keyfile: add connection in-memory (9deb4c29-6eeb-4ad4-9923-f3ef989c9c5b,"virbr0-nic")
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1852] device (virbr0-nic): Activation: starting connection 'virbr0-nic' (9deb4c29-6eeb-4ad4-9923-f3ef989c9c5b)
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1852] device (virbr0): state change: config -> ip-config (reason 'none') [50 70 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1857] device (virbr0-nic): state change: disconnected -> prepare (reason 'none') [30 40 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1881] device (virbr0): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1886] device (virbr0-nic): state change: prepare -> config (reason 'none') [40 50 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1888] device (virbr0-nic): state change: config -> ip-config (reason 'none') [50 70 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1889] device (virbr0): bridge port virbr0-nic was attached
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1889] device (virbr0-nic): Activation: connection 'virbr0-nic' enslaved, continuing activation
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1890] device (virbr0): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1892] device (virbr0-nic): state change: ip-config -> secondaries (reason 'none') [70 90 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.1893] device (virbr0): state change: secondaries -> activated (reason 'none') [90 100 0]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.2602] device (virbr0): Activation: successful, device activated.
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.2608] device (virbr0-nic): state change: secondaries -> activated (reason 'none') [90 100 0]
Feb 22 09:25:02 host-12 dbus-daemon: dbus[1152]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Feb 22 09:25:02 host-12 dbus[1152]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Feb 22 09:25:02 host-12 systemd: Starting Network Manager Script Dispatcher Service...
Feb 22 09:25:02 host-12 dbus[1152]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Feb 22 09:25:02 host-12 dbus-daemon: dbus[1152]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Feb 22 09:25:02 host-12 systemd: Started Network Manager Script Dispatcher Service.
Feb 22 09:25:02 host-12 nm-dispatcher: req:1 'up' [virbr0]: new request (4 scripts)
Feb 22 09:25:02 host-12 nm-dispatcher: req:1 'up' [virbr0]: start running ordered scripts...
Feb 22 09:25:02 host-12 systemd: Unit iscsi.service cannot be reloaded because it is inactive.
Feb 22 09:25:02 host-12 dnsmasq[5226]: started, version 2.66 cachesize 150
Feb 22 09:25:02 host-12 dnsmasq[5226]: compile time options: IPv6 GNU-getopt DBus no-i18n IDN DHCP DHCPv6 no-Lua TFTP no-conntrack ipset auth
Feb 22 09:25:02 host-12 dnsmasq-dhcp[5226]: DHCP, IP range 192.168.122.2 -- 192.168.122.254, lease time 1h
Feb 22 09:25:02 host-12 dnsmasq[5226]: reading /etc/resolv.conf
Feb 22 09:25:02 host-12 dnsmasq[5226]: using nameserver 10.10.160.1#53
Feb 22 09:25:02 host-12 dnsmasq[5226]: using nameserver 10.73.2.108#53
Feb 22 09:25:02 host-12 dnsmasq[5226]: using nameserver 10.73.2.107#53
Feb 22 09:25:02 host-12 dnsmasq[5226]: read /etc/hosts - 9 addresses
Feb 22 09:25:02 host-12 dnsmasq[5226]: read /var/lib/libvirt/dnsmasq/default.addnhosts - 0 addresses
Feb 22 09:25:02 host-12 dnsmasq-dhcp[5226]: read /var/lib/libvirt/dnsmasq/default.hostsfile
Feb 22 09:25:02 host-12 kernel: virbr0: port 1(virbr0-nic) entered disabled state
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.4459] device (virbr0-nic): Activation: successful, device activated.
Feb 22 09:25:02 host-12 nm-dispatcher: req:2 'up' [virbr0-nic]: new request (4 scripts)
Feb 22 09:25:02 host-12 nm-dispatcher: req:2 'up' [virbr0-nic]: start running ordered scripts...
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.4471] device (virbr0-nic): state change: activated -> unmanaged (reason 'connection-assumed') [100 10 41]
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.4477] device (virbr0): bridge port virbr0-nic was detached
Feb 22 09:25:02 host-12 NetworkManager[1167]: <info>  [1487726702.4477] device (virbr0-nic): released from master device virbr0
Feb 22 09:25:02 host-12 systemd: Unit iscsi.service cannot be reloaded because it is inactive.
Feb 22 09:25:02 host-12 nm-dispatcher: req:3 'down' [virbr0-nic]: new request (4 scripts)
Feb 22 09:25:02 host-12 nm-dispatcher: req:3 'down' [virbr0-nic]: start running ordered scripts...
Feb 22 09:25:07 host-12 dracut: *** Including module: kernel-modules ***
Feb 22 09:25:10 host-12 systemd: Started Virtual machine log manager.
Feb 22 09:25:10 host-12 systemd: Starting Virtual machine log manager...
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.4675] manager: (vnet0): new Tun device (/org/freedesktop/NetworkManager/Devices/7)
Feb 22 09:25:10 host-12 kernel: virbr0: port 2(vnet0) entered blocking state
Feb 22 09:25:10 host-12 kernel: virbr0: port 2(vnet0) entered disabled state
Feb 22 09:25:10 host-12 kernel: device vnet0 entered promiscuous mode
Feb 22 09:25:10 host-12 kernel: virbr0: port 2(vnet0) entered blocking state
Feb 22 09:25:10 host-12 kernel: virbr0: port 2(vnet0) entered listening state
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6864] device (vnet0): state change: unmanaged -> unavailable (reason 'connection-assumed') [10 20 41]
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6874] keyfile: add connection in-memory (774e103d-447a-4a06-9e76-30e7e5f31e8c,"vnet0")
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6880] device (vnet0): state change: unavailable -> disconnected (reason 'connection-assumed') [20 30 41]
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6886] device (vnet0): Activation: starting connection 'vnet0' (774e103d-447a-4a06-9e76-30e7e5f31e8c)
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6890] device (vnet0): state change: disconnected -> prepare (reason 'none') [30 40 0]
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6893] device (vnet0): state change: prepare -> config (reason 'none') [40 50 0]
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6895] device (vnet0): state change: config -> ip-config (reason 'none') [50 70 0]
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6896] device (virbr0): bridge port vnet0 was attached
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6896] device (vnet0): Activation: connection 'vnet0' enslaved, continuing activation
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6898] device (vnet0): state change: ip-config -> secondaries (reason 'none') [70 90 0]
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.6900] device (vnet0): state change: secondaries -> activated (reason 'none') [90 100 0]
Feb 22 09:25:10 host-12 dbus-daemon: dbus[1152]: [system] Activating via systemd: service name='org.freedesktop.machine1' unit='dbus-org.freedesktop.machine1.service'
Feb 22 09:25:10 host-12 dbus[1152]: [system] Activating via systemd: service name='org.freedesktop.machine1' unit='dbus-org.freedesktop.machine1.service'
Feb 22 09:25:10 host-12 NetworkManager[1167]: <info>  [1487726710.7452] device (vnet0): Activation: successful, device activated.
Feb 22 09:25:10 host-12 nm-dispatcher: req:4 'up' [vnet0]: new request (4 scripts)
Feb 22 09:25:10 host-12 nm-dispatcher: req:4 'up' [vnet0]: start running ordered scripts...
Feb 22 09:25:10 host-12 systemd: Created slice Virtual Machine and Container Slice.
Feb 22 09:25:10 host-12 systemd: Starting Virtual Machine and Container Slice.
Feb 22 09:25:10 host-12 systemd: Starting Virtual Machine and Container Registration Service...
Feb 22 09:25:10 host-12 systemd: Unit iscsi.service cannot be reloaded because it is inactive.
Feb 22 09:25:10 host-12 dbus[1152]: [system] Successfully activated service 'org.freedesktop.machine1'
Feb 22 09:25:10 host-12 dbus-daemon: dbus[1152]: [system] Successfully activated service 'org.freedesktop.machine1'
Feb 22 09:25:10 host-12 systemd: Started Virtual Machine and Container Registration Service.
Feb 22 09:25:10 host-12 systemd-machined: New machine qemu-1-73h.
Feb 22 09:25:10 host-12 systemd: Started Virtual Machine qemu-1-73h.
Feb 22 09:25:10 host-12 systemd: Starting Virtual Machine qemu-1-73h.
Feb 22 09:25:12 host-12 virtlogd: 2017-02-22 01:25:12.140+0000: 5627: info : libvirt version: 3.0.0, package: 2.el7 (Red Hat, Inc. <http://bugzilla.redhat.com/bugzilla>, 2017-02-09-04:47:33, x86-037.build.eng.sw.com)
Feb 22 09:25:12 host-12 virtlogd: 2017-02-22 01:25:12.140+0000: 5627: info : hostname: host-12.rhts.eng.sw.com
Feb 22 09:25:12 host-12 virtlogd: 2017-02-22 01:25:12.140+0000: 5627: error : virNetSocketReadWire:1800 : End of file while reading data: Input/output error
Feb 22 09:25:12 host-12 kernel: virbr0: port 2(vnet0) entered learning state
Feb 22 09:25:14 host-12 kernel: virbr0: port 2(vnet0) entered forwarding state
Feb 22 09:25:14 host-12 kernel: virbr0: topology change detected, propagating
Feb 22 09:25:14 host-12 NetworkManager[1167]: <info>  [1487726714.8272] device (virbr0): link connected
Feb 22 09:25:21 host-12 kernel: ------------[ cut here ]------------
Feb 22 09:25:21 host-12 kernel: WARNING: CPU: 8 PID: 5717 at lib/list_debug.c:56 __list_del_entry_valid+0x82/0xd0
Feb 22 09:25:21 host-12 kernel: list_del corruption. next->prev should be ffffea004161fae0, but was ffff881075e2fc10
Feb 22 09:25:22 host-12 kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT nf_reject_ipv4 tun bridge stp llc ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter dm_mirror dm_region_hash dm_log dm_mod intel_rapl sb_edac edac_core x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc ipmi_ssif aesni_intel crypto_simd iTCO_wdt glue_helper cryptd iTCO_vendor_support sg ipmi_si dax_pmem hpwdt i2c_i801 ioatdma pcspkr lpc_ich wmi ipmi_devintf hpilo dax pcc_cpufreq acpi_power_meter ipmi_msghandler acpi_cpufreq dca shpchp nfsd auth_rpcgss nfs_acl lockd grace sunrpc binfmt_mi
 sc ip_tables xfs libcrc32c
Feb 22 09:25:22 host-12 kernel: sd_mod mgag200 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm tg3 drm ptp nd_pmem serio_raw crc32c_intel hpsa fjes i2c_core pps_core scsi_transport_sas
Feb 22 09:25:22 host-12 sh: abrt-dump-oops: Found oopses: 1
Feb 22 09:25:22 host-12 sh: abrt-dump-oops: Creating problem directories
Feb 22 09:25:22 host-12 sh: abrt-dump-oops: Not going to make dump directories world readable because PrivateReports is on
Feb 22 09:25:23 host-12 kernel: CPU: 8 PID: 5717 Comm: qemu-kvm Not tainted 4.10.0-linux-next-3d4ffb9-next-20170221 #274
Feb 22 09:25:23 host-12 kernel: Hardware name: HP ProLiant DL360 Gen9, BIOS P89 05/06/2015
Feb 22 09:25:23 host-12 kernel: Call Trace:
Feb 22 09:25:23 host-12 kernel: dump_stack+0x63/0x87
Feb 22 09:25:23 host-12 kernel: __warn+0xd1/0xf0
Feb 22 09:25:23 host-12 kernel: warn_slowpath_fmt+0x5f/0x80
Feb 22 09:25:23 host-12 kernel: ? __page_cache_release+0x3c/0x250
Feb 22 09:25:23 host-12 kernel: __list_del_entry_valid+0x82/0xd0
Feb 22 09:25:23 host-12 kernel: get_page_from_freelist+0x89e/0xbe0
Feb 22 09:25:23 host-12 kernel: ? migrate_pages+0x320/0xa40
Feb 22 09:25:23 host-12 kernel: ? put_page+0x50/0x50
Feb 22 09:25:23 host-12 kernel: __alloc_pages_nodemask+0xe3/0x260
Feb 22 09:25:23 host-12 kernel: alloc_pages_vma+0xa5/0x220
Feb 22 09:25:23 host-12 kernel: wp_page_copy+0x87/0x700
Feb 22 09:25:23 host-12 kernel: do_wp_page+0xa3/0x560
Feb 22 09:25:23 host-12 kernel: __handle_mm_fault+0x74d/0x1290
Feb 22 09:25:23 host-12 kernel: handle_mm_fault+0xce/0x240
Feb 22 09:25:23 host-12 kernel: __get_user_pages+0x137/0x6b0
Feb 22 09:25:23 host-12 kernel: ? gup_pud_range+0x1ea/0x210
Feb 22 09:25:23 host-12 kernel: get_user_pages+0x4f/0x60
Feb 22 09:25:23 host-12 kernel: __gfn_to_pfn_memslot+0x1a8/0x430 [kvm]
Feb 22 09:25:23 host-12 kernel: ? pic_unlock+0x7e/0x90 [kvm]
Feb 22 09:25:23 host-12 kernel: try_async_pf+0x67/0x240 [kvm]
Feb 22 09:25:23 host-12 kernel: ? kvm_host_page_size+0x85/0x90 [kvm]
Feb 22 09:25:23 host-12 kernel: tdp_page_fault+0x131/0x260 [kvm]
Feb 22 09:25:23 host-12 kernel: kvm_mmu_page_fault+0x65/0x130 [kvm]
Feb 22 09:25:23 host-12 kernel: handle_ept_violation+0xa5/0x190 [kvm_intel]
Feb 22 09:25:23 host-12 kernel: vmx_handle_exit+0x14b/0xbc0 [kvm_intel]
Feb 22 09:25:23 host-12 kernel: vcpu_enter_guest+0x83e/0x1190 [kvm]
Feb 22 09:25:23 host-12 kernel: ? recalc_sigpending+0x1b/0x50
Feb 22 09:25:23 host-12 kernel: ? __set_task_blocked+0x3c/0xa0
Feb 22 09:25:23 host-12 kernel: kvm_arch_vcpu_ioctl_run+0x2ee/0x400 [kvm]
Feb 22 09:25:23 host-12 kernel: kvm_vcpu_ioctl+0x292/0x610 [kvm]
Feb 22 09:25:23 host-12 kernel: do_vfs_ioctl+0xa7/0x5e0
Feb 22 09:25:23 host-12 kernel: SyS_ioctl+0x79/0x90
Feb 22 09:25:23 host-12 kernel: do_syscall_64+0x67/0x180
Feb 22 09:25:23 host-12 kernel: entry_SYSCALL64_slow_path+0x25/0x25
Feb 22 09:25:23 host-12 kernel: RIP: 0033:0x7f641c6b0577
Feb 22 09:25:23 host-12 kernel: RSP: 002b:00007f641164ba98 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Feb 22 09:25:23 host-12 kernel: RAX: ffffffffffffffda RBX: 00005584c4990000 RCX: 00007f641c6b0577
Feb 22 09:25:23 host-12 kernel: RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000013
Feb 22 09:25:23 host-12 kernel: RBP: 00007f6426e56000 R08: 0000000000000000 R09: 0000000000001655
Feb 22 09:25:23 host-12 kernel: R10: 000000000000001f R11: 0000000000000246 R12: 00005584c28b37a0
Feb 22 09:25:23 host-12 kernel: R13: 0000000000000001 R14: 00007f6426e57001 R15: 0000000000000001
Feb 22 09:25:23 host-12 kernel: ---[ end trace 95acd0f30b99f7f0 ]---
Feb 22 09:25:24 host-12 abrt-dump-oops: Reported 1 kernel oopses to Abrt
Feb 22 09:25:25 host-12 kernel: BUG: Bad page state in process qemu-kvm  pfn:104114e
Feb 22 09:25:25 host-12 kernel: page:ffffea0041045380 count:1 mapcount:1 mapping:          (null) index:0x0
Feb 22 09:25:25 host-12 kernel: flags: 0x57ffffc0000000()
Feb 22 09:25:25 host-12 kernel: raw: 0057ffffc0000000 0000000000000000 0000000000000000 0000000100000000
Feb 22 09:25:25 host-12 kernel: raw: ffffea00410453a0 ffffea00410453a0 0000000000000000 0000000000000000
Feb 22 09:25:25 host-12 kernel: page dumped because: nonzero _count
Feb 22 09:25:25 host-12 kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT nf_reject_ipv4 tun bridge stp llc ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter dm_mirror dm_region_hash dm_log dm_mod intel_rapl sb_edac edac_core x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc ipmi_ssif aesni_intel crypto_simd iTCO_wdt glue_helper cryptd iTCO_vendor_support sg ipmi_si dax_pmem hpwdt i2c_i801 ioatdma pcspkr lpc_ich wmi ipmi_devintf hpilo dax pcc_cpufreq acpi_power_meter ipmi_msghandler acpi_cpufreq dca shpchp nfsd auth_rpcgss nfs_acl lockd grace sunrpc binfmt_mi
 sc ip_tables xfs libcrc32c
Feb 22 09:25:25 host-12 kernel: sd_mod mgag200 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm tg3 drm ptp nd_pmem serio_raw crc32c_intel hpsa fjes i2c_core pps_core scsi_transport_sas
Feb 22 09:25:25 host-12 kernel: CPU: 11 PID: 5717 Comm: qemu-kvm Tainted: G        W       4.10.0-linux-next-3d4ffb9-next-20170221 #274
Feb 22 09:25:25 host-12 kernel: Hardware name: HP ProLiant DL360 Gen9, BIOS P89 05/06/2015
Feb 22 09:25:25 host-12 kernel: Call Trace:
Feb 22 09:25:25 host-12 kernel: dump_stack+0x63/0x87
Feb 22 09:25:25 host-12 kernel: bad_page+0xfe/0x11a
Feb 22 09:25:25 host-12 kernel: check_new_page_bad+0x85/0x87
Feb 22 09:25:25 host-12 kernel: get_page_from_freelist+0x781/0xbe0
Feb 22 09:25:25 host-12 kernel: __alloc_pages_nodemask+0xe3/0x260
Feb 22 09:25:25 host-12 kernel: alloc_pages_vma+0x1fc/0x220
Feb 22 09:25:25 host-12 kernel: do_huge_pmd_anonymous_page+0x12c/0x610
Feb 22 09:25:25 host-12 kernel: __handle_mm_fault+0xed4/0x1290
Feb 22 09:25:25 host-12 kernel: handle_mm_fault+0xce/0x240
Feb 22 09:25:25 host-12 kernel: __get_user_pages+0x137/0x6b0
Feb 22 09:25:25 host-12 kernel: ? gup_pud_range+0x16e/0x210
Feb 22 09:25:25 host-12 kernel: get_user_pages+0x4f/0x60
Feb 22 09:25:25 host-12 kernel: __gfn_to_pfn_memslot+0x1a8/0x430 [kvm]
Feb 22 09:25:25 host-12 kernel: ? kvm_io_bus_read+0x3f/0x110 [kvm]
Feb 22 09:25:25 host-12 kernel: try_async_pf+0x67/0x240 [kvm]
Feb 22 09:25:25 host-12 kernel: ? kvm_host_page_size+0x85/0x90 [kvm]
Feb 22 09:25:25 host-12 kernel: tdp_page_fault+0x131/0x260 [kvm]
Feb 22 09:25:25 host-12 kernel: kvm_mmu_page_fault+0x65/0x130 [kvm]
Feb 22 09:25:25 host-12 kernel: handle_ept_violation+0xa5/0x190 [kvm_intel]
Feb 22 09:25:25 host-12 kernel: vmx_handle_exit+0x14b/0xbc0 [kvm_intel]
Feb 22 09:25:25 host-12 kernel: vcpu_enter_guest+0x83e/0x1190 [kvm]
Feb 22 09:25:25 host-12 kernel: kvm_arch_vcpu_ioctl_run+0x2ee/0x400 [kvm]
Feb 22 09:25:25 host-12 kernel: kvm_vcpu_ioctl+0x292/0x610 [kvm]
Feb 22 09:25:25 host-12 kernel: do_vfs_ioctl+0xa7/0x5e0
Feb 22 09:25:25 host-12 kernel: SyS_ioctl+0x79/0x90
Feb 22 09:25:25 host-12 kernel: do_syscall_64+0x67/0x180
Feb 22 09:25:25 host-12 kernel: entry_SYSCALL64_slow_path+0x25/0x25
Feb 22 09:25:25 host-12 kernel: RIP: 0033:0x7f641c6b0577
Feb 22 09:25:25 host-12 kernel: RSP: 002b:00007f641164ba98 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Feb 22 09:25:25 host-12 kernel: RAX: ffffffffffffffda RBX: 00005584c4990000 RCX: 00007f641c6b0577
Feb 22 09:25:25 host-12 kernel: RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000013
Feb 22 09:25:25 host-12 kernel: RBP: 00007f6426e56000 R08: 0000000000000000 R09: 00000000ffffffff
Feb 22 09:25:25 host-12 kernel: R10: 000000000000001f R11: 0000000000000246 R12: 00005584c28b37a0
Feb 22 09:25:25 host-12 kernel: R13: 0000000000000004 R14: 00007f6426e57004 R15: 0000000000000001
Feb 22 09:25:25 host-12 kernel: Disabling lock debugging due to kernel taint
Feb 22 09:25:26 host-12 sh: abrt-dump-oops: Found oopses: 1
Feb 22 09:25:26 host-12 sh: abrt-dump-oops: Creating problem directories
Feb 22 09:25:26 host-12 sh: abrt-dump-oops: Not going to make dump directories world readable because PrivateReports is on
Feb 22 09:25:27 host-12 abrt-server: '/var/spool/abrt/oops-2016-10-27-10:38:26-12224-0' is not a problem directory
Feb 22 09:25:27 host-12 abrt-dump-oops: Reported 1 kernel oopses to Abrt
Feb 22 09:25:27 host-12 kernel: ------------[ cut here ]------------
Feb 22 09:25:27 host-12 kernel: BUG: Bad page state in process qemu-kvm  pfn:103d503
Feb 22 09:25:27 host-12 kernel: page:ffffea0040f540c0 count:1 mapcount:1 mapping:          (null) index:0x0
Feb 22 09:25:27 host-12 kernel: flags: 0x57ffffc0000000()
Feb 22 09:25:27 host-12 kernel: raw: 0057ffffc0000000 0000000000000000 0000000000000000 0000000100000000
Feb 22 09:25:27 host-12 kernel: raw: ffffea0040f540e0 ffffea0040f540e0 0000000000000000 0000000000000000
Feb 22 09:25:27 host-12 kernel: page dumped because: nonzero _count
Feb 22 09:25:27 host-12 kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT nf_reject_ipv4 tun bridge stp llc ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter dm_mirror dm_region_hash dm_log dm_mod intel_rapl sb_edac edac_core x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc ipmi_ssif aesni_intel crypto_simd iTCO_wdt glue_helper cryptd iTCO_vendor_support sg ipmi_si dax_pmem hpwdt i2c_i801 ioatdma pcspkr lpc_ich wmi ipmi_devintf hpilo dax pcc_cpufreq acpi_power_meter ipmi_msghandler acpi_cpufreq dca shpchp nfsd auth_rpcgss nfs_acl lockd grace sunrpc binfmt_mi
 sc ip_tables xfs libcrc32c
Feb 22 09:25:27 host-12 kernel: sd_mod mgag200 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm tg3 drm ptp nd_pmem serio_raw crc32c_intel hpsa fjes i2c_core pps_core scsi_transport_sas
Feb 22 09:25:27 host-12 kernel: CPU: 11 PID: 5717 Comm: qemu-kvm Tainted: G    B   W       4.10.0-linux-next-3d4ffb9-next-20170221 #274
Feb 22 09:25:27 host-12 kernel: Hardware name: HP ProLiant DL360 Gen9, BIOS P89 05/06/2015
Feb 22 09:25:27 host-12 kernel: Call Trace:
Feb 22 09:25:27 host-12 kernel: dump_stack+0x63/0x87
Feb 22 09:25:27 host-12 kernel: bad_page+0xfe/0x11a
Feb 22 09:25:27 host-12 kernel: check_new_page_bad+0x85/0x87
Feb 22 09:25:27 host-12 kernel: get_page_from_freelist+0x781/0xbe0
Feb 22 09:25:27 host-12 kernel: __alloc_pages_nodemask+0xe3/0x260
Feb 22 09:25:27 host-12 kernel: alloc_pages_vma+0x1fc/0x220
Feb 22 09:25:27 host-12 kernel: do_huge_pmd_anonymous_page+0x12c/0x610
Feb 22 09:25:27 host-12 kernel: __handle_mm_fault+0xed4/0x1290
Feb 22 09:25:27 host-12 kernel: handle_mm_fault+0xce/0x240
Feb 22 09:25:27 host-12 kernel: __get_user_pages+0x137/0x6b0
Feb 22 09:25:27 host-12 kernel: ? gup_pud_range+0x16e/0x210
Feb 22 09:25:27 host-12 kernel: get_user_pages+0x4f/0x60
Feb 22 09:25:27 host-12 kernel: __gfn_to_pfn_memslot+0x1a8/0x430 [kvm]
Feb 22 09:25:27 host-12 kernel: ? kvm_io_bus_read+0x3f/0x110 [kvm]
Feb 22 09:25:27 host-12 kernel: try_async_pf+0x67/0x240 [kvm]
Feb 22 09:25:27 host-12 kernel: ? kvm_host_page_size+0x85/0x90 [kvm]
Feb 22 09:25:27 host-12 kernel: tdp_page_fault+0x131/0x260 [kvm]
Feb 22 09:25:27 host-12 kernel: kvm_mmu_page_fault+0x65/0x130 [kvm]
Feb 22 09:25:27 host-12 kernel: handle_ept_violation+0xa5/0x190 [kvm_intel]
Feb 22 09:25:27 host-12 kernel: vmx_handle_exit+0x14b/0xbc0 [kvm_intel]
Feb 22 09:25:27 host-12 kernel: vcpu_enter_guest+0x83e/0x1190 [kvm]
Feb 22 09:25:27 host-12 kernel: ? __schedule+0x281/0x910
Feb 22 09:25:27 host-12 kernel: kvm_arch_vcpu_ioctl_run+0x2ee/0x400 [kvm]
Feb 22 09:25:27 host-12 kernel: kvm_vcpu_ioctl+0x292/0x610 [kvm]
Feb 22 09:25:27 host-12 kernel: do_vfs_ioctl+0xa7/0x5e0
Feb 22 09:25:27 host-12 kernel: SyS_ioctl+0x79/0x90
Feb 22 09:25:27 host-12 kernel: do_syscall_64+0x67/0x180
Feb 22 09:25:27 host-12 kernel: entry_SYSCALL64_slow_path+0x25/0x25
Feb 22 09:25:27 host-12 kernel: RIP: 0033:0x7f641c6b0577
Feb 22 09:25:27 host-12 kernel: RSP: 002b:00007f641164ba98 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Feb 22 09:25:27 host-12 kernel: RAX: ffffffffffffffda RBX: 00005584c4990000 RCX: 00007f641c6b0577
Feb 22 09:25:27 host-12 kernel: RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000013
Feb 22 09:25:27 host-12 kernel: RBP: 00007f6426e56000 R08: 0000000000000000 R09: 00000000ffffffff
Feb 22 09:25:27 host-12 kernel: R10: 000000000000001f R11: 0000000000000246 R12: 00005584c28b37a0
Feb 22 09:25:27 host-12 kernel: R13: 0000000000000004 R14: 00007f6426e57004 R15: 0000000000000001
Feb 22 09:25:27 host-12 kernel: BUG: Bad page state in process qemu-kvm  pfn:103bf2a
Feb 22 09:25:27 host-12 kernel: page:ffffea0040efca80 count:1 mapcount:1 mapping:          (null) index:0x0
Feb 22 09:25:27 host-12 kernel: flags: 0x57ffffc0000000()
Feb 22 09:25:27 host-12 kernel: raw: 0057ffffc0000000 0000000000000000 0000000000000000 0000000100000000
Feb 22 09:25:27 host-12 kernel: raw: ffffea0040efcaa0 ffffea0040efcaa0 0000000000000000 0000000000000000
Feb 22 09:25:27 host-12 kernel: page dumped because: nonzero _count
Feb 22 09:25:27 host-12 kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT nf_reject_ipv4 tun bridge stp llc ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter dm_mirror dm_region_hash dm_log dm_mod intel_rapl sb_edac edac_core x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc ipmi_ssif aesni_intel crypto_simd iTCO_wdt glue_helper cryptd iTCO_vendor_support sg ipmi_si dax_pmem hpwdt i2c_i801 ioatdma pcspkr lpc_ich wmi ipmi_devintf hpilo dax pcc_cpufreq acpi_power_meter ipmi_msghandler acpi_cpufreq dca shpchp nfsd auth_rpcgss nfs_acl lockd grace sunrpc binfmt_mi
 sc ip_tables xfs libcrc32c
Feb 22 09:25:27 host-12 kernel: sd_mod mgag200 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm tg3 drm ptp nd_pmem serio_raw crc32c_intel hpsa fjes i2c_core pps_core scsi_transport_sas
Feb 22 09:25:27 host-12 kernel: CPU: 11 PID: 5717 Comm: qemu-kvm Tainted: G    B   W       4.10.0-linux-next-3d4ffb9-next-20170221 #274
Feb 22 09:25:27 host-12 kernel: Hardware name: HP ProLiant DL360 Gen9, BIOS P89 05/06/2015
Feb 22 09:25:27 host-12 kernel: Call Trace:
Feb 22 09:25:27 host-12 kernel: dump_stack+0x63/0x87
Feb 22 09:25:27 host-12 kernel: bad_page+0xfe/0x11a
Feb 22 09:25:27 host-12 kernel: check_new_page_bad+0x85/0x87
Feb 22 09:25:27 host-12 kernel: get_page_from_freelist+0x781/0xbe0
Feb 22 09:25:27 host-12 kernel: __alloc_pages_nodemask+0xe3/0x260
Feb 22 09:25:27 host-12 kernel: alloc_pages_vma+0x1fc/0x220
Feb 22 09:25:27 host-12 kernel: do_huge_pmd_anonymous_page+0x12c/0x610
Feb 22 09:25:27 host-12 kernel: __handle_mm_fault+0xed4/0x1290
Feb 22 09:25:27 host-12 kernel: handle_mm_fault+0xce/0x240
Feb 22 09:25:27 host-12 kernel: __get_user_pages+0x137/0x6b0
Feb 22 09:25:27 host-12 kernel: get_user_pages+0x4f/0x60
Feb 22 09:25:27 host-12 kernel: __gfn_to_pfn_memslot+0x1a8/0x430 [kvm]
Feb 22 09:25:27 host-12 kernel: try_async_pf+0x67/0x240 [kvm]
Feb 22 09:25:27 host-12 kernel: ? kvm_host_page_size+0x85/0x90 [kvm]
Feb 22 09:25:27 host-12 kernel: tdp_page_fault+0x131/0x260 [kvm]
Feb 22 09:25:27 host-12 kernel: kvm_mmu_page_fault+0x65/0x130 [kvm]
Feb 22 09:25:27 host-12 kernel: handle_ept_violation+0xa5/0x190 [kvm_intel]
Feb 22 09:25:27 host-12 kernel: vmx_handle_exit+0x14b/0xbc0 [kvm_intel]
Feb 22 09:25:27 host-12 kernel: vcpu_enter_guest+0x83e/0x1190 [kvm]
Feb 22 09:25:27 host-12 kernel: ? x86_emulate_instruction+0x49c/0x6b0 [kvm]
Feb 22 09:25:27 host-12 kernel: ? __set_task_blocked+0x3c/0xa0
Feb 22 09:25:27 host-12 kernel: ? kvm_arch_can_inject_async_page_present+0x43/0x50 [kvm]
Feb 22 09:25:27 host-12 kernel: ? kvm_check_async_pf_completion+0x30/0x110 [kvm]
Feb 22 09:25:27 host-12 kernel: kvm_arch_vcpu_ioctl_run+0x2ee/0x400 [kvm]
Feb 22 09:25:27 host-12 kernel: kvm_vcpu_ioctl+0x292/0x610 [kvm]
Feb 22 09:25:27 host-12 kernel: do_vfs_ioctl+0xa7/0x5e0
Feb 22 09:25:27 host-12 kernel: SyS_ioctl+0x79/0x90
Feb 22 09:25:27 host-12 kernel: do_syscall_64+0x67/0x180
Feb 22 09:25:27 host-12 kernel: entry_SYSCALL64_slow_path+0x25/0x25
Feb 22 09:25:27 host-12 kernel: RIP: 0033:0x7f641c6b0577
Feb 22 09:25:27 host-12 kernel: RSP: 002b:00007f641164ba98 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Feb 22 09:25:27 host-12 kernel: RAX: ffffffffffffffda RBX: 00005584c4990000 RCX: 00007f641c6b0577
Feb 22 09:25:27 host-12 kernel: RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000013
Feb 22 09:25:27 host-12 kernel: RBP: 00007f6426e56000 R08: 0000000000000000 R09: 000000000000ffff
Feb 22 09:25:27 host-12 kernel: R10: 000000000000001f R11: 0000000000000246 R12: 00005584c28b37a0
Feb 22 09:25:27 host-12 kernel: R13: 0000000000000002 R14: 00007f6426e57002 R15: 0000000000000001
Feb 22 09:25:27 host-12 kernel: WARNING: CPU: 8 PID: 6216 at lib/list_debug.c:47 __list_del_entry_valid+0x61/0xd0
Feb 22 09:25:27 host-12 kernel: list_del corruption, ffffea004161fae0->next is LIST_POISON1 (dead000000000100)
Feb 22 09:25:28 host-12 abrt-server: '/var/spool/abrt/oops-2016-10-27-10:38:26-12224-0' is not a problem directory
Feb 22 09:25:28 host-12 kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT nf_reject_ipv4 tun bridge stp llc ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter dm_mirror dm_region_hash dm_log dm_mod intel_rapl sb_edac edac_core x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc ipmi_ssif aesni_intel crypto_simd iTCO_wdt glue_helper cryptd iTCO_vendor_support sg ipmi_si dax_pmem hpwdt i2c_i801 ioatdma pcspkr lpc_ich wmi ipmi_devintf hpilo dax pcc_cpufreq acpi_power_meter ipmi_msghandler acpi_cpufreq dca shpchp nfsd auth_rpcgss nfs_acl lockd grace sunrpc binfmt_mi
 sc ip_tables xfs libcrc32c
Feb 22 09:25:28 host-12 kernel: sd_mod mgag200 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm tg3 drm ptp nd_pmem serio_raw crc32c_intel hpsa fjes i2c_core pps_core scsi_transport_sas
Feb 22 09:25:28 host-12 kernel: CPU: 8 PID: 6216 Comm: dracut Tainted: G    B   W       4.10.0-linux-next-3d4ffb9-next-20170221 #274
Feb 22 09:25:28 host-12 abrt-server: '/var/spool/abrt/oops-2016-10-27-10:38:26-12224-0' is not a problem directory
Feb 22 09:25:29 host-12 kernel: Hardware name: HP ProLiant DL360 Gen9, BIOS P89 05/06/2015
Feb 22 09:25:29 host-12 kernel: Call Trace:
Feb 22 09:25:29 host-12 kernel: dump_stack+0x63/0x87
Feb 22 09:25:29 host-12 kernel: __warn+0xd1/0xf0
Feb 22 09:25:29 host-12 kernel: warn_slowpath_fmt+0x5f/0x80
Feb 22 09:25:29 host-12 kernel: ? set_next_entity+0x9e/0x1b0
Feb 22 09:25:29 host-12 kernel: __list_del_entry_valid+0x61/0xd0
Feb 22 09:25:29 host-12 kernel: get_page_from_freelist+0x89e/0xbe0
Feb 22 09:25:29 host-12 kernel: __alloc_pages_nodemask+0xe3/0x260
Feb 22 09:25:29 host-12 kernel: alloc_misplaced_dst_page+0x29/0x30
Feb 22 09:25:29 host-12 kernel: migrate_pages+0x1db/0xa40
Feb 22 09:25:29 host-12 kernel: ? isolate_lru_page+0x1d2/0x2d0
Feb 22 09:25:29 host-12 kernel: ? put_page+0x50/0x50
Feb 22 09:25:29 host-12 kernel: migrate_misplaced_page+0x155/0x210
Feb 22 09:25:29 host-12 kernel: __handle_mm_fault+0x928/0x1290
Feb 22 09:25:29 host-12 kernel: handle_mm_fault+0xce/0x240
Feb 22 09:25:29 host-12 kernel: __do_page_fault+0x22a/0x4a0
Feb 22 09:25:29 host-12 kernel: do_page_fault+0x30/0x80
Feb 22 09:25:29 host-12 kernel: ? do_syscall_64+0x175/0x180
Feb 22 09:25:29 host-12 kernel: page_fault+0x28/0x30
Feb 22 09:25:29 host-12 kernel: RIP: 0033:0x7f730e23a4e1
Feb 22 09:25:29 host-12 kernel: RSP: 002b:00007ffedf5e0910 EFLAGS: 00010202
Feb 22 09:25:29 host-12 kernel: RAX: 00007f730e44d148 RBX: 00007ffedf5e0a20 RCX: 0000000000000069
Feb 22 09:25:29 host-12 kernel: RDX: 0000000000000080 RSI: 0000000000000023 RDI: 00007f730e44d148
Feb 22 09:25:29 host-12 kernel: RBP: 0000000000000080 R08: 0000000000000000 R09: 0000000000cd4d50
Feb 22 09:25:29 host-12 kernel: R10: 0000000000000006 R11: 0000000000000246 R12: 0000000000000001
Feb 22 09:25:29 host-12 kernel: R13: 0000000000000000 R14: 0000000000000080 R15: 0000000000000080
Feb 22 09:25:29 host-12 kernel: ---[ end trace 95acd0f30b99f7f1 ]---
Feb 22 09:25:29 host-12 abrt-hook-ccpp: Process 6333 (bash) of user 0 killed by SIGSEGV - dumping core
Feb 22 09:25:29 host-12 abrt-hook-ccpp: Process 6332 (bash) of user 0 killed by SIGSEGV - dumping core
Feb 22 09:25:29 host-12 kernel: ------------[ cut here ]------------
Feb 22 09:25:29 host-12 kernel: traps: dracut[6333] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:29 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:29 host-12 kernel: traps: dracut[6332] general protection ip:7f730e23a4e9 sp:7ffedf5e0060 error:0
Feb 22 09:25:29 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:29 host-12 kernel: WARNING: CPU: 8 PID: 5717 at lib/list_debug.c:47 __list_del_entry_valid+0x61/0xd0
Feb 22 09:25:29 host-12 kernel: list_del corruption, ffffea004161fae0->next is LIST_POISON1 (dead000000000100)
Feb 22 09:25:29 host-12 kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT nf_reject_ipv4 tun bridge stp llc ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter dm_mirror dm_region_hash dm_log dm_mod intel_rapl sb_edac edac_core x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc ipmi_ssif aesni_intel crypto_simd iTCO_wdt glue_helper cryptd iTCO_vendor_support sg ipmi_si dax_pmem hpwdt i2c_i801 ioatdma pcspkr lpc_ich wmi ipmi_devintf hpilo dax pcc_cpufreq acpi_power_meter ipmi_msghandler acpi_cpufreq dca shpchp nfsd auth_rpcgss nfs_acl lockd grace sunrpc binfmt_mi
 sc ip_tables xfs libcrc32c
Feb 22 09:25:29 host-12 sh: abrt-dump-oops: Found oopses: 4
Feb 22 09:25:29 host-12 sh: abrt-dump-oops: Creating problem directories
Feb 22 09:25:29 host-12 sh: abrt-dump-oops: Not going to make dump directories world readable because PrivateReports is on
Feb 22 09:25:29 host-12 abrt-hook-ccpp: Process 6339 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:29 host-12 abrt-hook-ccpp: Process 6341 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:29 host-12 kernel: traps: dracut[6339] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:29 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:29 host-12 kernel: traps: dracut[6341] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:29 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:29 host-12 kernel: sd_mod mgag200 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm tg3 drm ptp nd_pmem serio_raw crc32c_intel hpsa fjes i2c_core pps_core scsi_transport_sas
Feb 22 09:25:29 host-12 abrt-hook-ccpp: Process 6343 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:29 host-12 abrt-hook-ccpp: Process 6345 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:29 host-12 abrt-hook-ccpp: Process 6347 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6349 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6352 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6355 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6351 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6357 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6361 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6363 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6360 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6366 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6367 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6369 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6373 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6375 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6371 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6377 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6379 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6382 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6383 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6386 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6388 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6391 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6389 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6393 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6396 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6399 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6397 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6401 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6405 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6404 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6407 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6412 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6414 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6411 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6417 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:30 host-12 abrt-hook-ccpp: Process 6420 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:31 host-12 abrt-hook-ccpp: Process 6422 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:31 host-12 abrt-hook-ccpp: Process 6424 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:31 host-12 abrt-hook-ccpp: Process 6418 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:31 host-12 abrt-hook-ccpp: Process 6426 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6430 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6432 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6434 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6428 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6436 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6440 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6438 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6443 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6445 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6449 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6447 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6451 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6454 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6455 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6457 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6460 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 kernel: traps: dracut[6343] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:32 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:32 host-12 kernel: traps: dracut[6345] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:32 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:32 host-12 kernel: traps: dracut[6347] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:32 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:32 host-12 kernel: traps: dracut[6349] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:32 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:32 host-12 kernel: traps: dracut[6352] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:32 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:32 host-12 kernel: traps: dracut[6355] general protection ip:7f730e23a4e9 sp:7ffedf5e0910 error:0
Feb 22 09:25:32 host-12 kernel: in ld-2.17.so[7f730e22c000+20000]
Feb 22 09:25:32 host-12 kernel: BUG: Bad page map in process dracut  pte:80000010587eb025 pmd:73cbd9067
Feb 22 09:25:32 host-12 kernel: page:ffffea004161fac0 count:1 mapcount:-1 mapping:ffff881073b0f731 index:0x0
Feb 22 09:25:32 host-12 kernel: flags: 0x50002ec004007c(referenced|uptodate|dirty|lru|active|swapbacked)
Feb 22 09:25:32 host-12 kernel: raw: 0050002ec004007c ffff881073b0f731 0000000000000000 00000001fffffffe
Feb 22 09:25:32 host-12 kernel: raw: dead000000000100 dead000000000200 0000000000000000 ffff880f7c62d800
Feb 22 09:25:32 host-12 kernel: page dumped because: bad pte
Feb 22 09:25:32 host-12 kernel: page->mem_cgroup:ffff880f7c62d800
Feb 22 09:25:32 host-12 kernel: addr:00007f730e44d000 vm_flags:00100073 anon_vma:ffff88107196c640 mapping:          (null) index:7f730e44d
Feb 22 09:25:32 host-12 kernel: file:          (null) fault:          (null) mmap:          (null) readpage:          (null)
Feb 22 09:25:32 host-12 kernel: CPU: 3 PID: 6357 Comm: dracut Tainted: G    B   W       4.10.0-linux-next-3d4ffb9-next-20170221 #274
Feb 22 09:25:32 host-12 kernel: Hardware name: HP ProLiant DL360 Gen9, BIOS P89 05/06/2015
Feb 22 09:25:32 host-12 kernel: Call Trace:
Feb 22 09:25:32 host-12 kernel: dump_stack+0x63/0x87
Feb 22 09:25:32 host-12 kernel: print_bad_pte+0x1e4/0x290
Feb 22 09:25:32 host-12 kernel: unmap_page_range+0x827/0x9e0
Feb 22 09:25:32 host-12 kernel: unmap_single_vma+0x81/0xf0
Feb 22 09:25:32 host-12 kernel: unmap_vmas+0x47/0x90
Feb 22 09:25:32 host-12 kernel: exit_mmap+0xa7/0x170
Feb 22 09:25:32 host-12 kernel: ? do_coredump+0x1a1/0xec0
Feb 22 09:25:32 host-12 kernel: mmput+0x62/0x140
Feb 22 09:25:32 host-12 kernel: do_exit+0x280/0xb90
Feb 22 09:25:32 host-12 kernel: do_group_exit+0x3f/0xb0
Feb 22 09:25:32 host-12 kernel: get_signal+0x1cc/0x600
Feb 22 09:25:32 host-12 kernel: ? __handle_mm_fault+0xae8/0x1290
Feb 22 09:25:32 host-12 kernel: do_signal+0x37/0x6a0
Feb 22 09:25:32 host-12 kernel: ? wake_up_state+0x10/0x20
Feb 22 09:25:32 host-12 kernel: ? signal_wake_up_state+0x25/0x30
Feb 22 09:25:32 host-12 kernel: ? complete_signal+0xf6/0x1f0
Feb 22 09:25:32 host-12 kernel: ? send_signal+0x3e/0x80
Feb 22 09:25:32 host-12 kernel: exit_to_usermode_loop+0x4c/0x92
Feb 22 09:25:32 host-12 kernel: prepare_exit_to_usermode+0x40/0x50
Feb 22 09:25:32 host-12 kernel: retint_user+0x8/0x10
Feb 22 09:25:32 host-12 kernel: RIP: 0033:0x7f730e23a4e9
Feb 22 09:25:32 host-12 kernel: RSP: 002b:00007ffedf5e0910 EFLAGS: 00010202
Feb 22 09:25:32 host-12 kernel: RAX: 00007f730e44d148 RBX: 00007ffedf5e0a20 RCX: 0000000000000069
Feb 22 09:25:32 host-12 kernel: RDX: 01c105e001c005df RSI: 01c305d301c205d2 RDI: 00007f730e44d148
Feb 22 09:25:32 host-12 kernel: RBP: 0000000000000080 R08: 0000000000000000 R09: 0000000000cabf80
Feb 22 09:25:32 host-12 kernel: R10: 0000000000000007 R11: 0000000000000246 R12: 0000000000000001
Feb 22 09:25:32 host-12 kernel: R13: 0000000000000000 R14: 0000000000000080 R15: 0000000000000080
Feb 22 09:25:32 host-12 kernel: ------------[ cut here ]------------
Feb 22 09:25:32 host-12 kernel: WARNING: CPU: 3 PID: 6357 at lib/list_debug.c:47 __list_del_entry_valid+0x61/0xd0
Feb 22 09:25:32 host-12 kernel: list_del corruption, ffffea004161fae0->next is LIST_POISON1 (dead000000000100)
Feb 22 09:25:32 host-12 kernel: Modules linked in: xt_CHECKSUM iptable_mangle ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_nat_ipv4 nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_conntrack nf_conntrack ipt_REJECT nf_reject_ipv4 tun bridge stp llc ebtable_filter ebtables ip6table_filter ip6_tables iptable_filter dm_mirror dm_region_hash dm_log dm_mod intel_rapl sb_edac edac_core x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass crct10dif_pclmul crc32_pclmul ghash_clmulni_intel pcbc ipmi_ssif aesni_intel crypto_simd iTCO_wdt glue_helper cryptd iTCO_vendor_support sg ipmi_si dax_pmem hpwdt i2c_i801 ioatdma pcspkr lpc_ich wmi ipmi_devintf hpilo dax pcc_cpufreq acpi_power_meter ipmi_msghandler acpi_cpufreq dca shpchp nfsd auth_rpcgss nfs_acl lockd grace sunrpc binfmt_mi
 sc ip_tables xfs libcrc32c
Feb 22 09:25:32 host-12 kernel: sd_mod mgag200 i2c_algo_bit drm_kms_helper syscopyarea sysfillrect sysimgblt fb_sys_fops ttm tg3 drm ptp nd_pmem serio_raw crc32c_intel hpsa fjes i2c_core pps_core scsi_transport_sas
Feb 22 09:25:32 host-12 kernel: CPU: 3 PID: 6357 Comm: dracut Tainted: G    B   W       4.10.0-linux-next-3d4ffb9-next-20170221 #274
Feb 22 09:25:32 host-12 kernel: Hardware name: HP ProLiant DL360 Gen9, BIOS P89 05/06/2015
Feb 22 09:25:32 host-12 kernel: Call Trace:
Feb 22 09:25:32 host-12 kernel: dump_stack+0x63/0x87
Feb 22 09:25:32 host-12 kernel: __warn+0xd1/0xf0
Feb 22 09:25:32 host-12 kernel: warn_slowpath_fmt+0x5f/0x80
Feb 22 09:25:32 host-12 kernel: ? free_hot_cold_page_list+0x44/0xb0
Feb 22 09:25:32 host-12 kernel: __list_del_entry_valid+0x61/0xd0
Feb 22 09:25:32 host-12 kernel: release_pages+0x2a4/0x3f0
Feb 22 09:25:32 host-12 kernel: free_pages_and_swap_cache+0x9e/0xc0
Feb 22 09:25:32 host-12 kernel: tlb_flush_mmu_free+0x36/0x60
Feb 22 09:25:32 host-12 kernel: tlb_finish_mmu+0x1c/0x50
Feb 22 09:25:32 host-12 kernel: exit_mmap+0xd6/0x170
Feb 22 09:25:32 host-12 kernel: ? do_coredump+0x1a1/0xec0
Feb 22 09:25:32 host-12 kernel: mmput+0x62/0x140
Feb 22 09:25:32 host-12 kernel: do_exit+0x280/0xb90
Feb 22 09:25:32 host-12 kernel: do_group_exit+0x3f/0xb0
Feb 22 09:25:32 host-12 kernel: get_signal+0x1cc/0x600
Feb 22 09:25:32 host-12 kernel: ? __handle_mm_fault+0xae8/0x1290
Feb 22 09:25:32 host-12 kernel: do_signal+0x37/0x6a0
Feb 22 09:25:32 host-12 kernel: ? wake_up_state+0x10/0x20
Feb 22 09:25:32 host-12 kernel: ? signal_wake_up_state+0x25/0x30
Feb 22 09:25:32 host-12 kernel: ? complete_signal+0xf6/0x1f0
Feb 22 09:25:32 host-12 kernel: ? send_signal+0x3e/0x80
Feb 22 09:25:32 host-12 kernel: exit_to_usermode_loop+0x4c/0x92
Feb 22 09:25:32 host-12 kernel: prepare_exit_to_usermode+0x40/0x50
Feb 22 09:25:32 host-12 kernel: retint_user+0x8/0x10
Feb 22 09:25:32 host-12 kernel: RIP: 0033:0x7f730e23a4e9
Feb 22 09:25:32 host-12 kernel: RSP: 002b:00007ffedf5e0910 EFLAGS: 00010202
Feb 22 09:25:32 host-12 kernel: RAX: 00007f730e44d148 RBX: 00007ffedf5e0a20 RCX: 0000000000000069
Feb 22 09:25:32 host-12 kernel: RDX: 01c105e001c005df RSI: 01c305d301c205d2 RDI: 00007f730e44d148
Feb 22 09:25:32 host-12 kernel: RBP: 0000000000000080 R08: 0000000000000000 R09: 0000000000cabf80
Feb 22 09:25:32 host-12 kernel: R10: 0000000000000007 R11: 0000000000000246 R12: 0000000000000001
Feb 22 09:25:32 host-12 kernel: R13: 0000000000000000 R14: 0000000000000080 R15: 0000000000000080
Feb 22 09:25:32 host-12 kernel: ---[ end trace 95acd0f30b99f7f2 ]---
Feb 22 09:25:32 host-12 kernel: CPU: 8 PID: 5717 Comm: qemu-kvm Tainted: G    B   W       4.10.0-linux-next-3d4ffb9-next-20170221 #274
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6462 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6463 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6466 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6467 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6471 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6470 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6474 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6477 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6476 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6479 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6482 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6485 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6483 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6487 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6490 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6491 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6495 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6497 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6499 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6501 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6503 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6505 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6507 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6509 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6511 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:32 host-12 abrt-hook-ccpp: Process 6513 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6515 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6517 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6519 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6521 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6523 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6525 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6527 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6529 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6531 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6533 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6535 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6537 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6540 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6542 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 abrt-hook-ccpp: Process 6544 (bash) of user 0 killed by SIGSEGV - ignoring (repeated crash)
Feb 22 09:25:33 host-12 kernel: Hardware name: HP ProLiant DL360 Gen9, BIOS P89 05/06/2015
Feb 22 09:25:33 host-12 kernel: Call Trace:
Feb 22 09:25:33 host-12 kernel: dump_stack+0x63/0x87
Feb 22 09:25:33 host-12 kernel: __warn+0xd1/0xf0
Feb 22 09:25:33 host-12 kernel: warn_slowpath_fmt+0x5f/0x80
Feb 22 09:25:33 host-12 kernel: __list_del_entry_valid+0x61/0xd0
Feb 22 09:25:33 host-12 kernel: get_page_from_freelist+0x89e/0xbe0
Feb 22 09:25:33 host-12 kernel: __alloc_pages_nodemask+0xe3/0x260
Feb 22 09:25:33 host-12 kernel: alloc_misplaced_dst_page+0x29/0x30
Feb 22 09:25:33 host-12 kernel: migrate_pages+0x1db/0xa40
Feb 22 09:25:33 host-12 kernel: ? isolate_lru_page+0x1d2/0x2d0
Feb 22 09:25:33 host-12 kernel: ? put_page+0x50/0x50
Feb 22 09:25:33 host-12 kernel: migrate_misplaced_page+0x155/0x210
Feb 22 09:25:33 host-12 kernel: __handle_mm_fault+0x928/0x1290
Feb 22 09:25:33 host-12 kernel: ? try_to_wake_up+0x59/0x450
Feb 22 09:25:33 host-12 kernel: handle_mm_fault+0xce/0x240
Feb 22 09:25:33 host-12 kernel: __get_user_pages+0x137/0x6b0
Feb 22 09:25:33 host-12 kernel: ? gup_pud_range+0x1ea/0x210
Feb 22 09:25:33 host-12 kernel: get_user_pages+0x4f/0x60
Feb 22 09:25:33 host-12 kernel: __gfn_to_pfn_memslot+0x1a8/0x430 [kvm]
Feb 22 09:25:33 host-12 kernel: try_async_pf+0x67/0x240 [kvm]
Feb 22 09:25:33 host-12 kernel: ? kvm_host_page_size+0x85/0x90 [kvm]
Feb 22 09:25:33 host-12 kernel: tdp_page_fault+0x131/0x260 [kvm]
Feb 22 09:25:33 host-12 kernel: kvm_mmu_page_fault+0x65/0x130 [kvm]
Feb 22 09:25:33 host-12 kernel: handle_ept_violation+0xa5/0x190 [kvm_intel]
Feb 22 09:25:33 host-12 kernel: vmx_handle_exit+0x14b/0xbc0 [kvm_intel]
Feb 22 09:25:33 host-12 kernel: ? wait_lapic_expire+0xaa/0x180 [kvm]
Feb 22 09:25:33 host-12 kernel: vcpu_enter_guest+0x83e/0x1190 [kvm]
Feb 22 09:25:33 host-12 kernel: ? recalc_sigpending+0x1b/0x50
Feb 22 09:25:33 host-12 kernel: ? kvm_apic_local_deliver+0x61/0x70 [kvm]
Feb 22 09:25:33 host-12 kernel: kvm_arch_vcpu_ioctl_run+0x2ee/0x400 [kvm]
Feb 22 09:25:33 host-12 kernel: kvm_vcpu_ioctl+0x292/0x610 [kvm]
Feb 22 09:25:33 host-12 kernel: ? do_futex+0x11c/0x570
Feb 22 09:25:33 host-12 kernel: do_vfs_ioctl+0xa7/0x5e0
Feb 22 09:25:33 host-12 kernel: SyS_ioctl+0x79/0x90
Feb 22 09:25:33 host-12 kernel: do_syscall_64+0x67/0x180
Feb 22 09:25:33 host-12 kernel: entry_SYSCALL64_slow_path+0x25/0x25
Feb 22 09:25:33 host-12 kernel: RIP: 0033:0x7f641c6b0577
Feb 22 09:25:33 host-12 kernel: RSP: 002b:00007f641164ba98 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
Feb 22 09:25:33 host-12 kernel: RAX: ffffffffffffffda RBX: 00005584c4990000 RCX: 00007f641c6b0577
Feb 22 09:25:33 host-12 kernel: RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000013
Feb 22 09:25:33 host-12 kernel: RBP: 00007f6426e56000 R08: 0000000000000000 R09: 0000000000000000
Feb 22 09:25:33 host-12 kernel: R10: 0000000000000009 R11: 0000000000000246 R12: 00005584c28b37a0
Feb 22 09:25:33 host-12 kernel: R13: 0000000000000001 R14: 00007f6426e57001 R15: 0000000000000001
Feb 22 09:25:33 host-12 kernel: ---[ end trace 95acd0f30b99f7f3 ]---

^ permalink raw reply

* linux-next: build failure after merge of the scsi-mkp tree
From: Stephen Rothwell @ 2017-02-22  2:41 UTC (permalink / raw)
  To: Martin K. Petersen
  Cc: linux-next, linux-kernel, James Smart, Dick Kennedy,
	Hannes Reinecke

Hi Martin,

After merging the scsi-mkp tree, today's linux-next build (powerpc
ppc64_defconfig) failed like this:

ERROR: ".nvme_fc_unregister_remoteport" [drivers/scsi/lpfc/lpfc.ko] undefined!
ERROR: ".nvme_fc_unregister_localport" [drivers/scsi/lpfc/lpfc.ko] undefined!
ERROR: ".nvmet_fc_rcv_ls_req" [drivers/scsi/lpfc/lpfc.ko] undefined!
ERROR: ".nvmet_fc_rcv_fcp_req" [drivers/scsi/lpfc/lpfc.ko] undefined!
ERROR: ".nvme_fc_register_localport" [drivers/scsi/lpfc/lpfc.ko] undefined!
ERROR: ".nvme_fc_register_remoteport" [drivers/scsi/lpfc/lpfc.ko] undefined!
ERROR: ".nvmet_fc_register_targetport" [drivers/scsi/lpfc/lpfc.ko] undefined!
ERROR: ".nvmet_fc_unregister_targetport" [drivers/scsi/lpfc/lpfc.ko] undefined!

Caused by commit

  462896e1808c ("scsi: lpfc: NVME Initiator: bind to nvme_fc api")

# CONFIG_NVME_FC is not set

Presumably a missing dependency.

I have used the scsi-mkp from next-20170221 for today.

-- 
Cheers,
Stephen Rothwell

^ permalink raw reply

* linux-next: Tree for Feb 22
From: Stephen Rothwell @ 2017-02-22  4:54 UTC (permalink / raw)
  To: linux-next; +Cc: linux-kernel

Hi all,

Please do not add any material intended for v4.12 to your linux-next
included branches until after v4.11-rc1 has been released.

Changes since 20170221:

The net-next tree gained a conflict against the s390 tree.

The kspp tree gained conflicts against the net-next tree.

The scsi-mkp tree gained a build failure so I used the version from
next-20170221.

Non-merge commits (relative to Linus' tree): 8853
 9215 files changed, 403921 insertions(+), 184094 deletions(-)

----------------------------------------------------------------------------

I have created today's linux-next tree at
git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
(patches at http://www.kernel.org/pub/linux/kernel/next/ ).  If you
are tracking the linux-next tree using git, you should not use "git pull"
to do so as that will try to merge the new linux-next release with the
old one.  You should use "git fetch" and checkout or reset to the new
master.

You can see which trees have been included by looking in the Next/Trees
file in the source.  There are also quilt-import.log and merge.log
files in the Next directory.  Between each merge, the tree was built
with a ppc64_defconfig for powerpc and an allmodconfig (with
CONFIG_BUILD_DOCSRC=n) for x86_64, a multi_v7_defconfig for arm and a
native build of tools/perf. After the final fixups (if any), I do an
x86_64 modules_install followed by builds for x86_64 allnoconfig,
powerpc allnoconfig (32 and 64 bit), ppc44x_defconfig, allyesconfig
and pseries_le_defconfig and i386, sparc and sparc64 defconfig.

Below is a summary of the state of the merge.

I am currently merging 254 trees (counting Linus' and 37 trees of bug
fix patches pending for the current merge release).

Stats about the size of the tree over time can be seen at
http://neuling.org/linux-next-size.html .

Status of my local build tests will be at
http://kisskb.ellerman.id.au/linux-next .  If maintainers want to give
advice about cross compilers/configs that work, we are always open to add
more builds.

Thanks to Randy Dunlap for doing many randconfig builds.  And to Paul
Gortmaker for triage and bug fixes.

-- 
Cheers,
Stephen Rothwell

$ git checkout master
$ git reset --hard stable
Merging origin/master (772c8f6f3bbd Merge tag 'for-4.11/linus-merge-signed' of git://git.kernel.dk/linux-block)
Merging fixes/master (c470abd4fde4 Linux 4.10)
Merging kbuild-current/rc-fixes (c7858bf16c0b asm-prototypes: Clear any CPP defines before declaring the functions)
Merging arc-current/for-curr (8ba605b607b7 ARC: [plat-*] ARC_HAS_COH_CACHES no longer relevant)
Merging arm-current/fixes (9e3440481845 ARM: 8658/1: uaccess: fix zeroing of 64-bit get_user())
Merging m68k-current/for-linus (3dfe33020ca8 m68k/sun3: Remove dead code in paging_init())
Merging metag-fixes/fixes (35d04077ad96 metag: Only define atomic_dec_if_positive conditionally)
Merging powerpc-fixes/fixes (3f91a89d424a powerpc/64: Disable use of radix under a hypervisor)
Merging sparc/master (f9a42e0d58cf Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc)
Merging fscrypt-current/for-stable (42d97eb0ade3 fscrypt: fix renaming and linking special files)
Merging net/master (00ea1ceebe0d ipv6: release dst on error in ip6_dst_lookup_tail)
Merging ipsec/master (e3dc847a5f85 vti6: Don't report path MTU below IPV6_MIN_MTU.)
Merging netfilter/master (3ef767e5cbd4 Merge branch 'master' of git://blackhole.kfki.hu/nf)
Merging ipvs/master (045169816b31 Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6)
Merging wireless-drivers/master (52f5631a4c05 rtlwifi: rtl8192ce: Fix loading of incorrect firmware)
Merging mac80211/master (8a96bb837818 mac80211: don't reorder frames with SN smaller than SSN)
Merging sound-current/for-linus (34371d236eab ALSA: usb-audio: localize function without external linkage)
Merging pci-current/for-linus (afe3e4d11bdf PCI/PME: Restore pcie_pme_driver.remove)
Merging driver-core.current/driver-core-linus (49def1853334 Linux 4.10-rc4)
Merging tty.current/tty-linus (49def1853334 Linux 4.10-rc4)
Merging usb.current/usb-linus (d5adbfcd5f7b Linux 4.10-rc7)
Merging usb-gadget-fixes/fixes (efe357f4633a usb: dwc2: host: fix Wmaybe-uninitialized warning)
Merging usb-serial-fixes/usb-linus (d07830db1bdb USB: serial: pl2303: add ATEN device ID)
Merging usb-chipidea-fixes/ci-for-usb-stable (c7fbb09b2ea1 usb: chipidea: move the lock initialization to core file)
Merging phy/fixes (7ce7d89f4883 Linux 4.10-rc1)
Merging staging.current/staging-linus (d5adbfcd5f7b Linux 4.10-rc7)
Merging char-misc.current/char-misc-linus (d5adbfcd5f7b Linux 4.10-rc7)
Merging input-current/for-linus (722c5ac708b4 Input: elan_i2c - add ELAN0605 to the ACPI table)
Merging crypto-current/master (7c2cf1c4615c crypto: chcr - Fix key length for RFC4106)
Merging ide/master (da095587e6be Revert "ide: Fix interface autodetection in legacy IDE driver (trial #2)")
Merging vfio-fixes/for-linus (930a42ded3fe vfio/spapr_tce: Set window when adding additional groups to container)
Merging kselftest-fixes/fixes (7738789fba09 selftests: x86/pkeys: fix spelling mistake: "itertation" -> "iteration")
Merging backlight-fixes/for-backlight-fixes (68feaca0b13e backlight: pwm: Handle EPROBE_DEFER while requesting the PWM)
Merging ftrace-fixes/for-next-urgent (6224beb12e19 tracing: Have branch tracer use recursive field of task struct)
Merging mfd-fixes/for-mfd-fixes (1a41741fd60b mfd: wm8994-core: Don't use managed regulator bulk get API)
Merging v4l-dvb-fixes/fixes (f9c85ee67164 [media] siano: make it work again with CONFIG_VMAP_STACK)
Merging drm-intel-fixes/for-linux-next-fixes (7089db84e356 Linux 4.10-rc8)
Merging drm-misc-fixes/for-linux-next-fixes (bb08c04dc867 drm/dp/mst: fix kernel oops when turning off secondary monitor)
Merging kbuild/for-next (fde42bfcd232 genksyms: Regenerate parser)
Merging asm-generic/master (de4be6b87b6b asm-generic: page.h: fix comment typo)
CONFLICT (content): Merge conflict in include/asm-generic/percpu.h
Merging arc/for-next (d5adbfcd5f7b Linux 4.10-rc7)
Merging arm/for-next (85593554fb35 Merge branch 'fixes' into for-next)
Merging arm-perf/for-next/perf (0c744ea4f77d Linux 4.10-rc2)
Merging arm-soc/for-next (93f0a7522a39 arm-soc: document merges)
CONFLICT (content): Merge conflict in arch/arm/mach-ux500/platsmp.c
Merging amlogic/for-next (2452b94d227c Merge v4.11/dt64)
CONFLICT (content): Merge conflict in arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi
Merging aspeed/for-next (ab15e12960f1 Merge branches 'defconfig-for-v4.11', 'soc-for-v4.11' and 'dt-for-v4.11' into for-next)
Merging at91/at91-next (f5fde64706f0 Merge tag 'at91-ab-4.11-dt2' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux into at91-next)
Merging bcm2835/for-next (8d6e1b09237b Merge branch anholt/bcm2835-dt-next into for-next)
Merging berlin/berlin/for-next (5153351425c9 Merge branch 'berlin/dt' into berlin/for-next)
Merging cortex-m/for-next (f719a0d6a854 ARM: efm32: switch to vendor,device compatible strings)
Merging imx-mxs/for-next (57aba12f97c2 Merge branch 'zte/pm-domains' into for-next)
Merging keystone/next (9e07c85a01ec Merge branch 'for_4.11/keystone_dts' into next)
Merging mvebu/for-next (e8ba6e4b2558 Merge branch 'mvebu/dt64' into mvebu/for-next)
Merging omap/for-next (2b6a9eabd44e Merge branch 'omap-for-v4.10/fixes' into for-next)
Merging omap-pending/for-next (c20c8f750d9f ARM: OMAP2+: hwmod: fix _idle() hwmod state sanity check sequence)
Merging qcom/for-next (a844f941617c Merge tag 'qcom-arm64-for-4.11-2' into final-for-4.11)
Merging renesas/next (59fd3e06b3d7 Merge branches 'arm64-dt-for-v4.11', 'dt-for-v4.11' and 'soc-for-v4.11' into next)
Merging rockchip/for-next (0aab64671deb Merge branch 'v4.11-clk/next' into for-next)
Merging rpi/for-rpi-next (bc0195aad0da Linux 4.2-rc2)
Merging samsung/for-next (1001354ca341 Linux 4.9-rc1)
Merging samsung-krzk/for-next (9689628ec120 Merge branch 'for-v4.11/drivers-soc-exynos-pmu-the-joy-never-ends' into for-next)
Merging tegra/for-next (10e459de8497 Merge branch for-4.11/i2c into for-next)
Merging arm64/for-next/core (ffe7afd17135 arm64/kprobes: consistently handle MRS/MSR with XZR)
Merging clk/clk-next (f59de563358e clk: renesas: mstp: ensure register writes complete)
Merging blackfin/for-linus (391e74a51ea2 eth: bf609 eth clock: add pclk clock for stmmac driver probe)
CONFLICT (content): Merge conflict in arch/blackfin/mach-common/pm.c
Merging c6x/for-linux-next (ca3060d39ae7 c6x: Use generic clkdev.h header)
Merging cris/for-next (8f50f2a1b46a cris: No need to append -O2 and $(LINUXINCLUDE))
Merging h8300/h8300-next (58c57526711f h8300: Add missing include file to asm/io.h)
Merging hexagon/linux-next (02cc2ccfe771 Revert "Hexagon: fix signal.c compile error")
Merging ia64/next (fbb0e4da96f4 ia64: salinfo: use a waitqueue instead a sema down/up combo)
Merging m68k/for-next (3dfe33020ca8 m68k/sun3: Remove dead code in paging_init())
Merging m68knommu/for-next (73ec49463f89 m68k/defconfig: amcore board defconfig tuning)
Merging metag/for-next (f5d163aad31e metag: perf: fix build on Meta1)
Merging microblaze/next (3400606d8ffd microblaze: Add new fpga families)
Merging mips/mips-for-linux-next (cfd75c2db17e MIPS: VDSO: Explicitly use -fno-asynchronous-unwind-tables)
CONFLICT (content): Merge conflict in arch/mips/configs/lemote2f_defconfig
Merging nios2/for-next (744606c76c4a nios2: add screen_info)
Merging openrisc/for-next (20913e0a776d openrisc: head: Init r0 to 0 on start)
CONFLICT (content): Merge conflict in arch/openrisc/include/asm/Kbuild
Merging parisc-hd/for-next (69973b830859 Linux 4.9)
Merging powerpc/next (5e48dc0aa4d9 powerpc/xmon: Dump memory in CPU endian format)
CONFLICT (content): Merge conflict in arch/powerpc/kernel/asm-offsets.c
CONFLICT (content): Merge conflict in arch/powerpc/Kconfig
Merging fsl/next (75b824727680 powerpc/8xx: Perf events on PPC 8xx)
Merging mpc5xxx/next (39e69f55f857 powerpc: Introduce the use of the managed version of kzalloc)
Merging s390/features (d24b98e3a9c6 s390/syscall: fix single stepped system calls)
Merging sparc-next/master (9f935675d41a Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input)
Merging sh/for-next (e61c10e468a4 sh: add device tree source for J2 FPGA on Mimas v2 board)
Merging tile/master (14e73e78ee98 tile: use __ro_after_init instead of tile-specific __write_once)
Merging uml/linux-next (f88f0bdfc32f um: UBD Improvements)
Merging unicore32/unicore32 (bc27113620ca unicore32-oldabi: add oldabi syscall interface)
Merging xtensa/xtensa-for-next (6e72293ab0e9 xtensa: fix noMMU build on cores with MMU)
Merging fscrypt/master (6f69f0ed6136 fscrypt: constify struct fscrypt_operations)
Merging befs/for-next (7ce7d89f4883 Linux 4.10-rc1)
Merging btrfs/next (8b8b08cbfb90 Btrfs: fix delalloc accounting after copy_from_user faults)
Merging btrfs-kdave/for-next (d46996f6537a Merge branch 'for-next-current-v4.10-20170220' into for-next-20170220)
Merging ceph/master (df963ea8a082 ceph: remove req from unsafe list when unregistering it)
Merging cifs/for-next (2bfe01eff430 Merge branch 'for-next' of git://git.samba.org/sfrench/cifs-2.6)
Merging configfs/for-next (e16769d4bca6 fs: configfs: don't return anything from drop_link)
Merging ecryptfs/next (be280b25c328 ecryptfs: remove private bin2hex implementation)
Merging ext3/for_next (6c71100db53e fanotify: simplify the code of fanotify_merge)
Merging ext4/dev (e9be2ac7c09c ext4: rename EXT4_IOC_GOINGDOWN to EXT4_IOC_SHUTDOWN)
Merging f2fs/dev (aacf533a90a7 f2fs: super: constify fscrypt_operations structure)
CONFLICT (content): Merge conflict in fs/f2fs/super.c
Merging freevxfs/for-next (bf1bb4b460c8 freevxfs: update Kconfig information)
Merging fscache/fscache (d52bd54db8be Merge branch 'akpm' (patches from Andrew))
Merging fuse/for-next (84588a93d097 fuse: fix uninitialized flags in pipe_buffer)
Merging gfs2/for-next (c548a1c17560 gfs2: Make gfs2_write_full_page static)
Merging jfs/jfs-next (684666e51585 jfs: atomically read inode size)
Merging nfs/linux-next (c470abd4fde4 Linux 4.10)
Merging nfsd/nfsd-next (0e954b1e9d2c nfsd: special case truncates some more)
Merging orangefs/for-next (eb68d0324dc4 orangefs: fix buffer size mis-match between kernel space and user space.)
Merging overlayfs/overlayfs-next (51f8f3c4e225 ovl: drop CAP_SYS_RESOURCE from saved mounter's credentials)
Merging v9fs/for-next (a333e4bf2556 fs/9p: use fscache mutex rather than spinlock)
Merging ubifs/linux-next (1cb51a15b576 ubifs: Fix journal replay wrt. xattr nodes)
Merging xfs/for-next (8d242e932fb7 xfs: remove XFS_ALLOCTYPE_ANY_AG and XFS_ALLOCTYPE_START_AG)
Merging file-locks/linux-next (07d9a380680d Linux 4.9-rc2)
Merging vfs/for-next (59479ae85e43 Merge branches 'work.sendmsg' and 'work.splice-net' into for-next)
CONFLICT (content): Merge conflict in drivers/block/nbd.c
Merging vfs-jk/vfs (030b533c4fd4 fs: Avoid premature clearing of capabilities)
Merging vfs-miklos/next (0eb8af4916a5 vfs: use helper for calling f_op->fsync())
Merging printk/for-next (d9c23523ed98 printk: drop call_console_drivers() unused param)
Merging pci/next (c4d052ce970e Merge branch 'pci/virtualization' into next)
Merging pstore/for-next/pstore (fc1b326efd27 MAINTAINERS: Adjust pstore git repo URI, add files)
Merging hid/for-next (aaffe2b03d64 Merge branch 'for-4.11/intel-ish' into for-next)
Merging i2c/i2c/for-next (6d93e3babbd1 Merge branch 'i2c/for-4.11' into i2c/for-next)
Merging jdelvare-hwmon/master (08d27eb20666 Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs)
Merging dmi/master (0c744ea4f77d Linux 4.10-rc2)
Merging hwmon-staging/hwmon-next (2f1736ff0664 hwmon: (sht15) Add device tree support)
Merging jc_docs/docs-next (bd8562626c8e docs / driver-api: Fix structure references in device_link.rst)
Merging v4l-dvb/master (9eeb0ed0f309 [media] mtk-vcodec: fix build warnings without DEBUG)
Merging v4l-dvb-next/master (432ac2d4acef Merge branch 'v4l_for_linus' into to_next)
Merging fbdev/fbdev-for-next (42f82367df2c video: fbdev: fsl-diu-fb: fix spelling mistake "palette")
Merging pm/linux-next (14a05f0baaf1 Merge branch 'pm-cpufreq' into linux-next)
Merging idle/next (306899f94804 x86 tsc: Add the Intel Denverton Processor to native_calibrate_tsc())
Merging thermal/next (761bb99d2d44 Merge branches 'thermal-core', 'thermal-intel', 'thermal-soc' and 'ida-conversion' into next)
Merging thermal-soc/next (4f47aff5201c Merge branch 'work-linus' into work-next)
Merging ieee1394/for-next (72f3c27aa646 firewire: net: max MTU off by one)
Merging dlm/next (aa9f1012858b dlm: don't specify WQ_UNBOUND for the ast callback workqueue)
Merging swiotlb/linux-next (69369f52d28a swiotlb-xen: implement xen_swiotlb_get_sgtable callback)
Merging net-next/master (e623a9e9dec2 net: socket: fix recvmmsg not returning error from sock_error)
CONFLICT (content): Merge conflict in kernel/extable.c
CONFLICT (content): Merge conflict in arch/s390/net/bpf_jit_comp.c
Applying: smc: merge fix for "switch socket ->splice_read() to struct file *"
Merging ipsec-next/master (7785bba299a8 esp: Add a software GRO codepath)
Merging netfilter-next/master (8f9000a565d0 net:ethernet:aquantia: Add 2500/5000 mbit link modes support.)
Merging ipvs-next/master (8d8e20e2d7bb ipvs: Decrement ttl)
Merging wireless-drivers-next/master (4e33e3462510 tcp: use page_ref_inc() in tcp_sendmsg())
Merging bluetooth/master (8f91566f99fa btmrvl: fix spelling mistake: "actived" -> "activated")
Merging mac80211-next/master (40beeb3c9b01 mac80211: shorten debug message)
Merging rdma/for-next (9294000d6d89 IB/srp: Drain the send queue before destroying a QP)
Applying: RDMA/bnxt_re: fix for "bnxt_en: Update to firmware interface spec 1.7.0."
Merging mtd/master (d91f6cee98b6 mtd: aspeed: remove redundant dev_err call in aspeed_smc_probe())
Merging l2-mtd/master (d91f6cee98b6 mtd: aspeed: remove redundant dev_err call in aspeed_smc_probe())
Merging nand/nand/next (a4077ce58713 mtd: nand: Add Winbond manufacturer id)
Merging spi-nor/next (7fa2c7038cc0 mtd: spi-nor: cqspi: remove redundant dead code on error return check)
Merging crypto/master (dcd36c436c9c crypto: brcm - Avoid double free in ahash_finup())
Merging drm/drm-next (9ca70356a926 Revert "drm: Resurrect atomic rmfb code, v3")
CONFLICT (content): Merge conflict in lib/Kconfig
CONFLICT (content): Merge conflict in include/linux/kref.h
CONFLICT (content): Merge conflict in include/drm/drm_connector.h
CONFLICT (content): Merge conflict in include/drm/drm_atomic.h
CONFLICT (content): Merge conflict in drivers/gpu/drm/ttm/ttm_bo.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/intel_sprite.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/intel_fbc.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/intel_display.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/i915_drv.h
CONFLICT (content): Merge conflict in drivers/gpu/drm/drm_connector.c
Merging drm-panel/drm/panel/for-next (eaeebffa90f3 drm/panel: simple: Specify bus width and flags for EDT displays)
Merging drm-intel/for-linux-next (998d75730b40 drm/i915: Fix not finding the VBT when it overlaps with OPREGION_ASLE_EXT)
Merging drm-tegra/drm/tegra/for-next (7b1d4185050d gpu: host1x: Set OF node for new host1x devices)
Merging drm-misc/for-linux-next (2220fc1ab363 uapi: add missing install of dma-buf.h)
Merging drm-exynos/exynos-drm/for-next (7d1e04231461 Merge tag 'usercopy-v4.8-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux)
Merging drm-msm/msm-next (21c42da18ef1 drm/msm: return -EFAULT if copy_from_user() fails)
Merging hdlcd/for-upstream/hdlcd (747e5a5ff2a2 drm: hdlcd: Fix cleanup order)
Merging mali-dp/for-upstream/mali-dp (83d642ee6dbe drm: mali-dp: fix stride setting for multi-plane formats)
Merging sunxi/sunxi/for-next (d5adbfcd5f7b Linux 4.10-rc7)
Merging kspp/for-next/kspp (0135ba02e1be Merge branch 'for-next/usercopy' into for-next/kspp)
CONFLICT (content): Merge conflict in include/linux/filter.h
CONFLICT (content): Merge conflict in arch/x86/Kconfig.debug
CONFLICT (content): Merge conflict in arch/s390/Kconfig.debug
CONFLICT (content): Merge conflict in arch/arm/configs/aspeed_g5_defconfig
CONFLICT (content): Merge conflict in arch/arm/Kconfig
CONFLICT (content): Merge conflict in arch/Kconfig
Merging kconfig/for-next (5bcba792bb30 localmodconfig: Fix whitespace repeat count after "tristate")
Merging regmap/for-next (bbbed1951704 Merge remote-tracking branches 'regmap/topic/doc' and 'regmap/topic/rbtree' into regmap-next)
Merging sound/for-next (4b49f0f7ee1f ALSA: x86: hdmi: select CONFIG_SND_PCM)
Merging sound-asoc/for-next (141dee78c40a Merge remote-tracking branches 'asoc/topic/wm8753' and 'asoc/topic/zte' into asoc-next)
Merging modules/modules-next (0d4ec7849f5a MAINTAINERS: add tree for modules)
Merging input/next (a1b5359271e5 Input: zet6223 - export OF device ID as module aliases)
CONFLICT (content): Merge conflict in drivers/input/rmi4/Kconfig
Merging block/for-next (3695539290d7 Merge branch 'for-4.11/block' into for-next)
Merging lightnvm/for-next (e57ef816cf77 Merge branch 'for-4.11/block' into for-next)
Merging device-mapper/for-next (d67a5f4b5947 dm: flush queued bios when process blocks to avoid deadlock)
Merging pcmcia/master (e8e68fd86d22 pcmcia: do not break rsrc_nonstatic when handling anonymous cards)
Merging mmc/next (8c7cdbf9272c mmc: core: add mmc prefix for blk_fixups)
Merging kgdb/kgdb-next (7a6653fca500 kdb: Fix handling of kallsyms_symbol_next() return value)
Merging md/for-next (65e7b6f96939 md/raid1/10: fix potential deadlock)
Merging mfd/for-mfd-next (e93c10211d03 mfd: lpc_ich: Enable watchdog on Intel Apollo Lake PCH)
Merging backlight/for-backlight-next (80e5d455339a MAINTAINERS: Rework entry for Backlight)
Merging battery/for-next (744cc304a18f power: supply: add AC power supply driver for AXP20X and AXP22X PMICs)
Merging omap_dss2/for-next (c456a2f30de5 video: smscufx: remove unused variable)
Merging regulator/for-next (877fe823a0ad Merge remote-tracking branches 'regulator/topic/s2mpa01', 'regulator/topic/supplies' and 'regulator/topic/tps65217' into regulator-next)
Merging security/next (61841be6358c tpm: declare tpm2_get_pcr_allocation() as static)
CONFLICT (content): Merge conflict in security/apparmor/include/apparmor.h
Applying: selinux: merge fix for "smc: establish new socket family"
Applying: locking/atomic, kref: merge fixup for code movement
Merging integrity/next (20f482ab9e0f ima: allow to check MAY_APPEND)
Merging keys/keys-next (ed51e44e914c Merge branch 'keys-asym-keyctl' into keys-next)
Merging selinux/next (61841be6358c tpm: declare tpm2_get_pcr_allocation() as static)
Merging tpmdd/next (61841be6358c tpm: declare tpm2_get_pcr_allocation() as static)
Merging watchdog/master (00ea1ceebe0d ipv6: release dst on error in ip6_dst_lookup_tail)
Merging iommu/next (8d2932dd0634 Merge branches 'iommu/fixes', 'arm/exynos', 'arm/renesas', 'arm/smmu', 'arm/mediatek', 'arm/core', 'x86/vt-d' and 'core' into next)
Merging dwmw2-iommu/master (910170442944 iommu/vt-d: Fix PASID table allocation)
Merging vfio/next (0ca582fd0463 vfio: Replace module request with softdep)
Merging trivial/for-next (74dcba3589fc NTB: correct ntb_spad_count comment typo)
Merging audit/next (fe8e52b9b910 audit: remove unnecessary curly braces from switch/case statements)
CONFLICT (content): Merge conflict in include/uapi/linux/audit.h
Merging devicetree/for-next (4e29ccdb240e DT: add Faraday Tec. as vendor)
Merging mailbox/mailbox-for-next (db4d22c07e3e mailbox: mailbox-test: allow reserved areas in SRAM)
Merging spi/for-next (827498a19804 Merge remote-tracking branches 'spi/topic/ti-qspi' and 'spi/topic/topcliff-pch' into spi-next)
Merging tip/auto-latest (d6f6b3f1e69d Merge branch 'perf/urgent' into auto-latest)
Merging clockevents/clockevents/next (f947ee147e08 clocksource/drivers/arm_arch_timer: Map frame with of_io_request_and_map())
Merging edac/linux_next (9cae24b7b113 Merge commit 'daf34710a9e8849e04867d206692dc42d6d22263' into next)
CONFLICT (content): Merge conflict in drivers/edac/edac_pci.c
CONFLICT (add/add): Merge conflict in drivers/edac/edac_mc.h
CONFLICT (content): Merge conflict in drivers/edac/edac_device.c
CONFLICT (add/add): Merge conflict in Documentation/admin-guide/ras.rst
CONFLICT (content): Merge conflict in Documentation/00-INDEX
Merging edac-amd/for-next (75bf2f6478ca EDAC, mce_amd: Print IPID and Syndrome on a separate line)
Merging irqchip/irqchip/for-next (88e20c74ee02 irqchip/mxs: Enable SKIP_SET_WAKE and MASK_ON_SUSPEND)
Merging ftrace/for-next (3962d9226404 Merge branch 'for-next/ftrace/core' into temp)
Merging rcu/rcu/next (31945aa9f140 Merge branches 'doc.2017.01.15b', 'dyntick.2017.01.23a', 'fixes.2017.01.23a', 'srcu.2017.01.25a' and 'torture.2017.01.15b' into HEAD)
Merging kvm/linux-next (dd0fd8bca185 x86/kvm: Provide optimized version of vcpu_is_preempted() for x86-64)
Merging kvm-arm/next (7b6b46311a85 KVM: arm/arm64: Emulate the EL1 phys timer registers)
Merging kvm-mips/next (12ed1faece3f KVM: MIPS: Allow multiple VCPUs to be created)
Merging kvm-ppc/kvm-ppc-next (bcd3bb63dbc8 KVM: PPC: Book3S HV: Disable HPT resizing on POWER9 for now)
Merging kvms390/next (260a1d6afe2e KVM: s390: log runtime instrumentation enablement)
Merging xen-tip/linux-next (4610d240d691 xen/privcmd: add IOCTL_PRIVCMD_RESTRICT)
Merging percpu/for-next (966d2b04e070 percpu-refcount: fix reference leak during percpu-atomic transition)
Merging workqueues/for-next (a45463cbf3f9 workqueue: avoid clang warning)
Merging drivers-x86/for-next (c14b56d69dc9 platform: intel_turbo_max_3: make it explicitly non-modular)
Merging chrome-platform/for-next (31b764171cb5 Revert "platform/chrome: chromeos_laptop: Add Leon Touch")
Merging hsi/for-next (7ac5d7b1a125 HSI: hsi_char.h: use __u32 from linux/types.h)
Merging leds/for-next (fb3d769173d2 leds: ledtrig-heartbeat: Make top brightness adjustable)
Merging ipmi/for-next (eb994594bc22 ipmi: bt-bmc: Use a regmap for register access)
Merging driver-core/driver-core-next (17627157cda1 kernfs: handle null pointers while printing node name and path)
CONFLICT (content): Merge conflict in include/linux/kref.h
Merging usb/usb-next (0df8a3dbacb5 Merge tag 'usb-serial-4.11-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-next)
Merging usb-gadget/next (e42a5dbb8a3d usb: dwc3: host: pass quirk-broken-port-ped property for known broken revisions)
Merging usb-serial/usb-next (beabdc3cd3e3 USB: serial: keyspan: drop header file)
Merging usb-chipidea-next/ci-for-usb-next (753dfd23612d usb: chipidea: msm: Fix return value check in ci_hdrc_msm_probe())
Merging phy-next/next (0b10f64dbe60 phy: qcom-ufs: Fix misplaced jump label)
Merging tty/tty-next (d8a4995bcea1 tty: pl011: Work around QDF2400 E44 stuck BUSY bit)
Merging char-misc/char-misc-next (6cf18e6927c0 goldfish: Sanitize the broken interrupt handler)
CONFLICT (content): Merge conflict in Documentation/driver-api/index.rst
Merging extcon/extcon-next (3573d97d840c extcon: palmas: Don't miss GPIO events during suspend/resume)
Merging staging/staging-next (0a441275018b Staging: vc04_services: Fix the "space prohibited" code style errors)
CONFLICT (modify/delete): drivers/staging/media/lirc/lirc_parallel.c deleted in HEAD and modified in staging/staging-next. Version staging/staging-next of drivers/staging/media/lirc/lirc_parallel.c left in tree.
$ git rm -f drivers/staging/media/lirc/lirc_parallel.c
Merging slave-dma/next (235840692925 Merge branch 'fixes' into next)
Merging cgroup/for-next (f83f3c515654 kernfs: fix locking around kernfs_ops->release() callback)
Merging scsi/for-next (1d483bda11e8 Merge branch 'misc' into for-next)
Merging scsi-mkp/for-next (231af16e8f73 scsi: lpfc: Update lpfc version to 11.2.0.7)
$ git reset --hard HEAD^
Merging next-20170221 version of scsi-mkp
Merging target-updates/for-next (51ec502a3266 target: Delete tmr from list before processing)
Merging target-merge/for-next-merge (2994a7518317 cxgb4: update Kconfig and Makefile)
Merging target-bva/for-next (762b6f00a995 uapi: fix linux/target_core_user.h userspace compilation errors)
Merging libata/for-next (428d57c1683a Merge branch 'for-4.11' into for-next)
Merging binfmt_misc/for-next (4af75df6a410 binfmt_misc: add F option description to documentation)
Merging vhost/linux-next (80363894995b virtio_mmio: expose header to userspace)
Merging rpmsg/for-next (96e3485759b7 Merge branches 'hwspinlock-next', 'rpmsg-next' and 'rproc-next' into for-next)
Merging gpio/for-next (3498d8694d41 gpio: reintroduce devm_get_gpiod_from_child())
CONFLICT (content): Merge conflict in drivers/staging/greybus/gpio.c
Merging pinctrl/for-next (baafacab092e pinctrl: samsung: Fix return value check in samsung_pinctrl_get_soc_data())
CONFLICT (content): Merge conflict in arch/arm/mach-exynos/suspend.c
Merging dma-mapping/dma-mapping-next (1001354ca341 Linux 4.9-rc1)
Merging pwm/for-next (38b0a526ec33 Merge branch 'for-4.11/drivers' into for-next)
Merging dma-buf/for-next (194cad44c4e1 dma-buf/sync_file: improve Kconfig description for Sync Files)
CONFLICT (content): Merge conflict in drivers/dma-buf/Kconfig
Merging userns/for-next (ace0c791e6c3 proc/sysctl: Don't grab i_lock under sysctl_lock.)
CONFLICT (content): Merge conflict in security/selinux/hooks.c
Merging ktest/for-next (2dcd0af568b0 Linux 4.6)
Merging random/dev (db61ffe3a71c random: move random_min_urandom_seed into CONFIG_SYSCTL ifdef block)
Merging aio/master (b562e44f507e Linux 4.5)
Merging kselftest/next (68bd42d97c30 selftests/powerpc: Fix remaining fallout from recent changes)
CONFLICT (content): Merge conflict in tools/testing/selftests/bpf/Makefile
Merging y2038/y2038 (69973b830859 Linux 4.9)
Merging luto-misc/next (2dcd0af568b0 Linux 4.6)
Merging borntraeger/linux-next (e76d21c40bd6 Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net)
Merging livepatching/for-next (372e2db7210d livepatch: doc: remove the limitation for schedule() patching)
Merging coresight/next (dc83e0549ea1 coresight: Fixes coresight DT parse to get correct output port ID.)
Merging rtc/rtc-next (34f54f579a99 rtc: armada38x: Add support for Armada 7K/8K)
Merging hwspinlock/for-next (bd5717a4632c hwspinlock: qcom: Correct msb in regmap_field)
Merging nvdimm/libnvdimm-for-next (bfb34527a32a libnvdimm, pfn: fix memmap reservation size versus 4K alignment)
Merging dax-misc/dax-misc (4d9a2c874667 dax: Remove i_mmap_lock protection)
Merging extable/extable (90858794c960 module.h: remove extable.h include now users have migrated)
Merging idr/idr-4.11 (768dd325a382 radix tree test suite: Run iteration tests for longer)
Merging akpm-current/current (ae8f7647f968 scatterlist: do not disable IRQs in sg_copy_buffer)
CONFLICT (content): Merge conflict in tools/testing/selftests/vm/Makefile
CONFLICT (content): Merge conflict in include/linux/kprobes.h
CONFLICT (content): Merge conflict in include/linux/iomap.h
CONFLICT (content): Merge conflict in include/linux/dax.h
CONFLICT (content): Merge conflict in fs/iomap.c
CONFLICT (content): Merge conflict in fs/dax.c
CONFLICT (content): Merge conflict in drivers/gpu/drm/i915/i915_drv.h
CONFLICT (content): Merge conflict in arch/score/include/asm/Kbuild
CONFLICT (content): Merge conflict in arch/parisc/include/asm/Kbuild
CONFLICT (content): Merge conflict in arch/m32r/include/asm/Kbuild
CONFLICT (content): Merge conflict in arch/cris/include/asm/Kbuild
$ git checkout -b akpm remotes/origin/akpm/master
Applying: fs: add i_blocksize()
Applying: truncate: use i_blocksize()
Applying: nilfs2: use nilfs_btree_node_size()
Applying: nilfs2: use i_blocksize()
Applying: scripts/spelling.txt: add "swith" pattern and fix typo instances
Applying: scripts/spelling.txt: add "swithc" pattern and fix typo instances
Applying: scripts/spelling.txt: add "an user" pattern and fix typo instances
Applying: scripts/spelling.txt: add "an union" pattern and fix typo instances
Applying: scripts/spelling.txt: add "an one" pattern and fix typo instances
Applying: scripts/spelling.txt: add "partiton" pattern and fix typo instances
Applying: scripts/spelling.txt: add "aligment" pattern and fix typo instances
Applying: scripts/spelling.txt: add "algined" pattern and fix typo instances
Applying: scripts/spelling.txt: add "efective" pattern and fix typo instances
Applying: scripts/spelling.txt: add "varible" pattern and fix typo instances
Applying: scripts/spelling.txt: add "embeded" pattern and fix typo instances
Applying: scripts/spelling.txt: add "againt" pattern and fix typo instances
Applying: scripts/spelling.txt: add "neded" pattern and fix typo instances
Applying: scripts/spelling.txt: add "unneded" pattern and fix typo instances
Applying: scripts/spelling.txt: add "intialization" pattern and fix typo instances
Applying: scripts/spelling.txt: add "initialiazation" pattern and fix typo instances
Applying: scripts/spelling.txt: add "intialise(d)" pattern and fix typo instances
Applying: scripts/spelling.txt: add "comsume(r)" pattern and fix typo instances
Applying: scripts/spelling.txt: add "disble(d)" pattern and fix typo instances
Applying: scripts/spelling.txt: add "overide" pattern and fix typo instances
Applying: scripts/spelling.txt: add "overrided" pattern and fix typo instances
Applying: scripts/spelling.txt: add "configuartion" pattern and fix typo instances
Applying: scripts/spelling.txt: add "applys" pattern and fix typo instances
Applying: scripts/spelling.txt: add "explictely" pattern and fix typo instances
Applying: scripts/spelling.txt: add "omited" pattern and fix typo instances
Applying: scripts/spelling.txt: add "disassocation" pattern and fix typo instances
Applying: scripts/spelling.txt: add "deintialize(d)" pattern and fix typo instances
Applying: scripts/spelling.txt: add "overwritting" pattern and fix typo instances
Applying: scripts/spelling.txt: add "overwriten" pattern and fix typo instances
Applying: scripts/spelling.txt: add "therfore" pattern and fix typo instances
Applying: scripts/spelling.txt: add "followings" pattern and fix typo instances
Applying: scripts/spelling.txt: add some typo-words
Applying: lib/vsprintf.c: remove %Z support
Applying: checkpatch: warn when formats use %Z and suggest %z
Applying: checkpatchpl-warn-against-using-%z-fix
Applying: mm: add new mmgrab() helper
Applying: mm: add new mmget() helper
Applying: mm: use mmget_not_zero() helper
Applying: mm: clarify mm_struct.mm_{users,count} documentation
Applying: mm: add arch-independent testcases for RODATA
Applying: mm: testcases for RODATA: fix config dependency
Merging akpm/master (013dc6754a0e mm: testcases for RODATA: fix config dependency)

^ permalink raw reply

* Re: next-20170217 boot on POWER8 LPAR : WARNING @kernel/jump_label.c:287
From: Michael Ellerman @ 2017-02-22  5:38 UTC (permalink / raw)
  To: Jason Baron, Sachin Sant, Steven Rostedt; +Cc: linux-next, LKML, linuxppc-dev
In-Reply-To: <20c53e88-acf5-4c4f-cea9-4dd8745814b5@akamai.com>

Jason Baron <jbaron@akamai.com> writes:

> On 02/20/2017 10:05 PM, Sachin Sant wrote:
>>
>>> On 20-Feb-2017, at 8:27 PM, Jason Baron <jbaron@akamai.com
>>> <mailto:jbaron@akamai.com>> wrote:
>>>
>>> Hi,
>>>
>>> On 02/19/2017 09:07 AM, Sachin Sant wrote:
>>>> While booting next-20170217 on a POWER8 LPAR following
>>>> warning is displayed.
>>>>
>>>> Reverting the following commit helps boot cleanly.
>>>> commit 3821fd35b5 :  jump_label: Reduce the size of struct static_key
>>>>
>>>> [   11.393008] ------------[ cut here ]------------
>>>> [   11.393031] WARNING: CPU: 5 PID: 2890 at kernel/jump_label.c:287
>>>> static_key_set_entries.isra.10+0x3c/0x50
>>>
>>> Thanks for the report. So this is saying that the jump_entry table is
>>> not at least 4-byte aligned. I wonder if this fixes it up?
>>>
>>
>> Yes. With this patch the warning is gone.
>
> Hi,
>
> Thanks for testing. We probably need something like the following to 
> make sure we don't hit this on other arches. Steve - I will send 4 
> separate patches for this to get arch maintainers' acks for this?

What's the 4 byte alignment requirement from?

On 64-bit our JUMP_ENTRY_TYPE is 8 bytes, should we be aligning to 8
bytes?

> diff --git a/arch/powerpc/include/asm/jump_label.h 
> b/arch/powerpc/include/asm/jump_label.h
> index 9a287e0ac8b1..f870a85bac46 100644
> --- a/arch/powerpc/include/asm/jump_label.h
> +++ b/arch/powerpc/include/asm/jump_label.h
> @@ -24,6 +24,7 @@ static __always_inline bool arch_static_branch(struct 
> static_key *key, bool bran
>          asm_volatile_goto("1:\n\t"
>                   "nop # arch_static_branch\n\t"
>                   ".pushsection __jump_table,  \"aw\"\n\t"
> +                ".balign 4 \n\t"

Can you line those up vertically?

(That may just be an email artifact)

>                   JUMP_ENTRY_TYPE "1b, %l[l_yes], %c0\n\t"
>                   ".popsection \n\t"
>                   : :  "i" (&((char *)key)[branch]) : : l_yes);
> @@ -38,6 +39,7 @@ static __always_inline bool 
> arch_static_branch_jump(struct static_key *key, bool
>          asm_volatile_goto("1:\n\t"
>                   "b %l[l_yes] # arch_static_branch_jump\n\t"
>                   ".pushsection __jump_table,  \"aw\"\n\t"
> +                ".balign 4 \n\t"
>                   JUMP_ENTRY_TYPE "1b, %l[l_yes], %c0\n\t"
>                   ".popsection \n\t"
>                   : :  "i" (&((char *)key)[branch]) : : l_yes);
> @@ -63,6 +65,7 @@ struct jump_entry {
>   #define ARCH_STATIC_BRANCH(LABEL, KEY)         \
>   1098:  nop;                                    \
>          .pushsection __jump_table, "aw";        \
> +       .balign 4;                              \
>          FTR_ENTRY_LONG 1098b, LABEL, KEY;       \
>          .popsection
>   #endif

Otherwise that looks fine assuming 4 bytes is the correct alignment.

cheers

^ permalink raw reply

* Re: linux-next: manual merge of the net-next tree with the s390 tree
From: Daniel Borkmann @ 2017-02-22  6:33 UTC (permalink / raw)
  To: Stephen Rothwell, David Miller, Networking, Martin Schwidefsky,
	Heiko Carstens
  Cc: linux-next, linux-kernel
In-Reply-To: <20170222101516.2f516e2d@canb.auug.org.au>

On 02/22/2017 12:15 AM, Stephen Rothwell wrote:
> Hi all,
>
> Today's linux-next merge of the net-next tree got a conflict in:
>
>    arch/s390/net/bpf_jit_comp.c
>
> between commit:
>
>    9437964885f8 ("s390/bpf: remove redundant check for non-null image")
>
> from the s390 tree and commit:
>
>    9d876e79df6a ("bpf: fix unlocking of jited image when module ronx not set")
>
> from the net-next tree.
>
> I fixed it up (see below) and can carry the fix as necessary. This
> is now fixed as far as linux-next is concerned, but any non trivial
> conflicts should be mentioned to your upstream maintainer when your tree
> is submitted for merging.  You may also want to consider cooperating
> with the maintainer of the conflicting tree to minimise any particularly
> complex conflicts.

Looks good, thanks!

^ permalink raw reply

* Re: linux-next: manual merge of the kspp tree with the net-next tree
From: Daniel Borkmann @ 2017-02-22  6:35 UTC (permalink / raw)
  To: Stephen Rothwell, Kees Cook, David Miller, Networking
  Cc: linux-next, linux-kernel, Laura Abbott
In-Reply-To: <20170222110629.53d01cf5@canb.auug.org.au>

On 02/22/2017 01:06 AM, Stephen Rothwell wrote:
> Hi all,
>
> Today's linux-next merge of the kspp tree got a conflict in:
>
>    include/linux/filter.h
>
> between commit:
>
>    9d876e79df6a ("bpf: fix unlocking of jited image when module ronx not set")
>
> from the net-next tree and commit:
>
>    0f5bf6d0afe4 ("arch: Rename CONFIG_DEBUG_RODATA and CONFIG_DEBUG_MODULE_RONX")
>
> from the kspp tree.
>
> Hmmm, both these change the ifdef guards I have used the one from the
> net-next tree (CONFIG_ARCH_HAS_SET_MEMORY) for today, please let me know
> if that is not correct.

That's fine, thanks!

^ permalink raw reply

* Re: linux-next: manual merge of the kspp tree with the net-next tree
From: Daniel Borkmann @ 2017-02-22  6:37 UTC (permalink / raw)
  To: Stephen Rothwell, Kees Cook, David Miller, Networking
  Cc: linux-next, linux-kernel, Laura Abbott
In-Reply-To: <20170222105132.4abc18e8@canb.auug.org.au>

On 02/22/2017 12:51 AM, Stephen Rothwell wrote:
> Hi Kees,
>
> Today's linux-next merge of the kspp tree got a conflict in:
>
>    arch/arm/Kconfig
>
> between commit:
>
>    d2852a224050 ("arch: add ARCH_HAS_SET_MEMORY config")
>
> from the net-next tree and commit:
>
>    ad21fc4faa2a ("arch: Move CONFIG_DEBUG_RODATA and CONFIG_SET_MODULE_RONX to be common")
>
> from the kspp tree.
>
> I fixed it up (see below) and can carry the fix as necessary. This
> is now fixed as far as linux-next is concerned, but any non trivial
> conflicts should be mentioned to your upstream maintainer when your tree
> is submitted for merging.  You may also want to consider cooperating
> with the maintainer of the conflicting tree to minimise any particularly
> complex conflicts.

Also looks good to me.

^ permalink raw reply

* Re: Starting kvm/qemu guest crash kernel linux-next 0221 tree
From: Paolo Bonzini @ 2017-02-22  8:28 UTC (permalink / raw)
  To: Xiong Zhou, qemu-devel, kvm; +Cc: linux-kernel, linux-next
In-Reply-To: <20170222015243.bzcnin2xbygak4wl@XZHOUW.usersys.redhat.com>



On 22/02/2017 02:52, Xiong Zhou wrote:
> Hi,
> 
> Starting a guest begin to crash kernel on 0221 -next tree.
> 
> It's fine on 0220 tree.

Can you try commits a26d553400b30b6e0389f5c723c0fc6f7ea473da (0221) and
b95234c840045b7c72380fd14c59416af28fcb02 (0220)?

What is the guest and the QEMU command line?

Paolo

^ permalink raw reply

* Re: [tip:sched/core] sched/core: Add debugging code to catch missing update_rq_clock() calls
From: Wanpeng Li @ 2017-02-22  9:03 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Ross Zwisler, Mike Galbraith, Sachin Sant, Matt Fleming,
	Michael Ellerman, linuxppc-dev@lists.ozlabs.org,
	linux-next@vger.kernel.org, LKML
In-Reply-To: <20170202155506.GX6515@twins.programming.kicks-ass.net>

2017-02-02 23:55 GMT+08:00 Peter Zijlstra <peterz@infradead.org>:
> On Tue, Jan 31, 2017 at 10:22:47AM -0700, Ross Zwisler wrote:
>> On Tue, Jan 31, 2017 at 4:48 AM, Mike Galbraith <efault@gmx.de> wrote:
>> > On Tue, 2017-01-31 at 16:30 +0530, Sachin Sant wrote:
>
>
> Could some of you test this? It seems to cure things in my (very)
> limited testing.
>

Tested-by: Wanpeng Li <wanpeng.li@hotmail.com>

> ---
> diff --git a/kernel/sched/core.c b/kernel/sched/core.c
> index 96e4ccc..b773821 100644
> --- a/kernel/sched/core.c
> +++ b/kernel/sched/core.c
> @@ -5609,7 +5609,7 @@ static void migrate_tasks(struct rq *dead_rq)
>  {
>         struct rq *rq = dead_rq;
>         struct task_struct *next, *stop = rq->stop;
> -       struct rq_flags rf, old_rf;
> +       struct rq_flags rf;
>         int dest_cpu;
>
>         /*
> @@ -5628,7 +5628,9 @@ static void migrate_tasks(struct rq *dead_rq)
>          * class method both need to have an up-to-date
>          * value of rq->clock[_task]
>          */
> +       rq_pin_lock(rq, &rf);
>         update_rq_clock(rq);
> +       rq_unpin_lock(rq, &rf);
>
>         for (;;) {
>                 /*
> @@ -5641,7 +5643,7 @@ static void migrate_tasks(struct rq *dead_rq)
>                 /*
>                  * pick_next_task assumes pinned rq->lock.
>                  */
> -               rq_pin_lock(rq, &rf);
> +               rq_repin_lock(rq, &rf);
>                 next = pick_next_task(rq, &fake_task, &rf);
>                 BUG_ON(!next);
>                 next->sched_class->put_prev_task(rq, next);
> @@ -5670,13 +5672,6 @@ static void migrate_tasks(struct rq *dead_rq)
>                         continue;
>                 }
>
> -               /*
> -                * __migrate_task() may return with a different
> -                * rq->lock held and a new cookie in 'rf', but we need
> -                * to preserve rf::clock_update_flags for 'dead_rq'.
> -                */
> -               old_rf = rf;
> -
>                 /* Find suitable destination for @next, with force if needed. */
>                 dest_cpu = select_fallback_rq(dead_rq->cpu, next);
>
> @@ -5685,7 +5680,6 @@ static void migrate_tasks(struct rq *dead_rq)
>                         raw_spin_unlock(&rq->lock);
>                         rq = dead_rq;
>                         raw_spin_lock(&rq->lock);
> -                       rf = old_rf;
>                 }
>                 raw_spin_unlock(&next->pi_lock);
>         }

^ permalink raw reply

* next-20170222 build: 0 failures 9 warnings (next-20170222)
From: Build bot for Mark Brown @ 2017-02-22 11:00 UTC (permalink / raw)
  To: kernel-build-reports, linaro-kernel, linux-next

Tree/Branch: next-20170222
Git describe: next-20170222
Commit: 9fb8cda4e9 Add linux-next specific files for 20170222

Build Time: 160 min 12 sec

Passed:   10 / 10   (100.00 %)
Failed:    0 / 10   (  0.00 %)

Errors: 0
Warnings: 9
Section Mismatches: 0

-------------------------------------------------------------------------------
defconfigs with issues (other than build errors):
      9 warnings    0 mismatches  : arm-allmodconfig
      2 warnings    0 mismatches  : arm-multi_v7_defconfig

-------------------------------------------------------------------------------

Warnings Summary: 9
	  2 ../drivers/gpu/drm/sti/sti_vtg.c:392:22: warning: unused variable 'np' [-Wunused-variable]
	  2 ../drivers/gpu/drm/sti/sti_drv.c:120:13: warning: 'sti_drm_dbg_cleanup' defined but not used [-Wunused-function]
	  1 ../include/linux/dynamic_debug.h:126:3: warning: 'ept_cfg' may be used uninitialized in this function [-Wmaybe-uninitialized]
	  1 ../include/linux/device.h:1478:15: warning: passing argument 1 of 'platform_driver_unregister' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
	  1 ../include/linux/device.h:1473:20: warning: passing argument 1 of '__platform_driver_register' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
	  1 ../drivers/iio/adc/rcar-gyroadc.c:429:27: warning: 'num_channels' may be used uninitialized in this function [-Wmaybe-uninitialized]
	  1 ../drivers/iio/adc/rcar-gyroadc.c:428:23: warning: 'channels' may be used uninitialized in this function [-Wmaybe-uninitialized]
	  1 ../drivers/iio/adc/rcar-gyroadc.c:426:22: warning: 'sample_width' may be used uninitialized in this function [-Wmaybe-uninitialized]
	  1 ../drivers/iio/adc/rcar-gyroadc.c:398:26: warning: 'adcmode' may be used uninitialized in this function [-Wmaybe-uninitialized]



===============================================================================
Detailed per-defconfig build reports below:


-------------------------------------------------------------------------------
arm-allmodconfig : PASS, 0 errors, 9 warnings, 0 section mismatches

Warnings:
	../drivers/iio/adc/rcar-gyroadc.c:429:27: warning: 'num_channels' may be used uninitialized in this function [-Wmaybe-uninitialized]
	../drivers/iio/adc/rcar-gyroadc.c:426:22: warning: 'sample_width' may be used uninitialized in this function [-Wmaybe-uninitialized]
	../drivers/iio/adc/rcar-gyroadc.c:428:23: warning: 'channels' may be used uninitialized in this function [-Wmaybe-uninitialized]
	../drivers/iio/adc/rcar-gyroadc.c:398:26: warning: 'adcmode' may be used uninitialized in this function [-Wmaybe-uninitialized]
	../include/linux/device.h:1473:20: warning: passing argument 1 of '__platform_driver_register' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
	../include/linux/device.h:1478:15: warning: passing argument 1 of 'platform_driver_unregister' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
	../drivers/gpu/drm/sti/sti_vtg.c:392:22: warning: unused variable 'np' [-Wunused-variable]
	../drivers/gpu/drm/sti/sti_drv.c:120:13: warning: 'sti_drm_dbg_cleanup' defined but not used [-Wunused-function]
	../include/linux/dynamic_debug.h:126:3: warning: 'ept_cfg' may be used uninitialized in this function [-Wmaybe-uninitialized]

-------------------------------------------------------------------------------
arm-multi_v7_defconfig : PASS, 0 errors, 2 warnings, 0 section mismatches

Warnings:
	../drivers/gpu/drm/sti/sti_vtg.c:392:22: warning: unused variable 'np' [-Wunused-variable]
	../drivers/gpu/drm/sti/sti_drv.c:120:13: warning: 'sti_drm_dbg_cleanup' defined but not used [-Wunused-function]
-------------------------------------------------------------------------------

Passed with no errors, warnings or mismatches:

arm64-allnoconfig
arm64-allmodconfig
arm-multi_v5_defconfig
x86_64-defconfig
arm-allnoconfig
x86_64-allnoconfig
arm-multi_v4t_defconfig
arm64-defconfig

^ permalink raw reply

* Re: Starting kvm/qemu guest crash kernel linux-next 0221 tree
From: Xiong Zhou @ 2017-02-22 13:55 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Xiong Zhou, qemu-devel, kvm, linux-kernel, linux-next
In-Reply-To: <e59d5584-fa25-a925-65b8-7394f51c0390@redhat.com>

On Wed, Feb 22, 2017 at 09:28:21AM +0100, Paolo Bonzini wrote:
> 
> 
> On 22/02/2017 02:52, Xiong Zhou wrote:
> > Hi,
> > 
> > Starting a guest begin to crash kernel on 0221 -next tree.
> > 
> > It's fine on 0220 tree.

I reproduced only once. Now it's hard to reproduce.
> 
> Can you try commits a26d553400b30b6e0389f5c723c0fc6f7ea473da (0221) and

With above commit reverted by git revert -m 1, no panic so far.
But it's hard to reproduce.


> b95234c840045b7c72380fd14c59416af28fcb02 (0220)?
> 
> What is the guest and the QEMU command line?

It's a RHEL-7.3 guest on a RHEL-7.3+ host

cmdline:
    /usr/libexec/qemu-kvm -name 73h -S -machine pc-i440fx-rhel7.0.0,accel=kvm,usb=off,dump-guest-core=off -cpu Haswell,-hle,-rtm -m 8000 -realtime mlock=off -smp 8,sockets=8,cores=1,threads=1 -uuid aab09e0f-d48a-4223-9b81-35d4718d59fc -no-user-config -nodefaults -chardev socket,id=charmonitor,path=/var/lib/libvirt/qemu/domain-2-73h/monitor.sock,server,nowait -mon chardev=charmonitor,id=monitor,mode=control -rtc base=utc,driftfix=slew -global kvm-pit.lost_tick_policy=delay -no-hpet -no-shutdown -global PIIX4_PM.disable_s3=1 -global PIIX4_PM.disable_s4=1 -boot strict=on -device ich9-usb-ehci1,id=usb,bus=pci.0,addr=0x6.0x7 -device ich9-usb-uhci1,masterbus=usb.0,firstport=0,bus=pci.0,multifunction=on,addr=0x6 -device ich9-usb-uhci2,masterbus=usb.0,firstport=2,bus=pci.0,addr=0x6.0x1 -device ich
 9-usb-uhci3,masterbus=usb.0,firstport=4,bus=pci.0,addr=0x6.0x2 -device virtio-serial-pci,id=virtio-serial0,bus=pci.0,addr=0x5 -drive file=/var/lib/libvirt/images/rhel73.qcow2,format=qcow2,if=none,id=drive-ide0-0-0 -device ide-hd,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0,bootindex=1 -drive file=/var/lib/libvirt/images/73h.qcow2,format=qcow2,if=none,id=drive-ide0-0-1 -device ide-hd,bus=ide.0,unit=1,drive=drive-ide0-0-1,id=ide0-0-1 -drive file=/root/RHEL-7.2-20151030.0-Server-x86_64-dvd1.iso,format=raw,if=none,id=drive-ide0-1-0,readonly=on -device ide-cd,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0,bootindex=2 -netdev tap,fd=25,id=hostnet0 -device rtl8139,netdev=hostnet0,id=net0,mac=52:54:00:83:12:7b,bus=pci.0,addr=0x3 -chardev pty,id=charserial0 -device isa-serial,chardev=char
 serial0,id=serial0 -chardev spicevmc,id=charchannel0,name=vdagent -device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,id=channel0,name=com.redhat.spice.0 -spice port=5900,addr=127.0.0.1,disable-ticketing,image-compression=off,seamless-migration=on -vga qxl -global qxl-vga.ram_size=67108864 -global qxl-vga.vram_size=67108864 -global qxl-vga.vgamem_mb=16 -device intel-hda,id=sound0,bus=pci.0,addr=0x4 -device hda-duplex,id=sound0-codec0,bus=sound0.0,cad=0 -chardev spicevmc,id=charredir0,name=usbredir -device usb-redir,chardev=charredir0,id=redir0,bus=usb.0,port=1 -chardev spicevmc,id=charredir1,name=usbredir -device usb-redir,chardev=charredir1,id=redir1,bus=usb.0,port=2 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x7 -msg timestamp=on

Thanks,
Xiong

> 
> Paolo

^ permalink raw reply

* Re: linux-next: manual merge of the kselftest tree with the net-next tree
From: Shuah Khan @ 2017-02-22 14:54 UTC (permalink / raw)
  To: Stephen Rothwell, David Miller, Networking
  Cc: linux-next, linux-kernel, bamvor.zhangjian@huawei.com,
	Mickaël Salaün, Shuah Khan
In-Reply-To: <20170216142453.53d1f5e5@canb.auug.org.au>

On 02/15/2017 08:24 PM, Stephen Rothwell wrote:
> Hi Shuah,
> 
> Today's linux-next merge of the kselftest tree got a conflict in:
> 
>   tools/testing/selftests/bpf/Makefile
> 
> between commit:
> 
>   d498f8719a09 ("bpf: Rebuild bpf.o for any dependency update")
> 
> from the net-next tree and commit:
> 
>   88baa78d1f31 ("selftests: remove duplicated all and clean target")
> 
> from the kselftest tree.
> 
> I fixed it up (see below) and can carry the fix as necessary. This
> is now fixed as far as linux-next is concerned, but any non trivial
> conflicts should be mentioned to your upstream maintainer when your tree
> is submitted for merging.  You may also want to consider cooperating
> with the maintainer of the conflicting tree to minimise any particularly
> complex conflicts.
> 


Sorry to get back to you late. I was away on vacation last week.
Yes. Please let's plan upon carrying the fix.

thanks,
-- Shuah

^ permalink raw reply

* Re: next-20170217 boot on POWER8 LPAR : WARNING @kernel/jump_label.c:287
From: Jason Baron @ 2017-02-22 15:11 UTC (permalink / raw)
  To: Michael Ellerman, Sachin Sant, Steven Rostedt
  Cc: linux-next, LKML, linuxppc-dev
In-Reply-To: <877f4in5tn.fsf@concordia.ellerman.id.au>

On 02/22/2017 12:38 AM, Michael Ellerman wrote:
> Jason Baron <jbaron@akamai.com> writes:
> 
>> On 02/20/2017 10:05 PM, Sachin Sant wrote:
>>>
>>>> On 20-Feb-2017, at 8:27 PM, Jason Baron <jbaron@akamai.com
>>>> <mailto:jbaron@akamai.com>> wrote:
>>>>
>>>> Hi,
>>>>
>>>> On 02/19/2017 09:07 AM, Sachin Sant wrote:
>>>>> While booting next-20170217 on a POWER8 LPAR following
>>>>> warning is displayed.
>>>>>
>>>>> Reverting the following commit helps boot cleanly.
>>>>> commit 3821fd35b5 :  jump_label: Reduce the size of struct static_key
>>>>>
>>>>> [   11.393008] ------------[ cut here ]------------
>>>>> [   11.393031] WARNING: CPU: 5 PID: 2890 at kernel/jump_label.c:287
>>>>> static_key_set_entries.isra.10+0x3c/0x50
>>>>
>>>> Thanks for the report. So this is saying that the jump_entry table is
>>>> not at least 4-byte aligned. I wonder if this fixes it up?
>>>>
>>>
>>> Yes. With this patch the warning is gone.
>>
>> Hi,
>>
>> Thanks for testing. We probably need something like the following to 
>> make sure we don't hit this on other arches. Steve - I will send 4 
>> separate patches for this to get arch maintainers' acks for this?
> 
> What's the 4 byte alignment requirement from?
>

The 4 byte alignment is coming from this patch in linux-next:

https://lkml.org/lkml/2017/2/3/558

It reduces the size of 'struct static_key' by making use of the two
least significant bits of the static_key::entry pointer. Thus, the
jump_entry table needs to be 4 byte aligned to make it work. I added a
WARN_ON() to make sure the jump_entry table is in fact 4 byte aligned,
and that is what we hit here.

> On 64-bit our JUMP_ENTRY_TYPE is 8 bytes, should we be aligning to 8
> bytes?
> 

4 bytes should be sufficient and apparently fixes the WARN_ON() that was
hit.

>> diff --git a/arch/powerpc/include/asm/jump_label.h 
>> b/arch/powerpc/include/asm/jump_label.h
>> index 9a287e0ac8b1..f870a85bac46 100644
>> --- a/arch/powerpc/include/asm/jump_label.h
>> +++ b/arch/powerpc/include/asm/jump_label.h
>> @@ -24,6 +24,7 @@ static __always_inline bool arch_static_branch(struct 
>> static_key *key, bool bran
>>          asm_volatile_goto("1:\n\t"
>>                   "nop # arch_static_branch\n\t"
>>                   ".pushsection __jump_table,  \"aw\"\n\t"
>> +                ".balign 4 \n\t"
> 
> Can you line those up vertically?
> 
> (That may just be an email artifact)

sure will fix.

Thanks,

-Jason

> 
>>                   JUMP_ENTRY_TYPE "1b, %l[l_yes], %c0\n\t"
>>                   ".popsection \n\t"
>>                   : :  "i" (&((char *)key)[branch]) : : l_yes);
>> @@ -38,6 +39,7 @@ static __always_inline bool 
>> arch_static_branch_jump(struct static_key *key, bool
>>          asm_volatile_goto("1:\n\t"
>>                   "b %l[l_yes] # arch_static_branch_jump\n\t"
>>                   ".pushsection __jump_table,  \"aw\"\n\t"
>> +                ".balign 4 \n\t"
>>                   JUMP_ENTRY_TYPE "1b, %l[l_yes], %c0\n\t"
>>                   ".popsection \n\t"
>>                   : :  "i" (&((char *)key)[branch]) : : l_yes);
>> @@ -63,6 +65,7 @@ struct jump_entry {
>>   #define ARCH_STATIC_BRANCH(LABEL, KEY)         \
>>   1098:  nop;                                    \
>>          .pushsection __jump_table, "aw";        \
>> +       .balign 4;                              \
>>          FTR_ENTRY_LONG 1098b, LABEL, KEY;       \
>>          .popsection
>>   #endif
> 
> Otherwise that looks fine assuming 4 bytes is the correct alignment.
> 
> cheers
> 

^ permalink raw reply

* [PATCH] lpfc: add missing Kconfig NVME dependencies
From: James Smart @ 2017-02-22 16:20 UTC (permalink / raw)
  To: hare, martin.petersen, dick.kennedy, linux-next, sfr, linux-nvme,
	sagi, linux-scsi


add missing Kconfig NVME dependencies

Can't believe I missed posting this

-- james

Signed-off-by: James Smart <james.smart@broadcom.com>
---
 drivers/scsi/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
index d4023bf..2558434 100644
--- a/drivers/scsi/Kconfig
+++ b/drivers/scsi/Kconfig
@@ -1240,6 +1240,7 @@ config SCSI_LPFC
 	tristate "Emulex LightPulse Fibre Channel Support"
 	depends on PCI && SCSI
 	depends on SCSI_FC_ATTRS
+	depends on NVME_FC && NVME_TARGET_FC
 	select CRC_T10DIF
 	help
           This lpfc driver supports the Emulex LightPulse
-- 
2.5.0

^ permalink raw reply related

* Re: Please add extable branch to linux-next
From: Paul Gortmaker @ 2017-02-22 18:19 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: linux-next
In-Reply-To: <20170125095006.141e71c8@canb.auug.org.au>

[Re: Please add extable branch to linux-next] On 25/01/2017 (Wed 09:50) Stephen Rothwell wrote:

> Hi Paul,
> 
> On Tue, 24 Jan 2017 16:42:08 -0500 Paul Gortmaker <paul.gortmaker@windriver.com> wrote:
> >
> > Would you please add the "extable" branch to linux-next for a once around
> > addition from this repo?
> > 
> > git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux.git
> 
> Added from today.  If I forget to remove it once it is merged, please
> just remind me, thanks.

This has now been merged and can be removed.

Thanks,
Paul.

^ permalink raw reply

* Re: [PATCH] lpfc: add missing Kconfig NVME dependencies
From: Sagi Grimberg @ 2017-02-22 19:35 UTC (permalink / raw)
  To: James Smart, hare, martin.petersen, dick.kennedy, linux-next, sfr,
	linux-nvme, linux-scsi
In-Reply-To: <58adba5f.BoP49Cv2S5zD9ZuD%jsmart2021@gmail.com>


> add missing Kconfig NVME dependencies
>
> Can't believe I missed posting this
>
> -- james

Heh, the this sort of comment should come after
the '---' separator (below) unless you want it to live forever
in the git log...

>
> Signed-off-by: James Smart <james.smart@broadcom.com>
> ---

[here]

>  drivers/scsi/Kconfig | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
> index d4023bf..2558434 100644
> --- a/drivers/scsi/Kconfig
> +++ b/drivers/scsi/Kconfig
> @@ -1240,6 +1240,7 @@ config SCSI_LPFC
>  	tristate "Emulex LightPulse Fibre Channel Support"
>  	depends on PCI && SCSI
>  	depends on SCSI_FC_ATTRS
> +	depends on NVME_FC && NVME_TARGET_FC
>  	select CRC_T10DIF
>  	help
>            This lpfc driver supports the Emulex LightPulse
>

^ permalink raw reply


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox