Netdev List
 help / color / mirror / Atom feed
* Re: [PATCH net v2 2/3] xfrm: Add an activate() offload dev op
From: Steffen Klassert @ 2017-12-01  7:09 UTC (permalink / raw)
  To: avivh; +Cc: Herbert Xu, Boris Pismenny, Yossi Kuperman, Yevgeny Kliteynik,
	netdev
In-Reply-To: <1511891742-84759-2-git-send-email-avivh@mellanox.com>

On Tue, Nov 28, 2017 at 07:55:41PM +0200, avivh@mellanox.com wrote:
> From: Aviv Heller <avivh@mellanox.com>
> 
> Adding the state to the offload device prior to replay init in
> xfrm_state_construct() will result in NULL dereference if a matching
> ESP packet is received in between.
> 
> In order to inhibit driver offload logic from processing the state's
> packets prior to the xfrm_state object being completely initialized and
> added to the SADBs, a new activate() operation was added to inform the
> driver the aforementioned conditions have been met.

We discussed this already some time ago, and I still think that
we should fix this by setting XFRM_STATE_VALID only after the
state is fully initialized.

^ permalink raw reply

* Re: [PATCH 3/3] tap: free skb if flags error
From: Jason Wang @ 2017-12-01  7:10 UTC (permalink / raw)
  To: wexu, virtualization, netdev, linux-kernel; +Cc: mst, mjrosato
In-Reply-To: <1512107669-27572-4-git-send-email-wexu@redhat.com>



On 2017年12月01日 13:54, wexu@redhat.com wrote:
> From: Wei Xu <wexu@redhat.com>
>
> tap_recvmsg() supports accepting skb by msg_control after
> commit 3b4ba04acca8 ("tap: support receiving skb from msg_control"),
> the skb if presented should be freed within the function, otherwise
> it would be leaked.
>
> Signed-off-by: Wei Xu <wexu@redhat.com>
> Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com>
> ---
>   drivers/net/tap.c | 6 +++++-
>   1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/tap.c b/drivers/net/tap.c
> index e9489b8..1c66b75 100644
> --- a/drivers/net/tap.c
> +++ b/drivers/net/tap.c
> @@ -1154,9 +1154,13 @@ static int tap_recvmsg(struct socket *sock, struct msghdr *m,
>   		       size_t total_len, int flags)
>   {
>   	struct tap_queue *q = container_of(sock, struct tap_queue, sock);
> +	struct sk_buff *skb = m->msg_control;
>   	int ret;
> -	if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
> +	if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) {
> +		if (skb)
> +			kfree_skb(skb);
>   		return -EINVAL;
> +	}
>   	ret = tap_do_read(q, &m->msg_iter, flags & MSG_DONTWAIT,
>   			  m->msg_control);

Need to deal with iov_iterator_count() == 0.

Thanks

>   	if (ret > total_len) {

^ permalink raw reply

* Re: [PATCH 1/3] vhost: fix skb leak in handle_rx()
From: Jason Wang @ 2017-12-01  7:11 UTC (permalink / raw)
  To: wexu, virtualization, netdev, linux-kernel; +Cc: mjrosato, mst
In-Reply-To: <1512107669-27572-2-git-send-email-wexu@redhat.com>



On 2017年12月01日 13:54, wexu@redhat.com wrote:
> From: Wei Xu <wexu@redhat.com>
>
> Matthew found a roughly 40% tcp throughput regression with commit
> c67df11f(vhost_net: try batch dequing from skb array) as discussed
> in the following thread:
> https://www.mail-archive.com/netdev@vger.kernel.org/msg187936.html
>
> Eventually we figured out that it was a skb leak in handle_rx()
> when sending packets to the VM. This usually happens when a guest
> can not drain out vq as fast as vhost fills in, afterwards it sets
> off the traffic jam and leaks skb(s) which occurs as no headcount
> to send on the vq from vhost side.
>
> This can be avoided by making sure we have got enough headcount
> before actually consuming a skb from the batched rx array while
> transmitting, which is simply done by moving checking the zero
> headcount a bit ahead.
>
> Signed-off-by: Wei Xu <wexu@redhat.com>
> Reported-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com>
> ---
>   drivers/vhost/net.c | 20 ++++++++++----------
>   1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c
> index 8d626d7..c7bdeb6 100644
> --- a/drivers/vhost/net.c
> +++ b/drivers/vhost/net.c
> @@ -778,16 +778,6 @@ static void handle_rx(struct vhost_net *net)
>   		/* On error, stop handling until the next kick. */
>   		if (unlikely(headcount < 0))
>   			goto out;
> -		if (nvq->rx_array)
> -			msg.msg_control = vhost_net_buf_consume(&nvq->rxq);
> -		/* On overrun, truncate and discard */
> -		if (unlikely(headcount > UIO_MAXIOV)) {
> -			iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
> -			err = sock->ops->recvmsg(sock, &msg,
> -						 1, MSG_DONTWAIT | MSG_TRUNC);
> -			pr_debug("Discarded rx packet: len %zd\n", sock_len);
> -			continue;
> -		}
>   		/* OK, now we need to know about added descriptors. */
>   		if (!headcount) {
>   			if (unlikely(vhost_enable_notify(&net->dev, vq))) {
> @@ -800,6 +790,16 @@ static void handle_rx(struct vhost_net *net)
>   			 * they refilled. */
>   			goto out;
>   		}
> +		if (nvq->rx_array)
> +			msg.msg_control = vhost_net_buf_consume(&nvq->rxq);
> +		/* On overrun, truncate and discard */
> +		if (unlikely(headcount > UIO_MAXIOV)) {
> +			iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1);
> +			err = sock->ops->recvmsg(sock, &msg,
> +						 1, MSG_DONTWAIT | MSG_TRUNC);
> +			pr_debug("Discarded rx packet: len %zd\n", sock_len);
> +			continue;
> +		}
>   		/* We don't need to be notified again. */
>   		iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len);
>   		fixup = msg.msg_iter;

I suggest to reorder this patch to 3/3.

Thanks
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply

* Re: [RFC PATCH] net_sched: bulk free tcf_block
From: Cong Wang @ 2017-12-01  7:14 UTC (permalink / raw)
  To: Paolo Abeni
  Cc: Linux Kernel Network Developers, Jamal Hadi Salim, Jiri Pirko,
	David S. Miller
In-Reply-To: <9b2f686e8a08de829d5be050770d16e93ba5d797.1511965365.git.pabeni@redhat.com>

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

On Wed, Nov 29, 2017 at 6:25 AM, Paolo Abeni <pabeni@redhat.com> wrote:
> Currently deleting qdisc with a large number of children and filters
> can take a lot of time:
>
> tc qdisc add dev lo root htb
> for I in `seq 1 1000`; do
>         tc class add dev lo parent 1: classid 1:$I htb rate 100kbit
>         tc qdisc add dev lo parent 1:$I handle $((I + 1)): htb
>         for J in `seq 1 10`; do
>                 tc filter add dev lo parent $((I + 1)): u32 match ip src 1.1.1.$J
>         done
> done
> time tc qdisc del dev root
>
> real    0m54.764s
> user    0m0.023s
> sys     0m0.000s
>
> This is due to the multiple rcu_barrier() calls, one for each tcf_block
> freed, invoked with the rtnl lock held. Most other network related
> tasks will block in this timespan.

Yeah, Eric pointed out this too and I already had an idea to cure
this.

As I already mentioned before, my idea is to refcnt the tcf block
so that we don't need to worry about which is the last. Something
like the attached patch below, note it is PoC _only_, not even
compiled yet. And I am not 100% sure it works either, I will look
deeper tomorrow.

Thanks.

[-- Attachment #2: tcf-block-refcnt.diff --]
[-- Type: text/plain, Size: 1874 bytes --]

diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h
index 65d0d25f2648..b051c519fd48 100644
--- a/include/net/sch_generic.h
+++ b/include/net/sch_generic.h
@@ -279,6 +279,7 @@ struct tcf_block {
 	struct Qdisc *q;
 	struct list_head cb_list;
 	struct work_struct work;
+	unsigned int nr_chains;
 };
 
 static inline void qdisc_cb_private_validate(const struct sk_buff *skb, int sz)
diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c
index ddcf04b4ab43..da74b311f09e 100644
--- a/net/sched/cls_api.c
+++ b/net/sched/cls_api.c
@@ -190,6 +190,7 @@ static struct tcf_chain *tcf_chain_create(struct tcf_block *block,
 		return NULL;
 	list_add_tail(&chain->list, &block->chain_list);
 	chain->block = block;
+	block->nr_chains++;
 	chain->index = chain_index;
 	chain->refcnt = 1;
 	return chain;
@@ -218,8 +219,12 @@ static void tcf_chain_flush(struct tcf_chain *chain)
 
 static void tcf_chain_destroy(struct tcf_chain *chain)
 {
+	struct tcf_block *block = chain->block;
+
 	list_del(&chain->list);
 	kfree(chain);
+	if (!--block->nr_chains)
+		kfree(block);
 }
 
 static void tcf_chain_hold(struct tcf_chain *chain)
@@ -341,7 +346,6 @@ static void tcf_block_put_final(struct work_struct *work)
 	list_for_each_entry_safe(chain, tmp, &block->chain_list, list)
 		tcf_chain_put(chain);
 	rtnl_unlock();
-	kfree(block);
 }
 
 /* XXX: Standalone actions are not allowed to jump to any chain, and bound
@@ -365,11 +369,6 @@ void tcf_block_put_ext(struct tcf_block *block, struct Qdisc *q,
 	tcf_block_offload_unbind(block, q, ei);
 
 	INIT_WORK(&block->work, tcf_block_put_final);
-	/* Wait for existing RCU callbacks to cool down, make sure their works
-	 * have been queued before this. We can not flush pending works here
-	 * because we are holding the RTNL lock.
-	 */
-	rcu_barrier();
 	tcf_queue_work(&block->work);
 }
 EXPORT_SYMBOL(tcf_block_put_ext);

^ permalink raw reply related

* With All Due Respect!!!
From: Mrs.Louisa Benicio @ 2017-12-01  7:23 UTC (permalink / raw)


My Sincere Greetings,

I am (MRS.LOUISA BENICIO); I have decided to donate what I have to you
/ Motherless babies/ Less privileged/ Churches/ Widows' because I am
dying and diagnosed for cancer for two years now. I have been touched
by Almighty God to donate from what I have inherited from my late
husband to you for good work of Merciful God. I have asked Almighty
God to forgive me and believe he has because he is a Merciful God I
will be going in for another surgery soonest.

I found your email address through random search from internet and I
decided to contact you and to will/donate the sum of ($5.5million
Dollars) to you for the good work of God Almighty, and also to help
the motherless and less privilege and also forth assistance of the
widows.

I wish you all the best and May Almighty God blesses you abundantly,
and please uses the funds judiciously and always extends the good work
to others. As soon you get back to me, I shall give you info on what I
need from you then you will contact the bank and tell them I have
willed those properties to you by quoting my personal file routing and
account information. And I have also notified the bank that I am
willing that properties to you for a good, effective and prudent work.
I know I don't know you but I have been directed to do this by God
Almighty.

Please if you would be able to use the funds for the work of humanity
as I have stated hear to fulfilled my late husband wishes  kindly
reply back to me through this email address
(mrslouisabenicio@yahoo.com) for more details.

Yours Faithfully,
MRS.LOUISA BENICIO.

^ permalink raw reply

* Re: KASAN: stack-out-of-bounds Read in xfrm_state_find (3)
From: Steffen Klassert @ 2017-12-01  7:27 UTC (permalink / raw)
  To: syzbot; +Cc: davem, herbert, linux-kernel, netdev, syzkaller-bugs
In-Reply-To: <001a11445ed4514b28055e947b48@google.com>

On Wed, Nov 22, 2017 at 08:05:00AM -0800, syzbot wrote:
> syzkaller has found reproducer for the following crash on
> 0c86a6bd85ff0629cd2c5141027fc1c8bb6cde9c
> git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git/master
> compiler: gcc (GCC) 7.1.1 20170620
> .config is attached
> Raw console output is attached.
> C reproducer is attached
> syzkaller reproducer is attached. See https://goo.gl/kgGztJ
> for information about syzkaller reproducers
> 
> 
> BUG: KASAN: stack-out-of-bounds in xfrm_state_find+0x30fc/0x3230
> net/xfrm/xfrm_state.c:1051
> Read of size 4 at addr ffff8801ccaa7af8 by task syzkaller231684/3045

The patch below should fix this. I plan to apply it to the ipsec tree
after some advanced testing.

Subject: [PATCH RFC] xfrm: Fix stack-out-of-bounds with misconfigured transport
 mode policies.

On policies with a transport mode template, we pass the addresses
from the flowi to xfrm_state_find(), assuming that the IP addresses
(and address family) don't change during transformation.

Unfortunately our policy template validation is not strict enough.
It is possible to configure policies with transport mode template
where the address family of the template does not match the selectors
address family. This lead to stack-out-of-bound reads because
we compare arddesses of the wrong family. Fix this by refusing
such a configuration, address family can not change on transport
mode.

We use the assumption that, on transport mode, the first templates
address family must match the address family of the policy selector.
Subsequent transport mode templates must mach the address family of
the previous template.

Reported-by: syzbot <syzkaller@googlegroups.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
---
 net/xfrm/xfrm_user.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c
index 983b0233767b..57ad016ae675 100644
--- a/net/xfrm/xfrm_user.c
+++ b/net/xfrm/xfrm_user.c
@@ -1419,11 +1419,14 @@ static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
 
 static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
 {
+	u16 prev_family;
 	int i;
 
 	if (nr > XFRM_MAX_DEPTH)
 		return -EINVAL;
 
+	prev_family = family;
+
 	for (i = 0; i < nr; i++) {
 		/* We never validated the ut->family value, so many
 		 * applications simply leave it at zero.  The check was
@@ -1435,6 +1438,12 @@ static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
 		if (!ut[i].family)
 			ut[i].family = family;
 
+		if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
+		    (ut[i].family != prev_family))
+			return -EINVAL;
+
+		prev_family = ut[i].family;
+
 		switch (ut[i].family) {
 		case AF_INET:
 			break;
-- 
2.14.1

^ permalink raw reply related

* Re: Creating cyclecounter and lock member in timecounter structure [ Was Re: [RFC 1/4] drm/i915/perf: Add support to correlate GPU timestamp with system time]
From: Sagar Arun Kamble @ 2017-12-01  7:42 UTC (permalink / raw)
  To: Saeed Mahameed
  Cc: Thomas Gleixner, John Stultz, Stephen Boyd, Chris Wilson,
	linux-kernel, Linux Netdev List,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA
In-Reply-To: <CALzJLG9JXOnr3EQ2zLcmwKx8S9-CGONRRBSAd9XwHdemEgOn2A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>



On 12/1/2017 2:33 AM, Saeed Mahameed wrote:
> On Mon, Nov 27, 2017 at 2:05 AM, Sagar Arun Kamble
> <sagar.a.kamble-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> wrote:
>>
>> On 11/24/2017 7:01 PM, Thomas Gleixner wrote:
>>> On Fri, 24 Nov 2017, Sagar Arun Kamble wrote:
>>>> On 11/24/2017 12:29 AM, Thomas Gleixner wrote:
>>>>> On Thu, 23 Nov 2017, Sagar Arun Kamble wrote:
>>>>>> We needed inputs on possible optimization that can be done to
>>>>>> timecounter/cyclecounter structures/usage.
>>>>>> This mail is in response to review of patch
>>>>>> https://patchwork.freedesktop.org/patch/188448/.
>>>>>>
>>>>>> As Chris's observation below, about dozen of timecounter users in the
>>>>>> kernel
>>>>>> have below structures
>>>>>> defined individually:
>>>>>>
>>>>>> spinlock_t lock;
>>>>>> struct cyclecounter cc;
>>>>>> struct timecounter tc;
>>>>>>
>>>>>> Can we move lock and cc to tc? That way it will be convenient.
>>>>>> Also it will allow unifying the locking/overflow watchdog handling
>>>>>> across
>>>>>> all
>>>>>> drivers.
>>>>> Looks like none of the timecounter usage sites has a real need to
>>>>> separate
>>>>> timecounter and cyclecounter.
>>>> Yes. Will share patch for this change.
>>>>
>>>>> The lock is a different question. The locking of the various drivers
>>>>> differs and I have no idea how you want to handle that. Just sticking
>>>>> the
>>>>> lock into the datastructure and then not making use of it in the
>>>>> timercounter code and leave it to the callsites does not make sense.
>>>> Most of the locks are held around timecounter_read. In some instances it
>>>> is held when cyclecounter is updated standalone or is updated along with
>>>> timecounter calls.  Was thinking if we move the lock in timecounter
>>>> functions, drivers just have to do locking around its operations on
>>>> cyclecounter. But then another problem I see is there are variation of
>>>> locking calls like lock_irqsave, lock_bh, write_lock_irqsave (some using
>>>> rwlock_t). Should this all locking be left to driver only then?
>>> You could have the lock in the struct and protect the inner workings in
>>> the
>>> related core functions.
>>>
>>> That might remove locking requirements from some of the callers and the
>>> others still have their own thing around it.
>>
>> For drivers having static/fixed cyclecounter, we can rely only on lock
>> inside timecounter.
>> Most of the network drivers update cyclecounter at runtime and they will
>> have to rely on two locks if
>> we add one to timecounter. This may not be efficient for them. Also the lock
>> in timecounter has to be less restrictive (may be seqlock) I guess.
>>
>> Cc'd Mellanox list for inputs on this.
>>
>> I have started feeling that the current approach of drivers managing the
>> locks is the right one so better leave the
>> lock out of timecounter.
>>
> I agree here,
>
> In mlx5 we rely on our own read/write lock to serialize access to
> mlx5_clock struct (mlx5 timecounter and cyclecounter).
> the access is not as simple as
> lock()
> call time_counter_API
> unlock()
>
> Sometimes we also explicitly update/adjust timecycles counters with
> mlx5 specific calculations after we read the timecounter all inside
> our lock.
> e.g.
> @mlx5_ptp_adjfreq()
>
>      write_lock_irqsave(&clock->lock, flags);
>      timecounter_read(&clock->tc);
>      clock->cycles.mult = neg_adj ? clock->nominal_c_mult - diff :
>                         clock->nominal_c_mult + diff;
>      write_unlock_irqrestore(&clock->lock, flags);
>
> So i don't think it will be a simple task to have a generic thread
> safe timecounter API, without the need to specifically adjust it for
> all driver use-cases.
> Also as said above, in runtime it is not obvious in which context the
> timecounter will be accessed irq/soft irq/user.
>
> let's keep it as is, and let the driver decide which locking scheme is
> most suitable for it.

Yes. Thanks for your inputs Saeed.

Regards
Sagar

>
> Thanks,
> Saeed.
>
>>> Thanks,
>>>
>>>          tglx
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
>> the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply

* [PATCH 1/1] timecounter: Make cyclecounter struct part of timecounter struct
From: Sagar Arun Kamble @ 2017-12-01  7:47 UTC (permalink / raw)
  To: linux-kernel-u79uwXL29TY76Z2rM5mHXA
  Cc: Sagar Arun Kamble, Chris Wilson, John Stultz, Thomas Gleixner,
	Stephen Boyd, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	netdev-u79uwXL29TY76Z2rM5mHXA,
	intel-wired-lan-qjLDD68F18P21nG7glBr7A,
	linux-rdma-u79uwXL29TY76Z2rM5mHXA,
	alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
	kvmarm-FPEHb7Xf0XXUo1n7N8X6UoWGPAHP3yOg

There is no real need for the users of timecounters to define cyclecounter
and timecounter variables separately. Since timecounter will always be
based on cyclecounter, have cyclecounter struct as member of timecounter
struct.

Suggested-by: Chris Wilson <chris-Y6uKTt2uX1cEflXRtASbqLVCufUGDwFn@public.gmane.org>
Signed-off-by: Sagar Arun Kamble <sagar.a.kamble-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Chris Wilson <chris-Y6uKTt2uX1cEflXRtASbqLVCufUGDwFn@public.gmane.org>
Cc: John Stultz <john.stultz-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Cc: Thomas Gleixner <tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org>
Cc: Stephen Boyd <sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: intel-wired-lan-qjLDD68F18P21nG7glBr7A@public.gmane.org
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw@public.gmane.org
Cc: kvmarm-FPEHb7Xf0XXUo1n7N8X6UoWGPAHP3yOg@public.gmane.org
---
 arch/microblaze/kernel/timer.c                     | 20 ++++++------
 drivers/clocksource/arm_arch_timer.c               | 19 ++++++------
 drivers/net/ethernet/amd/xgbe/xgbe-dev.c           |  3 +-
 drivers/net/ethernet/amd/xgbe/xgbe-ptp.c           |  9 +++---
 drivers/net/ethernet/amd/xgbe/xgbe.h               |  1 -
 drivers/net/ethernet/broadcom/bnx2x/bnx2x.h        |  1 -
 drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c   | 20 ++++++------
 drivers/net/ethernet/freescale/fec.h               |  1 -
 drivers/net/ethernet/freescale/fec_ptp.c           | 30 +++++++++---------
 drivers/net/ethernet/intel/e1000e/e1000.h          |  1 -
 drivers/net/ethernet/intel/e1000e/netdev.c         | 27 ++++++++--------
 drivers/net/ethernet/intel/e1000e/ptp.c            |  2 +-
 drivers/net/ethernet/intel/igb/igb.h               |  1 -
 drivers/net/ethernet/intel/igb/igb_ptp.c           | 25 ++++++++-------
 drivers/net/ethernet/intel/ixgbe/ixgbe.h           |  1 -
 drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c       | 17 +++++-----
 drivers/net/ethernet/mellanox/mlx4/en_clock.c      | 28 ++++++++---------
 drivers/net/ethernet/mellanox/mlx4/mlx4_en.h       |  1 -
 .../net/ethernet/mellanox/mlx5/core/lib/clock.c    | 34 ++++++++++----------
 drivers/net/ethernet/qlogic/qede/qede_ptp.c        | 20 ++++++------
 drivers/net/ethernet/ti/cpts.c                     | 36 ++++++++++++----------
 drivers/net/ethernet/ti/cpts.h                     |  1 -
 include/linux/mlx5/driver.h                        |  1 -
 include/linux/timecounter.h                        |  4 +--
 include/sound/hdaudio.h                            |  1 -
 kernel/time/timecounter.c                          | 28 ++++++++---------
 sound/hda/hdac_stream.c                            |  7 +++--
 virt/kvm/arm/arch_timer.c                          |  6 ++--
 28 files changed, 163 insertions(+), 182 deletions(-)

diff --git a/arch/microblaze/kernel/timer.c b/arch/microblaze/kernel/timer.c
index 7de941c..b7f89e9 100644
--- a/arch/microblaze/kernel/timer.c
+++ b/arch/microblaze/kernel/timer.c
@@ -199,27 +199,25 @@ static u64 xilinx_read(struct clocksource *cs)
 	return (u64)xilinx_clock_read();
 }
 
-static struct timecounter xilinx_tc = {
-	.cc = NULL,
-};
-
 static u64 xilinx_cc_read(const struct cyclecounter *cc)
 {
 	return xilinx_read(NULL);
 }
 
-static struct cyclecounter xilinx_cc = {
-	.read = xilinx_cc_read,
-	.mask = CLOCKSOURCE_MASK(32),
-	.shift = 8,
+static struct timecounter xilinx_tc = {
+	.cc.read = xilinx_cc_read,
+	.cc.mask = CLOCKSOURCE_MASK(32),
+	.cc.mult = 0,
+	.cc.shift = 8,
 };
 
 static int __init init_xilinx_timecounter(void)
 {
-	xilinx_cc.mult = div_sc(timer_clock_freq, NSEC_PER_SEC,
-				xilinx_cc.shift);
+	struct cyclecounter *cc = &xilinx_tc.cc;
+
+	cc->mult = div_sc(timer_clock_freq, NSEC_PER_SEC, cc->shift);
 
-	timecounter_init(&xilinx_tc, &xilinx_cc, sched_clock());
+	timecounter_init(&xilinx_tc, sched_clock());
 
 	return 0;
 }
diff --git a/drivers/clocksource/arm_arch_timer.c b/drivers/clocksource/arm_arch_timer.c
index 57cb2f0..31543e5 100644
--- a/drivers/clocksource/arm_arch_timer.c
+++ b/drivers/clocksource/arm_arch_timer.c
@@ -179,11 +179,6 @@ static u64 arch_counter_read_cc(const struct cyclecounter *cc)
 	.flags	= CLOCK_SOURCE_IS_CONTINUOUS,
 };
 
-static struct cyclecounter cyclecounter __ro_after_init = {
-	.read	= arch_counter_read_cc,
-	.mask	= CLOCKSOURCE_MASK(56),
-};
-
 struct ate_acpi_oem_info {
 	char oem_id[ACPI_OEM_ID_SIZE + 1];
 	char oem_table_id[ACPI_OEM_TABLE_ID_SIZE + 1];
@@ -915,7 +910,10 @@ static u64 arch_counter_get_cntvct_mem(void)
 	return ((u64) vct_hi << 32) | vct_lo;
 }
 
-static struct arch_timer_kvm_info arch_timer_kvm_info;
+static struct arch_timer_kvm_info arch_timer_kvm_info = {
+	.timecounter.cc.read = arch_counter_read_cc,
+	.timecounter.cc.mask = CLOCKSOURCE_MASK(56),
+};
 
 struct arch_timer_kvm_info *arch_timer_get_kvm_info(void)
 {
@@ -925,6 +923,7 @@ struct arch_timer_kvm_info *arch_timer_get_kvm_info(void)
 static void __init arch_counter_register(unsigned type)
 {
 	u64 start_count;
+	struct cyclecounter *cc = &arch_timer_kvm_info.timecounter.cc;
 
 	/* Register the CP15 based counter if we have one */
 	if (type & ARCH_TIMER_TYPE_CP15) {
@@ -943,10 +942,10 @@ static void __init arch_counter_register(unsigned type)
 		clocksource_counter.flags |= CLOCK_SOURCE_SUSPEND_NONSTOP;
 	start_count = arch_timer_read_counter();
 	clocksource_register_hz(&clocksource_counter, arch_timer_rate);
-	cyclecounter.mult = clocksource_counter.mult;
-	cyclecounter.shift = clocksource_counter.shift;
-	timecounter_init(&arch_timer_kvm_info.timecounter,
-			 &cyclecounter, start_count);
+
+	cc->mult = clocksource_counter.mult;
+	cc->shift = clocksource_counter.shift;
+	timecounter_init(&arch_timer_kvm_info.timecounter, start_count);
 
 	/* 56 bits minimum, so we assume worst case rollover */
 	sched_clock_register(arch_timer_read_counter, 56, arch_timer_rate);
diff --git a/drivers/net/ethernet/amd/xgbe/xgbe-dev.c b/drivers/net/ethernet/amd/xgbe/xgbe-dev.c
index e107e18..5005c87 100644
--- a/drivers/net/ethernet/amd/xgbe/xgbe-dev.c
+++ b/drivers/net/ethernet/amd/xgbe/xgbe-dev.c
@@ -1622,8 +1622,7 @@ static int xgbe_config_tstamp(struct xgbe_prv_data *pdata,
 	xgbe_set_tstamp_time(pdata, 0, 0);
 
 	/* Initialize the timecounter */
-	timecounter_init(&pdata->tstamp_tc, &pdata->tstamp_cc,
-			 ktime_to_ns(ktime_get_real()));
+	timecounter_init(&pdata->tstamp_tc, ktime_to_ns(ktime_get_real()));
 
 	return 0;
 }
diff --git a/drivers/net/ethernet/amd/xgbe/xgbe-ptp.c b/drivers/net/ethernet/amd/xgbe/xgbe-ptp.c
index d06d260..5ea4edf 100644
--- a/drivers/net/ethernet/amd/xgbe/xgbe-ptp.c
+++ b/drivers/net/ethernet/amd/xgbe/xgbe-ptp.c
@@ -126,7 +126,7 @@ static u64 xgbe_cc_read(const struct cyclecounter *cc)
 {
 	struct xgbe_prv_data *pdata = container_of(cc,
 						   struct xgbe_prv_data,
-						   tstamp_cc);
+						   tstamp_tc.cc);
 	u64 nsec;
 
 	nsec = pdata->hw_if.get_tstamp_time(pdata);
@@ -211,7 +211,7 @@ static int xgbe_settime(struct ptp_clock_info *info,
 
 	spin_lock_irqsave(&pdata->tstamp_lock, flags);
 
-	timecounter_init(&pdata->tstamp_tc, &pdata->tstamp_cc, nsec);
+	timecounter_init(&pdata->tstamp_tc, nsec);
 
 	spin_unlock_irqrestore(&pdata->tstamp_lock, flags);
 
@@ -228,7 +228,7 @@ void xgbe_ptp_register(struct xgbe_prv_data *pdata)
 {
 	struct ptp_clock_info *info = &pdata->ptp_clock_info;
 	struct ptp_clock *clock;
-	struct cyclecounter *cc = &pdata->tstamp_cc;
+	struct cyclecounter *cc = &pdata->tstamp_tc.cc;
 	u64 dividend;
 
 	snprintf(info->name, sizeof(info->name), "%s",
@@ -263,8 +263,7 @@ void xgbe_ptp_register(struct xgbe_prv_data *pdata)
 	cc->mult = 1;
 	cc->shift = 0;
 
-	timecounter_init(&pdata->tstamp_tc, &pdata->tstamp_cc,
-			 ktime_to_ns(ktime_get_real()));
+	timecounter_init(&pdata->tstamp_tc, ktime_to_ns(ktime_get_real()));
 
 	/* Disable all timestamping to start */
 	XGMAC_IOWRITE(pdata, MAC_TSCR, 0);
diff --git a/drivers/net/ethernet/amd/xgbe/xgbe.h b/drivers/net/ethernet/amd/xgbe/xgbe.h
index ad102c8..2445103 100644
--- a/drivers/net/ethernet/amd/xgbe/xgbe.h
+++ b/drivers/net/ethernet/amd/xgbe/xgbe.h
@@ -1168,7 +1168,6 @@ struct xgbe_prv_data {
 	struct ptp_clock_info ptp_clock_info;
 	struct ptp_clock *ptp_clock;
 	struct hwtstamp_config tstamp_config;
-	struct cyclecounter tstamp_cc;
 	struct timecounter tstamp_tc;
 	unsigned int tstamp_addend;
 	struct work_struct tx_tstamp_work;
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h b/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h
index 352beff..f164fe0 100644
--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h
+++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x.h
@@ -1827,7 +1827,6 @@ struct bnx2x {
 	struct ptp_clock *ptp_clock;
 	struct ptp_clock_info ptp_clock_info;
 	struct work_struct ptp_task;
-	struct cyclecounter cyclecounter;
 	struct timecounter timecounter;
 	bool timecounter_init_done;
 	struct sk_buff *ptp_tx_skb;
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
index 91e2a75..83624ad 100644
--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
+++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
@@ -13850,7 +13850,7 @@ static int bnx2x_ptp_settime(struct ptp_clock_info *ptp,
 	DP(BNX2X_MSG_PTP, "PTP settime called, ns = %llu\n", ns);
 
 	/* Re-init the timecounter */
-	timecounter_init(&bp->timecounter, &bp->cyclecounter, ns);
+	timecounter_init(&bp->timecounter, ns);
 
 	return 0;
 }
@@ -15254,7 +15254,7 @@ void bnx2x_set_rx_ts(struct bnx2x *bp, struct sk_buff *skb)
 /* Read the PHC */
 static u64 bnx2x_cyclecounter_read(const struct cyclecounter *cc)
 {
-	struct bnx2x *bp = container_of(cc, struct bnx2x, cyclecounter);
+	struct bnx2x *bp = container_of(cc, struct bnx2x, timecounter.cc);
 	int port = BP_PORT(bp);
 	u32 wb_data[2];
 	u64 phc_cycles;
@@ -15269,13 +15269,13 @@ static u64 bnx2x_cyclecounter_read(const struct cyclecounter *cc)
 	return phc_cycles;
 }
 
-static void bnx2x_init_cyclecounter(struct bnx2x *bp)
+static void bnx2x_init_cyclecounter(struct cyclecounter *cc)
 {
-	memset(&bp->cyclecounter, 0, sizeof(bp->cyclecounter));
-	bp->cyclecounter.read = bnx2x_cyclecounter_read;
-	bp->cyclecounter.mask = CYCLECOUNTER_MASK(64);
-	bp->cyclecounter.shift = 0;
-	bp->cyclecounter.mult = 1;
+	memset(cc, 0, sizeof(*cc));
+	cc->read = bnx2x_cyclecounter_read;
+	cc->mask = CYCLECOUNTER_MASK(64);
+	cc->shift = 0;
+	cc->mult = 1;
 }
 
 static int bnx2x_send_reset_timesync_ramrod(struct bnx2x *bp)
@@ -15511,8 +15511,8 @@ void bnx2x_init_ptp(struct bnx2x *bp)
 	 * unload / load (e.g. MTU change) while it is running.
 	 */
 	if (!bp->timecounter_init_done) {
-		bnx2x_init_cyclecounter(bp);
-		timecounter_init(&bp->timecounter, &bp->cyclecounter,
+		bnx2x_init_cyclecounter(&bp->timecounter.cc);
+		timecounter_init(&bp->timecounter,
 				 ktime_to_ns(ktime_get_real()));
 		bp->timecounter_init_done = 1;
 	}
diff --git a/drivers/net/ethernet/freescale/fec.h b/drivers/net/ethernet/freescale/fec.h
index 5385074..d54b501 100644
--- a/drivers/net/ethernet/freescale/fec.h
+++ b/drivers/net/ethernet/freescale/fec.h
@@ -549,7 +549,6 @@ struct fec_enet_private {
 	struct ptp_clock_info ptp_caps;
 	unsigned long last_overflow_check;
 	spinlock_t tmreg_lock;
-	struct cyclecounter cc;
 	struct timecounter tc;
 	int rx_hwtstamp_filter;
 	u32 base_incval;
diff --git a/drivers/net/ethernet/freescale/fec_ptp.c b/drivers/net/ethernet/freescale/fec_ptp.c
index f814397..b1261d1 100644
--- a/drivers/net/ethernet/freescale/fec_ptp.c
+++ b/drivers/net/ethernet/freescale/fec_ptp.c
@@ -186,13 +186,14 @@ static int fec_ptp_enable_pps(struct fec_enet_private *fep, uint enable)
 		 * ptp counter, which maybe cause 32-bit wrap. Since the
 		 * (NSEC_PER_SEC - (u32)ts.tv_nsec) is less than 2 second.
 		 * We can ensure the wrap will not cause issue. If the offset
-		 * is bigger than fep->cc.mask would be a error.
+		 * is bigger than fep->tc.cc.mask would be a error.
 		 */
-		val &= fep->cc.mask;
+		val &= fep->tc.cc.mask;
 		writel(val, fep->hwp + FEC_TCCR(fep->pps_channel));
 
 		/* Calculate the second the compare event timestamp */
-		fep->next_counter = (val + fep->reload_period) & fep->cc.mask;
+		fep->next_counter = (val + fep->reload_period) &
+				    fep->tc.cc.mask;
 
 		/* * Enable compare event when overflow */
 		val = readl(fep->hwp + FEC_ATIME_CTRL);
@@ -211,7 +212,8 @@ static int fec_ptp_enable_pps(struct fec_enet_private *fep, uint enable)
 		 * the third timestamp. Refer the TCCR register detail in the spec.
 		 */
 		writel(fep->next_counter, fep->hwp + FEC_TCCR(fep->pps_channel));
-		fep->next_counter = (fep->next_counter + fep->reload_period) & fep->cc.mask;
+		fep->next_counter = (fep->next_counter + fep->reload_period) &
+				    fep->tc.cc.mask;
 	} else {
 		writel(0, fep->hwp + FEC_TCSR(fep->pps_channel));
 	}
@@ -233,7 +235,7 @@ static int fec_ptp_enable_pps(struct fec_enet_private *fep, uint enable)
 static u64 fec_ptp_read(const struct cyclecounter *cc)
 {
 	struct fec_enet_private *fep =
-		container_of(cc, struct fec_enet_private, cc);
+		container_of(cc, struct fec_enet_private, tc.cc);
 	const struct platform_device_id *id_entry =
 		platform_get_device_id(fep->pdev);
 	u32 tempval;
@@ -276,14 +278,14 @@ void fec_ptp_start_cyclecounter(struct net_device *ndev)
 	writel(FEC_T_CTRL_ENABLE | FEC_T_CTRL_PERIOD_RST,
 		fep->hwp + FEC_ATIME_CTRL);
 
-	memset(&fep->cc, 0, sizeof(fep->cc));
-	fep->cc.read = fec_ptp_read;
-	fep->cc.mask = CLOCKSOURCE_MASK(31);
-	fep->cc.shift = 31;
-	fep->cc.mult = FEC_CC_MULT;
+	memset(&fep->tc.cc, 0, sizeof(fep->tc.cc));
+	fep->tc.cc.read = fec_ptp_read;
+	fep->tc.cc.mask = CLOCKSOURCE_MASK(31);
+	fep->tc.cc.shift = 31;
+	fep->tc.cc.mult = FEC_CC_MULT;
 
 	/* reset the ns time counter */
-	timecounter_init(&fep->tc, &fep->cc, ktime_to_ns(ktime_get_real()));
+	timecounter_init(&fep->tc, ktime_to_ns(ktime_get_real()));
 
 	spin_unlock_irqrestore(&fep->tmreg_lock, flags);
 }
@@ -434,11 +436,11 @@ static int fec_ptp_settime(struct ptp_clock_info *ptp,
 	/* Get the timer value based on timestamp.
 	 * Update the counter with the masked value.
 	 */
-	counter = ns & fep->cc.mask;
+	counter = ns & fep->tc.cc.mask;
 
 	spin_lock_irqsave(&fep->tmreg_lock, flags);
 	writel(counter, fep->hwp + FEC_ATIME);
-	timecounter_init(&fep->tc, &fep->cc, ns);
+	timecounter_init(&fep->tc, ns);
 	spin_unlock_irqrestore(&fep->tmreg_lock, flags);
 	mutex_unlock(&fep->ptp_clk_mutex);
 	return 0;
@@ -570,7 +572,7 @@ static irqreturn_t fec_pps_interrupt(int irq, void *dev_id)
 
 		/* Update the counter; */
 		fep->next_counter = (fep->next_counter + fep->reload_period) &
-				fep->cc.mask;
+				    fep->tc.cc.mask;
 
 		event.type = PTP_CLOCK_PPS;
 		ptp_clock_event(fep->ptp_clock, &event);
diff --git a/drivers/net/ethernet/intel/e1000e/e1000.h b/drivers/net/ethernet/intel/e1000e/e1000.h
index 2311b31..b59f82a 100644
--- a/drivers/net/ethernet/intel/e1000e/e1000.h
+++ b/drivers/net/ethernet/intel/e1000e/e1000.h
@@ -340,7 +340,6 @@ struct e1000_adapter {
 	unsigned long tx_hwtstamp_start;
 	struct work_struct tx_hwtstamp_work;
 	spinlock_t systim_lock;	/* protects SYSTIML/H regsters */
-	struct cyclecounter cc;
 	struct timecounter tc;
 	struct ptp_clock *ptp_clock;
 	struct ptp_clock_info ptp_clock_info;
diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c
index 9f18d39..c9f7ba3 100644
--- a/drivers/net/ethernet/intel/e1000e/netdev.c
+++ b/drivers/net/ethernet/intel/e1000e/netdev.c
@@ -3536,7 +3536,7 @@ s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca)
 		incperiod = INCPERIOD_96MHZ;
 		incvalue = INCVALUE_96MHZ;
 		shift = INCVALUE_SHIFT_96MHZ;
-		adapter->cc.shift = shift + INCPERIOD_SHIFT_96MHZ;
+		adapter->tc.cc.shift = shift + INCPERIOD_SHIFT_96MHZ;
 		break;
 	case e1000_pch_lpt:
 		if (er32(TSYNCRXCTL) & E1000_TSYNCRXCTL_SYSCFI) {
@@ -3544,13 +3544,13 @@ s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca)
 			incperiod = INCPERIOD_96MHZ;
 			incvalue = INCVALUE_96MHZ;
 			shift = INCVALUE_SHIFT_96MHZ;
-			adapter->cc.shift = shift + INCPERIOD_SHIFT_96MHZ;
+			adapter->tc.cc.shift = shift + INCPERIOD_SHIFT_96MHZ;
 		} else {
 			/* Stable 25MHz frequency */
 			incperiod = INCPERIOD_25MHZ;
 			incvalue = INCVALUE_25MHZ;
 			shift = INCVALUE_SHIFT_25MHZ;
-			adapter->cc.shift = shift;
+			adapter->tc.cc.shift = shift;
 		}
 		break;
 	case e1000_pch_spt:
@@ -3559,7 +3559,7 @@ s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca)
 			incperiod = INCPERIOD_24MHZ;
 			incvalue = INCVALUE_24MHZ;
 			shift = INCVALUE_SHIFT_24MHZ;
-			adapter->cc.shift = shift;
+			adapter->tc.cc.shift = shift;
 			break;
 		}
 		return -EINVAL;
@@ -3569,13 +3569,13 @@ s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca)
 			incperiod = INCPERIOD_24MHZ;
 			incvalue = INCVALUE_24MHZ;
 			shift = INCVALUE_SHIFT_24MHZ;
-			adapter->cc.shift = shift;
+			adapter->tc.cc.shift = shift;
 		} else {
 			/* Stable 38400KHz frequency */
 			incperiod = INCPERIOD_38400KHZ;
 			incvalue = INCVALUE_38400KHZ;
 			shift = INCVALUE_SHIFT_38400KHZ;
-			adapter->cc.shift = shift;
+			adapter->tc.cc.shift = shift;
 		}
 		break;
 	case e1000_82574:
@@ -3584,7 +3584,7 @@ s32 e1000e_get_base_timinca(struct e1000_adapter *adapter, u32 *timinca)
 		incperiod = INCPERIOD_25MHZ;
 		incvalue = INCVALUE_25MHZ;
 		shift = INCVALUE_SHIFT_25MHZ;
-		adapter->cc.shift = shift;
+		adapter->tc.cc.shift = shift;
 		break;
 	default:
 		return -EINVAL;
@@ -3955,8 +3955,7 @@ static void e1000e_systim_reset(struct e1000_adapter *adapter)
 
 	/* reset the systim ns time counter */
 	spin_lock_irqsave(&adapter->systim_lock, flags);
-	timecounter_init(&adapter->tc, &adapter->cc,
-			 ktime_to_ns(ktime_get_real()));
+	timecounter_init(&adapter->tc, ktime_to_ns(ktime_get_real()));
 	spin_unlock_irqrestore(&adapter->systim_lock, flags);
 
 	/* restore the previous hwtstamp configuration settings */
@@ -4389,7 +4388,7 @@ static u64 e1000e_sanitize_systim(struct e1000_hw *hw, u64 systim)
 static u64 e1000e_cyclecounter_read(const struct cyclecounter *cc)
 {
 	struct e1000_adapter *adapter = container_of(cc, struct e1000_adapter,
-						     cc);
+						     tc.cc);
 	struct e1000_hw *hw = &adapter->hw;
 	u32 systimel, systimeh;
 	u64 systim;
@@ -4449,10 +4448,10 @@ static int e1000_sw_init(struct e1000_adapter *adapter)
 
 	/* Setup hardware time stamping cyclecounter */
 	if (adapter->flags & FLAG_HAS_HW_TIMESTAMP) {
-		adapter->cc.read = e1000e_cyclecounter_read;
-		adapter->cc.mask = CYCLECOUNTER_MASK(64);
-		adapter->cc.mult = 1;
-		/* cc.shift set in e1000e_get_base_tininca() */
+		adapter->tc.cc.read = e1000e_cyclecounter_read;
+		adapter->tc.cc.mask = CYCLECOUNTER_MASK(64);
+		adapter->tc.cc.mult = 1;
+		/* tc.cc.shift set in e1000e_get_base_tininca() */
 
 		spin_lock_init(&adapter->systim_lock);
 		INIT_WORK(&adapter->tx_hwtstamp_work, e1000e_tx_hwtstamp_work);
diff --git a/drivers/net/ethernet/intel/e1000e/ptp.c b/drivers/net/ethernet/intel/e1000e/ptp.c
index b366885..03d5f2a 100644
--- a/drivers/net/ethernet/intel/e1000e/ptp.c
+++ b/drivers/net/ethernet/intel/e1000e/ptp.c
@@ -222,7 +222,7 @@ static int e1000e_phc_settime(struct ptp_clock_info *ptp,
 
 	/* reset the timecounter */
 	spin_lock_irqsave(&adapter->systim_lock, flags);
-	timecounter_init(&adapter->tc, &adapter->cc, ns);
+	timecounter_init(&adapter->tc, ns);
 	spin_unlock_irqrestore(&adapter->systim_lock, flags);
 
 	return 0;
diff --git a/drivers/net/ethernet/intel/igb/igb.h b/drivers/net/ethernet/intel/igb/igb.h
index 9284569..4eac4f2 100644
--- a/drivers/net/ethernet/intel/igb/igb.h
+++ b/drivers/net/ethernet/intel/igb/igb.h
@@ -565,7 +565,6 @@ struct igb_adapter {
 	unsigned long last_rx_timestamp;
 	unsigned int ptp_flags;
 	spinlock_t tmreg_lock;
-	struct cyclecounter cc;
 	struct timecounter tc;
 	u32 tx_hwtstamp_timeouts;
 	u32 tx_hwtstamp_skipped;
diff --git a/drivers/net/ethernet/intel/igb/igb_ptp.c b/drivers/net/ethernet/intel/igb/igb_ptp.c
index 841c2a0..0745eff 100644
--- a/drivers/net/ethernet/intel/igb/igb_ptp.c
+++ b/drivers/net/ethernet/intel/igb/igb_ptp.c
@@ -79,7 +79,7 @@
 /* SYSTIM read access for the 82576 */
 static u64 igb_ptp_read_82576(const struct cyclecounter *cc)
 {
-	struct igb_adapter *igb = container_of(cc, struct igb_adapter, cc);
+	struct igb_adapter *igb = container_of(cc, struct igb_adapter, tc.cc);
 	struct e1000_hw *hw = &igb->hw;
 	u64 val;
 	u32 lo, hi;
@@ -96,7 +96,7 @@ static u64 igb_ptp_read_82576(const struct cyclecounter *cc)
 /* SYSTIM read access for the 82580 */
 static u64 igb_ptp_read_82580(const struct cyclecounter *cc)
 {
-	struct igb_adapter *igb = container_of(cc, struct igb_adapter, cc);
+	struct igb_adapter *igb = container_of(cc, struct igb_adapter, tc.cc);
 	struct e1000_hw *hw = &igb->hw;
 	u32 lo, hi;
 	u64 val;
@@ -330,7 +330,7 @@ static int igb_ptp_settime_82576(struct ptp_clock_info *ptp,
 
 	spin_lock_irqsave(&igb->tmreg_lock, flags);
 
-	timecounter_init(&igb->tc, &igb->cc, ns);
+	timecounter_init(&igb->tc, ns);
 
 	spin_unlock_irqrestore(&igb->tmreg_lock, flags);
 
@@ -1126,10 +1126,10 @@ void igb_ptp_init(struct igb_adapter *adapter)
 		adapter->ptp_caps.gettime64 = igb_ptp_gettime_82576;
 		adapter->ptp_caps.settime64 = igb_ptp_settime_82576;
 		adapter->ptp_caps.enable = igb_ptp_feature_enable;
-		adapter->cc.read = igb_ptp_read_82576;
-		adapter->cc.mask = CYCLECOUNTER_MASK(64);
-		adapter->cc.mult = 1;
-		adapter->cc.shift = IGB_82576_TSYNC_SHIFT;
+		adapter->tc.cc.read = igb_ptp_read_82576;
+		adapter->tc.cc.mask = CYCLECOUNTER_MASK(64);
+		adapter->tc.cc.mult = 1;
+		adapter->tc.cc.shift = IGB_82576_TSYNC_SHIFT;
 		adapter->ptp_flags |= IGB_PTP_OVERFLOW_CHECK;
 		break;
 	case e1000_82580:
@@ -1145,10 +1145,10 @@ void igb_ptp_init(struct igb_adapter *adapter)
 		adapter->ptp_caps.gettime64 = igb_ptp_gettime_82576;
 		adapter->ptp_caps.settime64 = igb_ptp_settime_82576;
 		adapter->ptp_caps.enable = igb_ptp_feature_enable;
-		adapter->cc.read = igb_ptp_read_82580;
-		adapter->cc.mask = CYCLECOUNTER_MASK(IGB_NBITS_82580);
-		adapter->cc.mult = 1;
-		adapter->cc.shift = 0;
+		adapter->tc.cc.read = igb_ptp_read_82580;
+		adapter->tc.cc.mask = CYCLECOUNTER_MASK(IGB_NBITS_82580);
+		adapter->tc.cc.mult = 1;
+		adapter->tc.cc.shift = 0;
 		adapter->ptp_flags |= IGB_PTP_OVERFLOW_CHECK;
 		break;
 	case e1000_i210:
@@ -1289,8 +1289,7 @@ void igb_ptp_reset(struct igb_adapter *adapter)
 
 		igb_ptp_write_i210(adapter, &ts);
 	} else {
-		timecounter_init(&adapter->tc, &adapter->cc,
-				 ktime_to_ns(ktime_get_real()));
+		timecounter_init(&adapter->tc, ktime_to_ns(ktime_get_real()));
 	}
 out:
 	spin_unlock_irqrestore(&adapter->tmreg_lock, flags);
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe.h b/drivers/net/ethernet/intel/ixgbe/ixgbe.h
index 468c355..5c391a0 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe.h
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe.h
@@ -738,7 +738,6 @@ struct ixgbe_adapter {
 	unsigned long last_rx_ptp_check;
 	unsigned long last_rx_timestamp;
 	spinlock_t tmreg_lock;
-	struct cyclecounter hw_cc;
 	struct timecounter hw_tc;
 	u32 base_incval;
 	u32 tx_hwtstamp_timeouts;
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
index ae312c4..6e9f2c0 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_ptp.c
@@ -179,7 +179,7 @@
 static void ixgbe_ptp_setup_sdp_x540(struct ixgbe_adapter *adapter)
 {
 	struct ixgbe_hw *hw = &adapter->hw;
-	int shift = adapter->hw_cc.shift;
+	int shift = adapter->hw_tc.cc.shift;
 	u32 esdp, tsauxc, clktiml, clktimh, trgttiml, trgttimh, rem;
 	u64 ns = 0, clock_edge = 0;
 
@@ -237,7 +237,7 @@ static void ixgbe_ptp_setup_sdp_x540(struct ixgbe_adapter *adapter)
 
 /**
  * ixgbe_ptp_read_X550 - read cycle counter value
- * @hw_cc: cyclecounter structure
+ * @cc: cyclecounter structure
  *
  * This function reads SYSTIME registers. It is called by the cyclecounter
  * structure to convert from internal representation into nanoseconds. We need
@@ -245,10 +245,10 @@ static void ixgbe_ptp_setup_sdp_x540(struct ixgbe_adapter *adapter)
  * result of SYSTIME is 32bits of "billions of cycles" and 32 bits of
  * "cycles", rather than seconds and nanoseconds.
  */
-static u64 ixgbe_ptp_read_X550(const struct cyclecounter *hw_cc)
+static u64 ixgbe_ptp_read_X550(const struct cyclecounter *cc)
 {
 	struct ixgbe_adapter *adapter =
-			container_of(hw_cc, struct ixgbe_adapter, hw_cc);
+			container_of(cc, struct ixgbe_adapter, hw_tc.cc);
 	struct ixgbe_hw *hw = &adapter->hw;
 	struct timespec64 ts;
 
@@ -285,7 +285,7 @@ static u64 ixgbe_ptp_read_X550(const struct cyclecounter *hw_cc)
 static u64 ixgbe_ptp_read_82599(const struct cyclecounter *cc)
 {
 	struct ixgbe_adapter *adapter =
-		container_of(cc, struct ixgbe_adapter, hw_cc);
+		container_of(cc, struct ixgbe_adapter, hw_tc.cc);
 	struct ixgbe_hw *hw = &adapter->hw;
 	u64 stamp = 0;
 
@@ -508,7 +508,7 @@ static int ixgbe_ptp_settime(struct ptp_clock_info *ptp,
 
 	/* reset the timecounter */
 	spin_lock_irqsave(&adapter->tmreg_lock, flags);
-	timecounter_init(&adapter->hw_tc, &adapter->hw_cc, ns);
+	timecounter_init(&adapter->hw_tc, ns);
 	spin_unlock_irqrestore(&adapter->tmreg_lock, flags);
 
 	if (adapter->ptp_setup_sdp)
@@ -1164,7 +1164,7 @@ void ixgbe_ptp_start_cyclecounter(struct ixgbe_adapter *adapter)
 
 	/* need lock to prevent incorrect read while modifying cyclecounter */
 	spin_lock_irqsave(&adapter->tmreg_lock, flags);
-	memcpy(&adapter->hw_cc, &cc, sizeof(adapter->hw_cc));
+	memcpy(&adapter->hw_tc.cc, &cc, sizeof(adapter->hw_tc.cc));
 	spin_unlock_irqrestore(&adapter->tmreg_lock, flags);
 }
 
@@ -1195,8 +1195,7 @@ void ixgbe_ptp_reset(struct ixgbe_adapter *adapter)
 	ixgbe_ptp_start_cyclecounter(adapter);
 
 	spin_lock_irqsave(&adapter->tmreg_lock, flags);
-	timecounter_init(&adapter->hw_tc, &adapter->hw_cc,
-			 ktime_to_ns(ktime_get_real()));
+	timecounter_init(&adapter->hw_tc, ktime_to_ns(ktime_get_real()));
 	spin_unlock_irqrestore(&adapter->tmreg_lock, flags);
 
 	adapter->last_overflow_check = jiffies;
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_clock.c b/drivers/net/ethernet/mellanox/mlx4/en_clock.c
index 0247885..35987b5 100644
--- a/drivers/net/ethernet/mellanox/mlx4/en_clock.c
+++ b/drivers/net/ethernet/mellanox/mlx4/en_clock.c
@@ -38,13 +38,13 @@
 
 /* mlx4_en_read_clock - read raw cycle counter (to be used by time counter)
  */
-static u64 mlx4_en_read_clock(const struct cyclecounter *tc)
+static u64 mlx4_en_read_clock(const struct cyclecounter *cc)
 {
 	struct mlx4_en_dev *mdev =
-		container_of(tc, struct mlx4_en_dev, cycles);
+		container_of(cc, struct mlx4_en_dev, clock.cc);
 	struct mlx4_dev *dev = mdev->dev;
 
-	return mlx4_read_clock(dev) & tc->mask;
+	return mlx4_read_clock(dev) & cc->mask;
 }
 
 u64 mlx4_en_get_cqe_ts(struct mlx4_cqe *cqe)
@@ -138,7 +138,7 @@ static int mlx4_en_phc_adjfreq(struct ptp_clock_info *ptp, s32 delta)
 
 	write_seqlock_irqsave(&mdev->clock_lock, flags);
 	timecounter_read(&mdev->clock);
-	mdev->cycles.mult = neg_adj ? mult - diff : mult + diff;
+	mdev->clock.cc.mult = neg_adj ? mult - diff : mult + diff;
 	write_sequnlock_irqrestore(&mdev->clock_lock, flags);
 
 	return 0;
@@ -207,7 +207,7 @@ static int mlx4_en_phc_settime(struct ptp_clock_info *ptp,
 
 	/* reset the timecounter */
 	write_seqlock_irqsave(&mdev->clock_lock, flags);
-	timecounter_init(&mdev->clock, &mdev->cycles, ns);
+	timecounter_init(&mdev->clock, ns);
 	write_sequnlock_irqrestore(&mdev->clock_lock, flags);
 
 	return 0;
@@ -274,17 +274,17 @@ void mlx4_en_init_timestamp(struct mlx4_en_dev *mdev)
 
 	seqlock_init(&mdev->clock_lock);
 
-	memset(&mdev->cycles, 0, sizeof(mdev->cycles));
-	mdev->cycles.read = mlx4_en_read_clock;
-	mdev->cycles.mask = CLOCKSOURCE_MASK(48);
-	mdev->cycles.shift = freq_to_shift(dev->caps.hca_core_clock);
-	mdev->cycles.mult =
-		clocksource_khz2mult(1000 * dev->caps.hca_core_clock, mdev->cycles.shift);
-	mdev->nominal_c_mult = mdev->cycles.mult;
+	memset(&mdev->clock.cc, 0, sizeof(mdev->clock.cc));
+	mdev->clock.cc.read = mlx4_en_read_clock;
+	mdev->clock.cc.mask = CLOCKSOURCE_MASK(48);
+	mdev->clock.cc.shift = freq_to_shift(dev->caps.hca_core_clock);
+	mdev->clock.cc.mult =
+		clocksource_khz2mult(1000 * dev->caps.hca_core_clock,
+				     mdev->clock.cc.shift);
+	mdev->nominal_c_mult = mdev->clock.cc.mult;
 
 	write_seqlock_irqsave(&mdev->clock_lock, flags);
-	timecounter_init(&mdev->clock, &mdev->cycles,
-			 ktime_to_ns(ktime_get_real()));
+	timecounter_init(&mdev->clock, ktime_to_ns(ktime_get_real()));
 	write_sequnlock_irqrestore(&mdev->clock_lock, flags);
 
 	/* Configure the PHC */
diff --git a/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h b/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h
index 1856e27..e301dcf 100644
--- a/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h
+++ b/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h
@@ -422,7 +422,6 @@ struct mlx4_en_dev {
 	spinlock_t              uar_lock;
 	u8			mac_removed[MLX4_MAX_PORTS + 1];
 	u32			nominal_c_mult;
-	struct cyclecounter	cycles;
 	seqlock_t		clock_lock;
 	struct timecounter	clock;
 	unsigned long		last_overflow_check;
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/lib/clock.c b/drivers/net/ethernet/mellanox/mlx5/core/lib/clock.c
index fa8aed6..8cb6838 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/lib/clock.c
+++ b/drivers/net/ethernet/mellanox/mlx5/core/lib/clock.c
@@ -64,7 +64,7 @@ enum {
 
 static u64 read_internal_timer(const struct cyclecounter *cc)
 {
-	struct mlx5_clock *clock = container_of(cc, struct mlx5_clock, cycles);
+	struct mlx5_clock *clock = container_of(cc, struct mlx5_clock, tc.cc);
 	struct mlx5_core_dev *mdev = container_of(clock, struct mlx5_core_dev,
 						  clock);
 
@@ -122,7 +122,7 @@ static int mlx5_ptp_settime(struct ptp_clock_info *ptp,
 	unsigned long flags;
 
 	write_lock_irqsave(&clock->lock, flags);
-	timecounter_init(&clock->tc, &clock->cycles, ns);
+	timecounter_init(&clock->tc, ns);
 	write_unlock_irqrestore(&clock->lock, flags);
 
 	return 0;
@@ -177,8 +177,8 @@ static int mlx5_ptp_adjfreq(struct ptp_clock_info *ptp, s32 delta)
 
 	write_lock_irqsave(&clock->lock, flags);
 	timecounter_read(&clock->tc);
-	clock->cycles.mult = neg_adj ? clock->nominal_c_mult - diff :
-				       clock->nominal_c_mult + diff;
+	clock->tc.cc.mult = neg_adj ? clock->nominal_c_mult - diff :
+				      clock->nominal_c_mult + diff;
 	write_unlock_irqrestore(&clock->lock, flags);
 
 	return 0;
@@ -281,8 +281,8 @@ static int mlx5_perout_configure(struct ptp_clock_info *ptp,
 		write_lock_irqsave(&clock->lock, flags);
 		nsec_now = timecounter_cyc2time(&clock->tc, cycles_now);
 		nsec_delta = ns - nsec_now;
-		cycles_delta = div64_u64(nsec_delta << clock->cycles.shift,
-					 clock->cycles.mult);
+		cycles_delta = div64_u64(nsec_delta << clock->tc.cc.shift,
+					 clock->tc.cc.mult);
 		write_unlock_irqrestore(&clock->lock, flags);
 		time_stamp = cycles_now + cycles_delta;
 		field_select = MLX5_MTPPS_FS_PIN_MODE |
@@ -440,8 +440,8 @@ void mlx5_pps_event(struct mlx5_core_dev *mdev,
 		write_lock_irqsave(&clock->lock, flags);
 		nsec_now = timecounter_cyc2time(&clock->tc, cycles_now);
 		nsec_delta = ns - nsec_now;
-		cycles_delta = div64_u64(nsec_delta << clock->cycles.shift,
-					 clock->cycles.mult);
+		cycles_delta = div64_u64(nsec_delta << clock->tc.cc.shift,
+					 clock->tc.cc.mult);
 		clock->pps_info.start[pin] = cycles_now + cycles_delta;
 		schedule_work(&clock->pps_info.out_work);
 		write_unlock_irqrestore(&clock->lock, flags);
@@ -454,6 +454,7 @@ void mlx5_pps_event(struct mlx5_core_dev *mdev,
 void mlx5_init_clock(struct mlx5_core_dev *mdev)
 {
 	struct mlx5_clock *clock = &mdev->clock;
+	struct cyclecounter *cc = &clock->tc.cc;
 	u64 ns;
 	u64 frac = 0;
 	u32 dev_freq;
@@ -464,21 +465,18 @@ void mlx5_init_clock(struct mlx5_core_dev *mdev)
 		return;
 	}
 	rwlock_init(&clock->lock);
-	clock->cycles.read = read_internal_timer;
-	clock->cycles.shift = MLX5_CYCLES_SHIFT;
-	clock->cycles.mult = clocksource_khz2mult(dev_freq,
-						  clock->cycles.shift);
-	clock->nominal_c_mult = clock->cycles.mult;
-	clock->cycles.mask = CLOCKSOURCE_MASK(41);
+	cc->read = read_internal_timer;
+	cc->shift = MLX5_CYCLES_SHIFT;
+	cc->mult = clocksource_khz2mult(dev_freq, cc->shift);
+	clock->nominal_c_mult = cc->mult;
+	cc->mask = CLOCKSOURCE_MASK(41);
 
-	timecounter_init(&clock->tc, &clock->cycles,
-			 ktime_to_ns(ktime_get_real()));
+	timecounter_init(&clock->tc, ktime_to_ns(ktime_get_real()));
 
 	/* Calculate period in seconds to call the overflow watchdog - to make
 	 * sure counter is checked at least once every wrap around.
 	 */
-	ns = cyclecounter_cyc2ns(&clock->cycles, clock->cycles.mask,
-				 frac, &frac);
+	ns = cyclecounter_cyc2ns(cc, cc->mask, frac, &frac);
 	do_div(ns, NSEC_PER_SEC / 2 / HZ);
 	clock->overflow_period = ns;
 
diff --git a/drivers/net/ethernet/qlogic/qede/qede_ptp.c b/drivers/net/ethernet/qlogic/qede/qede_ptp.c
index 9b2280b..95bb8a8 100644
--- a/drivers/net/ethernet/qlogic/qede/qede_ptp.c
+++ b/drivers/net/ethernet/qlogic/qede/qede_ptp.c
@@ -34,7 +34,6 @@
 struct qede_ptp {
 	const struct qed_eth_ptp_ops	*ops;
 	struct ptp_clock_info		clock_info;
-	struct cyclecounter		cc;
 	struct timecounter		tc;
 	struct ptp_clock		*clock;
 	struct work_struct		work;
@@ -132,7 +131,7 @@ static int qede_ptp_settime(struct ptp_clock_info *info,
 
 	/* Re-init the timecounter */
 	spin_lock_bh(&ptp->lock);
-	timecounter_init(&ptp->tc, &ptp->cc, ns);
+	timecounter_init(&ptp->tc, ns);
 	spin_unlock_bh(&ptp->lock);
 
 	return 0;
@@ -196,7 +195,7 @@ static u64 qede_ptp_read_cc(const struct cyclecounter *cc)
 	u64 phc_cycles;
 	int rc;
 
-	ptp = container_of(cc, struct qede_ptp, cc);
+	ptp = container_of(cc, struct qede_ptp, tc.cc);
 	edev = ptp->edev;
 	rc = ptp->ops->read_cc(edev->cdev, &phc_cycles);
 	if (rc)
@@ -428,14 +427,13 @@ static int qede_ptp_init(struct qede_dev *edev, bool init_tc)
 	 * unload / load (e.g. MTU change) while it is running.
 	 */
 	if (init_tc) {
-		memset(&ptp->cc, 0, sizeof(ptp->cc));
-		ptp->cc.read = qede_ptp_read_cc;
-		ptp->cc.mask = CYCLECOUNTER_MASK(64);
-		ptp->cc.shift = 0;
-		ptp->cc.mult = 1;
-
-		timecounter_init(&ptp->tc, &ptp->cc,
-				 ktime_to_ns(ktime_get_real()));
+		memset(&ptp->tc.cc, 0, sizeof(ptp->tc.cc));
+		ptp->tc.cc.read = qede_ptp_read_cc;
+		ptp->tc.cc.mask = CYCLECOUNTER_MASK(64);
+		ptp->tc.cc.shift = 0;
+		ptp->tc.cc.mult = 1;
+
+		timecounter_init(&ptp->tc, ktime_to_ns(ktime_get_real()));
 	}
 
 	return rc;
diff --git a/drivers/net/ethernet/ti/cpts.c b/drivers/net/ethernet/ti/cpts.c
index e7b76f6..b8fe843 100644
--- a/drivers/net/ethernet/ti/cpts.c
+++ b/drivers/net/ethernet/ti/cpts.c
@@ -182,7 +182,7 @@ static u64 cpts_systim_read(const struct cyclecounter *cc)
 	u64 val = 0;
 	struct cpts_event *event;
 	struct list_head *this, *next;
-	struct cpts *cpts = container_of(cc, struct cpts, cc);
+	struct cpts *cpts = container_of(cc, struct cpts, tc.cc);
 
 	cpts_write32(cpts, TS_PUSH, ts_push);
 	if (cpts_fifo_read(cpts, CPTS_EV_PUSH))
@@ -224,7 +224,7 @@ static int cpts_ptp_adjfreq(struct ptp_clock_info *ptp, s32 ppb)
 
 	timecounter_read(&cpts->tc);
 
-	cpts->cc.mult = neg_adj ? mult - diff : mult + diff;
+	cpts->tc.cc.mult = neg_adj ? mult - diff : mult + diff;
 
 	spin_unlock_irqrestore(&cpts->lock, flags);
 
@@ -268,7 +268,7 @@ static int cpts_ptp_settime(struct ptp_clock_info *ptp,
 	ns = timespec64_to_ns(ts);
 
 	spin_lock_irqsave(&cpts->lock, flags);
-	timecounter_init(&cpts->tc, &cpts->cc, ns);
+	timecounter_init(&cpts->tc, ns);
 	spin_unlock_irqrestore(&cpts->lock, flags);
 
 	return 0;
@@ -447,7 +447,7 @@ int cpts_register(struct cpts *cpts)
 	cpts_write32(cpts, CPTS_EN, control);
 	cpts_write32(cpts, TS_PEND_EN, int_enable);
 
-	timecounter_init(&cpts->tc, &cpts->cc, ktime_to_ns(ktime_get_real()));
+	timecounter_init(&cpts->tc, ktime_to_ns(ktime_get_real()));
 
 	cpts->clock = ptp_clock_register(&cpts->info, cpts->dev);
 	if (IS_ERR(cpts->clock)) {
@@ -486,6 +486,7 @@ void cpts_unregister(struct cpts *cpts)
 
 static void cpts_calc_mult_shift(struct cpts *cpts)
 {
+	struct cyclecounter *cc = &cpts->tc.cc;
 	u64 frac, maxsec, ns;
 	u32 freq;
 
@@ -494,7 +495,7 @@ static void cpts_calc_mult_shift(struct cpts *cpts)
 	/* Calc the maximum number of seconds which we can run before
 	 * wrapping around.
 	 */
-	maxsec = cpts->cc.mask;
+	maxsec = cc->mask;
 	do_div(maxsec, freq);
 	/* limit conversation rate to 10 sec as higher values will produce
 	 * too small mult factors and so reduce the conversion accuracy
@@ -507,18 +508,19 @@ static void cpts_calc_mult_shift(struct cpts *cpts)
 	dev_info(cpts->dev, "cpts: overflow check period %lu (jiffies)\n",
 		 cpts->ov_check_period);
 
-	if (cpts->cc.mult || cpts->cc.shift)
+	if (cc->mult || cc->shift)
 		return;
 
-	clocks_calc_mult_shift(&cpts->cc.mult, &cpts->cc.shift,
+	clocks_calc_mult_shift(&cc->mult, &cc->shift,
 			       freq, NSEC_PER_SEC, maxsec);
 
 	frac = 0;
-	ns = cyclecounter_cyc2ns(&cpts->cc, freq, cpts->cc.mask, &frac);
+	ns = cyclecounter_cyc2ns(cc, freq, cc->mask, &frac);
 
 	dev_info(cpts->dev,
 		 "CPTS: ref_clk_freq:%u calc_mult:%u calc_shift:%u error:%lld nsec/sec\n",
-		 freq, cpts->cc.mult, cpts->cc.shift, (ns - NSEC_PER_SEC));
+		 freq, cc->mult, cc->shift,
+		 (ns - NSEC_PER_SEC));
 }
 
 static int cpts_of_parse(struct cpts *cpts, struct device_node *node)
@@ -527,13 +529,13 @@ static int cpts_of_parse(struct cpts *cpts, struct device_node *node)
 	u32 prop;
 
 	if (!of_property_read_u32(node, "cpts_clock_mult", &prop))
-		cpts->cc.mult = prop;
+		cpts->tc.cc.mult = prop;
 
 	if (!of_property_read_u32(node, "cpts_clock_shift", &prop))
-		cpts->cc.shift = prop;
+		cpts->tc.cc.shift = prop;
 
-	if ((cpts->cc.mult && !cpts->cc.shift) ||
-	    (!cpts->cc.mult && cpts->cc.shift))
+	if ((cpts->tc.cc.mult && !cpts->tc.cc.shift) ||
+	    (!cpts->tc.cc.mult && cpts->tc.cc.shift))
 		goto of_error;
 
 	return 0;
@@ -569,15 +571,15 @@ struct cpts *cpts_create(struct device *dev, void __iomem *regs,
 
 	clk_prepare(cpts->refclk);
 
-	cpts->cc.read = cpts_systim_read;
-	cpts->cc.mask = CLOCKSOURCE_MASK(32);
+	cpts->tc.cc.read = cpts_systim_read;
+	cpts->tc.cc.mask = CLOCKSOURCE_MASK(32);
 	cpts->info = cpts_info;
 
 	cpts_calc_mult_shift(cpts);
-	/* save cc.mult original value as it can be modified
+	/* save tc.cc.mult original value as it can be modified
 	 * by cpts_ptp_adjfreq().
 	 */
-	cpts->cc_mult = cpts->cc.mult;
+	cpts->cc_mult = cpts->tc.cc.mult;
 
 	return cpts;
 }
diff --git a/drivers/net/ethernet/ti/cpts.h b/drivers/net/ethernet/ti/cpts.h
index 73d73fa..a7174eb 100644
--- a/drivers/net/ethernet/ti/cpts.h
+++ b/drivers/net/ethernet/ti/cpts.h
@@ -117,7 +117,6 @@ struct cpts {
 	struct ptp_clock *clock;
 	spinlock_t lock; /* protects time registers */
 	u32 cc_mult; /* for the nominal frequency */
-	struct cyclecounter cc;
 	struct timecounter tc;
 	int phc_index;
 	struct clk *refclk;
diff --git a/include/linux/mlx5/driver.h b/include/linux/mlx5/driver.h
index a886b51..c81c615 100644
--- a/include/linux/mlx5/driver.h
+++ b/include/linux/mlx5/driver.h
@@ -780,7 +780,6 @@ struct mlx5_pps {
 
 struct mlx5_clock {
 	rwlock_t                   lock;
-	struct cyclecounter        cycles;
 	struct timecounter         tc;
 	struct hwtstamp_config     hwtstamp_config;
 	u32                        nominal_c_mult;
diff --git a/include/linux/timecounter.h b/include/linux/timecounter.h
index 2496ad4..6daca06 100644
--- a/include/linux/timecounter.h
+++ b/include/linux/timecounter.h
@@ -62,7 +62,7 @@ struct cyclecounter {
  * @frac:		accumulated fractional nanoseconds
  */
 struct timecounter {
-	const struct cyclecounter *cc;
+	struct cyclecounter cc;
 	u64 cycle_last;
 	u64 nsec;
 	u64 mask;
@@ -98,7 +98,6 @@ static inline void timecounter_adjtime(struct timecounter *tc, s64 delta)
 /**
  * timecounter_init - initialize a time counter
  * @tc:			Pointer to time counter which is to be initialized/reset
- * @cc:			A cycle counter, ready to be used.
  * @start_tstamp:	Arbitrary initial time stamp.
  *
  * After this call the current cycle register (roughly) corresponds to
@@ -106,7 +105,6 @@ static inline void timecounter_adjtime(struct timecounter *tc, s64 delta)
  * the time stamp counter by the number of elapsed nanoseconds.
  */
 extern void timecounter_init(struct timecounter *tc,
-			     const struct cyclecounter *cc,
 			     u64 start_tstamp);
 
 /**
diff --git a/include/sound/hdaudio.h b/include/sound/hdaudio.h
index 68169e3..3061f44 100644
--- a/include/sound/hdaudio.h
+++ b/include/sound/hdaudio.h
@@ -445,7 +445,6 @@ struct hdac_stream {
 	unsigned long start_wallclk;	/* start + minimum wallclk */
 	unsigned long period_wallclk;	/* wallclk for period */
 	struct timecounter  tc;
-	struct cyclecounter cc;
 	int delay_negative_threshold;
 
 	struct list_head list;
diff --git a/kernel/time/timecounter.c b/kernel/time/timecounter.c
index 8afd789..7919acb 100644
--- a/kernel/time/timecounter.c
+++ b/kernel/time/timecounter.c
@@ -18,11 +18,10 @@
 #include <linux/export.h>
 #include <linux/timecounter.h>
 
-void timecounter_init(struct timecounter *tc,
-		      const struct cyclecounter *cc,
-		      u64 start_tstamp)
+void timecounter_init(struct timecounter *tc, u64 start_tstamp)
 {
-	tc->cc = cc;
+	struct cyclecounter *cc = &tc->cc;
+
 	tc->cycle_last = cc->read(cc);
 	tc->nsec = start_tstamp;
 	tc->mask = (1ULL << cc->shift) - 1;
@@ -43,17 +42,18 @@ void timecounter_init(struct timecounter *tc,
  */
 static u64 timecounter_read_delta(struct timecounter *tc)
 {
+	struct cyclecounter *cc = &tc->cc;
 	u64 cycle_now, cycle_delta;
 	u64 ns_offset;
 
 	/* read cycle counter: */
-	cycle_now = tc->cc->read(tc->cc);
+	cycle_now = cc->read(cc);
 
 	/* calculate the delta since the last timecounter_read_delta(): */
-	cycle_delta = (cycle_now - tc->cycle_last) & tc->cc->mask;
+	cycle_delta = (cycle_now - tc->cycle_last) & cc->mask;
 
 	/* convert to nanoseconds: */
-	ns_offset = cyclecounter_cyc2ns(tc->cc, cycle_delta,
+	ns_offset = cyclecounter_cyc2ns(cc, cycle_delta,
 					tc->mask, &tc->frac);
 
 	/* update time stamp of timecounter_read_delta() call: */
@@ -89,10 +89,10 @@ static u64 cc_cyc2ns_backwards(const struct cyclecounter *cc,
 	return ns;
 }
 
-u64 timecounter_cyc2time(struct timecounter *tc,
-			 u64 cycle_tstamp)
+u64 timecounter_cyc2time(struct timecounter *tc, u64 cycle_tstamp)
 {
-	u64 delta = (cycle_tstamp - tc->cycle_last) & tc->cc->mask;
+	struct cyclecounter *cc = &tc->cc;
+	u64 delta = (cycle_tstamp - tc->cycle_last) & cc->mask;
 	u64 nsec = tc->nsec, frac = tc->frac;
 
 	/*
@@ -100,11 +100,11 @@ u64 timecounter_cyc2time(struct timecounter *tc,
 	 * than tc->cycle_last, detect when it is too far in the
 	 * future and treat it as old time stamp instead.
 	 */
-	if (delta > tc->cc->mask / 2) {
-		delta = (tc->cycle_last - cycle_tstamp) & tc->cc->mask;
-		nsec -= cc_cyc2ns_backwards(tc->cc, delta, tc->mask, frac);
+	if (delta > cc->mask / 2) {
+		delta = (tc->cycle_last - cycle_tstamp) & cc->mask;
+		nsec -= cc_cyc2ns_backwards(cc, delta, tc->mask, frac);
 	} else {
-		nsec += cyclecounter_cyc2ns(tc->cc, delta, tc->mask, &frac);
+		nsec += cyclecounter_cyc2ns(cc, delta, tc->mask, &frac);
 	}
 
 	return nsec;
diff --git a/sound/hda/hdac_stream.c b/sound/hda/hdac_stream.c
index e1472c7..9426c1a 100644
--- a/sound/hda/hdac_stream.c
+++ b/sound/hda/hdac_stream.c
@@ -467,7 +467,8 @@ int snd_hdac_stream_set_params(struct hdac_stream *azx_dev,
 
 static u64 azx_cc_read(const struct cyclecounter *cc)
 {
-	struct hdac_stream *azx_dev = container_of(cc, struct hdac_stream, cc);
+	struct hdac_stream *azx_dev = container_of(cc, struct hdac_stream,
+						   tc.cc);
 
 	return snd_hdac_chip_readl(azx_dev->bus, WALLCLK);
 }
@@ -476,7 +477,7 @@ static void azx_timecounter_init(struct hdac_stream *azx_dev,
 				 bool force, u64 last)
 {
 	struct timecounter *tc = &azx_dev->tc;
-	struct cyclecounter *cc = &azx_dev->cc;
+	struct cyclecounter *cc = &azx_dev->tc.cc;
 	u64 nsec;
 
 	cc->read = azx_cc_read;
@@ -496,7 +497,7 @@ static void azx_timecounter_init(struct hdac_stream *azx_dev,
 	cc->shift = 0;
 
 	nsec = 0; /* audio time is elapsed time since trigger */
-	timecounter_init(tc, cc, nsec);
+	timecounter_init(tc, nsec);
 	if (force) {
 		/*
 		 * force timecounter to use predefined value,
diff --git a/virt/kvm/arm/arch_timer.c b/virt/kvm/arm/arch_timer.c
index 4151250..f3505bd 100644
--- a/virt/kvm/arm/arch_timer.c
+++ b/virt/kvm/arm/arch_timer.c
@@ -53,7 +53,7 @@ static void kvm_timer_update_irq(struct kvm_vcpu *vcpu, bool new_level,
 
 u64 kvm_phys_timer_read(void)
 {
-	return timecounter->cc->read(timecounter->cc);
+	return timecounter->cc.read(&timecounter->cc);
 }
 
 static void soft_timer_start(struct hrtimer *hrt, u64 ns)
@@ -138,7 +138,7 @@ static u64 kvm_timer_compute_delta(struct arch_timer_context *timer_ctx)
 	if (now < cval) {
 		u64 ns;
 
-		ns = cyclecounter_cyc2ns(timecounter->cc,
+		ns = cyclecounter_cyc2ns(&timecounter->cc,
 					 cval - now,
 					 timecounter->mask,
 					 &timecounter->frac);
@@ -734,7 +734,7 @@ int kvm_timer_hyp_init(void)
 	info = arch_timer_get_kvm_info();
 	timecounter = &info->timecounter;
 
-	if (!timecounter->cc) {
+	if (!timecounter->cc.mask) {
 		kvm_err("kvm_arch_timer: uninitialized timecounter\n");
 		return -ENODEV;
 	}
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related

* Re: [PATCH v4 3/8] MIPS: Octeon: Add a global resource manager.
From: Philippe Ombredanne @ 2017-12-01  7:53 UTC (permalink / raw)
  To: Carlos Munoz
  Cc: David Daney, linux-mips, ralf, netdev, David S. Miller,
	Rob Herring, Mark Rutland, devel, Greg Kroah-Hartman, LKML,
	Steven J. Hill,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Andrew Lunn, Florian Fainelli, James Hogan
In-Reply-To: <20171130225333.GI27409@jhogan-linux.mipstec.com>

Carlos,

On Thu, Nov 30, 2017 at 11:53 PM, James Hogan <james.hogan@mips.com> wrote:
> On Tue, Nov 28, 2017 at 04:55:35PM -0800, David Daney wrote:
>> From: Carlos Munoz <cmunoz@cavium.com>
>>
>> Add a global resource manager to manage tagged pointers within
>> bootmem allocated memory. This is used by various functional
>> blocks in the Octeon core like the FPA, Ethernet nexus, etc.
>>
>> Signed-off-by: Carlos Munoz <cmunoz@cavium.com>
>> Signed-off-by: Steven J. Hill <Steven.Hill@cavium.com>
>> Signed-off-by: David Daney <david.daney@cavium.com>
>> ---
>>  arch/mips/cavium-octeon/Makefile       |   3 +-
>>  arch/mips/cavium-octeon/resource-mgr.c | 371 +++++++++++++++++++++++++++++++++
>>  arch/mips/include/asm/octeon/octeon.h  |  18 ++
>>  3 files changed, 391 insertions(+), 1 deletion(-)
>>  create mode 100644 arch/mips/cavium-octeon/resource-mgr.c
>>
>> diff --git a/arch/mips/cavium-octeon/Makefile b/arch/mips/cavium-octeon/Makefile
>> index 7c02e542959a..0a299ab8719f 100644
>> --- a/arch/mips/cavium-octeon/Makefile
>> +++ b/arch/mips/cavium-octeon/Makefile
>> @@ -9,7 +9,8 @@
>>  # Copyright (C) 2005-2009 Cavium Networks
>>  #
>>
>> -obj-y := cpu.o setup.o octeon-platform.o octeon-irq.o csrc-octeon.o
>> +obj-y := cpu.o setup.o octeon-platform.o octeon-irq.o csrc-octeon.o \
>> +      resource-mgr.o
>
> Maybe put that on a separate line like below.
>
>>  obj-y += dma-octeon.o
>>  obj-y += octeon-memcpy.o
>>  obj-y += executive/
>> diff --git a/arch/mips/cavium-octeon/resource-mgr.c b/arch/mips/cavium-octeon/resource-mgr.c
>> new file mode 100644
>> index 000000000000..ca25fa953402
>> --- /dev/null
>> +++ b/arch/mips/cavium-octeon/resource-mgr.c
>> @@ -0,0 +1,371 @@
>> +// SPDX-License-Identifier: GPL-2.0
>> +/*
>> + * Resource manager for Octeon.
>> + *
>> + * This file is subject to the terms and conditions of the GNU General Public
>> + * License.  See the file "COPYING" in the main directory of this archive
>> + * for more details.
>> + *
>> + * Copyright (C) 2017 Cavium, Inc.
>> + */

Since you nicely included an SPDX id, you would not need the
boilerplate anymore. e.g. these can go alright?

>> + * This file is subject to the terms and conditions of the GNU General Public
>> + * License.  See the file "COPYING" in the main directory of this archive
>> + * for more details.

-- 
Cordially
Philippe Ombredanne

^ permalink raw reply

* [PATCH net 0/4] bnxt_en: Fixes.
From: Michael Chan @ 2017-12-01  8:13 UTC (permalink / raw)
  To: davem; +Cc: netdev

A shutdown fix for SMARTNIC, 2 fixes related to TC Flower vxlan
filters, and the last one fixes an out-of-scope variable when sending
short firmware messages.

Ray Jui (1):
  bnxt_en: Need to unconditionally shut down RoCE in bnxt_shutdown

Sathya Perla (1):
  bnxt_en: fix dst/src fid for vxlan encap/decap actions

Sunil Challa (1):
  bnxt_en: wildcard smac while creating tunnel decap filter

Vasundhara Volam (1):
  bnxt_en: Fix a variable scoping in bnxt_hwrm_do_send_msg()

 drivers/net/ethernet/broadcom/bnxt/bnxt.c    |  5 ++-
 drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c | 55 ++++++++++++++--------------
 2 files changed, 31 insertions(+), 29 deletions(-)

-- 
1.8.3.1

^ permalink raw reply

* [PATCH net 1/4] bnxt_en: Need to unconditionally shut down RoCE in bnxt_shutdown
From: Michael Chan @ 2017-12-01  8:13 UTC (permalink / raw)
  To: davem; +Cc: netdev, Ray Jui
In-Reply-To: <1512115985-28327-1-git-send-email-michael.chan@broadcom.com>

From: Ray Jui <ray.jui@broadcom.com>

The current 'bnxt_shutdown' implementation only invokes
'bnxt_ulp_shutdown' to shut down RoCE in the case when the system is in
the path of power off (SYSTEM_POWER_OFF). While this may work in most
cases, it does not work in the smart NIC case, when Linux 'reboot'
command is initiated from the Linux that runs on the ARM cores of the
NIC card. In this particular case, Linux 'reboot' results in a system
'L3' level reset where the entire ARM and associated subsystems are
being reset, but at the same time, Nitro core is being kept in sane state
(to allow external PCIe connected servers to continue to work). Without
properly shutting down RoCE and freeing all associated resources, it
results in the ARM core to hang immediately after the 'reboot'

By always invoking 'bnxt_ulp_shutdown' in 'bnxt_shutdown', it fixes the
above issue

Fixes: 0efd2fc65c92 ("bnxt_en: Add a callback to inform RDMA driver during PCI shutdown.")

Signed-off-by: Ray Jui <ray.jui@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
---
 drivers/net/ethernet/broadcom/bnxt/bnxt.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt.c b/drivers/net/ethernet/broadcom/bnxt/bnxt.c
index c5c38d4..7f173eb 100644
--- a/drivers/net/ethernet/broadcom/bnxt/bnxt.c
+++ b/drivers/net/ethernet/broadcom/bnxt/bnxt.c
@@ -8263,8 +8263,9 @@ static void bnxt_shutdown(struct pci_dev *pdev)
 	if (netif_running(dev))
 		dev_close(dev);
 
+	bnxt_ulp_shutdown(bp);
+
 	if (system_state == SYSTEM_POWER_OFF) {
-		bnxt_ulp_shutdown(bp);
 		bnxt_clear_int_mode(bp);
 		pci_wake_from_d3(pdev, bp->wol);
 		pci_set_power_state(pdev, PCI_D3hot);
-- 
1.8.3.1

^ permalink raw reply related

* [PATCH net 2/4] bnxt_en: wildcard smac while creating tunnel decap filter
From: Michael Chan @ 2017-12-01  8:13 UTC (permalink / raw)
  To: davem; +Cc: netdev, Sunil Challa
In-Reply-To: <1512115985-28327-1-git-send-email-michael.chan@broadcom.com>

From: Sunil Challa <sunilkumar.challa@broadcom.com>

While creating a decap filter the tunnel smac need not (and must not) be
specified as we cannot ascertain the neighbor in the recv path. 'ttl'
match is also not needed for the decap filter and must be wild-carded.

Fixes: f484f6782e01 ("bnxt_en: add hwrm FW cmds for cfa_encap_record and decap_filter")
Signed-off-by: Sunil Challa <sunilkumar.challa@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
---
 drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c b/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c
index d5031f4..96bff48 100644
--- a/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c
+++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c
@@ -532,10 +532,8 @@ static int hwrm_cfa_decap_filter_alloc(struct bnxt *bp,
 	}
 
 	if (flow->flags & BNXT_TC_FLOW_FLAGS_TUNL_ETH_ADDRS) {
-		enables |= CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_DST_MACADDR |
-			   CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_SRC_MACADDR;
+		enables |= CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_DST_MACADDR;
 		ether_addr_copy(req.dst_macaddr, l2_info->dmac);
-		ether_addr_copy(req.src_macaddr, l2_info->smac);
 	}
 	if (l2_info->num_vlans) {
 		enables |= CFA_DECAP_FILTER_ALLOC_REQ_ENABLES_T_IVLAN_VID;
@@ -1012,10 +1010,9 @@ static int bnxt_tc_get_decap_handle(struct bnxt *bp, struct bnxt_tc_flow *flow,
 	if (rc)
 		goto put_decap;
 
-	decap_key->ttl = tun_key.ttl;
 	decap_l2_info = &decap_node->l2_info;
+	/* decap smac is wildcarded */
 	ether_addr_copy(decap_l2_info->dmac, l2_info.smac);
-	ether_addr_copy(decap_l2_info->smac, l2_info.dmac);
 	if (l2_info.num_vlans) {
 		decap_l2_info->num_vlans = l2_info.num_vlans;
 		decap_l2_info->inner_vlan_tpid = l2_info.inner_vlan_tpid;
-- 
1.8.3.1

^ permalink raw reply related

* [PATCH net 3/4] bnxt_en: fix dst/src fid for vxlan encap/decap actions
From: Michael Chan @ 2017-12-01  8:13 UTC (permalink / raw)
  To: davem; +Cc: netdev, Sathya Perla
In-Reply-To: <1512115985-28327-1-git-send-email-michael.chan@broadcom.com>

From: Sathya Perla <sathya.perla@broadcom.com>

For flows that involve a vxlan encap action, the vxlan sock
interface may be specified as the outgoing interface. The driver
must resolve the outgoing PF interface used by this socket and
use the dst_fid of the PF in the hwrm_cfa_encap_record_alloc cmd.

Similarily for flows that have a vxlan decap action, the
fid of the incoming PF interface must be used as the src_fid in
the hwrm_cfa_decap_filter_alloc cmd.

Fixes: 8c95f773b4a3 ("bnxt_en: add support for Flower based vxlan encap/decap offload")
Signed-off-by: Sathya Perla <sathya.perla@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
---
 drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c | 48 +++++++++++++++-------------
 1 file changed, 26 insertions(+), 22 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c b/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c
index 96bff48..3d201d7 100644
--- a/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c
+++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_tc.c
@@ -56,7 +56,6 @@ static int bnxt_tc_parse_redir(struct bnxt *bp,
 {
 	int ifindex = tcf_mirred_ifindex(tc_act);
 	struct net_device *dev;
-	u16 dst_fid;
 
 	dev = __dev_get_by_index(dev_net(bp->dev), ifindex);
 	if (!dev) {
@@ -64,15 +63,7 @@ static int bnxt_tc_parse_redir(struct bnxt *bp,
 		return -EINVAL;
 	}
 
-	/* find the FID from dev */
-	dst_fid = bnxt_flow_get_dst_fid(bp, dev);
-	if (dst_fid == BNXT_FID_INVALID) {
-		netdev_info(bp->dev, "can't get fid for ifindex=%d", ifindex);
-		return -EINVAL;
-	}
-
 	actions->flags |= BNXT_TC_ACTION_FLAG_FWD;
-	actions->dst_fid = dst_fid;
 	actions->dst_dev = dev;
 	return 0;
 }
@@ -160,13 +151,17 @@ static int bnxt_tc_parse_actions(struct bnxt *bp,
 	if (rc)
 		return rc;
 
-	/* Tunnel encap/decap action must be accompanied by a redirect action */
-	if ((actions->flags & BNXT_TC_ACTION_FLAG_TUNNEL_ENCAP ||
-	     actions->flags & BNXT_TC_ACTION_FLAG_TUNNEL_DECAP) &&
-	    !(actions->flags & BNXT_TC_ACTION_FLAG_FWD)) {
-		netdev_info(bp->dev,
-			    "error: no redir action along with encap/decap");
-		return -EINVAL;
+	if (actions->flags & BNXT_TC_ACTION_FLAG_FWD) {
+		if (actions->flags & BNXT_TC_ACTION_FLAG_TUNNEL_ENCAP) {
+			/* dst_fid is PF's fid */
+			actions->dst_fid = bp->pf.fw_fid;
+		} else {
+			/* find the FID from dst_dev */
+			actions->dst_fid =
+				bnxt_flow_get_dst_fid(bp, actions->dst_dev);
+			if (actions->dst_fid == BNXT_FID_INVALID)
+				return -EINVAL;
+		}
 	}
 
 	return rc;
@@ -899,10 +894,10 @@ static void bnxt_tc_put_decap_handle(struct bnxt *bp,
 
 static int bnxt_tc_resolve_tunnel_hdrs(struct bnxt *bp,
 				       struct ip_tunnel_key *tun_key,
-				       struct bnxt_tc_l2_key *l2_info,
-				       struct net_device *real_dst_dev)
+				       struct bnxt_tc_l2_key *l2_info)
 {
 #ifdef CONFIG_INET
+	struct net_device *real_dst_dev = bp->dev;
 	struct flowi4 flow = { {0} };
 	struct net_device *dst_dev;
 	struct neighbour *nbr;
@@ -1006,7 +1001,7 @@ static int bnxt_tc_get_decap_handle(struct bnxt *bp, struct bnxt_tc_flow *flow,
 	 */
 	tun_key.u.ipv4.dst = flow->tun_key.u.ipv4.src;
 	tun_key.tp_dst = flow->tun_key.tp_dst;
-	rc = bnxt_tc_resolve_tunnel_hdrs(bp, &tun_key, &l2_info, bp->dev);
+	rc = bnxt_tc_resolve_tunnel_hdrs(bp, &tun_key, &l2_info);
 	if (rc)
 		goto put_decap;
 
@@ -1092,8 +1087,7 @@ static int bnxt_tc_get_encap_handle(struct bnxt *bp, struct bnxt_tc_flow *flow,
 	if (encap_node->tunnel_handle != INVALID_TUNNEL_HANDLE)
 		goto done;
 
-	rc = bnxt_tc_resolve_tunnel_hdrs(bp, encap_key, &encap_node->l2_info,
-					 flow->actions.dst_dev);
+	rc = bnxt_tc_resolve_tunnel_hdrs(bp, encap_key, &encap_node->l2_info);
 	if (rc)
 		goto put_encap;
 
@@ -1166,6 +1160,15 @@ static int __bnxt_tc_del_flow(struct bnxt *bp,
 	return 0;
 }
 
+static void bnxt_tc_set_src_fid(struct bnxt *bp, struct bnxt_tc_flow *flow,
+				u16 src_fid)
+{
+	if (flow->actions.flags & BNXT_TC_ACTION_FLAG_TUNNEL_DECAP)
+		flow->src_fid = bp->pf.fw_fid;
+	else
+		flow->src_fid = src_fid;
+}
+
 /* Add a new flow or replace an existing flow.
  * Notes on locking:
  * There are essentially two critical sections here.
@@ -1201,7 +1204,8 @@ static int bnxt_tc_add_flow(struct bnxt *bp, u16 src_fid,
 	rc = bnxt_tc_parse_flow(bp, tc_flow_cmd, flow);
 	if (rc)
 		goto free_node;
-	flow->src_fid = src_fid;
+
+	bnxt_tc_set_src_fid(bp, flow, src_fid);
 
 	if (!bnxt_tc_can_offload(bp, flow)) {
 		rc = -ENOSPC;
-- 
1.8.3.1

^ permalink raw reply related

* [PATCH net 4/4] bnxt_en: Fix a variable scoping in bnxt_hwrm_do_send_msg()
From: Michael Chan @ 2017-12-01  8:13 UTC (permalink / raw)
  To: davem; +Cc: netdev, Vasundhara Volam
In-Reply-To: <1512115985-28327-1-git-send-email-michael.chan@broadcom.com>

From: Vasundhara Volam <vasundhara-v.volam@broadcom.com>

short_input variable is assigned to another data pointer which is
referred out of its scope. Fix it by moving short_input definition
to the beginning of bnxt_hwrm_do_send_msg() function.

No failure has been reported so far due to this issue.

Fixes: e605db801bde ("bnxt_en: Support for Short Firmware Message")
Signed-off-by: Vasundhara Volam <vasundhara-v.volam@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
---
 drivers/net/ethernet/broadcom/bnxt/bnxt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt.c b/drivers/net/ethernet/broadcom/bnxt/bnxt.c
index 7f173eb..28f5e94 100644
--- a/drivers/net/ethernet/broadcom/bnxt/bnxt.c
+++ b/drivers/net/ethernet/broadcom/bnxt/bnxt.c
@@ -3368,6 +3368,7 @@ static int bnxt_hwrm_do_send_msg(struct bnxt *bp, void *msg, u32 msg_len,
 	u16 cp_ring_id, len = 0;
 	struct hwrm_err_output *resp = bp->hwrm_cmd_resp_addr;
 	u16 max_req_len = BNXT_HWRM_MAX_REQ_LEN;
+	struct hwrm_short_input short_input = {0};
 
 	req->seq_id = cpu_to_le16(bp->hwrm_cmd_seq++);
 	memset(resp, 0, PAGE_SIZE);
@@ -3376,7 +3377,6 @@ static int bnxt_hwrm_do_send_msg(struct bnxt *bp, void *msg, u32 msg_len,
 
 	if (bp->flags & BNXT_FLAG_SHORT_CMD) {
 		void *short_cmd_req = bp->hwrm_short_cmd_req_addr;
-		struct hwrm_short_input short_input = {0};
 
 		memcpy(short_cmd_req, req, msg_len);
 		memset(short_cmd_req + msg_len, 0, BNXT_HWRM_MAX_REQ_LEN -
-- 
1.8.3.1

^ permalink raw reply related

* KASAN: stack-out-of-bounds Read in csum_and_copy_from_iter_full
From: syzbot @ 2017-12-01  8:14 UTC (permalink / raw)
  To: davem, kuznet, linux-kernel, netdev, syzkaller-bugs, yoshfuji

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

Hello,

syzkaller hit the following crash on  
1ea8d039f9edcfefb20d8ddfe136930f6e551529
git://git.cmpxchg.org/linux-mmots.git/master
compiler: gcc (GCC) 7.1.1 20170620
.config is attached
Raw console output is attached.

Unfortunately, I don't have any reproducer for this bug yet.


QAT: Invalid ioctl
==================================================================
BUG: KASAN: stack-out-of-bounds in csum_and_copy_from_iter_full+0xb61/0xf30  
lib/iov_iter.c:1228
Read of size 4 at addr ffff880187a67a98 by task syz-executor0/3674

CPU: 0 PID: 3674 Comm: syz-executor0 Not tainted 4.14.0-mm1+ #25
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS  
Google 01/01/2011
Call Trace:
  __dump_stack lib/dump_stack.c:17 [inline]
  dump_stack+0x194/0x257 lib/dump_stack.c:53
  print_address_description+0x73/0x250 mm/kasan/report.c:252
  kasan_report_error mm/kasan/report.c:351 [inline]
  kasan_report+0x25b/0x340 mm/kasan/report.c:409
  __asan_report_load4_noabort+0x14/0x20 mm/kasan/report.c:429
  csum_and_copy_from_iter_full+0xb61/0xf30 lib/iov_iter.c:1228
  ip_generic_getfrag+0x169/0x260 net/ipv4/ip_output.c:837
  raw_getfrag+0x139/0x210 net/ipv4/raw.c:499
  __ip_append_data.isra.46+0x1779/0x2550 net/ipv4/ip_output.c:1018
  ip_append_data.part.48+0xde/0x150 net/ipv4/ip_output.c:1170
  ip_append_data+0x5a/0x80 net/ipv4/ip_output.c:1159
  raw_sendmsg+0x1704/0x3920 net/ipv4/raw.c:658
  inet_sendmsg+0x11f/0x5e0 net/ipv4/af_inet.c:763
  sock_sendmsg_nosec net/socket.c:632 [inline]
  sock_sendmsg+0xca/0x110 net/socket.c:642
  SYSC_sendto+0x358/0x5a0 net/socket.c:1749
  SyS_sendto+0x40/0x50 net/socket.c:1717
  entry_SYSCALL_64_fastpath+0x1f/0x96
RIP: 0033:0x452879
RSP: 002b:00007f3b55cdebe8 EFLAGS: 00000212 ORIG_RAX: 000000000000002c
RAX: ffffffffffffffda RBX: 00000000007580d8 RCX: 0000000000452879
RDX: 0000000000000028 RSI: 000000002000c000 RDI: 0000000000000016
RBP: 0000000000000086 R08: 000000002000b000 R09: 0000000000000010
R10: 0000000000000000 R11: 0000000000000212 R12: 0000000000000000
R13: 0000000000a6f7ff R14: 00007f3b55cdf9c0 R15: 0000000000000001

The buggy address belongs to the page:
page:ffffea00061e99c0 count:0 mapcount:0 mapping:          (null) index:0x0
flags: 0x2fffc0000000000()
raw: 02fffc0000000000 0000000000000000 0000000000000000 00000000ffffffff
raw: 0000000000000000 0000000100000001 ffff8801db217180 0000000000000000
page dumped because: kasan: bad access detected

Memory state around the buggy address:
  ffff880187a67980: f2 f2 f2 f2 00 f2 f2 f2 f2 f2 f2 f2 00 00 00 f2
  ffff880187a67a00: f2 f2 f2 f2 00 00 00 00 f2 f2 f2 f2 00 00 00 00
> ffff880187a67a80: 00 00 f2 f2 f2 f2 f2 f2 00 00 00 00 00 00 00 f2
                             ^
  ffff880187a67b00: f2 f2 f2 f2 00 00 00 00 00 00 00 00 00 f2 f2 f2
  ffff880187a67b80: f3 f3 f3 f3 00 00 00 00 00 00 00 00 00 00 f1 f1
==================================================================


---
This bug is generated by a dumb bot. It may contain errors.
See https://goo.gl/tpsmEJ for details.
Direct all questions to syzkaller@googlegroups.com.
Please credit me with: Reported-by: syzbot <syzkaller@googlegroups.com>

syzbot will keep track of this bug report.
Once a fix for this bug is committed, please reply to this email with:
#syz fix: exact-commit-title
To mark this as a duplicate of another syzbot report, please reply with:
#syz dup: exact-subject-of-another-report
If it's a one-off invalid bug report, please reply with:
#syz invalid
Note: if the crash happens again, it will cause creation of a new bug  
report.
Note: all commands must start from beginning of the line in the email body.

[-- Attachment #2: config.txt --]
[-- Type: text/plain, Size: 126116 bytes --]

#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 4.14.0 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_MMU=y
CONFIG_ARCH_MMAP_RND_BITS_MIN=28
CONFIG_ARCH_MMAP_RND_BITS_MAX=32
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_KASAN_SHADOW_OFFSET=0xdffffc0000000000
CONFIG_HAVE_INTEL_TXT=y
CONFIG_X86_64_SMP=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_PGTABLE_LEVELS=4
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_CONSTRUCTORS=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y
CONFIG_THREAD_INFO_IN_TASK=y

#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=""
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_USELIB=y
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_WATCH=y
CONFIG_AUDIT_TREE=y

#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_GENERIC_IRQ_MIGRATION=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_MSI_IRQ=y
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y
CONFIG_GENERIC_IRQ_RESERVATION_MODE=y
# CONFIG_IRQ_DOMAIN_DEBUG is not set
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y

#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y

#
# CPU/Task time and stats accounting
#
CONFIG_TICK_CPU_ACCOUNTING=y
# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
# CONFIG_BSD_PROCESS_ACCT_V3 is not set
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
# CONFIG_CPU_ISOLATION is not set

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_SRCU=y
CONFIG_TREE_SRCU=y
# CONFIG_TASKS_RCU is not set
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
# CONFIG_BUILD_BIN2C is not set
# CONFIG_IKCONFIG is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_NUMA_BALANCING=y
CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
CONFIG_MEMCG_SWAP_ENABLED=y
CONFIG_BLK_CGROUP=y
# CONFIG_DEBUG_BLK_CGROUP is not set
CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
# CONFIG_CFS_BANDWIDTH is not set
# CONFIG_RT_GROUP_SCHED is not set
CONFIG_CGROUP_PIDS=y
CONFIG_CGROUP_RDMA=y
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_HUGETLB=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_BPF=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_SOCK_CGROUP_DATA=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
# CONFIG_SCHED_AUTOGROUP is not set
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BPF=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_MULTIUSER=y
CONFIG_SGETMASK_SYSCALL=y
CONFIG_SYSFS_SYSCALL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_FHANDLE=y
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_PRINTK_NMI=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_MEMBARRIER=y
CONFIG_CHECKPOINT_RESTORE=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
CONFIG_BPF_SYSCALL=y
CONFIG_USERFAULTFD=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y
# CONFIG_PC104 is not set

#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
CONFIG_VM_EVENT_COUNTERS=y
# CONFIG_COMPAT_BRK is not set
CONFIG_SLAB=y
# CONFIG_SLUB is not set
# CONFIG_SLOB is not set
CONFIG_SLAB_MERGE_DEFAULT=y
# CONFIG_SLAB_FREELIST_RANDOM is not set
CONFIG_SYSTEM_DATA_VERIFICATION=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
CONFIG_CRASH_CORE=y
CONFIG_KEXEC_CORE=y
# CONFIG_OPROFILE is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
# CONFIG_STATIC_KEYS_SELFTEST is not set
CONFIG_OPTPROBES=y
CONFIG_UPROBES=y
# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_KRETPROBES=y
CONFIG_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_HAVE_NMI=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
CONFIG_ARCH_HAS_SET_MEMORY=y
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_CLK=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_HAVE_RCU_TABLE_FREE=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_GCC_PLUGINS=y
CONFIG_GCC_PLUGINS=y
# CONFIG_GCC_PLUGIN_CYC_COMPLEXITY is not set
CONFIG_GCC_PLUGIN_SANCOV=y
# CONFIG_GCC_PLUGIN_LATENT_ENTROPY is not set
# CONFIG_GCC_PLUGIN_STRUCTLEAK is not set
# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set
CONFIG_HAVE_CC_STACKPROTECTOR=y
# CONFIG_CC_STACKPROTECTOR is not set
CONFIG_CC_STACKPROTECTOR_NONE=y
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
# CONFIG_CC_STACKPROTECTOR_STRONG is not set
CONFIG_THIN_ARCHIVES=y
CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y
CONFIG_HAVE_ARCH_HUGE_VMAP=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
CONFIG_HAVE_EXIT_THREAD=y
CONFIG_ARCH_MMAP_RND_BITS=28
CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y
CONFIG_HAVE_COPY_THREAD_TLS=y
CONFIG_HAVE_STACK_VALIDATION=y
# CONFIG_HAVE_ARCH_HASH is not set
# CONFIG_ISA_BUS_API is not set
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
# CONFIG_CPU_NO_EFFICIENT_FFS is not set
CONFIG_HAVE_ARCH_VMAP_STACK=y
# CONFIG_ARCH_OPTIONAL_KERNEL_RWX is not set
# CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT is not set
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
CONFIG_STRICT_KERNEL_RWX=y
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
CONFIG_STRICT_MODULE_RWX=y
CONFIG_ARCH_HAS_REFCOUNT=y
CONFIG_REFCOUNT_FULL=y

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
# CONFIG_MODULE_SIG is not set
# CONFIG_MODULE_COMPRESS is not set
# CONFIG_TRIM_UNUSED_KSYMS is not set
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLK_SCSI_REQUEST=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_ZONED=y
CONFIG_BLK_DEV_THROTTLING=y
# CONFIG_BLK_DEV_THROTTLING_LOW is not set
# CONFIG_BLK_CMDLINE_PARSER is not set
CONFIG_BLK_WBT=y
# CONFIG_BLK_WBT_SQ is not set
CONFIG_BLK_WBT_MQ=y
# CONFIG_BLK_DEBUG_FS is not set
# CONFIG_BLK_SED_OPAL is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
# CONFIG_AIX_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
# CONFIG_ATARI_PARTITION is not set
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
# CONFIG_LDM_PARTITION is not set
CONFIG_SGI_PARTITION=y
# CONFIG_ULTRIX_PARTITION is not set
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
# CONFIG_SYSV68_PARTITION is not set
# CONFIG_CMDLINE_PARTITION is not set
CONFIG_BLOCK_COMPAT=y
CONFIG_BLK_MQ_PCI=y
CONFIG_BLK_MQ_VIRTIO=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_CFQ_GROUP_IOSCHED=y
# CONFIG_DEFAULT_DEADLINE is not set
CONFIG_DEFAULT_CFQ=y
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="cfq"
CONFIG_MQ_IOSCHED_DEADLINE=y
CONFIG_MQ_IOSCHED_KYBER=y
CONFIG_IOSCHED_BFQ=y
CONFIG_BFQ_GROUP_IOSCHED=y
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_PADATA=y
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_LOCK_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
CONFIG_QUEUED_SPINLOCKS=y
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_FREEZER=y

#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
CONFIG_X86_FEATURE_NAMES=y
CONFIG_X86_FAST_FEATURE_TESTS=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
# CONFIG_GOLDFISH is not set
# CONFIG_INTEL_RDT is not set
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_NUMACHIP is not set
# CONFIG_X86_VSMP is not set
# CONFIG_X86_UV is not set
# CONFIG_X86_GOLDFISH is not set
# CONFIG_X86_INTEL_MID is not set
# CONFIG_X86_INTEL_LPSS is not set
# CONFIG_X86_AMD_PLATFORM_DEVICE is not set
CONFIG_IOSF_MBI=y
# CONFIG_IOSF_MBI_DEBUG is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
CONFIG_PARAVIRT_DEBUG=y
CONFIG_PARAVIRT_SPINLOCKS=y
# CONFIG_QUEUED_LOCK_STAT is not set
CONFIG_XEN=y
CONFIG_XEN_PV=y
CONFIG_XEN_PV_SMP=y
CONFIG_XEN_DOM0=y
CONFIG_XEN_PVHVM=y
CONFIG_XEN_PVHVM_SMP=y
CONFIG_XEN_512GB=y
CONFIG_XEN_SAVE_RESTORE=y
# CONFIG_XEN_DEBUG_FS is not set
CONFIG_XEN_PVH=y
CONFIG_KVM_GUEST=y
# CONFIG_KVM_DEBUG_FS is not set
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
CONFIG_PARAVIRT_CLOCK=y
CONFIG_NO_BOOTMEM=y
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
# CONFIG_PROCESSOR_SELECT is not set
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
# CONFIG_GART_IOMMU is not set
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=64
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
CONFIG_SCHED_MC_PRIO=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_COUNT=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
# CONFIG_X86_MCELOG_LEGACY is not set
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_AMD=y
CONFIG_X86_MCE_THRESHOLD=y
CONFIG_X86_MCE_INJECT=y
CONFIG_X86_THERMAL_VECTOR=y

#
# Performance monitoring
#
CONFIG_PERF_EVENTS_INTEL_UNCORE=y
CONFIG_PERF_EVENTS_INTEL_RAPL=y
CONFIG_PERF_EVENTS_INTEL_CSTATE=y
# CONFIG_PERF_EVENTS_AMD_POWER is not set
# CONFIG_VM86 is not set
CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
CONFIG_X86_VSYSCALL_EMULATION=y
# CONFIG_I8K is not set
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
# CONFIG_X86_5LEVEL is not set
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_X86_DIRECT_GBPAGES=y
CONFIG_ARCH_HAS_MEM_ENCRYPT=y
# CONFIG_AMD_MEM_ENCRYPT is not set
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
# CONFIG_NUMA_EMU is not set
CONFIG_NODES_SHIFT=6
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_HAVE_GENERIC_GUP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_ARCH_ENABLE_THP_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_MEMORY_FAILURE is not set
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
CONFIG_ARCH_WANTS_THP_SWAP=y
CONFIG_THP_SWAP=y
CONFIG_TRANSPARENT_HUGE_PAGECACHE=y
# CONFIG_CLEANCACHE is not set
# CONFIG_FRONTSWAP is not set
# CONFIG_CMA is not set
# CONFIG_MEM_SOFT_DIRTY is not set
# CONFIG_ZPOOL is not set
# CONFIG_ZBUD is not set
# CONFIG_ZSMALLOC is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y
# CONFIG_IDLE_PAGE_TRACKING is not set
CONFIG_ARCH_HAS_ZONE_DEVICE=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
CONFIG_ARCH_HAS_PKEYS=y
# CONFIG_PERCPU_STATS is not set
# CONFIG_GUP_BENCHMARK is not set
# CONFIG_X86_PMEM_LEGACY is not set
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=0
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
# CONFIG_X86_INTEL_UMIP is not set
CONFIG_X86_INTEL_MPX=y
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
CONFIG_EFI=y
# CONFIG_EFI_STUB is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
# CONFIG_KEXEC_FILE is not set
CONFIG_CRASH_DUMP=y
# CONFIG_KEXEC_JUMP is not set
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
# CONFIG_RANDOMIZE_BASE is not set
CONFIG_PHYSICAL_ALIGN=0x200000
CONFIG_HOTPLUG_CPU=y
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_COMPAT_VDSO is not set
# CONFIG_LEGACY_VSYSCALL_NATIVE is not set
CONFIG_LEGACY_VSYSCALL_EMULATE=y
# CONFIG_LEGACY_VSYSCALL_NONE is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_MODIFY_LDT_SYSCALL=y
CONFIG_HAVE_LIVEPATCH=y
CONFIG_ARCH_HAS_ADD_PAGES=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y

#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
# CONFIG_SUSPEND_SKIP_SYNC is not set
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM=y
CONFIG_PM_DEBUG=y
# CONFIG_PM_ADVANCED_DEBUG is not set
# CONFIG_PM_TEST_SUSPEND is not set
CONFIG_PM_SLEEP_DEBUG=y
CONFIG_PM_TRACE=y
CONFIG_PM_TRACE_RTC=y
CONFIG_PM_CLK=y
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
# CONFIG_ACPI_DEBUGGER is not set
CONFIG_ACPI_LPIT=y
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS_POWER is not set
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
# CONFIG_ACPI_EC_DEBUGFS is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_CPU_FREQ_PSS=y
CONFIG_ACPI_PROCESSOR_CSTATE=y
CONFIG_ACPI_PROCESSOR_IDLE=y
CONFIG_ACPI_CPPC_LIB=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_NUMA=y
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y
CONFIG_ACPI_TABLE_UPGRADE=y
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
CONFIG_ACPI_HOTPLUG_IOAPIC=y
# CONFIG_ACPI_SBS is not set
# CONFIG_ACPI_HED is not set
# CONFIG_ACPI_CUSTOM_METHOD is not set
# CONFIG_ACPI_BGRT is not set
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
# CONFIG_ACPI_NFIT is not set
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
# CONFIG_ACPI_APEI is not set
# CONFIG_DPTF_POWER is not set
# CONFIG_ACPI_EXTLOG is not set
# CONFIG_PMIC_OPREGION is not set
# CONFIG_ACPI_CONFIGFS is not set
# CONFIG_SFI is not set

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_ATTR_SET=y
CONFIG_CPU_FREQ_GOV_COMMON=y
# CONFIG_CPU_FREQ_STAT is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
# CONFIG_CPU_FREQ_GOV_SCHEDUTIL is not set

#
# CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
# CONFIG_X86_PCC_CPUFREQ is not set
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ_CPB=y
# CONFIG_X86_POWERNOW_K8 is not set
# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
# CONFIG_X86_P4_CLOCKMOD is not set

#
# shared options
#
# CONFIG_X86_SPEEDSTEP_LIB is not set

#
# CPU Idle
#
CONFIG_CPU_IDLE=y
# CONFIG_CPU_IDLE_GOV_LADDER is not set
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
# CONFIG_INTEL_IDLE is not set

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
CONFIG_PCIEPORTBUS=y
# CONFIG_HOTPLUG_PCI_PCIE is not set
CONFIG_PCIEAER=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIEASPM=y
# CONFIG_PCIEASPM_DEBUG is not set
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
# CONFIG_PCIE_DPC is not set
# CONFIG_PCIE_PTM is not set
CONFIG_PCI_BUS_ADDR_T_64BIT=y
CONFIG_PCI_MSI=y
CONFIG_PCI_MSI_IRQ_DOMAIN=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
# CONFIG_PCI_STUB is not set
CONFIG_XEN_PCIDEV_FRONTEND=y
CONFIG_HT_IRQ=y
CONFIG_PCI_ATS=y
CONFIG_PCI_LOCKLESS_CONFIG=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
CONFIG_PCI_LABEL=y
CONFIG_HOTPLUG_PCI=y
# CONFIG_HOTPLUG_PCI_ACPI is not set
# CONFIG_HOTPLUG_PCI_CPCI is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set

#
# DesignWare PCI Core Support
#
# CONFIG_PCIE_DW_PLAT is not set

#
# PCI host controller drivers
#
# CONFIG_VMD is not set

#
# PCI Endpoint
#
CONFIG_PCI_ENDPOINT=y
# CONFIG_PCI_ENDPOINT_CONFIGFS is not set
# CONFIG_PCI_EPF_TEST is not set

#
# PCI switch controller drivers
#
# CONFIG_PCI_SW_SWITCHTEC is not set
# CONFIG_ISA_BUS is not set
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
CONFIG_PCCARD=y
CONFIG_PCMCIA=y
CONFIG_PCMCIA_LOAD_CIS=y
CONFIG_CARDBUS=y

#
# PC-card bridges
#
CONFIG_YENTA=y
CONFIG_YENTA_O2=y
CONFIG_YENTA_RICOH=y
CONFIG_YENTA_TI=y
CONFIG_YENTA_ENE_TUNE=y
CONFIG_YENTA_TOSHIBA=y
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
CONFIG_PCCARD_NONSTATIC=y
# CONFIG_RAPIDIO is not set
# CONFIG_X86_SYSFB is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ELFCORE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
CONFIG_BINFMT_SCRIPT=y
# CONFIG_HAVE_AOUT is not set
CONFIG_BINFMT_MISC=y
CONFIG_COREDUMP=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
# CONFIG_X86_X32 is not set
CONFIG_COMPAT_32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_NET=y
CONFIG_NET_INGRESS=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
CONFIG_TLS=y
CONFIG_XFRM=y
CONFIG_XFRM_OFFLOAD=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=y
# CONFIG_XFRM_SUB_POLICY is not set
CONFIG_XFRM_MIGRATE=y
# CONFIG_XFRM_STATISTICS is not set
CONFIG_XFRM_IPCOMP=y
CONFIG_NET_KEY=y
CONFIG_NET_KEY_MIGRATE=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
# CONFIG_IP_FIB_TRIE_STATS is not set
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y
CONFIG_IP_PNP_RARP=y
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
CONFIG_NET_IP_TUNNEL=y
CONFIG_IP_MROUTE=y
# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_SYN_COOKIES=y
# CONFIG_NET_IPVTI is not set
CONFIG_NET_UDP_TUNNEL=y
# CONFIG_NET_FOU is not set
# CONFIG_NET_FOU_IP_TUNNELS is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
CONFIG_INET_IPCOMP=y
CONFIG_INET_XFRM_TUNNEL=y
CONFIG_INET_TUNNEL=y
CONFIG_INET_XFRM_MODE_TRANSPORT=y
CONFIG_INET_XFRM_MODE_TUNNEL=y
CONFIG_INET_XFRM_MODE_BEET=y
# CONFIG_INET_DIAG is not set
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
CONFIG_TCP_CONG_CUBIC=y
# CONFIG_TCP_CONG_WESTWOOD is not set
# CONFIG_TCP_CONG_HTCP is not set
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
# CONFIG_TCP_CONG_VEGAS is not set
# CONFIG_TCP_CONG_NV is not set
# CONFIG_TCP_CONG_SCALABLE is not set
# CONFIG_TCP_CONG_LP is not set
# CONFIG_TCP_CONG_VENO is not set
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_TCP_CONG_DCTCP is not set
# CONFIG_TCP_CONG_CDG is not set
# CONFIG_TCP_CONG_BBR is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=y
# CONFIG_IPV6_ROUTER_PREF is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
CONFIG_INET6_AH=y
CONFIG_INET6_ESP=y
CONFIG_INET6_ESP_OFFLOAD=y
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_IPV6_ILA is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
CONFIG_INET6_TUNNEL=y
CONFIG_INET6_XFRM_MODE_TRANSPORT=y
CONFIG_INET6_XFRM_MODE_TUNNEL=y
CONFIG_INET6_XFRM_MODE_BEET=y
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
# CONFIG_IPV6_VTI is not set
CONFIG_IPV6_SIT=y
# CONFIG_IPV6_SIT_6RD is not set
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=y
# CONFIG_IPV6_FOU is not set
# CONFIG_IPV6_FOU_TUNNEL is not set
# CONFIG_IPV6_MULTIPLE_TABLES is not set
CONFIG_IPV6_MROUTE=y
# CONFIG_IPV6_MROUTE_MULTIPLE_TABLES is not set
# CONFIG_IPV6_PIMSM_V2 is not set
# CONFIG_IPV6_SEG6_LWTUNNEL is not set
# CONFIG_IPV6_SEG6_HMAC is not set
CONFIG_NETLABEL=y
CONFIG_NETWORK_SECMARK=y
CONFIG_NET_PTP_CLASSIFY=y
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_ADVANCED is not set

#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
CONFIG_NETFILTER_NETLINK=y
CONFIG_NETFILTER_NETLINK_LOG=y
CONFIG_NF_CONNTRACK=y
CONFIG_NF_LOG_COMMON=y
# CONFIG_NF_LOG_NETDEV is not set
CONFIG_NF_CONNTRACK_SECMARK=y
CONFIG_NF_CONNTRACK_PROCFS=y
CONFIG_NF_CONNTRACK_FTP=y
CONFIG_NF_CONNTRACK_IRC=y
# CONFIG_NF_CONNTRACK_NETBIOS_NS is not set
CONFIG_NF_CONNTRACK_SIP=y
CONFIG_NF_CT_NETLINK=y
# CONFIG_NETFILTER_NETLINK_GLUE_CT is not set
CONFIG_NF_NAT=y
CONFIG_NF_NAT_NEEDED=y
# CONFIG_NF_NAT_AMANDA is not set
CONFIG_NF_NAT_FTP=y
CONFIG_NF_NAT_IRC=y
CONFIG_NF_NAT_SIP=y
# CONFIG_NF_NAT_TFTP is not set
# CONFIG_NF_NAT_REDIRECT is not set
# CONFIG_NF_TABLES is not set
CONFIG_NETFILTER_XTABLES=y

#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=y

#
# Xtables targets
#
CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=y
CONFIG_NETFILTER_XT_TARGET_LOG=y
CONFIG_NETFILTER_XT_NAT=y
# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
CONFIG_NETFILTER_XT_TARGET_NFLOG=y
# CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set
CONFIG_NETFILTER_XT_TARGET_SECMARK=y
CONFIG_NETFILTER_XT_TARGET_TCPMSS=y

#
# Xtables matches
#
CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=y
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=y
CONFIG_NETFILTER_XT_MATCH_POLICY=y
CONFIG_NETFILTER_XT_MATCH_STATE=y
# CONFIG_IP_SET is not set
# CONFIG_IP_VS is not set

#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=y
CONFIG_NF_CONNTRACK_IPV4=y
# CONFIG_NF_SOCKET_IPV4 is not set
# CONFIG_NF_DUP_IPV4 is not set
CONFIG_NF_LOG_ARP=y
CONFIG_NF_LOG_IPV4=y
CONFIG_NF_REJECT_IPV4=y
CONFIG_NF_NAT_IPV4=y
CONFIG_NF_NAT_MASQUERADE_IPV4=y
# CONFIG_NF_NAT_PPTP is not set
# CONFIG_NF_NAT_H323 is not set
CONFIG_IP_NF_IPTABLES=y
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
CONFIG_IP_NF_NAT=y
CONFIG_IP_NF_TARGET_MASQUERADE=y
CONFIG_IP_NF_MANGLE=y
# CONFIG_IP_NF_RAW is not set

#
# IPv6: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV6=y
CONFIG_NF_CONNTRACK_IPV6=y
# CONFIG_NF_SOCKET_IPV6 is not set
# CONFIG_NF_DUP_IPV6 is not set
CONFIG_NF_REJECT_IPV6=y
CONFIG_NF_LOG_IPV6=y
CONFIG_IP6_NF_IPTABLES=y
CONFIG_IP6_NF_MATCH_IPV6HEADER=y
CONFIG_IP6_NF_FILTER=y
CONFIG_IP6_NF_TARGET_REJECT=y
CONFIG_IP6_NF_MANGLE=y
# CONFIG_IP6_NF_RAW is not set
# CONFIG_BRIDGE_NF_EBTABLES is not set
CONFIG_IP_DCCP=y

#
# DCCP CCIDs Configuration
#
# CONFIG_IP_DCCP_CCID2_DEBUG is not set
CONFIG_IP_DCCP_CCID3=y
# CONFIG_IP_DCCP_CCID3_DEBUG is not set
CONFIG_IP_DCCP_TFRC_LIB=y

#
# DCCP Kernel Hacking
#
# CONFIG_IP_DCCP_DEBUG is not set
# CONFIG_NET_DCCPPROBE is not set
CONFIG_IP_SCTP=y
# CONFIG_NET_SCTPPROBE is not set
# CONFIG_SCTP_DBG_OBJCNT is not set
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
CONFIG_SCTP_COOKIE_HMAC_MD5=y
CONFIG_SCTP_COOKIE_HMAC_SHA1=y
CONFIG_RDS=y
CONFIG_RDS_TCP=y
# CONFIG_RDS_DEBUG is not set
CONFIG_TIPC=y
CONFIG_TIPC_MEDIA_UDP=y
CONFIG_ATM=y
CONFIG_ATM_CLIP=y
# CONFIG_ATM_CLIP_NO_ICMP is not set
CONFIG_ATM_LANE=y
CONFIG_ATM_MPOA=y
CONFIG_ATM_BR2684=y
# CONFIG_ATM_BR2684_IPFILTER is not set
CONFIG_L2TP=y
# CONFIG_L2TP_DEBUGFS is not set
# CONFIG_L2TP_V3 is not set
CONFIG_STP=y
CONFIG_BRIDGE=y
CONFIG_BRIDGE_IGMP_SNOOPING=y
# CONFIG_BRIDGE_VLAN_FILTERING is not set
CONFIG_HAVE_NET_DSA=y
CONFIG_NET_DSA=y
CONFIG_VLAN_8021Q=y
# CONFIG_VLAN_8021Q_GVRP is not set
# CONFIG_VLAN_8021Q_MVRP is not set
# CONFIG_DECNET is not set
CONFIG_LLC=y
CONFIG_LLC2=y
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y

#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
# CONFIG_NET_SCH_HTB is not set
# CONFIG_NET_SCH_HFSC is not set
# CONFIG_NET_SCH_ATM is not set
# CONFIG_NET_SCH_PRIO is not set
# CONFIG_NET_SCH_MULTIQ is not set
# CONFIG_NET_SCH_RED is not set
# CONFIG_NET_SCH_SFB is not set
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_CBS is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_NETEM is not set
# CONFIG_NET_SCH_DRR is not set
# CONFIG_NET_SCH_MQPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
# CONFIG_NET_SCH_CODEL is not set
# CONFIG_NET_SCH_FQ_CODEL is not set
# CONFIG_NET_SCH_FQ is not set
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_SCH_PLUG is not set
# CONFIG_NET_SCH_DEFAULT is not set

#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=y
# CONFIG_NET_CLS_TCINDEX is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
# CONFIG_NET_CLS_U32 is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
# CONFIG_NET_CLS_CGROUP is not set
CONFIG_NET_CLS_BPF=y
# CONFIG_NET_CLS_FLOWER is not set
# CONFIG_NET_CLS_MATCHALL is not set
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_EMATCH_TEXT is not set
CONFIG_NET_CLS_ACT=y
# CONFIG_NET_ACT_POLICE is not set
# CONFIG_NET_ACT_GACT is not set
# CONFIG_NET_ACT_MIRRED is not set
CONFIG_NET_ACT_SAMPLE=y
# CONFIG_NET_ACT_IPT is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
# CONFIG_NET_ACT_VLAN is not set
CONFIG_NET_ACT_BPF=y
# CONFIG_NET_ACT_SKBMOD is not set
# CONFIG_NET_ACT_IFE is not set
# CONFIG_NET_ACT_TUNNEL_KEY is not set
CONFIG_NET_SCH_FIFO=y
# CONFIG_DCB is not set
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
CONFIG_VSOCKETS=y
CONFIG_VSOCKETS_DIAG=y
CONFIG_VIRTIO_VSOCKETS=y
CONFIG_VIRTIO_VSOCKETS_COMMON=y
# CONFIG_NETLINK_DIAG is not set
# CONFIG_MPLS is not set
# CONFIG_NET_NSH is not set
# CONFIG_HSR is not set
CONFIG_NET_SWITCHDEV=y
# CONFIG_NET_L3_MASTER_DEV is not set
# CONFIG_NET_NCSI is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_CGROUP_NET_PRIO is not set
# CONFIG_CGROUP_NET_CLASSID is not set
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_BPF_JIT=y
CONFIG_BPF_STREAM_PARSER=y
CONFIG_NET_FLOW_LIMIT=y

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
# CONFIG_NET_DROP_MONITOR is not set
CONFIG_HAMRADIO=y

#
# Packet Radio protocols
#
# CONFIG_AX25 is not set
# CONFIG_CAN is not set
CONFIG_BT=y
CONFIG_BT_BREDR=y
CONFIG_BT_RFCOMM=y
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=y
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_HIDP=y
CONFIG_BT_HS=y
CONFIG_BT_LE=y
CONFIG_BT_LEDS=y
# CONFIG_BT_SELFTEST is not set
# CONFIG_BT_DEBUGFS is not set

#
# Bluetooth device drivers
#
CONFIG_BT_INTEL=y
CONFIG_BT_RTL=y
CONFIG_BT_HCIBTUSB=y
# CONFIG_BT_HCIBTUSB_BCM is not set
CONFIG_BT_HCIBTUSB_RTL=y
# CONFIG_BT_HCIUART is not set
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIDTL1 is not set
# CONFIG_BT_HCIBT3C is not set
# CONFIG_BT_HCIBLUECARD is not set
# CONFIG_BT_HCIBTUART is not set
# CONFIG_BT_HCIVHCI is not set
# CONFIG_BT_MRVL is not set
# CONFIG_BT_ATH3K is not set
# CONFIG_AF_RXRPC is not set
CONFIG_AF_KCM=y
CONFIG_STREAM_PARSER=y
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=y
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y
CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y
CONFIG_CFG80211_DEFAULT_PS=y
# CONFIG_CFG80211_DEBUGFS is not set
CONFIG_CFG80211_CRDA_SUPPORT=y
# CONFIG_CFG80211_WEXT is not set
# CONFIG_LIB80211 is not set
CONFIG_MAC80211=y
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_MINSTREL_HT=y
# CONFIG_MAC80211_RC_MINSTREL_VHT is not set
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
# CONFIG_MAC80211_MESH is not set
CONFIG_MAC80211_LEDS=y
# CONFIG_MAC80211_DEBUGFS is not set
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
CONFIG_WIMAX=y
CONFIG_WIMAX_DEBUG_LEVEL=8
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
CONFIG_NET_9P=y
CONFIG_NET_9P_VIRTIO=y
CONFIG_NET_9P_XEN=y
# CONFIG_NET_9P_DEBUG is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
CONFIG_NFC=y
CONFIG_NFC_DIGITAL=y
CONFIG_NFC_NCI=y
CONFIG_NFC_NCI_UART=y
CONFIG_NFC_HCI=y
CONFIG_NFC_SHDLC=y

#
# Near Field Communication (NFC) devices
#
CONFIG_NFC_SIM=y
# CONFIG_NFC_PORT100 is not set
CONFIG_NFC_FDP=y
# CONFIG_NFC_FDP_I2C is not set
# CONFIG_NFC_PN544_I2C is not set
# CONFIG_NFC_PN533_USB is not set
# CONFIG_NFC_PN533_I2C is not set
# CONFIG_NFC_MICROREAD_I2C is not set
# CONFIG_NFC_MRVL_USB is not set
# CONFIG_NFC_MRVL_UART is not set
# CONFIG_NFC_ST21NFCA_I2C is not set
# CONFIG_NFC_ST_NCI_I2C is not set
# CONFIG_NFC_NXP_NCI is not set
# CONFIG_NFC_S3FWRN5_I2C is not set
CONFIG_PSAMPLE=y
# CONFIG_NET_IFE is not set
# CONFIG_LWTUNNEL is not set
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
# CONFIG_NET_DEVLINK is not set
CONFIG_MAY_USE_DEVLINK=y
CONFIG_HAVE_EBPF_JIT=y

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER=y
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
CONFIG_DEBUG_DEVRES=y
# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
CONFIG_SYS_HYPERVISOR=y
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_DMA_FENCE_TRACE is not set

#
# Bus devices
#
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
# CONFIG_OF is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
# CONFIG_PARPORT is not set
CONFIG_PNP=y
CONFIG_PNP_DEBUG_MESSAGES=y

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
CONFIG_BLK_DEV_NULL_BLK=y
# CONFIG_BLK_DEV_FD is not set
CONFIG_CDROM=y
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SKD is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_XEN_BLKDEV_FRONTEND=y
# CONFIG_XEN_BLKDEV_BACKEND is not set
CONFIG_VIRTIO_BLK=y
CONFIG_VIRTIO_BLK_SCSI=y
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set

#
# NVME Support
#
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_NVME_FC is not set
# CONFIG_NVME_TARGET is not set

#
# Misc devices
#
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_USB_SWITCH_FSA9480 is not set
# CONFIG_SRAM is not set
# CONFIG_PCI_ENDPOINT_TEST is not set
# CONFIG_C2PORT is not set

#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_EEPROM_IDT_89HPESX is not set
# CONFIG_CB710_CORE is not set

#
# Texas Instruments shared transport line discipline
#
# CONFIG_SENSORS_LIS3_I2C is not set
# CONFIG_ALTERA_STAPL is not set
# CONFIG_INTEL_MEI is not set
# CONFIG_INTEL_MEI_ME is not set
# CONFIG_INTEL_MEI_TXE is not set
# CONFIG_VMWARE_VMCI is not set

#
# Intel MIC & related support
#

#
# Intel MIC Bus Driver
#
# CONFIG_INTEL_MIC_BUS is not set

#
# SCIF Bus Driver
#
# CONFIG_SCIF_BUS is not set

#
# VOP Bus Driver
#
# CONFIG_VOP_BUS is not set

#
# Intel MIC Host Driver
#

#
# Intel MIC Card Driver
#

#
# SCIF Driver
#

#
# Intel MIC Coprocessor State Management (COSM) Drivers
#

#
# VOP Driver
#
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_CXL_BASE is not set
# CONFIG_CXL_AFU_DRIVER_OPS is not set
# CONFIG_CXL_LIB is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set

#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_NETLINK is not set
# CONFIG_SCSI_MQ_DEFAULT is not set
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_CONSTANTS=y
# CONFIG_SCSI_LOGGING is not set
# CONFIG_SCSI_SCAN_ASYNC is not set

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_ISCSI_BOOT_SYSFS is not set
# CONFIG_SCSI_CXGB3_ISCSI is not set
# CONFIG_SCSI_CXGB4_ISCSI is not set
# CONFIG_SCSI_BNX2_ISCSI is not set
# CONFIG_BE2ISCSI is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_SCSI_ESAS2R is not set
# CONFIG_MEGARAID_NEWGEN is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_MPT3SAS is not set
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_SMARTPQI is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_VMWARE_PVSCSI is not set
# CONFIG_XEN_SCSI_FRONTEND is not set
# CONFIG_SCSI_SNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_ISCI is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
CONFIG_SCSI_VIRTIO=y
# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
# CONFIG_SCSI_DH is not set
# CONFIG_SCSI_OSD_INITIATOR is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_ACPI=y
# CONFIG_SATA_ZPODD is not set
CONFIG_SATA_PMP=y

#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
# CONFIG_SATA_AHCI_PLATFORM is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y

#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y

#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_DWC is not set
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set

#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
CONFIG_PATA_AMD=y
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
CONFIG_PATA_OLDPIIX=y
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
CONFIG_PATA_SCH=y
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set

#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PCMCIA is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_RZ1000 is not set

#
# Generic fallback / legacy drivers
#
# CONFIG_PATA_ACPI is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_MQ_DEFAULT is not set
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_THIN_PROVISIONING is not set
# CONFIG_DM_CACHE is not set
# CONFIG_DM_ERA is not set
CONFIG_DM_MIRROR=y
# CONFIG_DM_LOG_USERSPACE is not set
# CONFIG_DM_RAID is not set
CONFIG_DM_ZERO=y
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_UEVENT is not set
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_DM_SWITCH is not set
# CONFIG_DM_LOG_WRITES is not set
# CONFIG_DM_INTEGRITY is not set
# CONFIG_DM_ZONED is not set
# CONFIG_TARGET_CORE is not set
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=y
CONFIG_NETDEVICES=y
CONFIG_MII=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_EQUALIZER is not set
# CONFIG_NET_FC is not set
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_VXLAN is not set
# CONFIG_GENEVE is not set
# CONFIG_GTP is not set
# CONFIG_MACSEC is not set
CONFIG_NETCONSOLE=y
# CONFIG_NETCONSOLE_DYNAMIC is not set
CONFIG_NETPOLL=y
CONFIG_NET_POLL_CONTROLLER=y
CONFIG_TUN=y
# CONFIG_TUN_VNET_CROSS_LE is not set
CONFIG_VETH=y
CONFIG_VIRTIO_NET=y
# CONFIG_NLMON is not set
# CONFIG_ARCNET is not set
CONFIG_ATM_DRIVERS=y
# CONFIG_ATM_DUMMY is not set
CONFIG_ATM_TCP=y
# CONFIG_ATM_LANAI is not set
# CONFIG_ATM_ENI is not set
# CONFIG_ATM_FIRESTREAM is not set
# CONFIG_ATM_ZATM is not set
# CONFIG_ATM_NICSTAR is not set
# CONFIG_ATM_IDT77252 is not set
# CONFIG_ATM_AMBASSADOR is not set
# CONFIG_ATM_HORIZON is not set
# CONFIG_ATM_IA is not set
# CONFIG_ATM_FORE200E is not set
# CONFIG_ATM_HE is not set
# CONFIG_ATM_SOLOS is not set

#
# CAIF transport drivers
#

#
# Distributed Switch Architecture drivers
#
# CONFIG_B53 is not set
# CONFIG_NET_DSA_LOOP is not set
# CONFIG_NET_DSA_MT7530 is not set
# CONFIG_NET_DSA_MV88E6060 is not set
# CONFIG_MICROCHIP_KSZ is not set
# CONFIG_NET_DSA_MV88E6XXX is not set
# CONFIG_NET_DSA_QCA8K is not set
# CONFIG_NET_DSA_SMSC_LAN9303_I2C is not set
# CONFIG_NET_DSA_SMSC_LAN9303_MDIO is not set
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_PCMCIA_3C574 is not set
# CONFIG_PCMCIA_3C589 is not set
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALACRITECH=y
# CONFIG_SLICOSS is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMAZON=y
# CONFIG_ENA_ETHERNET is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
# CONFIG_PCMCIA_NMCLAN is not set
# CONFIG_AMD_XGBE is not set
# CONFIG_AMD_XGBE_HAVE_ECC is not set
# CONFIG_NET_VENDOR_AQUANTIA is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
# CONFIG_NET_VENDOR_AURORA is not set
CONFIG_NET_CADENCE=y
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
CONFIG_TIGON3=y
CONFIG_TIGON3_HWMON=y
# CONFIG_BNX2X is not set
# CONFIG_BNXT is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
CONFIG_NET_VENDOR_CAVIUM=y
# CONFIG_THUNDER_NIC_PF is not set
# CONFIG_THUNDER_NIC_VF is not set
# CONFIG_THUNDER_NIC_BGX is not set
# CONFIG_THUNDER_NIC_RGX is not set
# CONFIG_LIQUIDIO is not set
# CONFIG_LIQUIDIO_VF is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
# CONFIG_CX_ECAT is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
# CONFIG_TULIP is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
# CONFIG_PCMCIA_XIRCOM is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EZCHIP=y
CONFIG_NET_VENDOR_EXAR=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_FUJITSU=y
# CONFIG_PCMCIA_FMVJ18X is not set
CONFIG_NET_VENDOR_HP=y
# CONFIG_HP100 is not set
# CONFIG_NET_VENDOR_HUAWEI is not set
CONFIG_NET_VENDOR_INTEL=y
CONFIG_E100=y
CONFIG_E1000=y
CONFIG_E1000E=y
CONFIG_E1000E_HWTS=y
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
# CONFIG_I40E is not set
# CONFIG_I40EVF is not set
# CONFIG_FM10K is not set
CONFIG_NET_VENDOR_I825XX=y
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
CONFIG_SKY2=y
# CONFIG_SKY2_DEBUG is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX4_CORE is not set
# CONFIG_MLX5_CORE is not set
# CONFIG_MLXSW_CORE is not set
# CONFIG_MLXFW is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_NETRONOME=y
# CONFIG_NFP is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_PCMCIA_AXNET is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_PCMCIA_PCNET is not set
CONFIG_NET_VENDOR_NVIDIA=y
CONFIG_FORCEDETH=y
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
CONFIG_NET_PACKET_ENGINE=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_QLGE is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_QED is not set
CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCOM_EMAC is not set
# CONFIG_RMNET is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_8139CP is not set
CONFIG_8139TOO=y
CONFIG_8139TOO_PIO=y
# CONFIG_8139TOO_TUNE_TWISTER is not set
# CONFIG_8139TOO_8129 is not set
# CONFIG_8139_OLD_RX_RESET is not set
# CONFIG_R8169 is not set
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_ROCKER=y
# CONFIG_ROCKER is not set
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
# CONFIG_NET_VENDOR_SOLARFLARE is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_PCMCIA_SMC91C92 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_ALE is not set
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_NET_VENDOR_XIRCOM=y
# CONFIG_PCMCIA_XIRC2PS is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
CONFIG_FDDI=y
# CONFIG_DEFXX is not set
# CONFIG_SKFP is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_MDIO_DEVICE=y
CONFIG_MDIO_BUS=y
# CONFIG_MDIO_BITBANG is not set
# CONFIG_MDIO_THUNDER is not set
CONFIG_PHYLIB=y
# CONFIG_LED_TRIGGER_PHY is not set

#
# MII PHY device drivers
#
# CONFIG_AMD_PHY is not set
# CONFIG_AQUANTIA_PHY is not set
# CONFIG_AT803X_PHY is not set
# CONFIG_BCM7XXX_PHY is not set
# CONFIG_BCM87XX_PHY is not set
# CONFIG_BROADCOM_PHY is not set
# CONFIG_CICADA_PHY is not set
# CONFIG_CORTINA_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_DP83822_PHY is not set
# CONFIG_DP83848_PHY is not set
# CONFIG_DP83867_PHY is not set
# CONFIG_FIXED_PHY is not set
# CONFIG_ICPLUS_PHY is not set
# CONFIG_INTEL_XWAY_PHY is not set
# CONFIG_LSI_ET1011C_PHY is not set
# CONFIG_LXT_PHY is not set
# CONFIG_MARVELL_PHY is not set
# CONFIG_MARVELL_10G_PHY is not set
# CONFIG_MICREL_PHY is not set
# CONFIG_MICROCHIP_PHY is not set
# CONFIG_MICROSEMI_PHY is not set
# CONFIG_NATIONAL_PHY is not set
# CONFIG_QSEMI_PHY is not set
# CONFIG_REALTEK_PHY is not set
# CONFIG_RENESAS_PHY is not set
# CONFIG_ROCKCHIP_PHY is not set
# CONFIG_SMSC_PHY is not set
# CONFIG_STE10XP is not set
# CONFIG_TERANETICS_PHY is not set
# CONFIG_VITESSE_PHY is not set
# CONFIG_XILINX_GMII2RGMII is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
CONFIG_USB_NET_DRIVERS=y
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_RTL8152 is not set
# CONFIG_USB_LAN78XX is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_IPHETH is not set
CONFIG_WLAN=y
# CONFIG_WIRELESS_WDS is not set
CONFIG_WLAN_VENDOR_ADMTEK=y
# CONFIG_ADM8211 is not set
CONFIG_WLAN_VENDOR_ATH=y
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH5K is not set
# CONFIG_ATH5K_PCI is not set
# CONFIG_ATH9K is not set
# CONFIG_ATH9K_HTC is not set
# CONFIG_CARL9170 is not set
# CONFIG_ATH6KL is not set
# CONFIG_AR5523 is not set
# CONFIG_WIL6210 is not set
# CONFIG_ATH10K is not set
# CONFIG_WCN36XX is not set
CONFIG_WLAN_VENDOR_ATMEL=y
# CONFIG_ATMEL is not set
# CONFIG_AT76C50X_USB is not set
CONFIG_WLAN_VENDOR_BROADCOM=y
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMSMAC is not set
# CONFIG_BRCMFMAC is not set
CONFIG_WLAN_VENDOR_CISCO=y
# CONFIG_AIRO is not set
# CONFIG_AIRO_CS is not set
CONFIG_WLAN_VENDOR_INTEL=y
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
# CONFIG_IWLWIFI is not set
CONFIG_WLAN_VENDOR_INTERSIL=y
# CONFIG_HOSTAP is not set
# CONFIG_HERMES is not set
# CONFIG_P54_COMMON is not set
# CONFIG_PRISM54 is not set
CONFIG_WLAN_VENDOR_MARVELL=y
# CONFIG_LIBERTAS is not set
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_MWIFIEX is not set
# CONFIG_MWL8K is not set
CONFIG_WLAN_VENDOR_MEDIATEK=y
# CONFIG_MT7601U is not set
CONFIG_WLAN_VENDOR_RALINK=y
# CONFIG_RT2X00 is not set
CONFIG_WLAN_VENDOR_REALTEK=y
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
CONFIG_RTL_CARDS=y
# CONFIG_RTL8192CE is not set
# CONFIG_RTL8192SE is not set
# CONFIG_RTL8192DE is not set
# CONFIG_RTL8723AE is not set
# CONFIG_RTL8723BE is not set
# CONFIG_RTL8188EE is not set
# CONFIG_RTL8192EE is not set
# CONFIG_RTL8821AE is not set
# CONFIG_RTL8192CU is not set
# CONFIG_RTL8XXXU is not set
CONFIG_WLAN_VENDOR_RSI=y
# CONFIG_RSI_91X is not set
CONFIG_WLAN_VENDOR_ST=y
# CONFIG_CW1200 is not set
CONFIG_WLAN_VENDOR_TI=y
# CONFIG_WL1251 is not set
# CONFIG_WL12XX is not set
# CONFIG_WL18XX is not set
# CONFIG_WLCORE is not set
CONFIG_WLAN_VENDOR_ZYDAS=y
# CONFIG_USB_ZD1201 is not set
# CONFIG_ZD1211RW is not set
# CONFIG_WLAN_VENDOR_QUANTENNA is not set
# CONFIG_PCMCIA_RAYCS is not set
# CONFIG_PCMCIA_WL3501 is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_USB_NET_RNDIS_WLAN is not set

#
# WiMAX Wireless Broadband devices
#
# CONFIG_WIMAX_I2400M_USB is not set
# CONFIG_WAN is not set
CONFIG_XEN_NETDEV_FRONTEND=y
# CONFIG_XEN_NETDEV_BACKEND is not set
# CONFIG_VMXNET3 is not set
# CONFIG_FUJITSU_ES is not set
# CONFIG_ISDN is not set
# CONFIG_NVM is not set

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_LEDS=y
CONFIG_INPUT_FF_MEMLESS=y
CONFIG_INPUT_POLLDEV=y
CONFIG_INPUT_SPARSEKMAP=y
# CONFIG_INPUT_MATRIXKMAP is not set

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
# CONFIG_INPUT_JOYDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_DLINK_DIR685 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_SAMSUNG is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
# CONFIG_KEYBOARD_XTKBD is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_BYD=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_SENTELIC is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_PS2_FOCALTECH=y
# CONFIG_MOUSE_PS2_VMMOUSE is not set
CONFIG_MOUSE_PS2_SMBUS=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_CYAPA is not set
# CONFIG_MOUSE_ELAN_I2C is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_AS5011 is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_USB_PEGASUS is not set
# CONFIG_TABLET_SERIAL_WACOM4 is not set
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_PROPERTIES=y
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
# CONFIG_TOUCHSCREEN_EXC3000 is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_HIDEEP is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_S6SY761 is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_EKTF2127 is not set
# CONFIG_TOUCHSCREEN_ELAN is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_WACOM_I2C is not set
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MCS5000 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2004 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_SILEAD is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_STMFTS is not set
# CONFIG_TOUCHSCREEN_SX8654 is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
# CONFIG_TOUCHSCREEN_ZET6223 is not set
# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_E3X0_BUTTON is not set
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_APANEL is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_UINPUT is not set
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IMS_PCU is not set
# CONFIG_INPUT_CMA3000 is not set
CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y
# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
# CONFIG_INPUT_DRV2665_HAPTICS is not set
# CONFIG_INPUT_DRV2667_HAPTICS is not set
# CONFIG_RMI4_CORE is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_ROCKETPORT is not set
# CONFIG_CYCLADES is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
# CONFIG_SYNCLINK_GT is not set
# CONFIG_NOZOMI is not set
# CONFIG_ISI is not set
# CONFIG_N_HDLC is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
CONFIG_DEVMEM=y
# CONFIG_DEVKMEM is not set

#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
# CONFIG_SERIAL_8250_FINTEK is not set
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCI=y
# CONFIG_SERIAL_8250_EXAR is not set
# CONFIG_SERIAL_8250_CS is not set
CONFIG_SERIAL_8250_NR_UARTS=32
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
CONFIG_SERIAL_8250_DETECT_IRQ=y
CONFIG_SERIAL_8250_RSA=y
# CONFIG_SERIAL_8250_FSL is not set
# CONFIG_SERIAL_8250_DW is not set
# CONFIG_SERIAL_8250_RT288X is not set
CONFIG_SERIAL_8250_LPSS=y
CONFIG_SERIAL_8250_MID=y
# CONFIG_SERIAL_8250_MOXA is not set

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
CONFIG_SERIAL_DEV_BUS=y
CONFIG_SERIAL_DEV_CTRL_TTYPORT=y
# CONFIG_TTY_PRINTK is not set
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_HVC_XEN_FRONTEND=y
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
CONFIG_HW_RANDOM_VIA=y
# CONFIG_HW_RANDOM_VIRTIO is not set
CONFIG_NVRAM=y
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
# CONFIG_CARDMAN_4000 is not set
# CONFIG_CARDMAN_4040 is not set
# CONFIG_SCR24X is not set
# CONFIG_IPWIRELESS is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
# CONFIG_HPET_MMAP is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
# CONFIG_XILLYBUS is not set

#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_SMBUS=y
CONFIG_I2C_ALGOBIT=y

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
CONFIG_I2C_I801=y
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_ISMT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set

#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_EMEV2 is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_PXA_PCI is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set

#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set

#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_MLXCPLD is not set
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_SPI is not set
# CONFIG_SPMI is not set
# CONFIG_HSI is not set
CONFIG_PPS=y
# CONFIG_PPS_DEBUG is not set

#
# PPS clients support
#
# CONFIG_PPS_CLIENT_KTIMER is not set
# CONFIG_PPS_CLIENT_LDISC is not set
# CONFIG_PPS_CLIENT_GPIO is not set

#
# PPS generators support
#

#
# PTP clock support
#
CONFIG_PTP_1588_CLOCK=y

#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
CONFIG_PTP_1588_CLOCK_KVM=y
# CONFIG_PINCTRL is not set
# CONFIG_GPIOLIB is not set
# CONFIG_W1 is not set
# CONFIG_POWER_AVS is not set
# CONFIG_POWER_RESET is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_CHARGER_SBS is not set
# CONFIG_BATTERY_BQ27XXX is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
# CONFIG_SENSORS_APPLESMC is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ASPEED is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_DELL_SMM is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_FTSTEUTATES is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_HIH6130 is not set
# CONFIG_SENSORS_I5500 is not set
# CONFIG_SENSORS_CORETEMP is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_POWR1220 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC2990 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4222 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4260 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX6621 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
# CONFIG_SENSORS_MAX31790 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_TC654 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_NCT6683 is not set
# CONFIG_SENSORS_NCT6775 is not set
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_NCT7904 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SHT3x is not set
# CONFIG_SENSORS_SHTC1 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH56XX_COMMON is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_STTS751 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_ADC128D818 is not set
# CONFIG_SENSORS_ADS1015 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA209 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_INA3221 is not set
# CONFIG_SENSORS_TC74 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP108 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_XGENE is not set

#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_WRITABLE_TRIPS=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
# CONFIG_THERMAL_GOV_FAIR_SHARE is not set
CONFIG_THERMAL_GOV_STEP_WISE=y
# CONFIG_THERMAL_GOV_BANG_BANG is not set
CONFIG_THERMAL_GOV_USER_SPACE=y
# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
# CONFIG_THERMAL_EMULATION is not set
# CONFIG_INTEL_POWERCLAMP is not set
CONFIG_X86_PKG_TEMP_THERMAL=y
# CONFIG_INTEL_SOC_DTS_THERMAL is not set

#
# ACPI INT340X thermal drivers
#
# CONFIG_INT340X_THERMAL is not set
# CONFIG_INTEL_PCH_THERMAL is not set
CONFIG_WATCHDOG=y
# CONFIG_WATCHDOG_CORE is not set
# CONFIG_WATCHDOG_NOWAYOUT is not set
CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
# CONFIG_WATCHDOG_SYSFS is not set

#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_WDAT_WDT is not set
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_ZIIRAVE_WATCHDOG is not set
# CONFIG_CADENCE_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_ITCO_WDT is not set
# CONFIG_IT8712F_WDT is not set
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_CPU5_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
# CONFIG_NI903X_WDT is not set
# CONFIG_NIC7018_WDT is not set
# CONFIG_XEN_WDT is not set

#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set

#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set

#
# Watchdog Pretimeout Governors
#
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
CONFIG_SSB_POSSIBLE=y

#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
# CONFIG_BCMA is not set

#
# Multifunction device drivers
#
# CONFIG_MFD_CORE is not set
# CONFIG_MFD_AS3711 is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_BD9571MWV is not set
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_CROS_EC is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9062 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DA9150 is not set
# CONFIG_MFD_DLN2 is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_HTC_PASIC3 is not set
# CONFIG_MFD_INTEL_QUARK_I2C_GPIO is not set
# CONFIG_LPC_ICH is not set
# CONFIG_LPC_SCH is not set
# CONFIG_INTEL_SOC_PMIC_CHTWC is not set
# CONFIG_MFD_INTEL_LPSS_ACPI is not set
# CONFIG_MFD_INTEL_LPSS_PCI is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
# CONFIG_MFD_88PM860X is not set
# CONFIG_MFD_MAX14577 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX77843 is not set
# CONFIG_MFD_MAX8907 is not set
# CONFIG_MFD_MAX8925 is not set
# CONFIG_MFD_MAX8997 is not set
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_MT6397 is not set
# CONFIG_MFD_MENF21BMC is not set
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RTSX_PCI is not set
# CONFIG_MFD_RT5033 is not set
# CONFIG_MFD_RTSX_USB is not set
# CONFIG_MFD_RC5T583 is not set
# CONFIG_MFD_SEC_CORE is not set
# CONFIG_MFD_SI476X_CORE is not set
# CONFIG_MFD_SM501 is not set
# CONFIG_MFD_SKY81452 is not set
# CONFIG_MFD_SMSC is not set
# CONFIG_ABX500_CORE is not set
# CONFIG_MFD_SYSCON is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_TI_LMU is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TPS68470 is not set
# CONFIG_MFD_TI_LP873X is not set
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS65912_I2C is not set
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_TWL6040_CORE is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# CONFIG_REGULATOR is not set
# CONFIG_RC_CORE is not set
# CONFIG_MEDIA_SUPPORT is not set

#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_VIA is not set
CONFIG_INTEL_GTT=y
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
# CONFIG_VGA_SWITCHEROO is not set
CONFIG_DRM=y
CONFIG_DRM_MIPI_DSI=y
# CONFIG_DRM_DP_AUX_CHARDEV is not set
# CONFIG_DRM_DEBUG_MM is not set
# CONFIG_DRM_DEBUG_MM_SELFTEST is not set
CONFIG_DRM_KMS_HELPER=y
CONFIG_DRM_KMS_FB_HELPER=y
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
CONFIG_DRM_TTM=y
CONFIG_DRM_GEM_CMA_HELPER=y
CONFIG_DRM_KMS_CMA_HELPER=y

#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I2C_NXP_TDA998X is not set
CONFIG_DRM_RADEON=y
CONFIG_DRM_RADEON_USERPTR=y
CONFIG_DRM_AMDGPU=y
CONFIG_DRM_AMDGPU_SI=y
CONFIG_DRM_AMDGPU_CIK=y
CONFIG_DRM_AMDGPU_USERPTR=y
# CONFIG_DRM_AMDGPU_GART_DEBUGFS is not set

#
# ACP (Audio CoProcessor) Configuration
#
# CONFIG_DRM_AMD_ACP is not set

#
# Display Engine Configuration
#
CONFIG_DRM_AMD_DC=y
# CONFIG_DRM_AMD_DC_PRE_VEGA is not set
# CONFIG_DRM_AMD_DC_FBC is not set
# CONFIG_DRM_AMD_DC_DCN1_0 is not set
# CONFIG_DEBUG_KERNEL_DC is not set

#
# AMD Library routines
#
CONFIG_CHASH=y
# CONFIG_CHASH_STATS is not set
# CONFIG_CHASH_SELFTEST is not set
# CONFIG_DRM_NOUVEAU is not set
CONFIG_DRM_I915=y
CONFIG_DRM_I915_ALPHA_SUPPORT=y
CONFIG_DRM_I915_CAPTURE_ERROR=y
CONFIG_DRM_I915_COMPRESS_ERROR=y
CONFIG_DRM_I915_USERPTR=y
CONFIG_DRM_I915_GVT=y

#
# drm/i915 Debugging
#
# CONFIG_DRM_I915_WERROR is not set
# CONFIG_DRM_I915_DEBUG is not set
# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set
# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set
# CONFIG_DRM_I915_SELFTEST is not set
# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set
# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set
# CONFIG_DRM_VGEM is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
CONFIG_DRM_CIRRUS_QEMU=y
CONFIG_DRM_QXL=y
# CONFIG_DRM_BOCHS is not set
CONFIG_DRM_VIRTIO_GPU=y
CONFIG_DRM_PANEL=y

#
# Display Panels
#
# CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN is not set
CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y

#
# Display Interface Bridges
#
# CONFIG_DRM_ANALOGIX_ANX78XX is not set
# CONFIG_DRM_HISI_HIBMC is not set
CONFIG_DRM_TINYDRM=y
# CONFIG_DRM_LEGACY is not set
# CONFIG_DRM_LIB_RANDOM is not set

#
# Frame buffer Devices
#
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA is not set
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y

#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
# CONFIG_FB_VESA is not set
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
CONFIG_XEN_FBDEV_FRONTEND=y
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_BROADSHEET is not set
# CONFIG_FB_AUO_K190X is not set
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SM712 is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
CONFIG_BACKLIGHT_GENERIC=y
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_PM8941_WLED is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_BACKLIGHT_ARCXCNN is not set
# CONFIG_VGASTATE is not set
CONFIG_HDMI=y

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
# CONFIG_VGACON_SOFT_SCROLLBACK_PERSISTENT_ENABLE_BY_DEFAULT is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y
CONFIG_SOUND=y
CONFIG_SOUND_OSS_CORE=y
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
CONFIG_SND=y
CONFIG_SND_TIMER=y
CONFIG_SND_PCM=y
CONFIG_SND_HWDEP=y
CONFIG_SND_SEQ_DEVICE=y
CONFIG_SND_JACK=y
CONFIG_SND_JACK_INPUT_DEV=y
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=y
CONFIG_SND_PCM_OSS=y
CONFIG_SND_PCM_OSS_PLUGINS=y
CONFIG_SND_PCM_TIMER=y
CONFIG_SND_HRTIMER=y
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_PROC_FS=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
CONFIG_SND_DEBUG=y
# CONFIG_SND_DEBUG_VERBOSE is not set
CONFIG_SND_PCM_XRUN_DEBUG=y
CONFIG_SND_VMASTER=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_SEQUENCER=y
CONFIG_SND_SEQ_DUMMY=y
CONFIG_SND_SEQUENCER_OSS=y
CONFIG_SND_SEQ_HRTIMER_DEFAULT=y
CONFIG_SND_SEQ_MIDI_EVENT=y
# CONFIG_SND_SEQ_MIDI is not set
# CONFIG_SND_OPL3_LIB_SEQ is not set
# CONFIG_SND_OPL4_LIB_SEQ is not set
CONFIG_SND_DRIVERS=y
# CONFIG_SND_PCSP is not set
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_ALOOP is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1_SEQ is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SE6X is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set

#
# HD-Audio
#
CONFIG_SND_HDA=y
CONFIG_SND_HDA_INTEL=y
CONFIG_SND_HDA_HWDEP=y
# CONFIG_SND_HDA_RECONFIG is not set
# CONFIG_SND_HDA_INPUT_BEEP is not set
# CONFIG_SND_HDA_PATCH_LOADER is not set
# CONFIG_SND_HDA_CODEC_REALTEK is not set
# CONFIG_SND_HDA_CODEC_ANALOG is not set
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
# CONFIG_SND_HDA_CODEC_VIA is not set
# CONFIG_SND_HDA_CODEC_HDMI is not set
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
# CONFIG_SND_HDA_CODEC_CA0110 is not set
# CONFIG_SND_HDA_CODEC_CA0132 is not set
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
# CONFIG_SND_HDA_CODEC_SI3054 is not set
# CONFIG_SND_HDA_GENERIC is not set
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
CONFIG_SND_HDA_CORE=y
CONFIG_SND_HDA_I915=y
CONFIG_SND_HDA_PREALLOC_SIZE=64
CONFIG_SND_USB=y
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_US122L is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_USB_HIFACE is not set
# CONFIG_SND_BCD2000 is not set
# CONFIG_SND_USB_POD is not set
# CONFIG_SND_USB_PODHD is not set
# CONFIG_SND_USB_TONEPORT is not set
# CONFIG_SND_USB_VARIAX is not set
CONFIG_SND_PCMCIA=y
# CONFIG_SND_VXPOCKET is not set
# CONFIG_SND_PDAUDIOCF is not set
# CONFIG_SND_SOC is not set
CONFIG_SND_X86=y
CONFIG_HDMI_LPE_AUDIO=y

#
# HID support
#
CONFIG_HID=y
# CONFIG_HID_BATTERY_STRENGTH is not set
CONFIG_HIDRAW=y
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=y

#
# Special HID drivers
#
CONFIG_HID_A4TECH=y
# CONFIG_HID_ACCUTOUCH is not set
# CONFIG_HID_ACRUX is not set
CONFIG_HID_APPLE=y
# CONFIG_HID_APPLEIR is not set
# CONFIG_HID_ASUS is not set
# CONFIG_HID_AUREAL is not set
CONFIG_HID_BELKIN=y
# CONFIG_HID_BETOP_FF is not set
CONFIG_HID_CHERRY=y
CONFIG_HID_CHICONY=y
# CONFIG_HID_CORSAIR is not set
# CONFIG_HID_PRODIKEYS is not set
# CONFIG_HID_CMEDIA is not set
CONFIG_HID_CYPRESS=y
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_ELO is not set
CONFIG_HID_EZKEY=y
# CONFIG_HID_GEMBIRD is not set
# CONFIG_HID_GFRM is not set
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_GT683R is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
CONFIG_HID_GYRATION=y
# CONFIG_HID_ICADE is not set
CONFIG_HID_ITE=y
# CONFIG_HID_TWINHAN is not set
CONFIG_HID_KENSINGTON=y
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LED is not set
# CONFIG_HID_LENOVO is not set
CONFIG_HID_LOGITECH=y
# CONFIG_HID_LOGITECH_DJ is not set
# CONFIG_HID_LOGITECH_HIDPP is not set
CONFIG_LOGITECH_FF=y
# CONFIG_LOGIRUMBLEPAD2_FF is not set
# CONFIG_LOGIG940_FF is not set
CONFIG_LOGIWHEELS_FF=y
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MAYFLASH is not set
CONFIG_HID_MICROSOFT=y
CONFIG_HID_MONTEREY=y
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTI is not set
CONFIG_HID_NTRIG=y
# CONFIG_HID_ORTEK is not set
CONFIG_HID_PANTHERLORD=y
CONFIG_PANTHERLORD_FF=y
# CONFIG_HID_PENMOUNT is not set
CONFIG_HID_PETALYNX=y
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PLANTRONICS is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_RETRODE is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
CONFIG_HID_SAMSUNG=y
CONFIG_HID_SONY=y
# CONFIG_SONY_FF is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEELSERIES is not set
CONFIG_HID_SUNPLUS=y
# CONFIG_HID_RMI is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
CONFIG_HID_TOPSEED=y
# CONFIG_HID_THINGM is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_UDRAW_PS3 is not set
# CONFIG_HID_WACOM is not set
# CONFIG_HID_WIIMOTE is not set
# CONFIG_HID_XINMO is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set
# CONFIG_HID_ALPS is not set

#
# USB HID support
#
CONFIG_USB_HID=y
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y

#
# I2C HID support
#
# CONFIG_I2C_HID is not set

#
# Intel ISH HID support
#
# CONFIG_INTEL_ISH_HID is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_PCI=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y

#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
# CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
CONFIG_USB_MON=y
# CONFIG_USB_WUSB_CBAF is not set

#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
# CONFIG_USB_XHCI_HCD is not set
CONFIG_USB_EHCI_HCD=y
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_EHCI_PCI=y
# CONFIG_USB_EHCI_HCD_PLATFORM is not set
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1362_HCD is not set
# CONFIG_USB_FOTG210_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
# CONFIG_USB_OHCI_HCD_PLATFORM is not set
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_TEST_MODE is not set

#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=y
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#

#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=y
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_REALTEK is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
# CONFIG_USB_STORAGE_ENE_UB6250 is not set
# CONFIG_USB_UAS is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_CHIPIDEA is not set
# CONFIG_USB_ISP1760 is not set

#
# USB port drivers
#
# CONFIG_USB_SERIAL is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_EHSET_TEST_FIXTURE is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set
# CONFIG_USB_HUB_USB251XB is not set
# CONFIG_USB_HSIC_USB3503 is not set
# CONFIG_USB_HSIC_USB4604 is not set
# CONFIG_USB_LINK_LAYER_TEST is not set
# CONFIG_USB_CHAOSKEY is not set
CONFIG_USB_ATM=y
# CONFIG_USB_SPEEDTOUCH is not set
# CONFIG_USB_CXACRU is not set
# CONFIG_USB_UEAGLEATM is not set
# CONFIG_USB_XUSBATM is not set

#
# USB Physical Layer drivers
#
# CONFIG_USB_PHY is not set
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_ISP1301 is not set
# CONFIG_USB_GADGET is not set

#
# USB Power Delivery and Type-C drivers
#
CONFIG_TYPEC=y
CONFIG_TYPEC_TCPM=y
# CONFIG_TYPEC_FUSB302 is not set
CONFIG_TYPEC_UCSI=y
CONFIG_UCSI_ACPI=y
# CONFIG_TYPEC_TPS6598X is not set
# CONFIG_USB_LED_TRIG is not set
# CONFIG_USB_ULPI_BUS is not set
# CONFIG_UWB is not set
# CONFIG_MMC is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_LEDS_CLASS_FLASH is not set
# CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set

#
# LED drivers
#
# CONFIG_LEDS_APU is not set
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_LP5521 is not set
# CONFIG_LEDS_LP5523 is not set
# CONFIG_LEDS_LP5562 is not set
# CONFIG_LEDS_LP8501 is not set
# CONFIG_LEDS_LP8860 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA963X is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_TLC591XX is not set
# CONFIG_LEDS_LM355x is not set

#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
# CONFIG_LEDS_BLINKM is not set
# CONFIG_LEDS_MLXCPLD is not set
# CONFIG_LEDS_USER is not set
# CONFIG_LEDS_NIC78BX is not set

#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_DISK is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_CPU is not set
# CONFIG_LEDS_TRIGGER_ACTIVITY is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set

#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
# CONFIG_LEDS_TRIGGER_CAMERA is not set
# CONFIG_LEDS_TRIGGER_PANIC is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC_ATOMIC_SCRUB=y
CONFIG_EDAC_SUPPORT=y
CONFIG_EDAC=y
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
CONFIG_EDAC_DECODE_MCE=y
# CONFIG_EDAC_AMD64 is not set
# CONFIG_EDAC_E752X is not set
# CONFIG_EDAC_I82975X is not set
# CONFIG_EDAC_I3000 is not set
# CONFIG_EDAC_I3200 is not set
# CONFIG_EDAC_IE31200 is not set
# CONFIG_EDAC_X38 is not set
# CONFIG_EDAC_I5400 is not set
# CONFIG_EDAC_I7CORE is not set
# CONFIG_EDAC_I5000 is not set
# CONFIG_EDAC_I5100 is not set
# CONFIG_EDAC_I7300 is not set
# CONFIG_EDAC_SBRIDGE is not set
# CONFIG_EDAC_SKX is not set
# CONFIG_EDAC_PND2 is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_MC146818_LIB=y
CONFIG_RTC_CLASS=y
# CONFIG_RTC_HCTOSYS is not set
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set
# CONFIG_RTC_NVMEM is not set

#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set

#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABX80X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8010 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV8803 is not set

#
# SPI RTC drivers
#
CONFIG_RTC_I2C_AND_SPI=y

#
# SPI and I2C RTC drivers
#
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_PCF2127 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set

#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set

#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_FTRTC010 is not set

#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set

#
# DMA Devices
#
CONFIG_DMA_ENGINE=y
CONFIG_DMA_VIRTUAL_CHANNELS=y
CONFIG_DMA_ACPI=y
# CONFIG_ALTERA_MSGDMA is not set
# CONFIG_INTEL_IDMA64 is not set
# CONFIG_INTEL_IOATDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
# CONFIG_QCOM_HIDMA is not set
CONFIG_DW_DMAC_CORE=y
# CONFIG_DW_DMAC is not set
# CONFIG_DW_DMAC_PCI is not set
CONFIG_HSU_DMA=y

#
# DMA Clients
#
# CONFIG_ASYNC_TX_DMA is not set
# CONFIG_DMATEST is not set

#
# DMABUF options
#
CONFIG_SYNC_FILE=y
# CONFIG_SW_SYNC is not set
# CONFIG_AUXDISPLAY is not set
# CONFIG_UIO is not set
# CONFIG_VFIO is not set
CONFIG_IRQ_BYPASS_MANAGER=y
# CONFIG_VIRT_DRIVERS is not set
CONFIG_VIRTIO=y

#
# Virtio drivers
#
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_PCI_LEGACY=y
# CONFIG_VIRTIO_BALLOON is not set
CONFIG_VIRTIO_INPUT=y
# CONFIG_VIRTIO_MMIO is not set

#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set
# CONFIG_HYPERV_TSCPAGE is not set

#
# Xen driver support
#
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SCRUB_PAGES=y
CONFIG_XEN_DEV_EVTCHN=y
CONFIG_XEN_BACKEND=y
CONFIG_XENFS=y
CONFIG_XEN_COMPAT_XENFS=y
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
CONFIG_XEN_GNTDEV=y
CONFIG_XEN_GRANT_DEV_ALLOC=y
CONFIG_SWIOTLB_XEN=y
CONFIG_XEN_PCIDEV_BACKEND=y
CONFIG_XEN_PVCALLS_FRONTEND=y
CONFIG_XEN_PVCALLS_BACKEND=y
CONFIG_XEN_PRIVCMD=y
CONFIG_XEN_ACPI_PROCESSOR=y
CONFIG_XEN_MCE_LOG=y
CONFIG_XEN_HAVE_PVMMU=y
CONFIG_XEN_EFI=y
CONFIG_XEN_AUTO_XLATE=y
CONFIG_XEN_ACPI=y
CONFIG_XEN_SYMS=y
CONFIG_XEN_HAVE_VPMU=y
# CONFIG_STAGING is not set
CONFIG_X86_PLATFORM_DEVICES=y
# CONFIG_ACERHDF is not set
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_DELL_LAPTOP is not set
# CONFIG_DELL_SMO8800 is not set
# CONFIG_DELL_RBTN is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_FUJITSU_TABLET is not set
# CONFIG_AMILO_RFKILL is not set
# CONFIG_HP_ACCEL is not set
# CONFIG_HP_WIRELESS is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_COMPAL_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_IDEAPAD_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_INTEL_MENLOW is not set
CONFIG_EEEPC_LAPTOP=y
# CONFIG_ASUS_WIRELESS is not set
# CONFIG_ACPI_WMI is not set
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_TOSHIBA_BT_RFKILL is not set
# CONFIG_TOSHIBA_HAPS is not set
# CONFIG_ACPI_CMPC is not set
# CONFIG_INTEL_HID_EVENT is not set
# CONFIG_INTEL_VBTN is not set
# CONFIG_INTEL_IPS is not set
# CONFIG_INTEL_PMC_CORE is not set
# CONFIG_IBM_RTL is not set
# CONFIG_SAMSUNG_LAPTOP is not set
# CONFIG_INTEL_OAKTRAIL is not set
# CONFIG_SAMSUNG_Q10 is not set
# CONFIG_APPLE_GMUX is not set
# CONFIG_INTEL_RST is not set
# CONFIG_INTEL_SMARTCONNECT is not set
# CONFIG_PVPANIC is not set
# CONFIG_INTEL_PMC_IPC is not set
# CONFIG_SURFACE_PRO3_BUTTON is not set
# CONFIG_INTEL_PUNIT_IPC is not set
# CONFIG_MLX_PLATFORM is not set
# CONFIG_MLX_CPLD_PLATFORM is not set
# CONFIG_INTEL_TURBO_MAX_3 is not set
CONFIG_PMC_ATOM=y
# CONFIG_CHROME_PLATFORMS is not set
CONFIG_CLKDEV_LOOKUP=y
CONFIG_HAVE_CLK_PREPARE=y
CONFIG_COMMON_CLK=y

#
# Common Clock Framework
#
# CONFIG_COMMON_CLK_SI5351 is not set
# CONFIG_COMMON_CLK_CDCE706 is not set
# CONFIG_COMMON_CLK_CS2000_CP is not set
# CONFIG_COMMON_CLK_NXP is not set
# CONFIG_COMMON_CLK_PXA is not set
# CONFIG_COMMON_CLK_PIC32 is not set
# CONFIG_HWSPINLOCK is not set

#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# CONFIG_ATMEL_PIT is not set
# CONFIG_SH_TIMER_CMT is not set
# CONFIG_SH_TIMER_MTU2 is not set
# CONFIG_SH_TIMER_TMU is not set
# CONFIG_EM_TIMER_STI is not set
CONFIG_MAILBOX=y
CONFIG_PCC=y
# CONFIG_ALTERA_MBOX is not set
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y

#
# Generic IOMMU Pagetable Support
#
CONFIG_IOMMU_IOVA=y
CONFIG_AMD_IOMMU=y
# CONFIG_AMD_IOMMU_V2 is not set
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_SVM is not set
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_FLOPPY_WA=y
# CONFIG_IRQ_REMAP is not set

#
# Remoteproc drivers
#
# CONFIG_REMOTEPROC is not set

#
# Rpmsg drivers
#
# CONFIG_RPMSG_QCOM_GLINK_RPM is not set
# CONFIG_RPMSG_VIRTIO is not set

#
# SOC (System On Chip) specific Drivers
#

#
# Amlogic SoC drivers
#

#
# Broadcom SoC drivers
#

#
# i.MX SoC drivers
#

#
# Qualcomm SoC drivers
#
# CONFIG_SUNXI_SRAM is not set
# CONFIG_SOC_TI is not set
# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
# CONFIG_IIO is not set
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
# CONFIG_PWM is not set

#
# IRQ chip support
#
CONFIG_ARM_GIC_MAX_NR=1
# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set
# CONFIG_FMC is not set

#
# PHY Subsystem
#
# CONFIG_GENERIC_PHY is not set
# CONFIG_BCM_KONA_USB2_PHY is not set
# CONFIG_PHY_PXA_28NM_HSIC is not set
# CONFIG_PHY_PXA_28NM_USB2 is not set
# CONFIG_POWERCAP is not set
# CONFIG_MCB is not set

#
# Performance monitor support
#
CONFIG_RAS=y
# CONFIG_THUNDERBOLT is not set

#
# Android
#
# CONFIG_ANDROID is not set
# CONFIG_LIBNVDIMM is not set
CONFIG_DAX=y
# CONFIG_DEV_DAX is not set
# CONFIG_NVMEM is not set
# CONFIG_STM is not set
# CONFIG_INTEL_TH is not set
# CONFIG_FPGA is not set

#
# FSI support
#
# CONFIG_FSI is not set

#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
# CONFIG_DMI_SYSFS is not set
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
# CONFIG_ISCSI_IBFT_FIND is not set
# CONFIG_FW_CFG_SYSFS is not set
# CONFIG_GOOGLE_FIRMWARE is not set

#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_VARS=y
CONFIG_EFI_ESRT=y
CONFIG_EFI_RUNTIME_MAP=y
# CONFIG_EFI_FAKE_MEMMAP is not set
CONFIG_EFI_RUNTIME_WRAPPERS=y
# CONFIG_EFI_BOOTLOADER_CONTROL is not set
# CONFIG_EFI_CAPSULE_LOADER is not set
# CONFIG_EFI_TEST is not set
# CONFIG_EFI_DEV_PATH_PARSER is not set

#
# Tegra firmware driver
#

#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
CONFIG_FS_IOMAP=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT2=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
CONFIG_EXT4_ENCRYPTION=y
CONFIG_EXT4_FS_ENCRYPTION=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_BTRFS_FS is not set
# CONFIG_NILFS2_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_FS_DAX is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
# CONFIG_EXPORTFS_BLOCK_OPS is not set
CONFIG_FILE_LOCKING=y
CONFIG_MANDATORY_FILE_LOCKING=y
CONFIG_FS_ENCRYPTION=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_PRINT_QUOTA_WARNING is not set
# CONFIG_QUOTA_DEBUG is not set
CONFIG_QUOTA_TREE=y
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
CONFIG_QUOTACTL_COMPAT=y
CONFIG_AUTOFS4_FS=y
CONFIG_FUSE_FS=y
CONFIG_CUSE=y
CONFIG_OVERLAY_FS=y
CONFIG_OVERLAY_FS_REDIRECT_DIR=y
CONFIG_OVERLAY_FS_INDEX=y

#
# Caches
#
CONFIG_FSCACHE=y
# CONFIG_FSCACHE_STATS is not set
# CONFIG_FSCACHE_HISTOGRAM is not set
# CONFIG_FSCACHE_DEBUG is not set
# CONFIG_FSCACHE_OBJECT_LIST is not set
# CONFIG_CACHEFILES is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
# CONFIG_UDF_FS is not set

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_FAT_DEFAULT_UTF8 is not set
# CONFIG_NTFS_FS is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_PROC_CHILDREN=y
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_EFIVAR_FS=y
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ORANGEFS_FS is not set
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_PSTORE is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V2=y
CONFIG_NFS_V3=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFS_V4=y
# CONFIG_NFS_SWAP is not set
# CONFIG_NFS_V4_1 is not set
CONFIG_ROOT_NFS=y
# CONFIG_NFS_FSCACHE is not set
# CONFIG_NFS_USE_LEGACY_DNS is not set
CONFIG_NFS_USE_KERNEL_DNS=y
# CONFIG_NFSD is not set
CONFIG_GRACE_PERIOD=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_ACL_SUPPORT=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_RPCSEC_GSS_KRB5=y
# CONFIG_SUNRPC_DEBUG is not set
# CONFIG_CEPH_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_9P_FS=y
# CONFIG_9P_FSCACHE is not set
# CONFIG_9P_FS_POSIX_ACL is not set
# CONFIG_9P_FS_SECURITY is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
CONFIG_NLS_ISO8859_1=y
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
CONFIG_NLS_UTF8=y
# CONFIG_DLM is not set

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y

#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
# CONFIG_BOOT_PRINTK_DELAY is not set
# CONFIG_DYNAMIC_DEBUG is not set

#
# Compile-time checks and compiler options
#
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_INFO_REDUCED is not set
# CONFIG_DEBUG_INFO_SPLIT is not set
# CONFIG_DEBUG_INFO_DWARF4 is not set
# CONFIG_GDB_SCRIPTS is not set
# CONFIG_ENABLE_WARN_DEPRECATED is not set
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=2048
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
# CONFIG_UNUSED_SYMBOLS is not set
# CONFIG_PAGE_OWNER is not set
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_SECTION_MISMATCH_WARN_ONLY=y
CONFIG_FRAME_POINTER=y
# CONFIG_STACK_VALIDATION is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_MAGIC_SYSRQ_SERIAL=y
CONFIG_DEBUG_KERNEL=y

#
# Memory Debugging
#
CONFIG_PAGE_EXTENSION=y
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_PAGE_POISONING=y
CONFIG_PAGE_POISONING_NO_SANITY=y
# CONFIG_PAGE_POISONING_ZERO is not set
# CONFIG_DEBUG_PAGE_REF is not set
# CONFIG_DEBUG_RODATA_TEST is not set
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_DEBUG_SLAB is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
CONFIG_DEBUG_STACK_USAGE=y
CONFIG_DEBUG_VM=y
CONFIG_DEBUG_VM_VMACACHE=y
# CONFIG_DEBUG_VM_RB is not set
# CONFIG_DEBUG_VM_PGFLAGS is not set
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
# CONFIG_DEBUG_VIRTUAL is not set
CONFIG_DEBUG_MEMORY_INIT=y
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
CONFIG_DEBUG_STACKOVERFLOW=y
CONFIG_HAVE_ARCH_KASAN=y
CONFIG_KASAN=y
# CONFIG_KASAN_OUTLINE is not set
CONFIG_KASAN_INLINE=y
# CONFIG_TEST_KASAN is not set
CONFIG_ARCH_HAS_KCOV=y
CONFIG_KCOV=y
CONFIG_KCOV_ENABLE_COMPARISONS=y
CONFIG_KCOV_INSTRUMENT_ALL=y
# CONFIG_DEBUG_SHIRQ is not set

#
# Debug Lockups and Hangs
#
CONFIG_LOCKUP_DETECTOR=y
CONFIG_SOFTLOCKUP_DETECTOR=y
CONFIG_HARDLOCKUP_DETECTOR_PERF=y
CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y
CONFIG_HARDLOCKUP_DETECTOR=y
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC=y
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=1
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC=y
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=1
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
CONFIG_BOOTPARAM_HUNG_TASK_PANIC=y
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=1
CONFIG_WQ_WATCHDOG=y
CONFIG_PANIC_ON_OOPS=y
CONFIG_PANIC_ON_OOPS_VALUE=1
CONFIG_PANIC_TIMEOUT=86400
# CONFIG_SCHED_DEBUG is not set
CONFIG_SCHED_INFO=y
CONFIG_SCHEDSTATS=y
CONFIG_SCHED_STACK_END_CHECK=y
# CONFIG_DEBUG_TIMEKEEPING is not set

#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
# CONFIG_LOCK_STAT is not set
CONFIG_LOCKDEP_CROSSRELEASE=y
CONFIG_LOCKDEP_COMPLETIONS=y
# CONFIG_BOOTPARAM_LOCKDEP_CROSSRELEASE_FULLSTACK is not set
# CONFIG_DEBUG_LOCKDEP is not set
CONFIG_DEBUG_ATOMIC_SLEEP=y
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
# CONFIG_LOCK_TORTURE_TEST is not set
# CONFIG_WW_MUTEX_SELFTEST is not set
CONFIG_TRACE_IRQFLAGS=y
CONFIG_STACKTRACE=y
# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_LIST=y
CONFIG_DEBUG_PI_LIST=y
# CONFIG_DEBUG_SG is not set
CONFIG_DEBUG_NOTIFIERS=y
# CONFIG_DEBUG_CREDENTIALS is not set

#
# RCU Debugging
#
CONFIG_PROVE_RCU=y
# CONFIG_TORTURE_TEST is not set
# CONFIG_RCU_PERF_TEST is not set
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=120
# CONFIG_RCU_TRACE is not set
# CONFIG_RCU_EQS_DEBUG is not set
# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
CONFIG_FAULT_INJECTION=y
CONFIG_FAILSLAB=y
CONFIG_FAIL_PAGE_ALLOC=y
CONFIG_FAIL_MAKE_REQUEST=y
CONFIG_FAIL_IO_TIMEOUT=y
CONFIG_FAIL_FUTEX=y
CONFIG_FAULT_INJECTION_DEBUG_FS=y
# CONFIG_LATENCYTOP is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
# CONFIG_FUNCTION_TRACER is not set
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_HWLAT_TRACER is not set
# CONFIG_FTRACE_SYSCALLS is not set
# CONFIG_TRACER_SNAPSHOT is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
# CONFIG_STACK_TRACER is not set
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENTS=y
CONFIG_UPROBE_EVENTS=y
CONFIG_BPF_EVENTS=y
CONFIG_PROBE_EVENTS=y
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_MMIOTRACE is not set
# CONFIG_HIST_TRIGGERS is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_TRACE_EVAL_MAP_FILE is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
# CONFIG_DMA_API_DEBUG is not set

#
# Runtime Testing
#
# CONFIG_LKDTM is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_TEST_SORT is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_TEST_HEXDUMP is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_PRINTF is not set
# CONFIG_TEST_BITMAP is not set
# CONFIG_TEST_UUID is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_TEST_HASH is not set
# CONFIG_TEST_LKM is not set
# CONFIG_TEST_USER_COPY is not set
# CONFIG_TEST_BPF is not set
# CONFIG_TEST_FIND_BIT is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_SYSCTL is not set
# CONFIG_TEST_UDELAY is not set
# CONFIG_TEST_STATIC_KEYS is not set
# CONFIG_TEST_KMOD is not set
# CONFIG_MEMTEST is not set
CONFIG_BUG_ON_DATA_CORRUPTION=y
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
# CONFIG_KGDB is not set
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
# CONFIG_ARCH_WANTS_UBSAN_NO_NULL is not set
# CONFIG_UBSAN is not set
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
# CONFIG_STRICT_DEVMEM is not set
CONFIG_EARLY_PRINTK_USB=y
CONFIG_X86_VERBOSE_BOOTUP=y
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
# CONFIG_EARLY_PRINTK_EFI is not set
# CONFIG_EARLY_PRINTK_USB_XDBC is not set
# CONFIG_X86_PTDUMP_CORE is not set
# CONFIG_X86_PTDUMP is not set
# CONFIG_EFI_PGT_DUMP is not set
# CONFIG_DEBUG_WX is not set
CONFIG_DOUBLEFAULT=y
# CONFIG_DEBUG_TLBFLUSH is not set
# CONFIG_IOMMU_STRESS is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
# CONFIG_X86_DECODER_SELFTEST is not set
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
CONFIG_IO_DELAY_0X80=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=0
CONFIG_DEBUG_BOOT_PARAMS=y
# CONFIG_CPA_DEBUG is not set
CONFIG_OPTIMIZE_INLINING=y
# CONFIG_DEBUG_ENTRY is not set
# CONFIG_DEBUG_NMI_SELFTEST is not set
CONFIG_X86_DEBUG_FPU=y
# CONFIG_PUNIT_ATOM_DEBUG is not set
# CONFIG_UNWINDER_ORC is not set
CONFIG_UNWINDER_FRAME_POINTER=y
# CONFIG_UNWINDER_GUESS is not set

#
# Security options
#
CONFIG_KEYS=y
CONFIG_KEYS_COMPAT=y
CONFIG_PERSISTENT_KEYRINGS=y
CONFIG_BIG_KEYS=y
CONFIG_ENCRYPTED_KEYS=y
CONFIG_KEY_DH_OPERATIONS=y
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITY_WRITABLE_HOOKS=y
# CONFIG_SECURITYFS is not set
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_NETWORK_XFRM=y
CONFIG_SECURITY_PATH=y
# CONFIG_INTEL_TXT is not set
CONFIG_LSM_MMAP_MIN_ADDR=65536
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
CONFIG_HARDENED_USERCOPY=y
# CONFIG_HARDENED_USERCOPY_PAGESPAN is not set
CONFIG_FORTIFY_SOURCE=y
# CONFIG_STATIC_USERMODEHELPER is not set
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
CONFIG_SECURITY_SELINUX_DISABLE=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=0
# CONFIG_SECURITY_SMACK is not set
# CONFIG_SECURITY_TOMOYO is not set
# CONFIG_SECURITY_APPARMOR is not set
# CONFIG_SECURITY_LOADPIN is not set
# CONFIG_SECURITY_YAMA is not set
CONFIG_INTEGRITY=y
# CONFIG_INTEGRITY_SIGNATURE is not set
CONFIG_INTEGRITY_AUDIT=y
# CONFIG_IMA is not set
# CONFIG_EVM is not set
CONFIG_DEFAULT_SECURITY_SELINUX=y
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_DEFAULT_SECURITY="selinux"
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_RNG_DEFAULT=y
CONFIG_CRYPTO_AKCIPHER2=y
CONFIG_CRYPTO_AKCIPHER=y
CONFIG_CRYPTO_KPP2=y
CONFIG_CRYPTO_KPP=y
CONFIG_CRYPTO_ACOMP2=y
CONFIG_CRYPTO_RSA=y
CONFIG_CRYPTO_DH=y
CONFIG_CRYPTO_ECDH=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
CONFIG_CRYPTO_USER=y
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_NULL2=y
CONFIG_CRYPTO_PCRYPT=y
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=y
CONFIG_CRYPTO_MCRYPTD=y
CONFIG_CRYPTO_AUTHENC=y
# CONFIG_CRYPTO_TEST is not set
CONFIG_CRYPTO_ABLK_HELPER=y
CONFIG_CRYPTO_SIMD=y
CONFIG_CRYPTO_GLUE_HELPER_X86=y
CONFIG_CRYPTO_ENGINE=y

#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=y
CONFIG_CRYPTO_GCM=y
CONFIG_CRYPTO_CHACHA20POLY1305=y
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=y

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=y
CONFIG_CRYPTO_CTS=y
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=y
CONFIG_CRYPTO_PCBC=y
CONFIG_CRYPTO_XTS=y
CONFIG_CRYPTO_KEYWRAP=y

#
# Hash modes
#
CONFIG_CRYPTO_CMAC=y
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_XCBC=y
CONFIG_CRYPTO_VMAC=y

#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_INTEL=y
CONFIG_CRYPTO_CRC32=y
CONFIG_CRYPTO_CRC32_PCLMUL=y
CONFIG_CRYPTO_CRCT10DIF=y
CONFIG_CRYPTO_CRCT10DIF_PCLMUL=y
CONFIG_CRYPTO_GHASH=y
CONFIG_CRYPTO_POLY1305=y
CONFIG_CRYPTO_POLY1305_X86_64=y
CONFIG_CRYPTO_MD4=y
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=y
CONFIG_CRYPTO_RMD128=y
CONFIG_CRYPTO_RMD160=y
CONFIG_CRYPTO_RMD256=y
CONFIG_CRYPTO_RMD320=y
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA1_SSSE3=y
CONFIG_CRYPTO_SHA256_SSSE3=y
CONFIG_CRYPTO_SHA512_SSSE3=y
CONFIG_CRYPTO_SHA1_MB=y
CONFIG_CRYPTO_SHA256_MB=y
CONFIG_CRYPTO_SHA512_MB=y
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
CONFIG_CRYPTO_SHA3=y
CONFIG_CRYPTO_SM3=y
CONFIG_CRYPTO_TGR192=y
CONFIG_CRYPTO_WP512=y
CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=y

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_TI=y
CONFIG_CRYPTO_AES_X86_64=y
CONFIG_CRYPTO_AES_NI_INTEL=y
CONFIG_CRYPTO_ANUBIS=y
CONFIG_CRYPTO_ARC4=y
CONFIG_CRYPTO_BLOWFISH=y
CONFIG_CRYPTO_BLOWFISH_COMMON=y
CONFIG_CRYPTO_BLOWFISH_X86_64=y
CONFIG_CRYPTO_CAMELLIA=y
CONFIG_CRYPTO_CAMELLIA_X86_64=y
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=y
CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=y
CONFIG_CRYPTO_CAST_COMMON=y
CONFIG_CRYPTO_CAST5=y
CONFIG_CRYPTO_CAST5_AVX_X86_64=y
CONFIG_CRYPTO_CAST6=y
CONFIG_CRYPTO_CAST6_AVX_X86_64=y
CONFIG_CRYPTO_DES=y
CONFIG_CRYPTO_DES3_EDE_X86_64=y
CONFIG_CRYPTO_FCRYPT=y
CONFIG_CRYPTO_KHAZAD=y
CONFIG_CRYPTO_SALSA20=y
CONFIG_CRYPTO_SALSA20_X86_64=y
CONFIG_CRYPTO_CHACHA20=y
CONFIG_CRYPTO_CHACHA20_X86_64=y
CONFIG_CRYPTO_SEED=y
CONFIG_CRYPTO_SERPENT=y
CONFIG_CRYPTO_SERPENT_SSE2_X86_64=y
CONFIG_CRYPTO_SERPENT_AVX_X86_64=y
CONFIG_CRYPTO_SERPENT_AVX2_X86_64=y
CONFIG_CRYPTO_TEA=y
CONFIG_CRYPTO_TWOFISH=y
CONFIG_CRYPTO_TWOFISH_COMMON=y
CONFIG_CRYPTO_TWOFISH_X86_64=y
CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=y
CONFIG_CRYPTO_TWOFISH_AVX_X86_64=y

#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
CONFIG_CRYPTO_LZO=y
CONFIG_CRYPTO_842=y
CONFIG_CRYPTO_LZ4=y
CONFIG_CRYPTO_LZ4HC=y

#
# Random Number Generation
#
CONFIG_CRYPTO_ANSI_CPRNG=y
CONFIG_CRYPTO_DRBG_MENU=y
CONFIG_CRYPTO_DRBG_HMAC=y
CONFIG_CRYPTO_DRBG_HASH=y
CONFIG_CRYPTO_DRBG_CTR=y
CONFIG_CRYPTO_DRBG=y
CONFIG_CRYPTO_JITTERENTROPY=y
CONFIG_CRYPTO_USER_API=y
CONFIG_CRYPTO_USER_API_HASH=y
CONFIG_CRYPTO_USER_API_SKCIPHER=y
CONFIG_CRYPTO_USER_API_RNG=y
CONFIG_CRYPTO_USER_API_AEAD=y
CONFIG_CRYPTO_HASH_INFO=y
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
CONFIG_CRYPTO_DEV_PADLOCK_AES=y
CONFIG_CRYPTO_DEV_PADLOCK_SHA=y
# CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC is not set
CONFIG_CRYPTO_DEV_CCP=y
CONFIG_CRYPTO_DEV_CCP_DD=y
# CONFIG_CRYPTO_DEV_SP_CCP is not set
CONFIG_CRYPTO_DEV_QAT=y
CONFIG_CRYPTO_DEV_QAT_DH895xCC=y
CONFIG_CRYPTO_DEV_QAT_C3XXX=y
CONFIG_CRYPTO_DEV_QAT_C62X=y
CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=y
CONFIG_CRYPTO_DEV_QAT_C3XXXVF=y
CONFIG_CRYPTO_DEV_QAT_C62XVF=y
# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set
CONFIG_CRYPTO_DEV_VIRTIO=y
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_X509_CERTIFICATE_PARSER=y
CONFIG_PKCS7_MESSAGE_PARSER=y
CONFIG_PKCS7_TEST_KEY=y
CONFIG_SIGNED_PE_FILE_VERIFICATION=y

#
# Certificates for signature checking
#
CONFIG_SYSTEM_TRUSTED_KEYRING=y
CONFIG_SYSTEM_TRUSTED_KEYS=""
# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
CONFIG_SECONDARY_TRUSTED_KEYRING=y
# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_IRQFD=y
CONFIG_HAVE_KVM_IRQ_ROUTING=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_MMIO=y
CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_KVM_VFIO=y
CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
CONFIG_KVM_COMPAT=y
CONFIG_HAVE_KVM_IRQ_BYPASS=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=y
CONFIG_KVM_INTEL=y
CONFIG_KVM_AMD=y
# CONFIG_KVM_MMU_AUDIT is not set
CONFIG_VHOST_NET=y
# CONFIG_VHOST_VSOCK is not set
CONFIG_VHOST=y
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set
CONFIG_BINARY_PRINTF=y

#
# Library routines
#
CONFIG_BITREVERSE=y
# CONFIG_HAVE_ARCH_BITREVERSE is not set
CONFIG_RATIONAL=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_CRC_CCITT=y
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=y
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
CONFIG_CRC4=y
# CONFIG_CRC7 is not set
CONFIG_LIBCRC32C=y
# CONFIG_CRC8 is not set
# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_842_COMPRESS=y
CONFIG_842_DECOMPRESS=y
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_COMPRESS=y
CONFIG_LZ4HC_COMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_INTERVAL_TREE=y
CONFIG_RADIX_TREE_MULTIORDER=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
# CONFIG_DMA_NOOP_OPS is not set
# CONFIG_DMA_VIRT_OPS is not set
CONFIG_CHECK_SIGNATURE=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_CLZ_TAB=y
# CONFIG_CORDIC is not set
# CONFIG_DDR is not set
# CONFIG_IRQ_POLL is not set
CONFIG_MPILIB=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_FONT_SUPPORT=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
# CONFIG_SG_SPLIT is not set
CONFIG_SG_POOL=y
CONFIG_ARCH_HAS_SG_CHAIN=y
CONFIG_ARCH_HAS_PMEM_API=y
CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y
CONFIG_STACKDEPOT=y
CONFIG_SBITMAP=y
# CONFIG_STRING_SELFTEST is not set

[-- Attachment #3: raw.log --]
[-- Type: application/octet-stream, Size: 1048576 bytes --]

 0x0, 0x10, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000095b000/0x1000)=nil, 0x1000, 0x0, 0x10, 0xffffffffffffffff, 0x0)
r1 = bpf$BPF_MAP_GET_FD_BY_ID(0xe, &(0x7f00003d2000)=0x0, 0x4)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000953000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000954000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bpf$MAP_LOOKUP_ELEM(0x1, &(0x7f0000001000-0x18)={r1, &(0x7f0000953000)="5af0d5425ad6f0e331d653e84d81efb0b6be8a3fa390143e7f3fd78cd4b87b3f194258ae46dfe521a6075fc6b2a8c03783c265f5cadeef940ee453ca186123e321a776c9dd0badc330f761380ea0e542e306666713ba645b4ac72607e19ad2c8dd102b1085c54a1dc10236306cc97044d52d54837dbb97cfebab2d700a42867a2b957cb7b2e38c2433e5f8aae9479f7cfaef5f229b3455333077471584ffd144dd24973052d936bb20ecc0387a7ee37bc21667ffffecbf1964ec747305fcf51ee6e3164491ea7da3c023dec7fbbb581e98c795e65585b626ba69e6", &(0x7f0000955000-0xb7)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x18)
mmap(&(0x7f000095e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x267000)=nil, 0x267000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = getpgrp(0xffffffffffffffff)
r3 = perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e2, 0x8000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r2, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000267000/0x1000)=nil, 0x1000, 0x3, 0x10, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = accept$inet(0xffffffffffffff9c, &(0x7f0000000000)={0x0, 0x0, @loopback=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000000000)=0x10)
getsockopt$inet_sctp_SCTP_PEER_ADDR_PARAMS(r4, 0x84, 0x9, &(0x7f000027d000)={0x0, @in6={{0xa, 0x0, 0x8000, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xffffffffffffffff, 0x0, 0xfffffffffffffffd, 0x0, 0x0}, &(0x7f000027f000)=0xa0)
pwrite64(r3, &(0x7f000049b000-0x15)="2775a5282cfc3d74424790456b02ea005b5b307670", 0x15, 0x0)
socketpair(0x1, 0x80005, 0x0, &(0x7f0000002000)={<r5=>0xffffffffffffffff, <r6=>0xffffffffffffffff})
perf_event_open(&(0x7f0000000000)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x1, 0x20000000, 0x13d, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xfffff7ffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_timeval(r5, 0x1, 0x3b, &(0x7f0000130000)={0x0, 0x0}, &(0x7f0000000000)=0x10)
mmap(&(0x7f0000954000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
accept$unix(0xffffffffffffffff, &(0x7f00003f5000-0x6e)=@file={0x0, "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f0000954000)=0x6e)
mmap(&(0x7f0000954000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getpeername$unix(r6, &(0x7f0000954000)=@file={0x0, "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f0000506000)=0x49)
mmap(&(0x7f0000955000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp_SCTP_RECVNXTINFO(r5, 0x84, 0x21, &(0x7f0000956000-0x4)=0x4ba1, 0x4)
mmap(&(0x7f0000954000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000955000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r0, 0x84, 0x9, &(0x7f00007a0000-0xa0)={<r7=>0x0, @in={{0x2, 0x2, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xb47, 0x7, 0x2, 0x0, 0x10}, &(0x7f0000401000-0x4)=0xa0)
sendmmsg$inet_sctp(r0, &(0x7f000093f000-0x118)=[{&(0x7f0000941000-0x10)=@in={0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000043000-0x60)=[{&(0x7f0000954000-0x26)="0e389af9b633d35ebca953f80164b33cfada2669c211e2551190176373f6f5d7b01278350354", 0x26}, {&(0x7f0000954000)="070431edb0b96a5347cbe4feeb1ef7792216eecfff737295101e9f27d3426ce5f6ed1bc156e424c83be7ba45f9d0af8c54353d8b342a5b4a857ef98b8d568c82368f14214753", 0x46}, {&(0x7f0000088000)="88db5a03943ca08be5d83cd3c8ae4ce6f987e49cbb1a5432b5df9bbc11654e959ca67e1565e81bfe43ac670a7ae15ec4e238f8eb4720ed04a20cebd066eac786d1a8ab084b335bc39af5cbfd9a1e391fac5236dae4da81bd29206947ac6fac3c7b44dbde34b6b0804af20e27858d78e1c08dfc94b3be460fafe94ae58590d01f58b69dbb723366b538badaed9a5a619cec62caf1dea93d6f90e01e098022c563dc76976eead402074cbc87971dd9eb934b0abdaf02655abd4ae6d8088666618284434ed4831185aa94452b30", 0xcc}, {&(0x7f0000955000)="5f3e05614f2868f5d4f1a57ad25bc2c75f5f5633d1dac0cc0b5564c877925949dd281a7726553141ea4e6521bd82941edfce715cf2ea4949797c921a70f1c4665aa33813bf4c255130f5fed5ffdfb8af6accbaca109ed2ed4caf86673fd559e02320a9aae19fcee1d0d09bef728b480b82b5f2dba6428839f7401b48ae004b86a2ed892c", 0x84}, {&(0x7f0000272000)="d0b0ece95b56b39d8fcdf8f14c2eb4a9e93ace3421e2b2397063c2c24bfb426bc895cf4a6454749c18ac955c49a59c946510054e6cc06fa62b6d9b985ba74d8bb23e945ed31b288529098f4408953707a653608a7037e16239dca7425c808ede54cb936a24f5bd43c6b079e3f78c48eb384f2f604b70bac05c994d9c90cae9e3b40c3fc4c74cc1ba16adaba892166ea21ce2294073898f95251b09aa2bd33f740906308a3139a43b9eefb932da994b27189a61de56c0d7313da355b764f61b37fa32e7e5623cd5c252799bb236d63bf550a36893e61d7ee082ad389fc1fdba934330d34fa227909edaf3d036ff17dc5915fb2ce574f185d399d94174113556aa804b89052b7a8827e1a681c5cc6e4a86d9a4799a3641503b822c8913457ee39345a64c3382b77f58b886c8aadd4a3eefd2d210b0a92837ad9404f3b5494d48a9803677f016f392185233b8cff41f414256b0d9b298f2c87bbb03ee69c6c5bf5871eeffd037adb2263d18115ef3ddcb80ec7b5020e305b54b405b64372a073b31361ed4bf306bc9715e170b81024502a3bea2a7992664392385088b55e502a64ec025634c05d665062c9306ddac3320fbfba0230976c585aef94ef21e8c98e331002021c73fd9451a7f1227663d0e8a61622a2b2ac57ec0340157daebda9ecb0fe6f61d3befa8e5de40d9e00a7a81cac6e9a8f94be1fb706ec7f56bf68b3058c7a87b1de968081064a10a36335f5a7fd0261265faf6efe1e3ca1ab94112f2bf7a7cd77a7879eff0ba083df799b1186c3043cc0d8c09db97a3796231aa4aac2b0fbf6ec1823cf134b96286df99f7d2863fe99b7e25f062793505dc609c33a2bc12f3429934094c905849b4f43a987a6fa9923f2221b3e9e7238900da5d5935489316bbc6b57557a1cdf7d5b7adddc69ba0423b6d4080a012f4defab0672850d1b5e252007ab54fe9622d144c94eb1d094ca121b0d483e6389fe2d4d6635e3a1174c68e0b47fe34094c5f7231eaaad4841c812f816d37fa99a1b4cdaeb73127f23e6da2eff2768639d7e1adff6d014941e8f2103691c47e3d0af94a830cdebaf5d3cd19332b8586370e5e80274690d75870620a5974aa403a4d07f6c29a297a9279020ef8c836ccb2335d66ccef174de7101de56a6096f8d0736741dcb8976cacb061161bafb3997a72974a9830c12705410aec543674c1c5ce93a4fbf0cf4e7c078b73a1aaa079895bdb86a12c0a7d2995b66dddd0765a871385d2c73ab97b0eb54fdf73a5d83242a0a951abb8a798241b66266c6fddac0436d1ea8a01fb25701cd6b92c833312b8652897c9a48669932765bb04996d7dcaa5661b7e125aaa757a3aa1f1e782360c76b7f432c9402abbfdf017afee4cb47f49a8c3aa5bf1e506ba3b56efb2d8006bf8b8c04eb1fd33cab0e1153c1657b0aabfe06d02e56fa897020e565d3b682a846a9e0028303ffeb6f174f123aaf00b34315c509eb4df7409589084d1994def5bb9602f5d00a9b4dcf4a42d38be46f700b38a3751a78ee35dce063b2059087cd6104c474c573a613395595a62fdab230741670241246019efaebc27d6bd3f842567d8c9d85b4b4e1ea31af16d9899825d537595c7b31ecaf8a66c30e657bf671490507c6b795325ac51815c6b7d8170d5bb02dafcf664d2a7e48927a9a860126667bdb08482d3826559b755df1de5ad47bd418833fd47427b876afff00ee5fdd613595b56168cc95308ba5dc2a4d06959967791518cff89bed2b9b6cc2446ee81761f607187228d8649f6a8977052ebf549f268277602cee9ad02e290f1654012d7d42c01ed0378f43924be2ae022a1c9673e7463876b50737d807f3821def95893a48e3a498963908a8712f10993e7900f870ee68e279bf24a969420af4580cfe2618aa553f0d0cb4fdf3dcde5d84686cf5bd0542a11303500af8c86e883e33265c28f49d1fbb98952b8169c80fd79d12d5e9b6402d5ddc821b112b9a4644cb6baba4185df0106da168cd7917d4f90da7cd22d3502e5ffd50d689c0c1e16fbe36c059b0bbd1d6a14b2d1de5e1e6926e0f90cb8a153d04f89f0cd59ff80966f092244e2b43e7b71d732f448d066686d105be520960f929a7ea2e72d029bd7130903e7224af82424a424f92526aad14b245361aa616dac92a95c02222ccb820a501ee1bb0daddf95f64f68077bfd6f30e679f3523f5b9878f32fda15a6ac162f18815b713da4b1274e6394306e85d55e4301574ee92c2f901dcce077c4ca0affdf49d0d5c0e4c2f24bd45fd2ab775fef3faf4f637015fb87d3d9a63c79360f5db124d083019328c822aaf1d23776f4b8158fb66143284504111ad68ab0e96f5833325cbb9b0db6b1d26d4eead1009c640041f20ce913c25ed5e152ad319af925a127c41e846f6418952e68ca9ab8421e3d4a6f47bf6cd70d18d0daa79b9da28f8db9c3e414eda2eff2a4e13bf19903f3c37eb70c96d30873184462db9f90cd7dfd60d8519ae9343feb00ff53ab830cadce0cdee318aecbcc092e4ca3cd87bd37b3e104e62c34ef11ec61b2e23f1279cac891a614b854ef5b1c614f591560fb454340d44a69cc25eb80ad8d9dba771670c58f13adfe3d2d6ff9071a6155b57457d56261c9d60cb9b5d9137578e716b60049d1b1f74bc2b2ac9f4eb6efc411b872c714dc5151738df0c0f798d01d9bd7d9c4f099340a6ce39b45a22a2af416704c4cb91df0aacc8bd68f992cc89344d00068ba41424ac3a9a9fb68026f9a16806b4761cc9760d9e48daeb51f1f9209e17ff5fcf7184896a09a1844bbeeb31d9c748400d9b818ba25605fd1e77628981774bceb5427e6e9ca6a10a4b79ae056e6b9ae7dc03ceb98dae389a51bf458ef20a8f9cf8d0d537fe80a4c539d0b72c17fef1ad4a7e9a13618df7eda0caac137ad9d30bf9aa53afd847902babab162d68182ec0c745b5334c6c78d11a91fbf7dcd0ba129616a59fc67a48e68db9039928a2074adb15da52262d193f32d400c260198ab370cc236829e6211dc36a1436a21061e2a8dbea52b58a9fc085531ed33419fecbb661bade9ec81209b0d3e7d34caf05b1f62d7d8bc9332ffdad399b0ca75b34da308071cd95ca9a27010f0929e43af49388f01270db5f57d5b3bade7fa05c01b97c53cac5c61b86754f19855a26692a4c580f8ac705ec2440a17f365a7d5b1033a611de15ebf367b365b975f98f14aa618a7f0359d9b9cd75f8f889b7cbbe6faa089a950adf6afc5db524c8e5114c1cfbeed127db8987e39b51e37c4b4e0bd3a8a1b6756784331b05882a74863c63a57f4a4ae92dced771de3f5ac4b65ca4401a4190b2f5ca7df0bf0ed49b08dfacb6c797afb548e3b52a48dbc86134640592d5391ca0c71ef6b00df96fac8c95db47aaf1d39f725948bc3c4be76b4bc34e998c43f46139586750a4b616a92e87985dfc105d0e8d3d56d2eae39c8b594a4907f6ecc6014052b8d391a3c284e24224a16af6cdf13d68e36bd18e8f807489e8c81fb30dbc4d9ba5543334b00bea06dcdd4f7e816b03a4d22afff250f342d7b2b833df98b658f0ca4646f340b0ad5f4216b212b0ce96c354fcfa8feefdb30985904e75bf2b3de469705d9cf2a9e1ce80247c638e983353ba565e5fbe5566fd10abec7d736a81d52b1c3f5a4d155602864bd134334227bd9a30297ceaa405fd78226ab1b8b985d46fd1cd47ed503311f78c1c2e104a3093f318427e44538d036f49bf987ce7b3c9988a642992e4893365b2ed53d320024506d450c8a583275678e74155557377c9f97457e75214c353e20f60c20927ada5c1486b46b21e860f41bae412b5ecd4f7763d6093e725b3fb5193d31cc728376d7bf80665b484e4fbdcd812371a262b138a012f3b92b62284fbcb60eb9d5061c83b65e98653834004059893b1396009dbb6dbdbd3da343ff1ed64be514d247f8c20c7e3808e4d67f8941c5742848e54616d8bfe099918e1edfe29294e882ff69d3c3f24187b625a4dc03990c03e545e4eda2fa567d5187bd0276d03ebf83a707df97bbdae809792a122c9f1e302492e1b155d95e2f2e4231aa7e9bcd9b502834fa1e5dac5d1a51be171a194b6b32b29ab9050cd67473974d9205b3890c058613bbd23dc5795de2285170e5493c93ab435601c5c8b4d2bbf9b0be8218c3e83324f3bc7a3a2bc187177a3fc50f174fee21b9680474fd1bafe32c6094293c80ed08a21cf1928f52b99b98e26ccefbd8e472e1d79e17612312ab03377c9f5c69c8f63cfc64d16a6ee79612e781f654cd6a8d918d02c003f821ae85201a8e0cfc69d60aea1cf785f237e88f9e45174629d77386fb27ba605609f8c9a0f031533b1e747dd3f0a7d8a0d92cab60ddc270ac5cbabe17f73d4146579272b1fb8223b42092069da12065b27f02e886b4caca2513b4ab4406efe6f2df6d4c7d4dcb2a1a91c73081fdd74d0b5edb8baf65f6c04e2f6ecbfff82cd6fb3639c15fe15135ef68ed3f1eea07bbcbe3695750cc8abfb422d9c57ec7e197cebd0b8d0e84287e5e0e84e759999472f432937bd66a9ea35c457a221091f9102ef2a68f3c01a714bb592e523d8fe9b936ece5d8c75a1cf7b8bc8690495e8ac0d7e5eff6c6b8aa00fbfd35df27e4296f9498793a784dd2f694e6678d827bdaf2b7a426b708f4a288cea7c7a118426de2ec5815c9346146edd94be03ae0f35a6ae032ed01cccf118ac99faf3206628202aea6c6c54ac362d4b5ec57158fc7aad33ac929e9626e979777c8df711daf5d76764697ecfbed0f192451db00c45adfc3a9b19dd9336bc89c121ed5c0297d0fd4bc7169ae11f276131061a79ff0619668db2a3dbe1d434d78c0b80332be417fe3fca0133d5b6ce4367bd355903a7568594288e6e0288f8c0d66bc02718058b0eb10f9d0382d2db54d1140c0d9c0b7c8c2b525dc1117a406efcb903f987fbcee1361ed0ac1a8886dd9c65512335f13035c51847feb8b5066217ecb7858ce0ed7e7a200365fdc10f43dab3f5336a5f098fb2b8d4938bc9010ba2ab8d92408bca69b7ace1e657d180cf177ef602fa68c3f8991cf84755d5d9ec6dae1edfc2b7383ac237ccad06e9bcae96e3c8187d11ec4a6155aaafe42ea20cc9dac29547a603118bad1db116b58c26402045a6d73deb3559724ccb70789fa0b82fa5cc61cbbe0d1fb91413b1e4bb1f27485a4d1e7e3dd66ddb43b0a9f4345b13285de7b909839374208d59e9be0b4fad57a771a29fc82c53a8e12c439de9099560edaf3315adb1ad845706c94f25ab1201b674778703fa2cb7e454d86f858cfded97141d79805d42091b18b760d64551e3a5b3f91ab93ea4a9bae69a2fabd5d41b495311e67cfce40bbdbd0b715101b445890f620b0a6a6a5ad8e45e4048e524c3026accf3a628c2ebf091fa35b346d00a5daeab502ccd58d215e5b67242cc74aa5429dbe8f46767677a84bcf7a5556836172365ab5335b9213729188189bc6e7a41ba96bfa8d593f8e95224b14e1b4b20439abcf5553e8bce088e4050de1910bc9a672afe1c0a0adaced00184e77d35763353db97725c104e8920e0b2fd67b9223b8ab346ae68c0ca37a85cd0218fa9e899b6e423a6b74006cf2370d33772bc3b4eb94ca8772f90cd27b0db248f7b4eb320f9f4e111e84cc751ea4d85d8f6cd0f6db91c48844fc14342d5640fc0c6831867861a26e00e1fe5e4fcecfc486240d226c1a80108e8f8a5dd909d5863139319744cfa686c01157269b0460442377d747ca114fd09bb69f75e5bb729952a0930c0ae76398fc", 0x1000}, {&(0x7f0000166000)="c4a94afffd3f3e59a6a4162ec297e206e3d5fdf31d5dd9a1b0c2eb97faf56233", 0x20}], 0x6, &(0x7f0000317000-0x30)=[@sndinfo={0x20, 0x84, 0x2, {0x0, 0x4, 0x0, 0x0, 0x0}}], 0x1, 0x0}, {&(0x7f000095f000-0x1c)=@in6={0xa, 0x0, 0x0, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0}, 0x1c, &(0x7f000093e000)=[], 0x0, &(0x7f000093f000-0xf0)=[@sndinfo={0x20, 0x84, 0x2, {0x0, 0x0, 0x0, 0x0, r7}}], 0x1, 0x0}], 0x2, 0x0)
[ 1054.840545] *** Guest State ***
[ 1054.850997] CR0: actual=0x0000000080000031, shadow=0x0000000060000010, gh_mask=fffffffffffffff7
[ 1054.877148] CR4: actual=0x0000000000002051, shadow=0x0000000000000000, gh_mask=ffffffffffffe871
[ 1054.899284] CR3 = 0x00000000fffbc000
[ 1054.903642] device syz5 left promiscuous mode
[ 1054.917063] RSP = 0x000000000000fffa  RIP = 0x0000000000000000
[ 1054.918541] IPv6: ADDRCONF(NETDEV_UP): syz5: link is not ready
[ 1054.918672] IPv6: ADDRCONF(NETDEV_UP): syz5.0: link is not ready
[ 1054.947136] RFLAGS=0x00023000         DR7 = 0x0000000000000400
[ 1054.962873] Sysenter RSP=0000000000000000 CS:RIP=0000:0000000000000000
[ 1054.970049] CS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1054.978255] DS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1054.986831] SS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1054.995254] ES:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1055.003447] FS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1055.011804] GS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1055.020255] GDTR:                           limit=0x0000ffff, base=0x0000000000000000
[ 1055.034210] LDTR: sel=0x0000, attr=0x00082, limit=0x0000ffff, base=0x0000000000000000
[ 1055.042417] IDTR:                           limit=0x0000ffff, base=0x0000000000000000
[ 1055.050618] TR:   sel=0x0000, attr=0x0008b, limit=0x00002088, base=0x0000000000000000
[ 1055.058807] EFER =     0x0000000000000000  PAT = 0x0007040600070406
[ 1055.065760] DebugCtl = 0x0000000000000000  DebugExceptions = 0x0000000000000000
[ 1055.073427] Interruptibility = 00000000  ActivityState = 00000000
[ 1055.073504] device syz5 entered promiscuous mode
[ 1055.084964] *** Host State ***
[ 1055.090873] RIP = 0xffffffff811be573  RSP = 0xffff8801c2a074c8
[ 1055.097466] CS=0010 SS=0018 DS=0000 ES=0000 FS=0000 GS=0000 TR=0040
[ 1055.104108] FSBase=00007f3b55cda700 GSBase=ffff8801db500000 TRBase=ffff8801db423140
[ 1055.112105] GDTBase=ffffffffff577000 IDTBase=ffffffffff57b000
[ 1055.118164] CR0=0000000080050033 CR3=00000001d9f17000 CR4=00000000001426e0
[ 1055.125334] Sysenter RSP=0000000000000000 CS:RIP=0010:ffffffff85142970
[ 1055.132160] EFER = 0x0000000000000d01  PAT = 0x0000000000000000
[ 1055.138395] *** Control State ***
[ 1055.142007] PinBased=0000003f CPUBased=b699edfa SecondaryExec=00000042
[ 1055.148839] EntryControls=0000d1ff ExitControls=0023efff
[ 1055.154426] ExceptionBitmap=ffffbfff PFECmask=00000000 PFECmatch=00000000
[ 1055.161490] VMEntry: intr_info=00000000 errcode=00000000 ilen=00000000
[ 1055.168318] VMExit: intr_info=00000000 errcode=00000000 ilen=00000000
[ 1055.175054]         reason=80000021 qualification=0000000000000000
[ 1055.181511] IDTVectoring: info=00000000 errcode=00000000
[ 1055.187172] TSC Offset = 0xfffffdc982b27993
[ 1055.191698] EPT pointer = 0x00000001c2c9a01e
2017/11/27 06:13:08 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x84fb, 0x1, 0x0, 0x0, 0x0, 0x5, 0x1000000, 0x0, 0x9, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
add_key(&(0x7f00006bd000)="7573657200", &(0x7f0000dab000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f000084e000)="", 0x0, 0xffffffffffffffff)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = syz_open_dev$mouse(&(0x7f000092a000)="2f6465762f696e7075742f6d6f7573652300", 0x400, 0x400)
ioctl$sock_inet_SIOCDARP(r1, 0x8953, &(0x7f0000369000-0x44)={{0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x306, @random="0cf0e5463438", [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x66, {0x2, 0x1, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @syzn={0x73, 0x79, 0x7a, 0x0, 0x0}})
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xdc, 0x0, 0xffffffffffffffff, 0x7, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, r0, 0x0)
setrlimit(0x9, &(0x7f0000612000-0x10)={0x0, 0x0})
munlockall()
mmap(&(0x7f0000000000/0xb000)=nil, 0xb000, 0x0, 0x4031, 0xffffffffffffffff, 0x0)
mlock(&(0x7f0000003000/0x2000)=nil, 0x2000)
mprotect(&(0x7f00003f9000/0x1000)=nil, 0x1000, 0x4)
mremap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x400000, 0x3, &(0x7f000028d000/0x400000)=nil)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x10, 0xffffffffffffffff, 0x0)
clone(0x0, &(0x7f00000e4000)="0f", &(0x7f000048e000)=0x0, &(0x7f0000113000)=0x0, &(0x7f0000407000)="")
socket$bt_sco(0x1f, 0x5, 0x2)
getpid()
geteuid()
mmap(&(0x7f000000b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000430000)="2e2f66696c653000", 0x3)
mount(&(0x7f0000ef1000-0x8)="2e2f66696c653000", &(0x7f00008f9000-0x8)="2e2f66696c653000", &(0x7f0000b4f000-0x7)="70726f6300", 0x1, 0x0)
r2 = inotify_init()
inotify_add_watch(r2, &(0x7f00002f9000)="2e2f66696c653000", 0x4000020)
r3 = open$dir(&(0x7f000001c000-0xc)="2e2f66696c653000", 0x0, 0x0)
r4 = openat$rtc(0xffffffffffffff9c, &(0x7f000046c000)="2f6465762f72746300", 0x101000, 0x0)
getsockopt$inet_sctp_SCTP_PR_SUPPORTED(r1, 0x84, 0x71, &(0x7f0000f80000)={<r5=>0x0, 0x8000}, &(0x7f0000296000)=0x8)
setsockopt$inet_sctp6_SCTP_DELAYED_SACK(r4, 0x84, 0x10, &(0x7f0000b06000)=@sack_info={r5, 0x8, 0x2}, 0xc)
getdents(r3, &(0x7f0000386000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7dd)
ioctl$TUNSETIFF(r4, 0x400454ca, &(0x7f000072d000-0x28)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_ivalue=0x4})
2017/11/27 06:13:08 executing program 4:
r0 = openat$vcs(0xffffffffffffff9c, &(0x7f000013b000-0x9)="2f6465762f76637300", 0x80, 0x0)
ioctl$LOOP_GET_STATUS64(r0, 0x4c05, &(0x7f0000bf0000-0xe8)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", [0x0, 0x0]})
mmap(&(0x7f0000000000/0xcfa000)=nil, 0xcfa000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet_icmp(0x2, 0x2, 0x1, &(0x7f0000e3b000)={<r1=>0x0, 0x0})
preadv(r1, &(0x7f0000001000-0x90)=[{&(0x7f00005e2000-0xa)="00000000000000000000", 0xa}, {&(0x7f0000001000-0xd)="00000000000000000000000000", 0xd}, {&(0x7f0000000000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x8b}, {&(0x7f0000b78000-0xd9)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd9}, {&(0x7f0000fb7000-0xfe)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfe}, {&(0x7f00009e1000-0x92)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x92}, {&(0x7f0000000000)="", 0x0}, {&(0x7f00003a3000)="000000000000000000000000", 0xc}, {&(0x7f00009ac000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x5e}], 0x9, 0x0)
r2 = memfd_create(&(0x7f0000c54000-0x8)="00", 0xfffffffffffffffd)
write$fuse_poll(r2, &(0x7f0000655000)={0x18, 0x0, 0x1, 0x0}, 0x18)
unshare(0x24000200)
r3 = socket$inet_tcp(0x2, 0x1, 0x0)
getsockopt$inet_tcp_TCP_REPAIR_WINDOW(r3, 0x6, 0x1d, &(0x7f0000cf8000-0x14)={0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000281000-0x4)=0x14)
unshare(0x0)
mkdir(&(0x7f0000bd4000-0x8)="2e2f66696c653000", 0xfffffffffffffffe)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f00009c9000-0x8)="2e2f66696c653000", 0x0)
mount(&(0x7f0000213000-0x8)="2e2f66696c653000", &(0x7f000001c000)="2e2f66696c653000", &(0x7f0000983000-0x7)="6d717565756500", 0x0, &(0x7f0000ebd000-0x2)="")
creat(&(0x7f00000ff000-0xc)="2e2f66696c65302f62757300", 0x0)
getsockopt$inet_sctp6_SCTP_FRAGMENT_INTERLEAVE(r0, 0x84, 0x12, &(0x7f0000e67000-0x4)=0x0, &(0x7f0000424000-0x4)=0x4)
write$eventfd(r0, &(0x7f00001f5000)=0x200, 0x8)
rt_sigaction(0x7, &(0x7f000002d000-0x20)={0x47f143, {0xfffffffffffff27a}, 0x0, 0x0}, &(0x7f00003bb000)={0x0, {0x0}, 0x0, 0x0}, 0x8, &(0x7f0000824000)={0x0})
mmap(&(0x7f0000000000/0x95c000)=nil, 0x95c000, 0x4, 0x44031, 0xffffffffffffffff, 0x0)
fcntl$getownex(r0, 0x10, &(0x7f0000dcb000)={0x0, 0x0})
syz_open_dev$vcsa(&(0x7f00000e1000-0xb)="2f6465762f766373612300", 0x8, 0x80)
2017/11/27 06:13:08 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x6e, &(0x7f0000519000)={@remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x0, @ipv6={0x0, 0x6, "ffeaae", 0x38, 0x0, 0x1, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, {[@dstopts={0xaf, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0], []}, @routing={0x0, 0x4, 0x0, 0x0, 0xbbb, [@remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}]}], @udp={0x0, 0x1, 0x8, 0x0, ""}}}}}}, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000b97000)=0x800)
r0 = perf_event_open(&(0x7f0000ebb000)={0x2, 0x78, 0x4000000000043, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0x0, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x24b9, 0x0, 0x2000000000000, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x64c45099, 0x0}, 0x0, 0xffffffffffffffff, r0, 0x8)
mmap(&(0x7f0000000000/0xae9000)=nil, 0xae9000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfc6000)=nil, 0xfc6000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc6000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc7000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc7000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6_udp(0xa, 0x2, 0x0, &(0x7f0000fc8000-0x8)={<r1=>0x0, 0x0})
bind$inet6(r1, &(0x7f00003a1000-0x1c)={0xa, 0x0, 0x80, @loopback={0x0, 0x1}, 0x8001}, 0x1c)
sendto$inet6(0xffffffffffffffff, &(0x7f0000a76000-0xdb)="e5", 0x1, 0x804, &(0x7f000084c000-0x1c)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x4}, 0x1c)
mmap(&(0x7f0000fc6000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x743000)=nil, 0x743000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket(0x10, 0x3, 0x0)
mmap(&(0x7f0000743000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_inet_SIOCSARP(r2, 0x8955, &(0x7f0000744000-0xa)={{0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x6, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x60, {0x2, 0x1, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @common="626f6e64300000000000000000000000"})
write(r2, &(0x7f0000742000-0x1f)="1f000000120007f2000094ff070000770000004108000a00000180ffffb909", 0x1f)
r3 = socket$inet(0x2, 0x1, 0x20)
mmap(&(0x7f0000fc7000/0x1000)=nil, 0x1000, 0x1, 0x32, r3, 0x0)
mmap(&(0x7f0000fc8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000b66000/0x2000)=nil, 0x2000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xd000)=nil, 0xd000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet_sctp(0x2, 0x5, 0x84)
mmap(&(0x7f0000fca000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:08 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xde6000)=nil, 0xde6000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet(0x2, 0x3, 0x2)
mmap(&(0x7f0000de6000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp_SCTP_SOCKOPT_BINDX_REM(r0, 0x84, 0x65, &(0x7f0000a59000)=[@in={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x2, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x7}, @in6={0xa, 0x1, 0xf64, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x6966}, @in={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}], 0x5)
getsockopt$inet_int(r0, 0x0, 0xd0, &(0x7f0000323000)=0x0, &(0x7f00007d4000)=0x4)
r1 = socket$inet6_icmp_raw(0xa, 0x3, 0x3a)
setsockopt$inet6_buf(r1, 0x29, 0xcf, &(0x7f0000b67000-0x6a)="a82c46355c1fe47c02e741840e35b008a8d9f9165f172d8b9019745fe577084b0e09fc04fd233782f6c40da56fc85089da93f35dc74a901ee881b6b880a775e0bcc1770c3dc6e7d76f10ad085abfe507854a6f25ba337a4e7c202cf7d6263a49a7939c74a2ce3cf2ee", 0x69)
socket$inet(0x2, 0xe, 0x0)
r2 = socket$inet6_dccp(0xa, 0x6, 0x0)
r3 = accept$ax25(0xffffffffffffffff, &(0x7f0000144000)={0x0, {"00000000000000"}, 0x0}, &(0x7f0000843000-0x4)=0x10)
connect$ax25(r3, &(0x7f000098b000)={0x3, {"3fea5f4c5676e8"}, 0x8}, 0x10)
ioctl$sock_inet_SIOCGIFBRDADDR(r2, 0x8919, &(0x7f0000286000-0x20)={@common="697036746e6c30000000000000000000", @ifru_addrs={0x2, 0x2, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
r4 = epoll_create(0xffffffffffff7fff)
ioctl$sock_SIOCINQ(r2, 0x541b, &(0x7f0000112000-0x4)=0x0)
pipe(&(0x7f0000560000)={<r5=>0x0, <r6=>0x0})
setsockopt$inet_sctp6_SCTP_RECVNXTINFO(r5, 0x84, 0x21, &(0x7f0000ccc000-0x4)=0xfffffffffffffff7, 0x4)
r7 = socket$inet6(0xa, 0x1, 0x8010000000000084)
setsockopt$sock_int(r7, 0x1, 0x28, &(0x7f00000b0000-0x4)=0xac9, 0x4)
setsockopt$inet6_MRT6_DEL_MFC(r4, 0x29, 0xcd, &(0x7f0000cb5000)={{0xa, 0x2, 0xffffffff, @loopback={0x0, 0x1}, 0x3}, {0xa, 0x0, 0x81, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x7f}, 0x2, [0x8, 0x0, 0x7, 0x9, 0x5, 0x100, 0x2, 0xffff]}, 0x5c)
bind$inet6(r7, &(0x7f00001c1000)={0xa, 0x0, 0x3, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
ioctl$int_in(r6, 0x5473, &(0x7f0000a2c000)=0xba7)
sendto$inet6(r7, &(0x7f0000e87000-0x2)="c3", 0x1, 0x4, &(0x7f00009e1000)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0x100}, 0x1c)
read(r7, &(0x7f0000f6b000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc9)
getsockopt$inet_dccp_buf(r0, 0x21, 0x0, &(0x7f0000f30000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f00009bd000-0x4)=0x29)
accept$packet(r6, &(0x7f000057b000)={0x0, 0x0, <r8=>0x0, 0x0, 0x0, 0x0, @local={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f0000042000-0x4)=0x14)
setsockopt$inet_mreqn(r6, 0x0, 0x24, &(0x7f00002dc000)={@local={0xac, 0x14, 0x0, 0xaa}, @loopback=0x7f000001, r8}, 0xc)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$netlink(0x10, 0x3, 0xffbffffffffffffc)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:08 executing program 6:
prctl$intptr(0x1d, 0x8)
r0 = openat(0xffffffffffffff9c, &(0x7f0000c15000)="2e2f66696c653000", 0x400000, 0x80)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_tcp_int(r0, 0x6, 0xf, &(0x7f0000002000-0x4)=0x568, 0x4)
mmap(&(0x7f0000000000/0xe6a000)=nil, 0xe6a000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$inet(0x2, 0x2, 0x88)
setsockopt$inet_mreqsrc(r1, 0x0, 0x25, &(0x7f0000e62000)={@broadcast=0xffffffff, @remote={0xac, 0x14, 0x0, 0xbb}, @multicast2=0xe0000002}, 0xc)
mmap(&(0x7f0000e6a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000e6b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_opts(r1, 0x0, 0x7, &(0x7f0000e6c000-0xfff)="b982eb34a80bd559d61f978d18ee782a6f9679369095cae2e78ea30dc013b27cc40e3f80272d251ccd4b5104dddb66b13166b4085f5dc6bad7d5baa74c39740b96132ac2c44e3bb194c4d072a0ad3017d360cb1edc4811d7226147fac96bd71b3355a2ab56344b189f800893157a2e22a638759bba93d42bd49764ff7070757368cf8040f05314f5fc6328991a296bac2b1f8895494fac8460991f31677a0ea57d669b86af635d061b48baa0d95bbc032ee9d2102dbd700336874b6ad9ce7808858b169ae3b425dad06362591e7ad6d236ca9f7f7801d7b1041ea97d279d8197124a5fa6aef67439dfc870ef1078a46aeca464d4357c608e4b0480638bbff262376d1ae373c3d44c28dc28760d12a4ff58cf8430865b2200587237d81df3dd5b30eddf43e68daaa7604d292c76a42ced11ff4b744ada9bdcc8febfbfbd4a8f165bbc628ed9f3cbc066f272688dfa8a5fd7795e7abc35742eb26a20b2827e121ea375b01b45e894e9e4114d56519019460700fdd5f2d75df277d71a4eecc1667abb18c82e4a2272b152dcda5b57674af4a39c74fedc9ec74e90f223e13453d389a2074cef506a73e8d81d541885cf6613d1518aeba788f7431d98b791ae4b1e9ba0316dcf40330b0a72cb089062498f11826ca485befbd40b0c5382c30d7c7d14b43e5ea6193e289b2e0badb871eb905e0fe7326d15cb8581779a635fa19553f835221d1197f7e14273a99f72498560b6b9dccb125ce5d90a11c7699d5518df24431ba78f28cfee7c929f8ef23e28e1b7467c7f19e8fd4622d144cdb97183abd694edae3f56fb08b0008ae6849ea4db14cb0527276d5711d28ff9b20e05473944e2c2ae0786918e4a4d49f739a0fba882b41cab40b00fcb7c77871f0d69030ddd554680250318f42b3ec8dbf82a537398e17020288b10dd49870c842795cb73e107cd5e394d184f5c136065c48e656ba7ea6d2529386242963a20171d845dea9a6873fde01ff2a196c4262bcd0cdc6ec5d316cd2863155edfe2d6ca7800d8bdf8e102ac94d9d2f1d06f35ec9ced7828a8333dd3a8f6c6c389344d3c15337f000dc4ab85e1d072d1a0c9323b3dbb5e9882e207334acf08fa18cabf137840c18de542d076aec681bfaa6d742088172bea15eee29a2091ff80f39a3b1cb58fc0bff402a6232e0f5c3626eb4134de3115ed977bf9c2e3bcb78954b481ee714390061f82e5e94aeb42a43aafb770bf20a947921466f33463a992e7bd8421152c7e56d950936092ce5bb72bc9a1b395b296f01fdda1bacaff9ef5bc2afe889843b96ace5543fefa1c57d0433bfa3e1121202b4a5b66481a6fc14601d63412e743a1830e1c9a886b11cc4b26a8877668ae9ea3f19a6649f0b87de5186edf74188e73572add9c44174bd5c7b1bcbd3222e04bcc609456018932a12181c2931721f0c101ca9e7f2d241269ae9ba68866c2e49a92625f4f962c6ac8b6ef3880c3e988dafa39b450d7737eda136de3d25076c2d0d31052e65535aa9b8dccfdef372e04953f9f544d88b45eba9aafff47f38da01f1ecff3351338f995deaec14fa1d673850e23ba980a5adb9ef9fdfd54f337f6a447c0ef4df84580c54cb5011855c5d700cd8aadbcf61b04522524864b76603d0e369d56d0ad488f157d8870975a25195d6d850c8ce111c5074ef5471082273d1ece35d47d6b6b522e295f3ced0844585b640e0c096eceacfe0c94b4be6db3e3eb23382bc7db397bdc49c3adc795e06cbb7bf9381a8b4d08aca824e149d79e6c020b389afdc5d027281f4ebe40e4c7ee532cd32ef38f4ea282fd34e12758a6865b68ec38d5a8658655ffe9bcbea5eb1fcf34fbd65d2fb61f065e7b15644ecfc5f79fce5081783a88ddbaf544ae4a504e7fc8b413fe7b2f079b6bfd02e98c24a62d3d73dd27f57e7a2143cffc3c5d270d322de37a7917e4abcb35a7e0fc8c5d340b08f02aede3da62d6b7c4bd11cd34f98489899065fcbec7406fb92922a16df0c216bc6c48dc881a8545bf60a3000620fd02384379febda5c63c69caa4758c3b07f5e87ecf6f9dc84f5c03763581c6b84431501bbd1856adf669d817acad29ee9fed7975ff3ed1773fe5c9196dd39a3239c574cc8b59aa9432081264615d47765dda599af3e58becfd68d32269e21b58d6d0617b98f8e127f86b5b48fd5206e7199d8839760eff10e984c431f40f9b480a6a8486c040ba32d27ba77132265489c3c0ce62204de7330424cc5a897ddc421d217d6a9599c3104f8e77b276d02b9c1ae05c0a1488add0291d2e911a0b7de5a8f8edf30a4c08e829bdea5763ff41c19f958d3211a682ac62ba6e28a4e515382f45bc40026161b475439b960d888f04cc94db70e69ba75a550c6ca96150a50230626a09f5fc3a42b53445075430a1253eccf66d57b2f8528374fdb86b7ae8124a2aaf81882a4a3cc24d59586a6d786aff04209d1303981cf9ac6bf16c718529bc299b356c1b42239c646c1590cd10a868d71c4479d4e9bf12ba78a9bf8777a4e3e2e7e57b04ab933bf3b0e3a5901f39270ca4dee7044a105157a8485141ab614c28aa91a744bafe1c7dcf82d6a8f2876b43954c61f9bb977b96296f0612930f05bcf9e9ee6d5594dc2906163228e9de4e55bb7b2f65c0ec309e4db8973ebe7fc9ee0e509a632a30cd5dff56e9c092d84e9430c39c70d25de81279a8fd4e1e10f59b6cea61c7c58e0bddcfd37673ab0cd8fd953eb93dea3e6f6b8749e15ed70fcc80a8daeb16a243c5520f563686f7d340a34092ff73775c86843181647b3dd453224770853b5ec3882a55f944c9aff41a3b559d64638c00f3860b6b259e66fdf48995869ad2cad88bb3d68d93da6248407896e311f435c7695cc40f1696ed0eaba01a95423679affc7b841c1f4bc37e9acc61b75519cdfbef3f6ae5656c49636b772762f63db140792a6e55f67b2f4a4fc59daacf79bcfae3e6973c5570da2c4ce00f21a50c8eee9f8dfb8acd4e89f1ea5e57eccf795953fcb04b6ff94e81c0afb0d11473118db8578be74a0a9d25d81c5128845e997314b492c6f46584099c43d21bf10456a2a5d9a983accf52d8e2d1c4fe8c3749fbcab3d838595053b6c82d55682ad77d4d3acde71efe190cfaf2ef298abd6399e6cb60f4e32961b36ca0cb2d974ade075ca01a71dc9580a63cdd69e054581607e8c17ef652f9de5901de39d77c57fec61802638e1c19f3b5a23292d0f97c21412c1fe5f85c37de38dc93abaa828bdf4c37ebfcae63183fb8bc2cdaa10e72483a88fc24f934f097075e0da8494eeae19f568f494997d453ded648688b153b658f5aabede41cdbc77ca5eb74eafa09c5119c595e4ffb270a66184204682488f58fcca0a81837ba1244f26dd3d244d3f17b0c9546ad94f0001987a8cc548eb858bd22de1000d4398bb6ff7200c7e2d0c919978f9283149c9c580c74e0d91e7debbfee1e3c02ff89be6361dd9fcbaeecf98dddd7f3b9ef6b813931051de9d0989098697dd91a9fb53cd88bc3e0fd792d208ec94b29604acceaf38cba35fcf133bab16544b39419dae39fb73279d6cab61fdc95f49e4dcac96d8966dadccf153594e804876eebd8fe77cac56fb33aaae492c484f272f44e93bed60c1c36eb3d81ff57a9bd702e30c8947d8c0f4e221193aea7fe102779f278b946fc7848fee6b34d6ec04a1654b4bd72b9dccbd2fe11af0d3067e55ec372afb529c4e5640bcd0cfdfbd906b5225e12bdf874c3e31efe66be6f3fc81c2c355606d5c28d3a348999edbe76fbd4b093f95c497cf21ff4b685f60afe9b097f55cab4bb014f379d72b14985137b7629c06a0d77855855effac48979ad8eab378dccd848544c3cf7b87e6653e0da873f28e8b902fae1b5ef3d44aa1d51c109c065aa5362b0a8140881d7bf94a27d46ef54af51f390cf8c50edf5895d573ed53640e92cbb8188f6786202ff1aa648ccd7a71a1c2451933045f9edb2e222d26f8ce9f20b72bcb4983ef70e7d7990e5e6561eb0462a76d74acd351b895bf7c32e4dc3b06ed05bf6f0a37a289b96687c077a73d0d2bb253550c455e579657124d9326da87315ec6e9bcc7a33f03a504cddbbfb51e892bc6f90e696ad5835e7d6b4193b9eca7a244f65f29147a1476c63c1501dcc5e64e221d6881f6a39434ebf446b84e6d83392e57e34301c1450b5eb80255a1c4659a6753932a737c3e6de71cb7150cad125ba89c17978f053551a56a6e3f29f10cab5281e80caa9f972e827871b30290141abc63544a89601ccfc61c1ddfaf16053d4b170f6d94bf0572434015a8cf0085d6870a8abced9b5787b9340d4c0ff4d8e992154a5645c90ddf29a02bb4228544d296f7c00dd8a851c60fbec0e4226ca96359db21163189c472db945302308a3d3e4acd43b01f0cdefa0aa584827a6502502d5ccbb599a04318b07cad243e15a3996020465faeacd7eeddf10b131e57238849fa946b00df7752dc3412b4eb927f4aff35acd68960401f25704e5e1cf1c5789737177863fefa05894ddb3c9d6135add2b69bd3b6cd9fa8e6413f929f79fb4ff64e390e43e4c7c3614aff3d410450b3e0a81073ea5339dec93942a830ec245e99ea8c0e0365f921e3600000000000000035da81ab7686f6ebdd81b158c727e33cabbecc99fa0006806e116a8aeac61a20c4fe2a822d004d29a5dc1c599688eb6bd60a3705752630627cacda19848a1dad5180c23cab071b77ad92aa4fb2b4f2fde5fba4487a7d7dd69bc51b996887b3f4aa634e922ad3ec474a999e075fc34a371fcc1318a4e242d75e199325462d1aef94d2fbd59b5ab7957de71ed5f05abccc647fe53adcdf0505c6cf9a33c572fed1ddda0542e87875a13195fdb95e39eccfac190e9f1f1fcc521a5c795509f774d7a17eca021d6571d600e51849c9238902defbfb4d19b1e679781a19c0c8b239a305ec3d5789dc913d0aa44bda3027bcff118b597da1a73a1adcfc84e88e7954f903908817eccf6df86a0a8995d573e2f787c1354fbb72fb2285d01eec00564b2ffeb08def056ece92b3b32ef0853d7db3ff61a6c08af759e0cae8c96bf22177836d893c3ad6db9ac0bbc6db263fdc9f956e2b61c3d99983f960953a53cd616642207504654a4399f47b64319e95d2cb0417f7fda79d172c5cf358ae9d265a54b1dca9ae603c9b76ea2987fe2fcf3029eb28b4d36a7457b13209a41ad2f1b49c72588d8c92dec3d6aae206ed38ccda02f40b9f075b4419f443c687f68c84aa035c281b6e092f10d6acd6ee576a24d1a357086a452615ee7325232ded5283a9593eaa97033be2a2e18c8661443912acce1e16cbb4aa6600b3f1f636cb152f6d69c59aeb999cd7278868e9fe5a5125b07c71779f722d660d3924f77bbf33a82a7ecb3e8ec4e891b43ab5154a1a2bf6a3542e32a555b266a9bdc004c78fa475e58e37e9c4d0af5430ac890bc4fdca9c0c039170ff356cba33c8845b5e285bbed26a1719a1e8cab56715aab96c62470a1d151eca7f047bcaa1ab5ef65ef7b8b697b92eaa150de4c6cd08794cff277892205ef8d22ed4909f1823ceb3be021bdd10b0fc17c3cbfee221fa6b71cc691dd0d7a030bad30b0a797a98e2444a8e913d773d41862662e3a28ea3825b165b40c394762664dd0db0e0788b69d21d1b7249c9a49f3c93b4fccb93d591fb23889a2ef8294e6977661831a9628bc05bd37c3ae086d3610f343a4b9796b1bb4470a7e4cb767854b9fb65eee173f1cde3f5df38c72f367384f4f3f366e2517ec09f3846772678f6847", 0xfff)
mmap(&(0x7f0000098000/0x3000)=nil, 0x3000, 0x400000003, 0x20010, 0xffffffffffffffff, 0x20000000000000)
recvmsg(r1, &(0x7f0000e65000-0x38)={0x0, 0x0, &(0x7f0000e65000)=[{&(0x7f0000a1e000-0x16)="00000000000000000000000000000000000000000000", 0x16}, {&(0x7f0000e6b000-0x20)="0000000000000000000000000000000000000000000000000000000000000000", 0x20}, {&(0x7f000062b000-0xbe)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xbe}, {&(0x7f0000e66000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x28}, {&(0x7f0000e6b000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe4}], 0x5, &(0x7f00006ad000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x43, 0x81}, 0x800000000000100)
mmap(&(0x7f0000e6a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_int(r1, 0x0, 0x14, &(0x7f000096e000)=0x95, 0x4)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$inet(r1, &(0x7f0000002000-0x10)={0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getsockopt$inet6_mtu(0xffffffffffffffff, 0x29, 0x17, &(0x7f0000220000)=0x0, &(0x7f0000445000-0x4)=0x4)
mmap(&(0x7f0000e6c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000e6c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000805000/0x4000)=nil, 0x4000, 0x3, 0x8010, 0xffffffffffffffff, 0x4)
mmap(&(0x7f0000e6b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendto$inet(r1, &(0x7f0000e6c000-0x5c1)="c492f9473391ece6ee8f34dbcb4a4339db996c90ff47feb71910efa3126a009ec65efc49ca04c14b33247b825522a1e3bd2ce435ab91222b8f24bf735a7262f20aad70ddd7664a206c114436c323ea5cf4d2ceef0a9343c56d50c8e680c45fe2f6582a53a21f28a396f08f93cdfc620caae963a3f72c3bb978e82284c672927fd5e5855ebfe26d92c8de86ab14d4171515f7e359826e50274cda98fdc3d8c69ff0930999afefe4838f00dc0f226ab7e19a412f03b582fde8635f86a37c7171d85a738b0a6bcb614573fe4eccbcd488a55649a4462ba8332195c0ef44101670ba75be6fd4de64097f500b63ddf44481026053f7d66eace50bbce14817133a9cfa5ae1801cf8b6db986d5ce219f4fae3d67e9731e81a964a7d878bc5aeab9202d2ca89d2522c33bf2220edb1628a964237a2b99b4892fc7633784fbedb10f4c545c4fe37966c1c79ed55a335cac10675e111861d2669ed95ad0e99485704da3e5c0000d61cda4a2ea6db130467e3b82f7395be7f6e34aa89451924ac77cfaeb2b55d10e942f1e30ca8f15b2840a50784540b9a4f0a24d6d0054b615ec02349ad6fe65266b2a7955a059f48c401033931b52752bf2d3c86352f64a92b544563f4d69f7abc45552316831ead40bd727d6b3ac56011dd8e7ff07e7638c0e268dce381ea966d105aff8bf1190e0edc1cd92f63fbc6baf727ecaeed845e1b96b2740fd3d5bf062f17db0f7f0b1ed66165a5e5621f1506faaa47ca67dbe55022eaaa7cda1350ceea071ceef711481f2f8c36f5138418e75c522291f9472f9ac137e22f0e98e740ce88014560cb4fc5ac92e3c8aaeaa6fc07bd728f2fb207c913917ec739730acd50b855d3833c437413a1471319f527efd563d90248b7cbb616d1e456f6d292074a72f6f6bc6a95a60299709270e1424694d3130f9ccdb1cf83b207fa8f017b7726716ef73c17909721e40ea6a141b5427045eb5bc856672f45c5621c280e52a6624c642acc20f43cf951a8709ec0031db37191dc8e6c4031062f04fc40204abed1c0fb11b85cfde3d4b67ff1f879cef0ef7eab27d7cbb10cd2b4e2791ff7045f69e70b6f3eed616d3d016a56aa1404c2bbb214c472de91ed52d2d67e3fd6aa2071c60c8c3e662ab10cf6724fd224b896f9923b3e84b7018c3046fdf06bd1f3edc5c05ba1e105aa0c8e05b9e5906290bdae7a6d0c01421367d8e72fdd228c6ac2f4be990bfd8b9421bd0e745546d0a5f3e8e702d35b0f02f11fa6a41adea3c87a1c0923fb2235682d40ad141cf9b06ddb9a47e9296f0b2870b7f65eb6576e19d8b2b14d00643f027b908927e80b151ea2e014061b05d65fe79bfb226a610017d11cbb739137db5acf13fef5d6b2e68ec0da0dd6a943f0cc6b0ca8035dcdafa9460e977d3acee99581d70eb45907da6f55e2a890015d1ababe071e63eed84bdf809785d9b0c62090b3100be698a072b7329cef1d3bd4e819b6b3a0f641f624d14918dfc898e31f1f4f60cf3d11439fe788aef1b68a0376260d19e9d9f4396991c8f0f91e2c5892c6dda8097561eb328beb14b16f49263f2041bf03158cba4f69bfd58a8aed18201874cc7dcd92fd3792656d3b8901e7e2dcb70c688a4f68969f90fb05d5f9e4a32f317e559cb79ff68a24cc3e9a1d4251d02a6523dc22b4e0f03c639b8c4af4bed0d4039abe09a1fd6b219625407db36b08160d0f51615c16e36f5a36e88a58494a7289e30f3c6089f0ed35f5bdbc48039171a1f754eca844edd833d1039213d896ce047d3b733e0ff53e1a22a61a077fb91834de09435a835196c6519fcd18edb1dca216c505308e8e50c583e1a1072e4fd67973280ea6f3191a7f0019e95cc82412075b109502f94285baa9bc56052351257e65cc7e328e5eb948a9026fe7005afbc499dbd26d085a81479b20f5f80a9f98918b839559f092f5d32021ad3787ac5e432a59bfa1be112471ea4efdcbaa0e6b47a3fc0c68a757042b79c7c7671193e8ad7fb75d73212d9823364459b1e6305f787c46088892e450e528df7c23ed5e5f2f1e086d84449e9fb6d1a78d8c0826a9bc3278e1950b", 0x5c1, 0x0, &(0x7f0000e66000-0x10)={0x2, 0x0, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000e6b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000e6b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_tcp_int(r1, 0x6, 0x11, &(0x7f0000e6c000-0x4)=0x0, &(0x7f0000e6c000-0x4)=0x4)
mmap(&(0x7f0000000000/0x1ac000)=nil, 0x1ac000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket(0xd, 0x8000f, 0x7c97)
write(r2, &(0x7f0000133000)="240000005a001f0014f9f407125a00001713170308001000fff7080004000200cb000008", 0x24)
memfd_create(&(0x7f000013e000-0x12)="fffffffffffffff928696d655f7479cb9d00", 0x3)
ioctl$VT_ACTIVATE(r0, 0x5606, 0x200)
mmap(&(0x7f00001ac000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000b9e000/0x2000)=nil, 0x2000, 0xe, 0x10, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:08 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
open(&(0x7f0000eb2000-0x8)="2e2f66696c653000", 0x28042, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x4, 0x10000003fb)
setsockopt$sock_int(r0, 0x1, 0x2f, &(0x7f0000001000)=0x4, 0x4)
ioctl$sock_inet6_udp_SIOCOUTQ(r0, 0x5411, &(0x7f0000001000)=0x0)
socketpair(0x5, 0xe, 0x6, &(0x7f0000004000-0x8)={<r1=>0xffffffffffffffff, 0xffffffffffffffff})
setsockopt$inet6_int(r1, 0x29, 0x3b, &(0x7f0000004000-0x4)=0x74a, 0x4)
openat$rfkill(0xffffffffffffff9c, &(0x7f0000005000)="2f6465762f72666b696c6c00", 0x80000026001074, 0x0)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f000002a000-0xa)="2e2f636f6e74726f6c00", 0x0)
perf_event_open(&(0x7f0000768000)={0x10000000005, 0x78, 0x9, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20010, 0x0, 0x0, 0xffffffffffffffff, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0xe)
socketpair$unix(0x1, 0x200000000001, 0x0, &(0x7f0000227000)={0xffffffffffffffff, 0xffffffffffffffff})
r2 = openat$sequencer2(0xffffffffffffff9c, &(0x7f000094d000)="2f6465762f73657175656e6365723200", 0x2e001, 0x0)
r3 = syz_open_dev$sndseq(&(0x7f0000e35000)="2f6465762f736e642f73657100", 0x0, 0x20000201)
ioctl$SNDRV_SEQ_IOCTL_CREATE_QUEUE(r3, 0xc08c5332, &(0x7f0000e35000+0x346)={0x7effffff, 0x1b3, 0x8, "71756575653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$TUNSETSNDBUF(r2, 0x400454d4, &(0x7f000019a000-0x4)=0x8)
clock_getres(0x3, &(0x7f0000ad7000-0x10)={0x0, <r4=>0x0})
write$sndseq(r3, &(0x7f000055a000)=[{0x187, 0xfffffffffffffff7, 0x0, 0x0, @time={0x0, r4}, {0x0, 0x0}, {0x0, 0x0}, @connect={{0x0, 0x0}, {0x0, 0x6}}}, {0x80000000a, 0x0, 0x0, 0x0, @tick=0x0, {0x0, 0x0}, {0x0, 0x0}, @control={0x0, 0x0, 0x0}}], 0x60)
lstat(&(0x7f0000b9d000)="2e2f66696c653000", &(0x7f0000202000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
2017/11/27 06:13:08 executing program 2:
mmap(&(0x7f0000000000/0xd000)=nil, 0xd000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_sctp(0x2, 0x3, 0x84)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$inet(r0, &(0x7f000000e000)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_buf(r0, 0x0, 0x41, &(0x7f000000e000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f000000e000-0x1)=0x1000)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, r0, 0x6)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = accept4(r0, &(0x7f000000f000)=@llc={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @local={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f000000e000)=0x10, 0x40000080001)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000010000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000010000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6_icmp(0xa, 0x2, 0x3a, &(0x7f0000005000)={<r2=>0x0, 0x0})
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6_sctp(0xa, 0x1, 0x84, &(0x7f0000003000-0x8)={0x0, 0x0})
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x40000000032, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = accept$inet6(r2, &(0x7f0000009000)={0x0, 0x0, 0x0, @remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0}, &(0x7f0000012000)=0x1c)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$inet(r0, &(0x7f0000012000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvfrom$inet(r0, &(0x7f000000c000-0x95)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x95, 0x2, &(0x7f0000013000-0x10)={0x2, 0x3, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000013000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000013000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bpf$PROG_LOAD(0x5, &(0x7f0000015000-0x30)={0xb, 0x0, &(0x7f0000012000)=[], &(0x7f0000006000-0xe)="00", 0xffffffffffffffe, 0x73, &(0x7f0000012000-0x28)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1, 0x3}, 0x30)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000015000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000016000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_pktinfo(r1, 0x0, 0x8, &(0x7f0000014000)={0x0, @empty=0x0, @empty=0x0}, &(0x7f0000017000-0x4)=0xc)
setsockopt$inet_sctp_SCTP_CONTEXT(r1, 0x84, 0x11, &(0x7f000000b000)={0x4, 0x0}, 0x8)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000013000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getpeername$inet6(r3, &(0x7f0000004000)={0x0, 0x0, 0x0, @remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0}, &(0x7f0000014000-0x4)=0x1c)
setsockopt$inet_MCAST_MSFILTER(r0, 0x0, 0x30, &(0x7f0000000000)={0x10000, {{0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x8, [{{0x2, 0x0, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x3, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x3, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x1, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x1, @rand_addr=0x3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x2, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x2, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, 0x4d8)
mmap(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_mtu(r0, 0x0, 0xa, &(0x7f0000015000-0x4)=0x4, 0x4)
setsockopt$inet_int(r0, 0x0, 0xb, &(0x7f0000001000)=0x800809379, 0x4)
getsockopt$inet_sctp_SCTP_FRAGMENT_INTERLEAVE(r0, 0x84, 0x12, &(0x7f0000009000-0x4)=0x0, &(0x7f000000e000-0x4)=0x4)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$inet(r0, &(0x7f000000d000)={0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getsockopt$inet_int(r0, 0x0, 0x31, &(0x7f000000f000)=0x0, &(0x7f000000a000)=0x4)
setsockopt$inet_int(r0, 0x0, 0x1, &(0x7f000000d000-0x4)=0xb, 0x4)
mmap(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000015000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendto$inet(r0, &(0x7f0000016000-0xa22)="516b4d0465793273c89276c459686b89c912d12b2110138d85ca6a9f3ff8f8c9563b3bc744a7f627a05dee1605d4d522fed1df2c9e44b11a3af1642f9938b0ef58ca2c399e6506982a2af512ae8176d4c653410c24cde549a9fd71870f95fa6cea1f74ae675fc4410cb18d9184452eb5c8a0a824c26a0df9bd8a85c7b1dc4e64f5e55b99d9e334be1a8d66c39ae8393653ba4742c9a22a04291c8a79c17cacfbf212cf7cae54bb38a1530b73762952e4db36c9b609de525e560fae9b067833168466dcae7b1af5e1c4bb2cd135c5be76500847483559d404228b3a342de9c43b046f72333f7c8f8631fec73ea89b8bd0dd1945faffbf65c2a26ce1ff93c5c08d245e31c6a0a0db4a828f02ee76f2fe0b4b3bb3265adf8195163979cf22dab81dcf3587271125fd17490fc2e4fe052fc299803462c3d41adff8ea627b0541c1ac2405668a1992e1d0ae034ceb65c15a6a6b091f9d2ccb347c437939934970097caf07a3cc68b112e3ecc37843fa570fec088aa67f7c4d91fce96e4cc0c08035def0821df4347b7dcbd04e787c71d30e6d6163fb80ff46f6612f81f2566c7cf24b3343c93d0d9c2181fa07800cc8652e118e4a3717ca21eae9a16f1938adedf5c589712c1aa5e5a7192ca8195415629ec340d40ce237943b213fae65c0d42c64391daa6b120506fa990687b103be930d71488bfba0676a1458c3b51241d59befd46279ba59823b73dd97a38f81d02a9d4a25f319d599a64d3a76602becfaf3ef9a04fb4235f9f7e1a223a65f668b0b15a5db0a87a7e0680708c1f7975192f4b0122f79303169c2f8da279d85ff9bae241dddd2c494a5e95b7ad8aee247b8d366abd5b90d85165e3efd0fb93d92fcb4f9d28e8133c4dd7b3e97ae5662b83cf22165284351eb2672743159d785519495a233afcfafbb38e695b7bd347d12b421a966388d9d99e606de218b2593a0d7e251b99f7550ee0bf3e5ca7e6c8f8fa2c2d2193103f89f768f63f79b2f009d7edca3bd653296ee84b2de65a3b270ca3164c793a89b6ee6c56c5356afa571ffa80d63b8f465ed34b4300a23b6910172806a8e00831808a9f423a2b6abce29896b287fca0a2c30c437d499caed453f96f9044122b002a195f08f8711f6a33161b2b86a3fa24c44788ecdfb032e5eda8c5050461a154e3ec72470ee390688363fec1ec58d2b747430f1ce849a47099d19c45b3c487c0f9964348133de0ada9c583ab6dfb2e789e0676597f455368889606db4d1c90716a845e9da9387a6703b61bd6bb4bbe65ca615bf41526c1cbb538a935542c7391659c84e1ab644bb0a20e2d40f8b1570582bc9641b83229ac4b8dc11e15f01c14241b89f1dd7d28ef7b089e7b1afdaa3d88374ec088b4c65e8efc01db3ba93408226ca69027eafb31c2ee19e3fd228f7a31c6d2cbccd82d8a2fcdd7c9b5997fcbea2fbd0d6b1052b369dcad8ae7c1d4abb2fd3cbdf0d4425c407d67760ed083b3646d6aadeedc672069954f997c781f6bde4d9292cb1c7c05b63058e16f287ea0d5e497e8967028bdf6298205ec18ea610eea63138c8b1ef18ca0cdadbf22707e6cdf66b65ac1b3ed68a6d4362a5623c95e5330b82bcaa3f36c7974c2951e4ae29bfd95e463a17fb96ef156b835aadd38fbe89adf1e3547f3dc1cd566d7ee435168e0fd7b81b7a0aa2bbee39b773209afeaaffb1a9948ef29e51d8b63aba61ce7ddd4128a31992dcd757b4900bb3ee82f4071f34deb48528f1afed7c0817d71ef4c3a9e76139e524eb3a8356c0e76a62ef3e5fb0ffba3ce3312ee20247a60ab6943d03730add59a76b43d4c0cd54f80c4cacadeeb5a03072bbc5408caac7ad21425ba6622fd6a973256285b21a1d523ad225cb8989449178e3d1cab9c02b701c64a3aa457d83616d325a0c13f1cee7edd841137a89ac1d938c52e203af5e45a6afbae3c9d4ee748018a235345aa5fd5337ab05cb052f99607d6d847284855664dd2bd5c29293b24e70977950b669f430f2a14ea75a496875d6233f65b19d6ffc1256e2f99c2be9ddb67daeec1bfbaa58a9467fde5c536283a7bb7f497600ef2f3363df81e5889f698ff68b8f96eca2ebafe542d91cf9501a6537c46862d4bb042b3af0fac7665bf663526d5831c3fd34c40983eb3ace56a07775cdd998872080bcb88c7967437547031402f28e5c1663e15ea21ff62c771e5f4854b520cf153b4e054ccbc5872e272344adf13b846b86a4b747aeed7b3c9162e580396dad5ed5619c8fcd0838f7ada6c46f098ce9221439d2d06613ff5b036910d7a76c89caa58fd312e92c8fd85431562a9080cca800d68285c2d618143988ef19962262e1339a0e55e4b9cba1a0fad2671b3a057b1448b75502745a540eb276258f423e54028f3c20d70f5cd448d76e439e27404480ebb8881bc24e1a02a8c25889df43029126a0b2e48b7891390e15ffe1efd83c8514666e613d90c7d5302643b5e07a9accaa8844891434f4e60a7ba247c210a84ac2b4e8e2dd1ce599b831a9dbd715f814c2d4e13b06b4d8f85b65af854db8211f2bbc69360ef5361499dcca3dacf02b94402387463889094e7513d960690e510a426d392a7f4bb020d610c0b50913a25f4a4e9fa9e8d29f27cbe63c4020d7104d14c14d8e87451b28dc89c7b7af979fb7513c46db436da6c7473dd0a4fb649617523dc2c78a5c02931a71e3d5582eedeb5b7ce4b5997f8b399b0ea234b4759db3596597de284b448472c58c2747aa22e0b8f3fdd285d5c78669be89175e2a2b2c44a3b6a9842cf0619bba72f2fc6ce7f43ace815c0a36ce33a4ddf7b22fdc973a3c2b6bb71425d90fa792878367453d1ab0ea2901f5f0de386ca976f91ed5ab8d6df8309ed37daaca094ae054e5310dbaa1a5ae840dc6f99c17661ec5d6816da15b42b23d8e69387fb4dbaf25853ce855820b3d4fbfad5ec50a256b61294edbda7983fca43f88a46e853a7c3c3424127c4433670190db4114724469f17807476769cd39d9773e73179d98c0d4c84157cd05a13bb4d1fd8c1f3cde7b5513c6fa8015f35c3d08ba8b060f9bf3f07411a0e41c9e08884fb98325d8c7631f59c3b492a2a32bd230d511ee1f1b470fe1124bfe50e832a0161ff9eb49e2ce18116abe5bb3885910d1e1d931964065f6a029cfba00568ce3395c8021b8c64bf2bfa56dbd76c09158751e705722be731a1510103148910f2583b5c5d3e20eaec189e35a85d105ec9d5b49fe90af9239b93772d73ac98ed03ffba7c682394ce807952ab2f87229c171d228c9a15f6ff0fd08d91294420d273eb520a34794b3bd9efdc2c1fcbcf06c7bdf87838feb4eda4cdbc41a8663be0c11d8346faeea28813e4ddd6fd5312d15451d7675f9451c1f4107711b093b4a09408d5036cf7c4c1e0d8de96183896fd849aa071125fb071b28453f5a3aa39c3994c61109011ae9fc5cffc51ce35256c988d300d95a36987c6d32fc23fee0414d13a5d0fcdcd45b5c68e6f25f5fc09e76b9e53248d57511997eafb0211098fa639c7d78a9206e66e5615b364121f8c21e173f3bef9b939b9ba321ac90c83a5b752ad800580c65c5f2278fb2c46997e0703770c73a37986e36f56cabc31279ced7727222df674f38a997e3629f1bdd7f38546cec09613cac3fe4747c1eecc7", 0xa22, 0x20000000, &(0x7f0000007000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvfrom$inet(r0, &(0x7f0000012000)="000000000000000000000000000000000000000000000000000000000000000000", 0x21, 0x2000, &(0x7f0000010000-0x10)={0x2, 0x1, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000014000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000015000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000015000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_SIOCGSKNS(r3, 0x894c, &(0x7f0000016000-0x4)=0x1)
socket$inet_sctp(0x2, 0x5, 0x84)
mmap(&(0x7f0000016000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_EVENTS(0xffffffffffffff9c, 0x84, 0xb, &(0x7f0000003000-0xb)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000005000)=0xb)
[ 1055.226413] device syz5 left promiscuous mode
[ 1055.245448] device syz5 entered promiscuous mode
2017/11/27 06:13:09 executing program 1:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$usbmon(&(0x7f0000001000-0xd)="2f6465762f7573626d6f6e2300", 0xff, 0x20000)
socket$inet_icmp_raw(0x2, 0x3, 0x1)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
read$eventfd(r0, &(0x7f0000001000-0x8)=0x0, 0x8)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = perf_event_open(&(0x7f000000a000)={0x1, 0x78, 0x0, 0x0, 0x9, 0x0, 0x0, 0x0, 0x0, 0x3fffffffffffffc, 0x7f, 0x1000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8000000200000004, 0xff7f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000424000)="2e2f66696c653000", 0x0)
r2 = fcntl$getown(r1, 0x9)
migrate_pages(r2, 0x101, &(0x7f0000339000)=0x2, &(0x7f00008cd000-0x8)=0x7)
mount(&(0x7f0000144000)="2e2f66696c653000", &(0x7f0000344000-0x8)="2e2f66696c653000", &(0x7f0000b06000-0x4)="6e667300", 0x0, &(0x7f000000a000)="")
2017/11/27 06:13:09 executing program 7:
socketpair$inet6_sctp(0xa, 0x0, 0x84, &(0x7f00005c9000-0x8)={0x0, <r0=>0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat$hwrng(0xffffffffffffff9c, &(0x7f00005c7000)="2f6465762f6877726e6700", 0x0, 0x0)
r2 = syz_open_dev$sg(&(0x7f0000d02000)="2f6465762f73672300", 0x400000000008003, 0x20000)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x8, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0xfffffffffffffff7, 0x0, 0x8420, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0xb)
getsockopt$inet_sctp6_SCTP_ENABLE_STREAM_RESET(r1, 0x84, 0x76, &(0x7f0000f5c000+0x999)={<r3=>0x0, 0x8}, &(0x7f000075e000)=0x8)
getsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX3(r1, 0x84, 0x6f, &(0x7f0000d54000+0xe3b)={r3, 0x8, &(0x7f0000414000-0xbc)=[@in={0x2, 0x2, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x0, 0x8000, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x1}, @in6={0xa, 0x2, 0x8, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x9}, @in6={0xa, 0x3, 0x3, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1}, @in={0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x3, 0x7f, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x7fff}, @in6={0xa, 0x2, 0xffffffffffffffc1, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0xffff}, @in={0x2, 0x3, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, &(0x7f0000782000)=0xc)
socket$inet_dccp(0x2, 0x6, 0x0)
ioctl$KVM_X86_SET_MCE(r2, 0x4040ae9e, &(0x7f00007e1000-0x40)={0xc400000000000000, 0xd004, 0x401, 0x4, 0x16, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0, 0x0]})
connect(r2, &(0x7f0000cf2000-0xc)=@nl={0x0, 0x0, 0x4, 0x3}, 0xc)
getsockopt$inet_mreqn(r1, 0x0, 0x23, &(0x7f000066f000-0x5)={@broadcast=0x0, @remote={0x0, 0x0, 0x0, 0x0}, 0x0}, &(0x7f00001e5000)=0xc)
setsockopt$inet_MCAST_JOIN_GROUP(0xffffffffffffffff, 0x0, 0x2a, &(0x7f0000670000)={0x3b, {{0x2, 0x3, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0x90)
r4 = creat(&(0x7f0000fc4000-0x8)="2e2f66696c653000", 0x142)
r5 = getpgid(0xffffffffffffffff)
perf_event_open(&(0x7f00002ed000-0x78)={0x0, 0x78, 0x1, 0x7, 0x9ed, 0x3, 0x0, 0x0, 0x80, 0xf, 0x7, 0xfffffffffffffffa, 0xce, 0x10, 0x0, 0xc82, 0x4, 0xffff, 0x100000000, 0x1440, 0x0, 0x7, 0x5, 0x6, 0x40, 0xacfb, 0x0}, r5, 0x2, r1, 0x7)
prctl$setname(0xf, &(0x7f0000b69000-0xb)="00")
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xde, 0x7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x1, 0x3, 0x0, 0x20000000000000, 0x0, 0x2, 0x0, 0x0, 0x0, 0x5, 0x0, 0x3, 0x0, 0x0, 0x0}, 0x0, 0x3, r4, 0x0)
seccomp(0x1, 0x1, &(0x7f000031b000)={0x1, &(0x7f0000000000)=[{0x6, 0x0, 0x7fffffff, 0x407ffc0003}]})
socket$inet(0x2, 0x2, 0x2009)
ioctl$KVM_SET_IDENTITY_MAP_ADDR(r0, 0x4008ae48, &(0x7f0000a74000-0x8)=0x0)
syslog(0x3, &(0x7f000077b000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000)
connect$inet(r4, &(0x7f0000e59000)={0x2, 0x0, @rand_addr=0xf4, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r6 = syz_open_dev$loop(&(0x7f0000945000-0xb)="2f6465762f6c6f6f702300", 0x0, 0x4102)
mmap(&(0x7f0000e5b000/0x1000)=nil, 0x1000, 0x3, 0x2011, r6, 0x0)
read(r6, &(0x7f0000e5c000-0x1000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x200)
r7 = openat(0xffffffffffffff9c, &(0x7f0000665000)="2e2f66696c653000", 0x800, 0x100)
setsockopt$inet6_MCAST_LEAVE_GROUP(r7, 0x29, 0x2d, &(0x7f0000616000)={0x0, {{0xa, 0x3, 0x9, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x401}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0x88)
fdatasync(r1)
setsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX(r7, 0x84, 0x6e, &(0x7f0000936000-0x4c)=[@in6={0xa, 0x2, 0x3df, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x1ff}, @in={0x2, 0x3, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x3, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x3, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}], 0x4)
2017/11/27 06:13:09 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setfsgid(0x0)
r0 = bpf$OBJ_GET_PROG(0x7, &(0x7f0000176000)={&(0x7f00002bb000)="2e2f66696c653000", 0x0}, 0xc)
dup(r0)
r1 = perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x5, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r2 = syz_open_dev$loop(&(0x7f00000f6000-0xb)="2f6465762f6c6f6f702300", 0x0, 0x2)
r3 = openat$rtc(0xffffffffffffff9c, &(0x7f0000391000-0x9)="2f6465762f72746300", 0x0, 0x0)
epoll_ctl$EPOLL_CTL_MOD(r3, 0x3, r1, &(0x7f00009e1000-0xc)={0x11, 0x0})
creat(&(0x7f0000285000)="2e2f66696c653000", 0x41)
r4 = syz_open_dev$sndseq(&(0x7f0000266000-0xd)="2f6465762f736e642f73657100", 0x0, 0x0)
ioctl$SNDRV_SEQ_IOCTL_GET_SUBSCRIPTION(r4, 0xc0505350, &(0x7f0000009000+0x536)={{0x0, 0x1}, {0xf, 0x0}, 0x80, 0x0, 0x0, [0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_IOEVENTFD(r3, 0x4040ae79, &(0x7f0000497000-0x20)={0x0, &(0x7f00001be000-0x8)=0x0, 0x6, r3, 0x2})
setsockopt$ax25_int(r2, 0x101, 0xf, &(0x7f00006d7000-0x4)=0x5, 0x4)
mprotect(&(0x7f000072f000/0x4000)=nil, 0x4000, 0x3)
r5 = creat(&(0x7f0000319000)="2e2f66696c653000", 0xa5)
getsockopt$bt_rfcomm_RFCOMM_LM(r5, 0x12, 0x3, &(0x7f0000dec000)=0x0, &(0x7f0000fc7000)=0x4)
ioctl$KVM_GET_DIRTY_LOG(r5, 0x4010ae42, &(0x7f0000781000-0x10)={0x5, 0x0, &(0x7f0000dc2000/0x3000)=nil})
ioctl$SNDRV_SEQ_IOCTL_DELETE_QUEUE(r4, 0x408c5333, &(0x7f0000131000)={0x2, 0x4, 0x7fffffff, "71756575653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x911f, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
eventfd(0x8)
fallocate(r2, 0x13, 0x0, 0x44400004)
ioctl$PERF_EVENT_IOC_ID(r5, 0x80082407, &(0x7f0000054000-0x8)=0x0)
ioctl$LOOP_SET_BLOCK_SIZE(r2, 0x4c09, 0xd668)
ioctl$LOOP_SET_CAPACITY(r3, 0x4c07)
2017/11/27 06:13:09 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bpf$PROG_LOAD(0x5, &(0x7f0000012000)={0x1, 0x2, &(0x7f000000c000-0x18)=[@generic={0x4, 0x0, 0x6, 0x0}, @generic={0x8d315, 0x0, 0x0, 0x5e}], &(0x7f0000000000)="73797374656d00", 0xfffffffffffffff9, 0x80, &(0x7f0000c96000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xffffffffffffffff, 0x0}, 0x30)
pipe2(&(0x7f0000ed7000)={<r0=>0x0, 0x0}, 0x800)
socket$inet(0x2, 0xe, 0x0)
ioctl$KVM_HAS_DEVICE_ATTR(r0, 0x4018aee3, &(0x7f0000009000)={0x0, 0x0, 0x4, &(0x7f0000233000-0x8)=0x0})
accept$unix(r0, &(0x7f0000fa2000)=@abs={0x0, 0x0, 0x0}, &(0x7f0000dce000)=0x8)
[ 1055.332178] nla_parse: 6 callbacks suppressed
[ 1055.332184] netlink: 3 bytes leftover after parsing attributes in process `syz-executor5'.
2017/11/27 06:13:09 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair(0xffffffffffffffff, 0x3, 0xffffffffffffffff, &(0x7f0000d71000-0x8)={<r0=>0x0, <r1=>0x0})
ioctl$KVM_GET_SUPPORTED_CPUID(r1, 0xc008ae05, &(0x7f0000657000+0x4f4)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
setsockopt$packet_int(r0, 0x107, 0x4, &(0x7f0000d02000-0x4)=0x2, 0x4)
ioctl$TCSETA(r0, 0x5402, &(0x7f000006e000)={0x84fe28ec00000000, 0x400, 0x7, 0xd354, 0xcb, 0x5703, 0x7f, 0x0, 0x7fffffff, 0x58})
perf_event_open(&(0x7f000025c000)={0x2, 0x78, 0x3e2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0xe72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket$inet(0x2, 0x240000000003, 0xb)
ioctl$KVM_GET_MSRS(0xffffffffffffffff, 0xc008ae88, &(0x7f00003fc000-0x5f)={0xa, 0x0, [{0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}, {0x0, 0x0, 0x0}]})
pipe2(&(0x7f0000d6d000-0x8)={<r3=>0x0, 0x0}, 0x80000)
ioctl$sock_SIOCOUTQNSD(r3, 0x894b, &(0x7f000073d000)=0x0)
setsockopt$bt_hci_HCI_TIME_STAMP(r2, 0x0, 0x3, &(0x7f0000185000)=0x85a4, 0x4)
r4 = syz_open_dev$sg(&(0x7f0000257000-0x9)="2f6465762f73672300", 0x0, 0x1)
setsockopt$inet_tcp_TCP_REPAIR_OPTIONS(0xffffffffffffffff, 0x6, 0x16, &(0x7f0000abc000-0x30)=[{0x3, 0x7e6}, {0xa, 0x3}, {0x3, 0x4}, {0x3, 0x8000}, {0x8, 0x3}, {0x8, 0x1}], 0x6)
personality(0x400000)
r5 = fcntl$dupfd(r2, 0x406, r1)
setsockopt$inet_udp_int(r5, 0x11, 0x64, &(0x7f0000747000)=0x5, 0x4)
ioctl$KVM_SET_PIT(r4, 0xc0481273, &(0x7f0000821000-0x70)={[{0x0, 0x0, 0x0, 0x100000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8001, 0x8, 0x0, 0x4}, {0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x3, 0x95de, 0x2, 0x946, 0x40}], 0x7, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getsockopt$inet_sctp_SCTP_PR_ASSOC_STATUS(r0, 0x84, 0x73, &(0x7f00006a3000-0x18)={<r6=>0x0, 0x8, 0x30, 0xc2, 0x7}, &(0x7f0000b1b000-0x4)=0x18)
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(r4, 0x84, 0xa, &(0x7f0000567000)={0x2029, 0x7, 0x8002, 0x40, 0x4, 0xaca, 0x7, 0x9, <r7=>r6}, &(0x7f0000044000)=0x20)
getsockopt$inet_sctp_SCTP_STATUS(r2, 0x84, 0xe, &(0x7f0000b9f000)={r6, 0x49e8, 0xb48f, 0x7, 0x1, 0x4, 0xfffffffffffffff6, 0x3, {r7, @in6={{0xa, 0x1, 0x80000001, @loopback={0x0, 0x1}, 0x20}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xa2c5, 0x8001, 0x2, 0x0, 0x20}}, &(0x7f000031a000)=0xb8)
ioctl$TUNGETSNDBUF(r4, 0x800454d3, &(0x7f000085c000-0x4)=0x0)
ioctl$EVIOCGABS2F(r0, 0x8018456f, &(0x7f0000816000-0xa7)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
io_setup(0xc06, &(0x7f0000dd0000-0x8)=<r8=>0x0)
io_destroy(r8)
ioctl$KVM_SET_CLOCK(r4, 0x4030ae7b, &(0x7f00009a0000-0x30)={0x1, 0x8, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$EVIOCGBITSND(r4, 0x80404532, &(0x7f0000705000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
sendto$inet(r2, &(0x7f000013d000-0x5b6)="9b411fe87308bda68cf69b00fc456354c7329f7c247c5ae03e1974135e8db80e3a8ad4c76c4f7bd9611378c3b492084207feb8cd52e4aab2e576ffb0dafcf1c7579fcccd74875824b762d27e483eb885e18579131a87c4309c05830e357f575c0a7f7f346d0d61b5459ada9ca0d895d6279639c67a49b5763273aeb5f2a9a47d128b01a19caefd5e8de29ef02bc69f88e990313a5c6ca4d7553293ff5db0766407e37e5746f7a94d3a1ed3f1d9efc93ba833a7ae86b08fec0f30236f17d5ecf9bf6459b385c3079c62aa19450926de608f13b8493004baa0ea070257347a686123aa5e37ea428ab6d90aa0a5aaa0178237d8e1e8e31f920ba1c328085b98598721dec8437363864f82c9594f77be5c44effc3bcbc548045eb63044f435aea680eb14f53fa6156a06068b4ef0eb113753f6b0ba538e9ef2aabb9c92b8ab68304bd61a1330bdfde693aa838cbda772f976db33d1a7f1481af25358350c1513113389a6dc66d074c98d60eb6b70a207004596fa666813eb4af421ea906022f10bd0b4683312a5d46ef3d746ee68e67b923c7e663316f74ada47485e0df9d3bb20b0e5a6296fb95f8e787146115709bc8c913d953cf33a6066cb52507627e2cd95be580b756a40ec7f7b5875c41ad1941737c7ff0127c7ecac001c3679105cbf2ea81ed4685194e5d19d46b8fb1add32d3fe0717a555ac5c12aed602a406c9acd2be01b8cf5b180e4da32a34c1b624316da27bd16797fb28665e3b8af33189494bae59477d92d936babbe9f6697bfa9e22bebcc139683c2a00fd59d91034e6ac258b9de2ffb1268815754c1e4faebbf0dd5f30319dbcc077e29ae756744f19e4f495b7fb1c45b0aeefa6e8ef5932527967d965282300e32b5507a7d4ffc9fd5bb583cf6bc1d3b88ec5ac079aad45f32a3412cf6d3685f74f865369d6f7c965d842e9dc4a34a89e4f6e92aa1add55388c4101355fb944f67d902b7ef45547d761199710bcc9a9019b15ab652ced16ff77a4bc5592d1efb3f562b1ef062bb7c4761129c3c9a09ed6c54a3ae3bb26a5d7fc481738500ec5bd38bc27d0d9b758ca5397dbe1856eeb4d55a94cccaaf47df693e87bf2a966550ba7fb5cd44da3d88c112a2d07d584ec5b02c5c90955cffc5767aadac21291ad9693d6a5c2ec4e9ef6630045681bf824aac7e1d908fa7ebbd5fd2f5d637ecae2d1b993b6387527aa471478fe3df974e52046c6656341a5eb0d7629e491f2c7e28db50ca5d72de48fe1f9f953ee5a68c9164e325b93f5c5ebdb35aeac338abe5072aa398048995359ae23760a2ce29df382dde331d6f6949e3b5e4e1e1dadf225f0b841c2eadf27f2694abfcaa811c68ab8c00bf017e965f8ee20a6af917725dc944b8f379504010f080a48582588a577c321e939f8de6e113257b38f8ff6df98e9b00d9299f0b4fa60f7ac2dbe", 0x401, 0xfffffffffffffffe, &(0x7f0000729000-0x10)={0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
2017/11/27 06:13:09 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0x10, 0x8000000000002, 0xc)
mmap(&(0x7f0000000000/0xfc0000)=nil, 0xfc0000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_FIOGETOWN(0xffffffffffffffff, 0x8903, &(0x7f000070a000-0x4)=<r1=>0x0)
getsockopt$inet_sctp_SCTP_ASSOCINFO(r0, 0x84, 0x1, &(0x7f00004f7000)={0x0, 0x7, 0x5, 0x8, 0x5, 0x3}, &(0x7f000024a000-0x4)=0x14)
r2 = getpgrp(r1)
setpriority(0x0, r2, 0x85)
setsockopt$bt_BT_FLUSHABLE(r0, 0x112, 0x8, &(0x7f0000515000+0xa6)=0x3ff, 0x4)
r3 = openat$kvm(0xffffffffffffff9c, &(0x7f0000fb1000)="2f6465762f6b766d00", 0x0, 0x0)
r4 = ioctl$KVM_CREATE_VM(r3, 0xae01, 0x0)
ioctl$KVM_GET_FPU(0xffffffffffffffff, 0x81a0ae8c, &(0x7f0000176000)={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0})
ioctl$KVM_CREATE_IRQCHIP(r4, 0xae60)
getsockopt$inet6_IPV6_IPSEC_POLICY(0xffffffffffffffff, 0x29, 0x22, &(0x7f00001cc000)={{{@in=@multicast1=0x0, @in=@broadcast=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@multicast1=0x0, 0x0, 0x0}, 0x0, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000ca6000)=0xe8)
fallocate(r0, 0x0, 0x2, 0x5)
ptrace$cont(0x18, r1, 0x19c304c8, 0x0)
r5 = ioctl$KVM_CREATE_VCPU(r4, 0xae41, 0x0)
syz_kvm_setup_cpu$x86(r4, r5, &(0x7f0000aad000/0x18000)=nil, &(0x7f000081f000)=[@text16={0x10, &(0x7f00001a3000-0x69)="66b99700004066b8bed0ba9566bab87082670f3030b9800000c00f326635010000000f30ba2000b8781eefb857000f00d06766c7442400dc0000006766c744240212c208a46766c744240600000000670f01142465f30f38f60dd1c7f20f5d4b005c65660fc775d3", 0x68}], 0x1, 0x10, &(0x7f0000dce000)=[], 0x0)
ioctl$KVM_ENABLE_CAP_CPU(r5, 0x4068aea3, &(0x7f0000fb9000)={0x7b, 0x0, [0x0, 0x0, 0x0, 0x5ef3], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r6 = perf_event_open(&(0x7f0000937000-0x78)={0x5, 0x78, 0x7, 0x0, 0x2, 0x100000000, 0x0, 0x0, 0x10, 0x1, 0x3, 0x8a, 0x10000, 0x8, 0x0, 0x3, 0x2, 0x1, 0x4, 0x402, 0xe, 0xa9b7, 0x7, 0xc84, 0x2, 0x400, 0x0}, r2, 0x7, 0xffffffffffffffff, 0x2)
sendmmsg(r0, &(0x7f0000d43000-0xb4)=[{{&(0x7f0000b19000)=@ipx={0x4, 0x7f, 0x2, "2eb7374643aa", 0x0, 0x0}, 0x10, &(0x7f0000b0c000-0x40)=[{&(0x7f0000576000)="8e9f2a29739ca0cee54f5659bdec1968158e7c2f96869c6ad67a7b5c1dd531362a7e578087ca8466911fa7ef37255cee0de1af9bc9b0424086c960e9676c7fc9cba8c497", 0x44}, {&(0x7f00009f4000-0xe1)="0f579ba246944207f33d48aac3b2c30e0b033287adfeadf0271a0ac2374f8d4ee4a0ae0c2aa0c2d0e44c996680eb6c3ae5ca1c389f7b5436369815416be64d61b70befe1320207fdeb639d83b2d4e0f10005a56b6864b6f6a53a1541e8f46628375b92d5fb7609d05b6f820137a39ca27eb4cc39364f1c36aeb9d33204937c0999818c529e77e3c5340a1935e49802fddce9e3e1d4c2ef300f9a0dce86c809b9b9ad2037da199dadef62d65d0b3dd6ae7648e541da9482df6d9811fdb06351f9f16a3542a396318cd7dff9e81e39a2f13af5d86a079fbd965adf53969c464a4e0f", 0xe1}, {&(0x7f000051e000-0x1000)="c007186c278b467adc6203b75c10514f81e4d4d7364e40d0d0049a8e547f7f2cb8b17fdcc0cdb82073b9688e531075947438f00194730eceea420d94a95b082b3edc97bdd7fe5446e842a86db96b2bc3b74589e51b4d757bef721d650a6aaeb6215642966be40465d73c57910af0a5848ba7ef57f91d4861955857fbc3b6062d1991e213d6d55ad6e84483ad91d91eccb1c5fd414280bbd1f2cbb15ccb37c63aa8cf26a33a064509669d13da99a01c44ee4a7ccbd92e1dafa000109178a5f313cfc07adf3c4fa978b6b6bc05a2fdea7f3cc532ce9212b058a2543dee1b0e3f0d30b2d62c54ad4cc62d0e0ada66589ee8c84edb034810cb72c2a26376133aea6c5693f4717ab86ce6b867583fc0e8c809b021d953632e266510c629a12a93d27f07b92b18827b78ae525068b4183fc30ecbe3daf278609c9e6fc913267b6c788a23f168878731dde449669e2a69db9232aa965d1f875c65e5669032df92155a39a466e053965e8efb44505c84d189337a5ee5edc7f3eaf1e5742fd8f9d89f32ac77c9ef9a1aace0576c998bdea9c163f655339ca54a2563a8bb88f38fd8319ceeb0fd5e64c22decf5b6bde7e9fc478bfc7041e4680e2154a6c1728cf50c9ca81a2f51e8ff7dad0f0eafa6a57bf9dd5ce9b80ad5bcc731b5d2b0114892011806badbac48340635ae53d6562176256b2b76bbe9850831e82a5560ae9b5c79de3c631dd26711e7e013c94eac86444bd5291a7cf0a1c2f742c125a066888f1ada8575f912f8365ea005d4dc59ab6a7cbf16b1ed9fca28c8e6cc729fbd85aa58af7150e6aadcc311b1028dd964a17e2d1b290fe50245ff24ce7c2cf4c701f522c509533ac20285aaced6414869478fefe365db1e793e17a2d62e5e00dfdeb00451b5ec2bdec1ad95ab0b649fddbd2b094d33a6e568ca840d297acb997a2d343ab1eda2d3edf173a49f6c4beb63f6acfb03f553333ae279b237a9dc68d422f153abfdac53b2d8504c13862ce3180497e5b12033c11fa9e21cc60ea56706a26932000a757b9b1dab9222089e1633beda6c1fe5b880d9ed8ab4c107a11e87b3ecadeca5d445e18cc00f76f191f2738834fd96232bae999d4040048fb4c95f3dffea3ee9f8dbf6cfde12a1bb77db5d6b2a8d045ac23b2be18a480ef8a7291948c779bbcc4663c3cc1fd614acfa80a998ec03f697399ec2ad25d3dd23c4303cdbb5b817877fa3d973bfb790b434934c07c1deeacfb975141566b4d133e707720b7122c1636c944991c0921b8481ae6894f7efc76081cf05d13a0e314a7a2db203399782d857984df052b6eb0dc33138a49710cde49738310c79d00984d2db1e4288c2553d99b9148e79d84033ed2cc459f47b87255c92417acb3b3df8fb5bbb12dc36185e97fdb0bac48ffd1e7b3ef2e54c2b95f660a9184068d1f5cbc3270ac2970c080e95b5de3dafb8a1b7be5e0671af3439e816162a499be1631cb3037f6995d0a5b0527d97991bee4f133f5b6fdb36dc4728a203b0b39710c7746c8824ef6c4393bf356f8360e7c0f762cefe4a8f6d32a5318730e9ccfd07016a0ca81c0611cb405ab50b06d39405e6a67270b681278ae132046f449c6b0278b5559a1cdc219c6360c8cc6e4a7306b9a60f40b3dd87313973500b5f725aa65f8d243e3413eca66017462cacc8e3ec10bf23dfcf303154c091bd59dd4c14203217028b322ec75c19201f593bb6b748a74acd3c22ad326c27315b13f82b304f069f33cd0a755d463174503a54ef107746a197d919e61b2a6abf4300c735c8ed09c9b8f56b271ffd1837ca4d9b8ce5073d40b6261db7bd9a015b42d09858f0e7617d209380f8c55a31e63cc9ee7b96ae6890ffcc08164f47f1d871722679b5e2fcf57a45fdd80d36e6bda43d205c45b918668b9f47fe5b8c284c3f0f5c0e15a9c8988156b1373d59d8797669bcaadc74f9935d80315103a7ee6b094ea9461399959b70d1aeb56b6574da0dfa3f23ae0dbef091b206466926f6269bf3adf99382fe61d029887a5642fd80d714d87e496f53590eced62017e33e99b608d9d29cc010d5f05fba85e848dc403496cd9d03a5d566ab4e92f40cb22bd396336fa16b897b8e523f4794cff4cf93c6a5a5b9be4bd4884e9c61016525a6b344560b8ffd41c1c1cf4adc527e9e02c15791f019ebb3fbcdfaf09a0238ece2b070fb5a145cee8c101cd469a67a13d89a15565e1230311a4ea9e5ec75744c808d797d43bab6d3a763ebbbdee44d67a588d5222cea08b30077336d2a4904a32d4766bc7e892e3a84db8d9562df0b639bbe011e4d0cc6b66186f687c7616b7742ee90a1b3578c3f91ac96dce9c722a95841e8a0e7c53563acd4f6dface491b28e16ddbeaed63476812a79b5a2728afde52b951f5394b98be5cd5f1ab9f6acfc7485b0c0e0d6854ad95f012ad4e8ec573df3a5bcdb6ed883678246a7e0e20fca7ae0b07933399f7c5a2a01c72bb3907012f39f047ee3a7242f8bce051ccec50967209f2517ff601dd9f8c782af4da8c63decdff01fee7b0e01e5a09f7a0da73f2fc01b35dd053a1dcbfd582d1e615e510d010aabb2115c0339594c3f829b12a14434ad0d828e6137d04e1cb45b4abba6c0d0c8cd6c5331fd753f3c04a1fa0fb826e9899d57f4d7127cb86d9f954a471ddaf794024963916b7b3b02ab4d207a0cbfdd8e9a763df32734811a77808cbc9c5e7eb77e1c4906f4cf90789ff3380e1381c9b30e1a9da73158271af3b8ba1b786f3253fe1af38f4cdc0dcac1b4fdffb249253bf22e683e822366241051f6508476eaef6c6bbd4a7edd36e0337bd890dac246424f03ef086d1ed754f45d4c4884a488dbef9de1475e6debdd070e94d98796aee74cfd1166a685ffb4577f7311c3893e3478a3606fb376e7c69ea3c731e760f3f5b9c3bcaf8be3f1455b246256847f6456e9d2e1aa0f84764ceb222a138a25a434794d1d9ad8918b9993d35290e2350bd952c640da36bf1eea7eb6c06f61590427d45c6995f3be458919571f9812797d7a79b743a8d2e077a907a2cd372acd4bf3ee16a5521d7c98106c51c73452a6d534edaca66e0e76de6706ecf4d93c2ad7fbfb39d21dad58bb4c5784409fb49b57ecdff92351a7a98c95453dbd5d49bfd6efd288482e14286aa22da0bf619a714b4488fef41f9f091aeeeb72bd6e9273068ca2c4f7fcdb2b7413c9fa9d81e81baae62a143852b44214b701d9efffd69a824689c6d157c988e7a17f7a9891bfb32cce3ae1b79c4b74e41a6d4e2b70854939ff154e28ab491378129b868f1e6eda05afd1289b3f160e2a99263d342dd1642fde8923715d043a863e779eb29b267dc4a8b35df541ca646091b662995bf702d530f152265eb32e86a19acc5f86ad4e38f546c3d87796d95fe50327fe5ec8d295b2577ef16173d039a5c768011f452cd7f6a60073a98b77c8d792076468798654e2b67c0edd3f5c9393c251a89b9a0df3a4684e6ad093ec94bfed5193f8c69d24f543d4d036ce60172c2b9085da384154d8383619b4aa4f2b15ef4e1acc217800e5bac5f21c542123916e782e5acc112a85a8ebcbebcc6ca413060209b003b2ceb900c7bc6aabdc5d086fbbf5676f09ed80607d561e34d653a8567d7a4bdae5ee1efca3203ac0b298f56c649eb0e67038a66ad298a78980f3ac8e73176ae0b41d55b3c030095dee621ff67386b8d159401f7b6b6bcfcbf0188d4c0b783a32d56411a6c4c39bc7c918b81029735de436364dd352c1dad59af5244561fd46e6a043f1b80272635b881ebb0a667d83de2d297f85392801e5ea1d24c7f27c8b45e9615144c39a4c3b17115babe498469e8460a7a9f756449d5e47114982c10af49f34c701d1e35d8ed975ae160deaa67244189eac877ca31646091ecef9c7b0a8833443efde88373042609767b7836d72f6aced92603401933389297e63516a84a30d26be7b09784388b8fb9746a2be4c5b9eaeb2241963143871a3462d183e2745f9c008a9ab6a469e79814916de15bc2629761df1c3bf43daa0836729d33023ecfcda6b61cf74d2fe93bda72bf4ff858b9b4769eb13e54b72a564f8e5725c52549fc9e54dc33458b2929708e59d37ed5ea49ff35e610e10ace486063c99f8a61e354c9bfcfd0aed4dad90abd5806b21ec50151a54428972852145f93f934fe70e0bb3a2f6972d3c6c2894c37a8ea308099214ae390564b09ba8c7bd4440904873b451f9d056097324ffe2dda9096e592d957b8ad9497a36eebe79d5156bb27808f7701d9de8ef7450ebd187cf190ddc807ada43638814aef819f29fcc20fcf4c7d96369a03e735e26c64b7b27feec7878487574294b9c65d847a64c2b3f685c7150e282835ae7c42b659d33cc07507f7c1e32f6225d55ba71b469d064e2008dbc0be33c100e18e1666c0ffc96839f424e72a4c5364d9ce1761299bfb1dcf8b154459c0f2555bfc1a97b151fee4de16640d500463c6bf70bac5be8148230781cdb7ca043139822c0a8a150eba4ed8068dec4a01e34a3878ae0f93b04c23f61203e4103d54a5da078d5a518b87ff865a8272d871e0dc6621e54fa75a03bb4c0796d1b38d971d5cc2ec954b9f131a124c67fc088a3bbab2ba469484444daeff00e9c1f4e7efd3da50355a9c9e053984adfa1877ca9469fceda9174b2c3045b5ef63dd1be9edeafc32bbf54c4d73712be80546e835bc0e5dbd1a63710ce3c31f38bad3f4a475887da75db875eb337d1b2ac7410fd69fe26702dcd493396fb7cafd3b4bf0e107e598e981a081c2053d155f639aa9e447111a14b6a90eb724d0108434f743120cfaf91249971aae0616f29535002f8c028896af8334cc142382c75275f00dda9f2a7b296842da4fef398ed9e46529a9206d2dbfd612c0979bed5116d65b82f01eea875851e9ea167f9c2c5edbc85abeee92fa9121e399efd2adb4bb947f113d4e2421f14b0ec025a3e73a11e1d0c0e973b80e579124f5af68b294742fccb5b84a1c6987951faf419c44510dc5eb239a2c087af2b259aa30873a38058eb552a724073db3a0226382c51a76367885180f7a3435f5fd487120917c75b3135a66854b1c959ffd18815b9d8ab8a202028ca2390d3bec934555d741fe94abaa3e42d9a52ee9bc0199ed003af08592f4e8f037198930887b20da7e8404fc61cd09d133f83e470c811b60b12713a79808bc4e95a6c6b156a6c40bed520cacb9ba332847b1a0f4e955dd0808e4a88acf14691f700074861244aeefd09e0f325a9aa2a8eaaa01eb4426a70289ffc5e1760df0a7e664f8a89ec97b75d5243f17419325894d144a8f0528e33588c4b0c428b8e48384f40da4dcc6f9901858bb6907c9bbe4f212f5d418e1b623bffe30b9225079cea9027285079738cfeb75926664e1e628783ff61ff84d03d522200d94ba88572743739a292303478c773e11221d182c12af2cc707128b38d7843ab3c8ddaf2bd4a23ffdc6ec24815cdefa8c8ba273f6ea7c86135d61373fe35b10d69c9ec421f8d733a20c82c35cc62d55f0dfe97010c2de1205cbec8dc76e4dffaffd01a8b53f8d4255fb616002285484364c526c0d60b42e147e1f0f1cbf3f5a7d27640aba19c83a28b3d1bde91677b0bfa5c60b154a2755995e07c2c670e51db35ea5f54486e00bc416a1fd255e376a004a166d5102a4d15e0af235e4298bec16d44c41c2a19bc5bafa1249f4f7690b9c034a18c6cf12af7f270d2f91497f41d7854d6cf355056f40b5ba2ba24dcf9d4f478f7de379ed9389dae6f1714f3f8791e1322d4ca51", 0x1000}, {&(0x7f00003f9000-0xbd)="6e3a7dfe4b93939a9947567959b7421c37d305e682303edd91596672b2ea84780e84046df27e8aa64e41ebe99756c0bc3d2f9235b8a519d97811684f1060fbae1606a8548dc1b4416c92cee7155bcb526ef8b47cc37587e88104d12480bb934fef80fba6563106c1f3a7aa9e7e5f879f15db5ef3ce84e64f8bf99c159f1016454f4012dff18d1a24d93cee713d4c56baaf9516846429aaefb4c53b09611d9289d44f4fa0a152bafc6788f2e42c0a7cd6dd6754b01a852d2bbe6b96b92a", 0xbd}], 0x4, &(0x7f0000b33000)=[{0x108, 0x3a, 0x8e, "20dec11965b17a33836df8735916bbc0f71e78e84322fe005ee0f075a84dc512e3c4d858ec5458015c9dee63c2894626756637e9ee38457b699b9619a3fb015116fa868a40d722dbd2e98730c72527db1dbd5fbb77ffcbfd2cb289c3b34005e6b30d670fff18862791de69143a11c94dbaf489b89b07c37b61fb10c94e95313801390782a0364726b5a4cc7179458f4319e1dac69e94f8491373d04296a96e21c8322b37343023c30b17a6870c40a89d6c058426adf5c355f7535ad2ecb383147b004d7ca8ddd03ab24c760e396a82221c84f42483fb2bb71d96e697c729f9096eb34a4e71bcdd0ef53cad519a430a9e5b26abb9"}, {0x10, 0x11f, 0x4f, ""}, {0x1010, 0x11d, 0x85, "e9bb76c663cfd5f9c68e53d54322cf48f9aed3a276476f5e9c32dfc81f1af55964ddfa5329692caab3ce13e5e788bf3428a52eb254709526f745bac79b51c7a7b346bee2648ecdfde07aa1991f3c7312dbd7104dce014d83a6941e55fb29c2ade25c88f7f7bdc66a1706c2a929dd40b36ea7cbbedc8dccd2aeb93d6b539f737e37521533d0e06d0c1e2528bb62c7171fc85cf7dd7189a27ae6832c1a217da5cca01eb6bed67205f7013eddccfce5cdfe3a3dcbc6cf3c665fa26b33e7619a1a2454db3e5d1f3dcc80348b6a04bcf01bd101b7990ae4adbbeebb67525b79e88a695aa080777dd1b69fda2bb021e22079b91a793d5d90d0fdd316eceeb1618b2769f2b0191af28ec58196850b607fd22572204ee521b51895100228ace65f18721ee99a008e9eded06142c93d5b9efd824a0a7f62277ee8d4c363de192f49049f78bdb5af17a9f516c9f3a089b9bcbb3089c119f83815e8fcc57039905c5a165aebfa1efa0f4d2ce13ef84fe2e468deee9b06cfb0e1f8535bb4ced99009d09e43789c5cdf103a452962ec52b43fbc6a9af908782a370fa2c9f53ce64a50977f8476db3f5cc2da9e3c2b3d9ac33101d58b0cdba0363de567506f0c3b50a619b7da56b6d6448f4230387628f101642062d322a6f5118583d4e198f1add1f948d6d2f598a04b9254f8218c315110c17c411bb5a18ed0a33a89e85d26e66c58be4f25fde0c76f01b2872458a6039f72c5dc8b74e69b8eea54a4db3c90cfef8e839c571997a34a10d8d3af7ba8ca51a5f0cdcbbc6d5a57de9c941a7db3dd0d47f9fa242d0381c0a82bb5e921a1fefa5516a0175f04bc8364a03c1a5e88fd65ac491856194437df5b08eae1c254c40fd47f295f549acdc07057bd8a7e71d71702fe5e3853780022da4b24fe0f82e1bf779190d26b1eca0f3480cf6c20a7a71a4f9084114d40c65a8ec6dca0aa6fde7f698c0a91604eeb8d2ac42821e2c05cf0be5bc3826e6864972dfaacd26775cfe579835a6a49fe8195211c0e02e730655c540494e10b74bb28e266f1e100bd1a6934c15ff59b528f7dbd1cf672070f5d6c313f220dbcd3584da7164081e99c03b3683e8c4d603bac8e3e3d18e7c7c3d9ea000de000e05024f8ae2720250fc8fad4ac7e9e6e59d131ae2fbd94c26ae3fb26ca8e7a37265dedd1d4af5333f4a963ffef6773b43ea641de50792989000d90af5be13d090a0f1ed775f366beb0e4945de57f6e8a7768295895739dfbe4ea00ab6fecf14849ef9b5b5f4f271ecd48ae32b50080a842d2db28a1c320e861ed9c10087c30098f21cde1b82997985fc13160d70ac10dd26738ff7076c2a210e3ff3ad980e7f68c7e48fadb57a6671931a341589c495f893d194690815660a04106d8b617c7d307a6dd92cf674671ee39e4a419be9e8ee9839ff2388530e61de6086a00b346d6d0dbae52575c5822b0a1d38f6d07ca2fe95c0a95330f66af8d25ecaacd2019e20436803bd06e758f0fb8c43e0b63e002a7d661a97c8209b917bd99f41c83509406f91cc30228de20f3bcf3bca30baa30d9b42d910c5e97b059db15bcbe3e8d719406154290d89d812f03ad0274386db2f0a59e092b1acfa24e7fd422e082d688211ab23a31682219a4af3ca69c3db8aeb5a44679f8f36aa4d2ab55f62caf24aeacc392845357ac41895fe8f227a894900e4ca43282f543f5215c26deaaef61db520a4693075b5884f6d4f3d4ba03e03b91593fb95198e225d8f148a53fb6d59dd88960f491b47f65e381007e6946ea33f1d1b512139ed36619955434359ed0ecceb0de2db91525da56fb6571f70b45a624bc68d916807d3ae30d9192ea318a38984ef33890dfe1ce255d0b662e288a62e086cba158df705dbf751519429f44ec7762ff44106d6309773126ceb57c79ebe79576dadff99be630502925fcc51966043201d5a74ddf814c5d8e7efb4a8cedac40955380a9bf654408eead0f55394e02149e4c304b3fde6b495481a17ff0305952c8e1f7c52b8dfc9fd607351674de0ba3751b294b275e4d35aa455e9f636354eda2e3fd7ce0ad4f190f44d364b29e9f2c231a25e9b3f4dab5b90c5d187ad8437b62db07a4573d6ff77f62c0ab4b292b2cb59f0879b7b06d8723fea6c05f176fb3b102b7b19de1537f9208fa9a507954bfb36e3baa3632274af62b3ef6aca35306b04ea37bb735be56363ff1de02d1246cb74331bde7976c864eea2f34901376b19483bae63f820f2b35c17ef5fb9208be189b089e505f96a4192fd8e02d2e70165537c9405481ef7f9c2781fb524ac695e7ce36371c4c8803e0962cc6f502c20fc734e50efd6da739085c9e142c91242c7c65c2f639cf1d0946f911f057e02464bd1acf3905579b043d7004f114f6297516cb09d6e51e49ef5c7913df474e9239358279c1fc813a63f26884eb10f8696a3032bb9bfe0fb0fc1b837c4016a2443e364e34f48c0273aed89a8e34a09cf3f5b5934429bdfbecac9d1b9f785a01cd71a6ae93721d895bc37e50aecb6e0cdb0137055964f326413b71b9b18f2a5ec6f9f136637fa0578e4e29a01aa0d1fead9999b7a9fc00ae0ab12af043d11a932b642509dc13e2c088b52c8ea104d1689cd7a625383a4c220410aa9f086829ed64bed02b39db056af5ead84fcda8ccfcde4e440e4cee1aab7d55f09332c7a277062f6ffe4eb372ff591a95cbc8b6ff8d50b6475814c7dd22cab29f368429770d17efced4453353f8443223899955dccf4323a8ce8833427c88c2d2f3ed7dddfb8ba04ff6c5a5bd156f7215583f2c464b80940eddcf594249dfc8e1edb211d9bd39febeb1dc7b0042189eaa2bd8b68e19b7e28b669a74d3f74bc830791a7e64f9efbcd7ad586fb7ba9bc3b3d232145665a5438cd0fabad16bbf0509ddef122ec3fa7de435813a11423f507f451e642dca8be913162017737a0d475a86b89479157a1075a15c00396fa58a14ea9c8ffb45c0e1032e8294c35048acb3d24f001b411c4dda5dd7d51ba0a29619a43958e17dac172c0cd6700d2cb5eb161746794c20028e9de88a0424d901b495e2713598c6e3bd73a0bb354bdf85a804c40059c9763fe439023f5349ed4e00731d2b7fbb7fcb2f8bd6739692ea9d5e61fb69c7834ce5995a720eddb532fb24e954ef40c7a491736e862ee1f145184f09411f342f085a48c9f4ebcdc6ea82e7257f02dfa2fde9b56481a8154a1d4c5f98bc1c3097b27d74fc5aa0a0cb6ffc8939346b2e758e6f0587e1843e8d00a9f73cc7b27a62e99edac60691f63c0bceb26e8dc8000a982e2bb0a0d07f4ac13f5bd3fc8535077208c138480bac19e729e6e2e9bb59316c0b30a3baca1afc261c43a6b363f690c9b7678f96a09f1d1f14c6fd629dbd0df743545233c1cafb5cdc1350cb3364b6a8779d4e908b76c89b7ade8b30b71878f9ba9c4647e48ab22f8a2ba5d8b38cc8c42b09c64fb49ef6d494b237a6c8d2c2654ee50a713c8b764dfdf89f7c85546c1f3e9c5bc4b2780087d575ad2fa336c3629b29a8a76029883387ecb81c1b91b7ced40072bd39a0e14a60ae1ad1f81fc180bea2a0ddbbc9f0919c211da9a979ecb9edb78aa9b4fc0e8e506fe83211f8ffdad62543858ee21c5431cf7d26b2492a012ebffb4d864253fd73bf507bf3f8c6e37dadb8965fd43f1bd4b0a0219fa1bd4396eddc8c1bd1c26260ea87acb3144ebe549427d3bcdea365af5960fc681f532028e2defc2981d497e9cf15d9c7b95c360d43378951720bdd251da3ec74cc8107752789d46ed20d3bac5b586f2f612e41928ab36ea7fff1d5e3d56444c5302df2092f3da2481dfa58b99e164167afd289a62e3749e377ee3e81488486a6e413deb32843e147572b18e4179dd9d467d219376ba83235bfa5b572eb8df3a9f056c6f0381132ab850289e71cce2a51b4589b8c47a12df3858066f365721a2ac1950065f8a4df3105b63f91103f492965f9b8e9788efe4046e6abecb26a51f99545e57430975162441418791a246c677aeebb759d452a2e77886c4c7d006faf2300212c46a2a46326bec102f930a201419fa7f9fb6e85a265ee0fc2f9a6a3dd4ac7cc3351efc773884da0efe88ecb2bddaec326afc4623bb7827e8f2696c7532aa2fa10d349c8808d7dda8f94ab6ced7e64af3225c85954b8944c978058dea436d33702cad2be1ac1e61abcc6bf1f9df79d3823ade908bd4444169b5f527938f87889f035c5d7e9019702057eaa2244b3dc5632065c04ab43b3072c35e2d13d8b0f49b685fb33a9fd5b2094fe1c450b21e910623780f6bd5eb48db58cf582b61a7983a4539655cbe95a15192b0b3becec27e3e66f6ae06ba753b437318cc59e96843754443d407640cebc2199e10e88bdf7e10e1cd8f87aea779c04313640fe1e48c2bbe75a7fca0fc2e81b674ff88e71a3bfc4cc245e6d53b75ae320a3d91beefa8c5f84a52281b0f33f7faa2bb89cdc259df276d67daa90dc7e6f6c0f401555dfdc8222fd4ba58fb5f63ddfa18abf1a0e20a8c869a99dbfa8518a2fb54a0eabc2fb9c0fb2e32a171af5371e2c0bf3f3f528cc2a9e8f9dbe2796741cc3283ff117c51b01aa138a92dc2de6b0391a32952e85cc27bf164af4dfbc1fa96b1eefc6bb517ebbdacad7b97e606385a411326ccca1d46af4a3339ad33ff6f842e1763914f340a0dac814b7b66e2ccbce5d3188a31fb2db9c7accba28db5d9eb2b22000cbdb0b2951b13897c038cbd50b602c70afbca2fd7672001cf641a7af8d8afede83e81a204f837e7c735eb9d25b88f457b9d4095c144d054b76b64d8e827aba247208b768ab55632492496a2369cc3e14a6e404ed82e568685ce0f1eafc254de2c199ce89c739c2bfa8559993d976bb0310547ac84c2bc22dfb01743e4f51adc03b3a674a6ccdcf5b81ab4bbbd1b68bad52bbf60a9454481926ddefddc20956bbbf2879bbf21117ea5e167f02e8ee06edb43e75df64e5cb0d116b537c788c44d58f3f5916f040a4c7cf6e50cb16589d5376ed7646152f826c0615e0bc64494806a4cf6ca7290f641ab58f06b518e0d8137137a02aa8970d58cd51cd7e440756aa11935577b3857c64bc2d5a08c0f766fc56fee1672dfdf4eb9fec6dada648eb3cba65419e311f6f5c3c8a3fc3f499ace8eee6209a160ce2330929ebae5411a26edb5d27a0b2e0375f608fe259c96f67e1075878214917fdb7d8ca7bf6e80762c34cfb28412ef92537257e7ad3f884e345c3d0b6a6824223395bac87d0d3d89503c5cc3bd547173b85151769c336dec3517fff068ba8da2087b665cbee95eda5863ab2409b2d16053c59a5871a965ee67b58b19e50399ca2f468ce838e43fd44e5ca3660722a097480044e4bf50738a753f63808c3c08e004d195a9e061524045f4e12fc29293f469d623d340dc8573c3d2e70fa0a36c6cd8bb129acc9dd58d1f0d88c394b3d332ae986b4020698779c8530debb158efd7a5b21dcd7c527afbd214dd5b9bc3105b6734b037212bfd9b5b8de8fd0364164ba429b328382a56ad2c0db2f86fa632bc398a136f4b90c869a458d8d39c41b7f9b603abe2e940bea6f32bc1381c9d381aebdf0a4a086571478127feff89fb42e151c78cc2d075ef763662eddf1052a01bf9798157ee258c82f4ed8cf2950234c62b23c63a5ec3ef002355a3768b2e10cfeb3d1218835bbd3024b6a3ea0c280957f611c4a8f8440e341a815273b6689fb5c4a4a02615c05fe01553945ffad9eed367082788d9a47b5f8e28d5d82759090ea82f8641570bda1d2561b441d"}], 0x3, 0x4000}, 0x3}, {{&(0x7f0000228000)=@rc={0x1f, {0x2, 0x8001, 0x6, 0x80000001, 0x1, 0x101}, 0xb0}, 0x9, &(0x7f000037c000-0x30)=[{&(0x7f0000c8a000-0x49)="ca72a7ed1ec503330ec41bceebb472bc892cbfd65b07df5a884b36f945a67e6fd2a1e89c627e7d44f87c592f92708391ea6fb438c16230abd9e304ed4997e3578d94c6ee8b72e6c630", 0x49}, {&(0x7f0000dbc000)="4daa5e5147cf43513278c18d29bf238a51a7b79021a10ae0524d4e7807120c34c8c083c4d3f4fa360aac006fdb315aabc3421ebd6f5ba5d20a8ed259b1cadec3d77d4c18713c1e974e479380cebba6cda4e0971e880823290478cbcebea8ad34b8f6d1d235359a02c722751a47", 0x6d}, {&(0x7f0000ee6000+0xbc4)="ec3cc3790a0678e294e92b50b117a0e7c453aa5d62270c085be04aa783aeb213016cb155fd9a6bad05f96489be4219fa25bf6f92fdc911bc8fbf96a7a489448aa0cf38b23a304364ce4cb53a567fdea46878bd12222552460bed450e3251d4f9bd39882d98450eca82556cbf13312f997e6bc6f5346e55d131c79762bc5a0945ec764caf5de760", 0x87}], 0x3, &(0x7f0000efa000)=[{0x70, 0x105, 0x8, "acb57d3bb9501c70112085fb2fc148f7ce8d796626842b3a368c74cbbc81d349db32d6a5d5ffb43dd0598e40c497e6c48b5accbae68170b2c959cbd88f1d0f9c2c33789bb37b1ed26f86b430163d3f3335fdd1c345710e9f7c806c"}, {0x58, 0x119, 0x7, "cccd75b32afd64e9da964bc53d94278bafb02cd87ab47b4061af4a47ca374f65e8c270f90e7e60ae924ba81e60e026e5cbfda386ac9597a5b092e96c8360e5098c1b5c82"}, {0x20, 0x0, 0xc9db, "bd173b16edab1dbea1e744dd"}, {0x50, 0x114, 0x565, "96649c6bb7689fcb2515b450a74094acb7f66e72ba6f3fd360c51324aa3bba9da33dcff8a0a3f8afe376670a2afc8aadea7f424ec5af0dbd76dc5279b3a27ca2"}], 0x4, 0x20000010}, 0x1}, {{&(0x7f0000a42000)=@nfc_llcp={0x27, 0x10000, 0x1, 0x3, 0x1, 0x1, "44b3edfe338a3a1aa89cd30e233e24487b485e3e3b3f91092e98bf63f4a0c64612cd65a2b3d7e7a9d8cb69f25888236afd0130408761bed7a75a71e305f330", 0x3}, 0x60, &(0x7f0000def000-0x30)=[{&(0x7f0000c39000)="db0627f69840eacdcd6d9b331f8786ce3308fc11a9fb26e235dae1362c15aff526cc77da07adcac5621b2b8ed0bf9c1e7c61a71430949dff5ded91b75e705b747870030137f72a9cf8f9dbb421f423ff538a12948f5dc6bf3d9664369885f1829c77ae43ee661ab3cd91c60a4e42ab42b1b05bf731fd893af91f35a521734c762c63d4769d2ae8824fb3af1a445b40ee7b37357da4", 0x95}, {&(0x7f00006e0000-0xef)="99649cd9f4c3aee6fcc879b2fb33821f9920645e0faa05d0640150a63c83b83432bcd1235f89f600716698a5bfad7bba009d5c1bebc4b0a02fbdd2164258add637fd87cf732df3894574e02f5a166282de8527ae07a9f1d09af76cbfafa7953738bcb4531d3fabf035a4baabc92fb98d61a13566f9077c9f9282c252266c3e7f36f4fff817a4ded0352f8a45afa201084a67ea5d2cec35590174abcaf33bd30198acfa5a177e874e5a667c74616a7410188f1c484bf2c03dad9728c3a6dac9d07490306255d34a9b554ae3f446883036a5e39647183d2bbbd88f6ad3321756533e5ba2f3f33e2b1d33bbdd3a89a496", 0xef}, {&(0x7f0000212000)="a23369c15854b236a69a8ac99cc5621ae1d6bf147aa27cbdd16cff25f748161a8b274a52b430197e2148376f4060f90ac6a074431f718f7a9c48cb58dcf88bc103c7c5f8120a9154a324e3c52a9ae6c8d544f2eff46de0d4b934004fea9f03726ce4add0a79c1af33f27554ff786063282a1330d0f03", 0x76}], 0x3, &(0x7f00005d1000)=[{0x50, 0x107, 0x2, "0ee3a78b952c7081a1a44fadb5c0e79ba1b49dbe71349001453d9d3329d0508bc16f66aafe3fd20605b89f4c5afdce34f03d03421f0db932bed9"}, {0x110, 0x11f, 0x0, "e73445d71391734764049418b63089dc46adff4609d77b63126dd2f9453c3e09a295df3d3499953382e20f1a3e116f9fd23263507a3ae6922832431395e8ee12366af84f7e4e2f9f753feb91e8626e6ce953a3d7683cfb68d035bd7d3a98b602d68e401a4acc4cb30f42bd830c3bbc76fc6c751cfaca73bc7e71794f4402ed669b3b953cf213a456d3fd0a86dad5430c796f933afb92faa8ce64ecc494c72053e1754959984d765ec076b45695b0385306355db540d9b1ac4619a51025f60d558c1465271ad0b6c9e344e8b017353141d30d7fcc033f4978eb9a4541a8bef5ce831214592a67ee444eecd2ad477bf8d55296b91aac76ca2875"}], 0x2, 0x20000810}, 0x8000}], 0x3, 0x0)
ioctl$KVM_RUN(r5, 0xae80, 0x0)
ioctl$KVM_SET_IDENTITY_MAP_ADDR(r4, 0x4008ae48, &(0x7f0000ed0000-0x8)=0x6001)
r7 = socket(0x10, 0x2, 0x10)
ioctl$KVM_RUN(r5, 0xae80, 0x0)
ioctl$KVM_X86_SET_MCE(r5, 0x4040ae9e, &(0x7f00005f8000)={0x0, 0x2000, 0x1, 0xe, 0x9, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0, 0x0]})
ioctl$DRM_IOCTL_GET_CTX(0xffffffffffffffff, 0xc0086423, &(0x7f00008a5000-0x8)={0x0, 0x3})
ioctl$TCSBRKP(0xffffffffffffffff, 0x5425, 0x200)
write(r0, &(0x7f0000de5000)="1f000000066cff000000000800000002000400fa090006000200fbf8560000bcdd", 0x21)
perf_event_open(&(0x7f0000705000)={0x5, 0x78, 0x7, 0x9, 0xd05, 0x78c, 0x0, 0x7, 0x0, 0x6, 0x4, 0x401, 0xb3, 0x8, 0x0, 0x4, 0x0, 0x6, 0x7f, 0x1200, 0x2, 0x8, 0x7, 0x8, 0x6, 0xfffffffffffffffe, 0x0}, r2, 0x100000001, r6, 0x2)
getsockname$netrom(r7, &(0x7f00005ee000)=@ax25={0x0, {"00000000000000"}, 0x0}, &(0x7f0000a32000-0x4)=0x10)
[ 1055.371904] audit: type=1326 audit(1511763189.106:27970): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452879 code=0x7ffc0000
[ 1055.424168] audit: type=1326 audit(1511763189.106:27971): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452879 code=0x7ffc0000
[ 1055.442145] kvm: pic: non byte write
2017/11/27 06:13:09 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x36, &(0x7f0000f5f000-0x36)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x800, @ipv4={{0x5, 0x4, 0x0, 0x100, 0x28, 0x0, 0xffffffffffffffff, 0x0, 0x1000000006, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, @multicast2=0xe0000002, {[]}}, @tcp={{0x0, 0x3, 0x42424242, 0x42424242, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, {[]}}, {""}}}}}}, 0x0)
ioctl$KVM_CREATE_DEVICE(0xffffffffffffff9c, 0xc00caee0, &(0x7f0000543000)={0x0, <r0=>0xffffffffffffff9c, 0x1})
getsockopt$inet_sctp6_SCTP_ENABLE_STREAM_RESET(0xffffffffffffffff, 0x84, 0x76, &(0x7f0000d53000-0x8)={<r1=>0x0, 0x1}, &(0x7f0000131000-0x4)=0x8)
ioctl$KDSKBMETA(r0, 0x4b63, &(0x7f000041d000-0x8)=0xffff)
ioctl$TIOCLINUX4(r0, 0x541c, &(0x7f0000b9b000)=0x4)
setsockopt$inet_sctp6_SCTP_RESET_STREAMS(r0, 0x84, 0x77, &(0x7f0000ba6000-0x8)={r1, 0x101}, 0x8)
2017/11/27 06:13:09 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet_dccp(0x2, 0x6, 0x0)
accept4$inet(0xffffffffffffffff, 0x0, &(0x7f0000002000-0x4)=0x0, 0x800)
pipe(&(0x7f0000c32000)={0x0, <r0=>0x0})
socketpair$inet_icmp_raw(0x2, 0x3, 0x1, &(0x7f0000001000-0x8)={0x0, <r1=>0x0})
r2 = open(&(0x7f000046e000)="2e2f66696c653000", 0x4000, 0xa)
open(&(0x7f0000001000)="2e2f66696c653000", 0x0, 0x0)
fcntl$dupfd(r1, 0x406, r0)
pipe2(&(0x7f0000000000)={0x0, <r3=>0x0}, 0x7fffd)
syz_emit_ethernet(0xc4, &(0x7f0000fe4000-0x125)={@remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x20000000800, @ipv4={{0x5, 0x4, 0x0, 0x0, 0xb6, 0x0, 0x0, 0x0, 0x21, 0x0, @rand_addr=0x0, @local={0xac, 0x14, 0x0, 0xaa}, {[]}}, @dccp={{0x2, 0x2, 0x4, 0x1, 0x4, 0x0, 0x0, 0x9, 0x7ff, "b84e9f", 0x4, "822714"}, "c8a3f65867d3357ddb6a9d776c591fb3d4de8e8ac736c069ef4a22d80dbb208409080ea37e3b2a7e5758fe024bba1746299b2b1587511b4b9a6825d0dd9b0ebff88b028f489dea73500c6ce4bc712acb538115fb8f56ac0bdb029e4346994847d48ecc36f49439c4e542c39b237959851d1f39a47971eb01b97caf4e91f65b234671487e79bc2087f712ac21321639227b93"}}}}}, 0x0)
syz_extract_tcp_res$synack(&(0x7f0000fb0000)={0x0, 0x0}, 0x1, 0x0)
socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$DRM_IOCTL_GET_MAGIC(r3, 0x80046402, &(0x7f00002e3000-0x4)=0x5)
setsockopt$netlink_NETLINK_NO_ENOBUFS(r2, 0x10e, 0x5, &(0x7f0000c03000-0x4)=0x1, 0x4)
pipe(&(0x7f00007aa000-0x8)={0xffffffffffffffff, <r4=>0xffffffffffffffff})
ioctl$sock_netrom_SIOCGSTAMP(r4, 0x8906, &(0x7f0000d5b000-0x4)=0x0)
r5 = openat$rfkill(0xffffffffffffff9c, &(0x7f00008ff000-0xc)="2f6465762f72666b696c6c00", 0x201, 0x0)
writev(r5, &(0x7f000037d000)=[{&(0x7f0000518000-0x7)="0bf5430f000319", 0x7}], 0x1)
[ 1055.455560] audit: type=1326 audit(1511763189.106:27972): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="syz-executor7" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452879 code=0x7ffc0000
[ 1055.487439] audit: type=1326 audit(1511763189.106:27973): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="syz-executor7" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=228 compat=0 ip=0x45561a code=0x7ffc0000
2017/11/27 06:13:09 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000271000)={0x2, 0x78, 0x46, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000bd4000)=0x75)
r0 = socket$inet6(0xa, 0x1, 0x0)
setsockopt$inet6_IPV6_FLOWLABEL_MGR(r0, 0x29, 0x20, &(0x7f0000f60000-0x20)={@loopback={0x0, 0x1}, 0x0, 0x0, 0xff, 0x1, 0x0, 0x0, 0x0}, 0x20)
mmap(&(0x7f0000278000/0x7000)=nil, 0x7000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = semget$private(0x0, 0x407, 0x3)
semop(0x0, &(0x7f000039d000)=[], 0x0)
semop(r1, &(0x7f000027b000)=[{0x3, 0x4000010006, 0x0}], 0x1)
unshare(0x0)
semop(r1, &(0x7f000027d000-0x1e)=[{0x2, 0xc1a, 0x1800}, {0x2, 0x4, 0x1000}, {0x6, 0x9, 0x1000}, {0x0, 0x7, 0x1000}, {0x4, 0x3, 0x1820}], 0x5)
semctl$GETNCNT(r1, 0x4, 0xe, &(0x7f0000a4b000)="000000000000000000000000000000000000000000")
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f00000ba000)={<r2=>0x0, <r3=>0x0})
getsockname$packet(r3, &(0x7f0000548000-0x14)={0x0, 0x0, <r4=>0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, &(0x7f00005b8000)=0x14)
ioctl$sock_SIOCGIFINDEX(r3, 0x8933, &(0x7f0000000000)={@common="726f7365300000000000000000000000", r4, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$DRM_IOCTL_GEM_FLINK(r2, 0xc008640a, &(0x7f0000853000)={<r5=>0x0, 0x0})
ioctl$DRM_IOCTL_PRIME_FD_TO_HANDLE(r3, 0xc00c642e, &(0x7f0000e38000-0xc)={<r6=>r5, 0x80000, <r7=>r2})
ioctl$DRM_IOCTL_GEM_FLINK(r3, 0xc008640a, &(0x7f0000a32000)={0x0, <r8=>0x0})
ioctl$DRM_IOCTL_GEM_FLINK(r7, 0xc008640a, &(0x7f0000907000)={r6, r8})
r9 = socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$sock_inet_SIOCADDRT(r9, 0x890b, &(0x7f000053f000-0x78)={0x0, {0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x0, @rand_addr=0x7fffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x106, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
ioctl$TIOCGPGRP(0xffffffffffffff9c, 0x540f, &(0x7f0000e82000-0x4)=<r10=>0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ptrace$getsig(0x4202, r10, 0x5, &(0x7f0000696000)={0x0, 0x0, 0x0, 0x0})
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_cred(r3, 0x1, 0x11, &(0x7f0000b9d000)={0x0, 0x0, 0x0}, &(0x7f000080b000-0x4)=0xc)
2017/11/27 06:13:09 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000fd6000-0x8)="2e2f66696c653000", 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = memfd_create(&(0x7f00002c1000)="75736572aa736563757269747900", 0x2000000005)
lseek(r0, 0x0, 0x4)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000027000-0x8)="2e2f66696c653000", &(0x7f000000c000)="72616d667300", 0x0, &(0x7f000000a000)="")
getsockopt$bt_BT_SECURITY(r0, 0x112, 0x4, &(0x7f0000791000)={0x0, 0x0}, 0x2)
r1 = syz_open_dev$sg(&(0x7f0000a7c000)="2f6465762f73672300", 0x20000000000, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = gettid()
getsockopt$inet_sctp_SCTP_DEFAULT_SNDINFO(r1, 0x84, 0x22, &(0x7f0000668000-0x10)={0x0, 0x8, 0x10000000005, 0x7, <r3=>0x0}, &(0x7f0000d7a000-0x4)=0x10)
setsockopt$inet_sctp6_SCTP_AUTH_KEY(r1, 0x84, 0x17, &(0x7f0000901000-0x24)={r3, 0xfff, 0x1b, "89db87a15ec154217a8825119cbb2b3b19644975f4e772c5f33be7"}, 0x24)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x72, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r2, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = socket$inet_tcp(0x2, 0x1, 0x0)
getsockopt$inet6_IPV6_XFRM_POLICY(r1, 0x29, 0x23, &(0x7f00001fc000-0xe8)={{{@in=@empty=0x0, @in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@multicast1=0x0, 0x0, 0x0}, 0x0, @in=@remote={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f00000c3000-0x4)=0xe8)
setsockopt$inet_tcp_TCP_MD5SIG(0xffffffffffffff9c, 0x6, 0xe, &(0x7f000023d000)={{{{0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0xa, 0x2, 0x80, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x4f062fe8}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0xfffffffffffffff9, 0x800000000000022, 0x50acbb8c, "f09d553d6fb8d7720f1ca3f6ade5e180527a16bc73fe988e5ff206047c2af781e6e7c4749ff1396371d6af7a494f686744a19f827239b0470436018f4d64bad1051a882181706bd4d9a242e32cf32997"}, 0x160)
ioctl$sock_ifreq(r4, 0x8923, &(0x7f0000c15000-0x28)={@common="6c6f0000000000000000000000000000", @ifru_names=@common="6c6f0000000000000000000000000000"})
ioctl$sock_inet_SIOCSIFADDR(r4, 0x8916, &(0x7f00001da000-0x20)={@generic="926107e5b2d4cdf9fde4f018bb4d17ba", @ifru_addrs={0x2, 0x1, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
socket$unix(0x1, 0x2, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = syz_open_dev$sg(&(0x7f0000000000)="2f6465762f73672300", 0x0, 0x8000000)
r6 = epoll_create1(0x0)
r7 = epoll_create1(0x0)
epoll_ctl$EPOLL_CTL_ADD(r6, 0x1, r5, &(0x7f0000d4a000)={0xffffffff80000005, 0x0})
epoll_ctl$EPOLL_CTL_ADD(r7, 0x1, r6, &(0x7f0000fe1000-0xc)={0xffffffff80000001, 0x0})
getsockopt$inet_sctp6_SCTP_DEFAULT_PRINFO(r5, 0x84, 0x72, &(0x7f0000ded000)={<r8=>0x0, 0x8cc0, 0x0}, &(0x7f0000f98000)=0xc)
getsockopt$inet_sctp_SCTP_SOCKOPT_PEELOFF(r1, 0x84, 0x66, &(0x7f00005a4000)={r8, 0x81}, &(0x7f0000040000-0x4)=0x8)
epoll_create1(0x80000)
epoll_ctl$EPOLL_CTL_MOD(r7, 0x3, r7, &(0x7f0000a69000-0xc)={0x8, 0x0})
stat(&(0x7f0000305000)="2e2f66696c653000", &(0x7f0000784000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
[ 1055.510855] audit: type=1326 audit(1511763189.106:27974): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="syz-executor7" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452879 code=0x7ffc0000
[ 1055.536102] audit: type=1326 audit(1511763189.106:27975): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=41 compat=0 ip=0x452879 code=0x7ffc0000
[ 1055.542171] *** Guest State ***
[ 1055.542179] CR0: actual=0x0000000080000031, shadow=0x0000000060000010, gh_mask=fffffffffffffff7
2017/11/27 06:13:09 executing program 2:
sendmmsg(0xffffffffffffffff, &(0x7f0000560000-0x240)=[{{0x0, 0x0, &(0x7f000036f000-0x70)=[{&(0x7f0000290000)="a41cd7af143f028bc6440f8b01bd6c6d1991362019c5b0086928634c73937acf8b9ae07379531f4c89718fa7fc3cac036592101713be4161bb99b042204500c26d561de21d209d28ee46d4d0cde9a1f2ffa6530cf250fdd179eca36092fb3ee3015a103e43c5ef0f1d17247316ff7754540da682a177a8eb82ecfe2439da31ea30f0339383b224572c4ef47be84df32c8b1f8cf445e17f4e348f6f707e5cfbb720c5e4c7e5a90c8c9a19089629c9d527c15a", 0xb2}, {&(0x7f0000523000)="", 0x0}], 0x2, &(0x7f00009a2000)=[], 0x0, 0x40081}, 0xfffffffffffffffc}, {{0x0, 0x0, &(0x7f000075c000-0x60)=[{&(0x7f000054c000)="", 0x0}, {&(0x7f0000ecb000)="", 0x0}], 0x2, &(0x7f0000d65000-0x1d0)=[], 0x0, 0x0}, 0x0}, {{&(0x7f00002ed000)=@ethernet={0x307, @random="b2c939f2754a", [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000a47000)=[], 0x0, &(0x7f0000ba9000-0x368)=[], 0x0, 0x0}, 0x219b}, {{&(0x7f0000de4000-0x60)=@nfc_llcp={0x27, 0x5b1, 0x5, 0x3, 0x6, 0x0, "5333964cfb470e538b46b38350740f493bee802c12d2e0a2a07b1e0137fbcfadf9e9e7d9f4be6893f22eb24da4cf6aec0c7ef18dfbbe6a60d32b3c0b34908f", 0x100000000}, 0x58, &(0x7f000099e000)=[], 0x0, &(0x7f0000acb000-0x298)=[{0x30, 0x0, 0x3aca, "f28a0a59881fcbec8dcd7c8441b2d629f4ef8fb8e36e3c813c538efd90f91b4a3f23"}], 0x1, 0x0}, 0x1ff}], 0x4, 0x4000)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f0000381000)={0x0, 0x78, 0xdf, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x5, 0xfa, 0x0, 0x10000, 0x0, 0x0, 0x0, 0x80000, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = openat$kvm(0xffffffffffffff9c, &(0x7f000052e000-0x9)="2f6465762f6b766d00", 0x402, 0x0)
r2 = ioctl$KVM_CREATE_VM(r1, 0xae01, 0x0)
ioctl$KVM_GET_DIRTY_LOG(r2, 0x4010ae42, &(0x7f0000abb000)={0x10003, 0x0, &(0x7f0000d26000/0x2000)=nil})
ioctl$KVM_SET_TSS_ADDR(r2, 0xae47, 0x0)
socket$inet6_sctp(0xa, 0x3, 0x84)
getsockopt$inet_sctp6_SCTP_GET_PEER_ADDRS(0xffffffffffffff9c, 0x84, 0x6c, &(0x7f0000b27000)={<r3=>0x0, 0x0, ""}, &(0x7f00007f3000)=0x8)
getsockopt$inet_sctp_SCTP_RESET_STREAMS(r0, 0x84, 0x77, &(0x7f000043f000-0x8)={r3, 0x3}, &(0x7f000018c000)=0x8)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = openat$vga_arbiter(0xffffffffffffff9c, &(0x7f00000cf000)="2f6465762f7667615f6172626974657200", 0x8000, 0x0)
ioctl$KIOCSOUND(r4, 0x4b2f, 0xffb)
syz_emit_ethernet(0x127, &(0x7f0000c15000-0x127)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [], {{0x40000000000800, @ipv4={{0x5, 0x4, 0x0, 0x0, 0x119, 0x0, 0x0, 0x7, 0x1, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, @local={0xac, 0x14, 0x0, 0xaa}, {[]}}, @igmp={0x1f, 0xa1, 0x0, @empty=0x0, "591cef56f5a6516873363a24975cb6c87105c8254cafe6d2b705d170fdd33309c2e4087403581f6cba0bb5815321edd3a23350ab48869a3ffecfbc96351187e313c857b49caa2c7a9af9cb044b43828d5ee939922f4ebef51b5ede8d92ee03481ef9be513f783eacd900b69cfe59e58873e8ab8f59433099824a9d4a4b462b98dc737b8e186283d7c0a68a56da831573cde890139a30fca92b9dffa9dd4a916aaa5146d92c63ee8eb917b7f4d82cdf45529ee51fa69258535abb5b360117b4f4d892e8be48ef3c331c0d453f03aaac538d396f1fb9e09d4d524f14ec9241ec76f802447d93e0061b2f917325a45ac1d1771e8af2761b4a2c95dc79a4b9"}}}}}, 0x0)
ioctl$KVM_ENABLE_CAP(r4, 0x4068aea3, &(0x7f0000473000)={0x79, 0x0, [0x2, 0x4, 0x3, 0xfffffffffffffffd], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
socketpair(0x9, 0x6, 0xf3e, &(0x7f0000a17000)={<r5=>0x0, 0x0})
epoll_ctl$EPOLL_CTL_ADD(r5, 0x1, r2, &(0x7f0000d8e000-0xc)={0x0, 0x0})
r6 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000186000-0xc)="2f6465762f72666b696c6c00", 0xfd, 0x0)
ioctl$KVM_NMI(r6, 0xae9a)
r7 = ioctl$KVM_CREATE_VCPU(r2, 0xae41, 0x0)
mbind(&(0x7f0000776000/0x4000)=nil, 0x4000, 0x0, &(0x7f0000687000-0x8)=0x8abc, 0x0, 0x7)
ioctl$KVM_SIGNAL_MSI(r4, 0x4020aea5, &(0x7f0000341000)={0x0, 0x7000, 0x5, 0x3, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_SET_SREGS(r7, 0x4138ae84, &(0x7f0000c8b000)={{0xd000, 0x7000, 0xc, 0x9, 0x4, 0xf49, 0x8, 0x9, 0x2, 0x8, 0xd0d000000, 0x5, 0x0}, {0x10000, 0x2000, 0x4, 0xff, 0x8000, 0x80000000, 0x100, 0x7, 0x1, 0x1ff, 0x4, 0xab, 0x0}, {0xa00d0008d410ede7, 0x107000, 0xf, 0x8, 0x10000, 0x6021, 0x5, 0x3, 0x227, 0x4, 0x80, 0x7f, 0x0}, {0x10000, 0xf000, 0x0, 0x9, 0x0, 0x7, 0x3, 0x7, 0x9, 0x4, 0x4, 0x200000000000000, 0x0}, {0xf000, 0x11000, 0x8, 0x106, 0x200, 0x0, 0x3, 0x0, 0x4, 0xd, 0x80, 0x3, 0x0}, {0x6000, 0x5004, 0xf, 0x9, 0xfffffffffffeffff, 0x65128744, 0x9, 0x7, 0x9, 0x82, 0x8, 0x200, 0x0}, {0x4000, 0x0, 0xf, 0x99c1, 0x7, 0x1ff, 0x8, 0x566, 0x4, 0x3f, 0x1, 0x20, 0x0}, {0xf000, 0xd000, 0x1f, 0x4, 0x0, 0x8000, 0x1, 0x3, 0x100, 0x9, 0x2, 0x6, 0x0}, {0x4, 0x103005, [0x0, 0x0, 0x0]}, {0xf000, 0x0, [0x0, 0x0, 0x0]}, 0x40000, 0x0, 0xf000, 0x0, 0x4, 0x7fc, 0x5000, [0xbe4, 0xffff, 0x4, 0x6]})
ioctl$KVM_RUN(r7, 0xae80, 0x0)
r8 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000c74000-0xb)="2f6465762f6877726e6700", 0x501000, 0x0)
ioctl$PIO_CMAP(r8, 0x4b70, &(0x7f0000e61000-0x30)={0x3, 0x5, 0x9, 0x2, 0x2, 0x3ff})
ioctl$KVM_SET_VAPIC_ADDR(r7, 0x4008ae93, &(0x7f0000401000-0x8)=0x1000)
ioctl$KVM_SET_USER_MEMORY_REGION(r2, 0x4020ae46, &(0x7f0000afd000)={0x0, 0x1, 0x1000, 0x1000, &(0x7f00006c3000/0x1000)=nil})
ioctl$KVM_SET_LAPIC(r7, 0x4400ae8f, &(0x7f0000dc5000-0x400)={"b3a640564b6b3c4a552c1bf7a097e2599a7dced92edc20eef803ca9ab9aa95ada76ea3be32c73b52bc3910e90c3cd9b08f9f0c66d59708ca657f5b2cd85a009f834ca0277319becde7fa12824b8c67f23e2e4b5c9a5d70a089b19adb319c213eca82fd2a3fba9ecd740e45048c23efbaee092f30205a1c24c0f4048bf5a4b0c4f3f12787f14e6ac556aa27202eb1fc1b53629037a6891e0c4adbc0157a66b4ee4b0507870f2d43b22a433711d0098e74196c3410417332ed4b74252b0b35e0f993c50d1ac561c8862ca2ff9021f014d5a17a6da1a85f43b13b54d20968d3589c7023c5e52efce267bb4035ccfcaf06d8e1238a43214b2c010001008ef5d9adebe59d344b7ddbc75a5233f7e3bf29438b9dc6b42971b08f7c310cb7893025c377cd552e246ae7ca3e3c3e2857961500010dca5c050f70ffa0cd816aaac8ffe43ade51f8b228f11040bb056a4dc09e636ea63f6e46b960355553969ee62299d391ea90484d7fc901659ab8ca00000100da888e0a9c7ae207639fb7bad86791891fc5eb426feb1d03d065598e9843f6a641e50006ebaea5e00d554ea11bd17a55903b55a5bddc1c410d8fce7fbcf931af94b07d1051c07b63fb26308a451f8f8f6171ea68ba2503a46eb681078ca5bc212ac03d2a19aec137048ac9fdb5f6ecc86a4d327a658d6db195415b98bc9e40f31f4a2998320efbf5b33623bfb68c880f295d60c760f014bd890cc8ce48820d62440a63720f84398b0ecd366e33786cb70345999f592e25f9a6ddd1f35882a96c51179a30a7985ac3ef0800b19abc812d75fe2d1b72d4c37b0b731101b0e36c557b5036cb0f559bcb8bde2dbd5eddbb1a1615e796bab2f5ab8a816f8e3f7d05f36e0eb86a762a9fb8f96864528345792160482c4c3d63b535c49cb0a1c715414219bfd1521806f4e8694fd38667f3431c298d8559bc046d73c70767d0eda839fdffffffffffffffbdcbbe2900000008707916aea7065c6c48d80a6b3417690f4a7d6ba11a881542276462bb0dfd30568115cd0ec41c4118878daeb1ea2c67f2071bccde6a20efac7afb7002711323522e3e245194876051ae20f66d3590bf1bfc2896917108d4220209fd33f3da7e6207f60a187e38704ca0b8b0ccc690238dfb597eb33a48b972d635fab0db5b2cda45dd74127f5fa37ac27e30a671ae4ac3590e9988713dbd001375dc0b9ff68990573b19858248ea1df61dbfd5107c872123b7ddc911076a41ecdc973908bf65417dc1c33cdcd45df4ddf43890aee999f8bb2f2aa5315cad61550246065a69c6f97b216ab7847b0a4c34a36eba20460657b1c369fccc121d3ac2c75ea64df3877bca562408d431091cb1578389c48d2512f5f808204a213264cfe890c4439ca9f32e0f69ad1006a618128dbdf1545079d797664765f972c22126dcdc50cdbba6010043"})
ioctl$KVM_SET_SREGS(r7, 0x4138ae84, &(0x7f0000fe2000)={{0x4004, 0x0, 0xf, 0x3d, 0x8, 0x9, 0x5, 0x7ffffffd, 0xfffffffffffff801, 0xffff, 0x200, 0x0, 0x0}, {0x1000, 0x7000, 0xe, 0x6, 0x6, 0x5d, 0x7, 0x4, 0x2, 0x7fffffff, 0x200, 0x1, 0x0}, {0x1, 0x0, 0xc, 0xffffffff, 0x5, 0x4, 0x2, 0x3, 0x6996, 0xfffffffffffffeea, 0x3, 0x2, 0x0}, {0x0, 0x2, 0x3, 0x3, 0xcc, 0xa, 0x1f, 0x9, 0x3, 0x7ff, 0xffffffff, 0x3f, 0x0}, {0x1, 0x3000, 0x7, 0xa07, 0xffffffffffffffff, 0x4000004, 0x7, 0x6, 0x6, 0x8000, 0x6, 0x3, 0x0}, {0x80000000001000, 0x10000, 0xf, 0x9, 0x2, 0x6, 0x8002, 0x4, 0x800, 0x3, 0x1, 0x5, 0x0}, {0x2001, 0x0, 0x3, 0xffffffffffffff03, 0x5, 0x8, 0x0, 0x7, 0x7e, 0x200, 0x3, 0x0, 0x0}, {0x1001, 0x5000, 0xf, 0xb2be, 0x4, 0x2, 0x9, 0x3, 0x34, 0x2, 0xdf, 0x0, 0x0}, {0x1effe, 0x3002, [0x0, 0x0, 0x0]}, {0x2004, 0x4000, [0x0, 0x0, 0x0]}, 0x62689cc022a97de7, 0x0, 0xd000, 0x22003, 0x3, 0x2000, 0x4000, [0x0, 0x0, 0x3cc, 0x4]})
[ 1055.542185] CR4: actual=0x0000000000002051, shadow=0x0000000000000000, gh_mask=ffffffffffffe871
[ 1055.542189] CR3 = 0x00000000fffbc000
[ 1055.542194] RSP = 0x000000000000fffa  RIP = 0x000000000000c000
[ 1055.542204] RFLAGS=0x00033000         DR7 = 0x0000000000000400
[ 1055.542212] Sysenter RSP=0000000000000000 CS:RIP=0000:0000000000000000
[ 1055.542219] CS:   sel=0x320f, attr=0x000f3, limit=0x0000ffff, base=0x00000000000320f0
[ 1055.542230] DS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1055.542239] SS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1055.542247] ES:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1055.542257] FS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1055.542266] GS:   sel=0x0000, attr=0x000f3, limit=0x0000ffff, base=0x0000000000000000
[ 1055.542273] GDTR:                           limit=0x0000ffff, base=0x0000000000000000
[ 1055.542284] LDTR: sel=0x0000, attr=0x00082, limit=0x0000ffff, base=0x0000000000000000
[ 1055.542290] IDTR:                           limit=0x0000ffff, base=0x0000000000000000
[ 1055.542301] TR:   sel=0x0000, attr=0x0008b, limit=0x00002088, base=0x0000000000000000
[ 1055.542306] EFER =     0x0000000000000000  PAT = 0x0007040600070406
[ 1055.542313] DebugCtl = 0x0000000000000000  DebugExceptions = 0x0000000000000000
2017/11/27 06:13:09 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$inet(0xffffffffffffffff, &(0x7f0000002000-0x10)={0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_tcp(0x2, 0x1, 0x0)
setsockopt$inet_tcp_int(r0, 0x6, 0x10000000013, &(0x7f0000d06000)=0x1, 0x4)
setsockopt$inet_tcp_int(r0, 0x6, 0x14, &(0x7f000024a000)=0xfffffffffffffffc, 0x4)
bind$inet(r0, &(0x7f00003b5000-0x1)={0x2, 0x3, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
sendto$inet(r0, &(0x7f00003b3000)="", 0x0, 0x20020000, &(0x7f0000818000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
ioctl$SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO(r0, 0xc02c5341, &(0x7f00005a4000)={0x0, 0x0, 0x0, {<r1=>0x0, <r2=>0x0}, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
nanosleep(&(0x7f0000562000)={r1, r2}, &(0x7f000003b000-0x10)={0x0, 0x0})
r3 = accept4(r0, 0x0, &(0x7f000058c000-0x4)=0x0, 0x80400)
getsockopt$inet_sctp6_SCTP_DISABLE_FRAGMENTS(r3, 0x84, 0x8, &(0x7f000094f000-0x4)=0x0, &(0x7f0000b10000)=0x4)
setsockopt$inet_tcp_TCP_REPAIR_WINDOW(r0, 0x6, 0x1d, &(0x7f0000a73000)={0xfffffffffffffffe, 0x53b, 0x6cf, 0x0, 0x0}, 0x14)
setsockopt$inet_tcp_int(r0, 0x6, 0x19, &(0x7f0000365000)=0x3, 0x4)
getsockopt$inet_sctp_SCTP_LOCAL_AUTH_CHUNKS(0xffffffffffffffff, 0x84, 0x1b, &(0x7f000021e000-0xeb)={<r4=>0x0, 0xe3, "1d6e420c0b32f686f8fad831f31d0a05a50d128275dfd7e4325619e6f1f5e28c150c00729cfcb4c4b778261f1ad0bc56d70c1f2ae72f8229ad0ea80b8d0ed36c3dd50f03ba15982f5a8834a618ceb7a07b676869d8dff2444d374303e14a21f162a9754cd084e1339b0db4d86923567a2e8d2364213d44b05df7f30181ba1cdf4768aca0c3dac8d102c7700dd3fe1f0ae6d02bf4d63a475bfeed752512107e8b740534e8b563e24874c6240b355026f31e44dd09f108000000d1210c86485ecb6a10e0a68b996ea166168838dec00c2eab4c2b29d245107856cf25a9c07583b9fdb348"}, &(0x7f0000ade000)=0xeb)
getsockopt$inet_sctp_SCTP_PARTIAL_DELIVERY_POINT(0xffffffffffffffff, 0x84, 0x13, &(0x7f0000242000-0x8)={<r5=>r4, 0x4}, &(0x7f0000cf9000)=0x8)
r6 = signalfd4(r3, &(0x7f0000e34000-0x8)={0x400}, 0x8, 0x80800)
getsockopt$inet_sctp_SCTP_GET_LOCAL_ADDRS(0xffffffffffffff9c, 0x84, 0x6d, &(0x7f00004ae000)={r5, 0x1000, "8374ca00f85098d204213d0de7b90a1fb4bfbb5756a6dda91632aa1f76e175ef1cbedba744cd8b47c7ed4a87158744ccc4fef0518535659b575bcf9bf661592a87638f0131125a2c383b26d681a544d286e189da26b2b30d09657a985ad81095f5b2aa66100f5182343ea3d85774dedafded86bfe5ad83183e8b0a918f99d74f0f7e51f001910801f9863fc8909362695b94664edd2443dcf96c0471cfaf13463997aa88f735dafe6c46cfcff431a1e15a1349317649093e73e79b254d0286d13c6a362b02d21c58c98aaa3e8bd714ee836f803d06f7e5e1c1d5693e3495f3eee747feca38564e2f91f8976afb8a2b30d6c43998b7a8031a48d61b7babab25d8f432bf576d3c826dae3dfd480fef817e9c0b086a47ac133901bef8f1b303600239e71e02fc5b4754211369411f415c5d547aa0e73052dd3cf9a354f4e96934c54729535752f3a81b7ff2ae3f88b90511a86a403e8793b15f84a4de2bd926622fed467d5e9be477d1535630eb9eb3b79a074dea984beffd7bc52bcbbfc3e53479cd75c284444566d92c63101964488789d3e8c681a0927caf297ae5f04cee489df07dcff6dcbd9a66ce5b8e7e89dd596e1ac7bc2ef52af2dde780749b7e7b2dff14bc41157ec8473e055bd591b7cd192c2a172e28d88a525a0ceedb3455c70695968f368417258a514843406233e4c09d929b4e57e0736aec2be76f6fc088dccc85ee2e9a51e05fb8602085218794f91c02bcf8bf79185ce6eb4b8152f533211edebf3379d60d7f0a365d60ab7fb8bc41c1b23916e0324694cce9d8f84fbce22ae84aaed48673df78ec62dedd5211bcf7bfdcc27392b77e70abab86beb0af968986736b398f2065b680c1b2c6e5e34517efa89ed404788d8d04fd76a6cc14a3d458e2f52f66d736c4680fb2e04608b2f977bdc648b9a9e0be34fcfe077abe730eed62eaf893fabfb5eb4f51669590c1ce7f7957f6a890cba3cc49f4e85799734e21c42ecd3d47ac261c8a58cc105c562bed9a7b27c202e186c90fec642a8e1d29ab7c0830bae08c4be04bb76bc7b7316229fcdd13a95b0284be4db50f11472bfa353c23468cbb71d733fab764a0626936e0cf20a5e45a1fd3a0fc46d3230d65358738e7fa929670257096890c290921a48d5ffc3a71bbee41df9f9b944072a7a488c07d726d2f61d88c6454d4837aedb8ef22e3657c8a8e284f07dd898978e9b12a7e3330b014252daea8f496ae312d33948eddb3e5a259677479b365c945e67efe0eab9b2f4bcdafa06d3f95e82971f84ff9c9258144133067bc049c497bcef922cb15193b62c55fb1e33b86c180cf1c782ea1728c4559435ac97b2a8df8c0ae15fdd8f3da20621ffafc34929c0e337a9b0b5d7abc3ac27252e7491cb244d623a1b01ec06d29dc0de9da2951adb118f01272fea8c23690b6c6c63b035a0f5522dff9f2bad143c2d1df4dcb3eed6bb645c2f16b19707f995857a89635dfce627df222e49f6e2b98242e758dfea03d3a904db661c085e4f17c144ccbdfd3309eb833c3e4145ffb0d36852002cf79010f393fd7175de5d71b8dbffcd4155c5f4773a61dbc3546dc43ee48d529651d8294eb6d223ead480dfb11782ffbe9cacf4f0cf2c708b3c064ad90c5d525321e8686a83138248bcd76df9a9979658e52ca535a42fdcd509961bd0092469a56ad06728dd6e53ea7d0bad3700b38a1eb355809558fe4673092f2fcda050c90600ed20faf57b4d1dc6b68ae661d70a301a63fe38c5c903ac452f3ff2b8204c89025643d4de167f8d86a4de81009e7e1a30f20c00653fc6a92a282ec7b05172cd1941bded49b37ef9b4a9de78e1ad33522d860b9d70af1bea8611da5b5e3b075a79236fa50186e49a7a14fb262331bdab88cbd66e50d55e61ba11230d2c8cbb893970593c8b410d78d6f617fcc833a2f1316a4fb4576631da41857af4f8876607478c5952842c6c3a08f65afe4eb8fa84c7383b71c24551dd143b9336ca7013c24f3ec73dd6cef01796faea68d2f616965a5c52b0e69aeaa91bb2f4f6cfeed4de8093f82427c26634ada27890d0870d023ce97b89c0c0916efbbf6e7811900cf4f1d638b9de46c974cd2ec597053b9715aa6f4510ebd024f012839184fd35c068b2a1837328525b6bc08662467e886a0120cf35e6018f681343b2fad9af3456ea324df3c3934f46ef6d8fbc546458142b9c954caf4d1742acabcacbde28a4f66d2310bda55e3686b7be3238ff79d2dcd27ec68599b00372eb6d07d5d9b3c5c6c8769a5ad78570bfda95231c8f79804cf12a2ec2772c2a7caa9d132325f194f791d7fcce9be36e27d8e23b1b007f81fac3f43da43874a276631cc288ade59798d498aad1304d28515a2b5353647b973e1105592a4a7a0500360757ce52bad3130e267b4ff6ae6800c8f69d7bc0e68d303a94851b32960395baa271d16d2e331d6eea5638225bf4bb65efcb7075fb114ea991e6d707e65ec2057b17f7c1e4578ec8fe02c9d8246e28e1d7808d4b2c839eb58557e737a3053764f1ec666b7ad82dd4e187e803446579d52ee0ea0b9d29531a4fc2d35cc1d9b2401e8d4d6cb52d5e2508cd80421a8a35096336a12da522d500d12159837e51d2cbe6fe24f11fc65bef28b2ab63b03f8109804b98e67831d007ca72aab0175c29ea02b3eacce0ec4d6632e81c0c3aab2431546b8c04c334f72517e38a4f4aff58adeacc96793b76dc63f753e2a5cf693ce07817e8abdf934311a06f0932059b9a1b6b4e607ff1371067815e85b59b778de73c1f5496966dd45478762f976ce032524e718264485c8477b6fdd79f6f024daeb10d60102618b7e49715d80a77bdc1cfa182f24af61ee39dd85924add6d67668f06570dac7fafde91550b3b0631f173494cc774d3a01621f498d8c1efa1949e5077a7d36e287da6ace5d11b8d3e5c475948d58fbab9a1e44e0887cb1a38b4e7f6ed42442984c42f8845dde7c223f8a479d04bb9e63659b87b254a481d5d9bda3424944937989d77cae5ea8ace31852c4bc8b25382acf1c1245ce463dff5e3b9769cf184f24f517e9fb7f9769137d47cffc2039b4b9b9a21a45d598d875c1b716e023cc004c18594b2a7cfd92b93244a9f85de1ac71a65bb9bbfb469ea2c5762f3e87ddd9f03e284a9643c5b1d008221b0a5f45562b9dffac413702130584b9248d6971f1e6332088b56b365c31d5655a7149ab45b7beed408f68461522c917fd22f4e77dd2242fe8e702939eb2e71c7dc0ceb83badeb0914545557621873d81dd2008d6dda6a3c06a464b012229fc3fc56e8e7ab69ffe6c4c0f68f7dad8f5bb43114f3441cea33a03bc78053007590c98766a618aa2705410b5e2602da4b2161d82a4fe821f21b10efa98c47871d3ebf8fb8a4bf7ba75ec9048661ed126cfd71b59686b2517dd96bd5291b0807b19e5a24b72bcd7c732a10b78bc1a1e34886baf69d5deed78eca733b9f59073a588d9e151514ebd697f7720dc5d0bdd23a3bd4f5814459de51be263c56bb5deaccaf88e32954bec64da45b32a250005cf44986869664089b12b3179fdb864d026e3293e113d2ad78b2a717ec9810f5b57ec5ed6269f58ad90ac08dbf889a4bb0bcd4834b8364d8a4e28bb1477cb83f1630ce589d15555e99724f719a83fcb4525ac6268f5464d5ba5ee1e3047bf41f24604e74f9c7090db421e47dda9900f72b7f4efd37335fe962f0881bf96065673986de812ef8317e1398001a91cf1e8921f18fb62e4f6779e98411649e6bb88660d0f2462a0cef974756122d26163f35d2d6d291ff0e92225c7fc2c9e451dabe9356210d2e4909c419bf7bbe6e85f7e3e17d9013bfb23bb15473168cc7d0213ed0f7fbdfd759a89e65be0495d0a672c3c6250ee8502ab96f28fa6403e47284baac26641957fb6879b3de379fdaca0b637da4c435a6c04b1dc23d3d08ed28b3fc1eb97512b7ad242eb5c20dc184da3aca280a28be4b5406673134b47c8906174d0136ec030b196d6516dd3d11f51d2e8847485bd8a7d27b80ec992e90b89c9702490b7f539ff1565b18dad7974e3ad825f499cacfcea50cc0bca17263e610be23c0436c61f21eb1221d82e97f1e9cff284e46049f5fe733ef591cbc647ff93126fd0a0f51b6bbbd31d4159ab5c95e8deb2624cd592f01a859972e1ad323a583ecc52e8b13a6f252af1c80200e8174b4eb34241fa873d451a3eb1ef0870c9498d23f02df783dffaa5da37f8406265427b85c1fb77b888c192435c477192c32938530c3a6b48ee6dd1aed0266492d0f8a9c6c4a7088c073c8e4fcddeeef2bac6bfebbf46fcac2f4af22ac8ca078a8463fee449c479a27dc890ab6ad440b8765881d0463ef2e4f8fbde4b8ff5ae0d334540219b0bfcf3c5fd823a2bb386fc4451d8b8c80cee26f1beb06a3afa0be6c3ee9a9607baf6077729edf1dbfe2b43f5f209da4ba773d29b42fe5cb7d3f21ec806c6ee094c6a7f566f75614993420ebc6cc05691c9e91b4b535cd51a89e46f87cad8381c3308eb62b916790b5f89f31cd7da24b74a9c710381f6c7b7b9be57c24acaf5c142bb246f6ebb5af94ac296ef6dbee6202b53ea0b542754bfb3992461b2dbac3beb8fdc7a57983e1b4d42261eeea88894e55d1886813508a57e19d2f5b78665c035595c31119299aafdc4a9b07ce2df28d57aec1ca47d294689c5d7523805d6c5c181f7cfea60395c3197858c97500e6406c2ee3d06afeb8cb4314b1fa395e32035c4f4908fed6ef2cf34f6357ef00287dca17ca94c98c01ea5b1329dfb88b2040b665a2aa29ad33d0a89dd7103b0852e59e671d9b9154a12b71779e6a1958a7cd78c281301b612a7ff9b82803dd6da5cca7c1c152cc0e3351bb393e0a5f034db4e5467420362266703946e38f7ee69f0116c0701c86aa42685d36ca09e3723c0634686c2cf8cc1deddf82062a487ce2b8761dd0f828f9388913bab65e1f2a3466a21525d494ab91f86fb98b87422ac4d3107fb974e74d997c6aad80ffca00bd56a774e320c1ba7e952b0542a3483d94e716fc9815c035b9baae6dbf5fe2f2420235cb73237e32f194ef98e20df5cf504bc4561f175c597319c93fcc7071c1209dcbf4ab0d04a0c33fd46f57558f6a11d8c7db361613dbe94566204efdf44b5a98f68a8b8379b669f0c976bf95ce748f800b796a51ccc639e44940d4070e8f94aa7fb63396a65801e52708ed16772dcc86ebb8423f14d4508560ccfc8c05e72e658bd42199867ec97bb17f8e4b85db841ca744526f26d9c2173ea585dd28ef624e618e431eeb946a352c9c95faa7883cb3336e1c9c02b4494d0fcc0262992901b9607b74c85e4d927ca9ff8182638836c30866ca5ba1e654204f5836390ad3edf551d69b4aec7803821bac6afea21575571db7acf29d3d261a8aa739ff529441b0a96df373cb6fda65d41d549b4e55050740d680c598ba2e3b2735b41fc8c98e09398c0b88ab3e1e474c3b2ea708fb1f767f446cce5d8ef8a4dd03cacfcbdb7d777e8afc4f4fbe8bb58001380d1be6d8a237c854d3561e2ef64e4e9a4fe33ac0a7af887810555289435c920a5917e4c000c95396ae956f234509e9032674b93118d624b1411603f153c4d424eb9c2e64e87d4678fb258869148eeb4f36d6b61c4a8259fe8c0c6aba6aa505c5c0d58bc4f0a57f29d4638ccfdbbcbb06bf534f55a575c49e37fd2d34330537dfdfd03ef5b98b21ce40c6919f4db5e809d095a14d2c097c87008e08668d7722d7b52fa9d4f4c5c1e321f53ee060c8e5a65e70ee2"}, &(0x7f0000e6e000)=0x1008)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800000000000000, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xfffffffffffffffd, 0xffffffffffffffff, 0x1)
socketpair$unix(0x1, 0x3, 0x0, &(0x7f0000c9b000-0x8)={<r7=>0xffffffffffffffff, <r8=>0xffffffffffffffff})
connect$unix(r7, &(0x7f00000bc000)=@abs={0x0, 0x0, 0x3}, 0x8)
sendmmsg$unix(r8, &(0x7f00000bd000)=[], 0x80, 0x0)
close(r7)
sendto(r0, &(0x7f00006b6000)="2ad4a80d752691837db2c35a7dbd1f3eb18f73c70985c5de20c11c709ce2d8d85e087b09f4da8c861dce231c829269fd7b2f1470cdd85c0bc315b015ea0d2b65b7946fdeb5a54ce38c03cb65ff77001853307032a4fe315bfecedef728b425480d317f3c09b8ee50448a3cbe428e0f89d68b72e49c2aabe214d2dfac29a18b95db5771bedcec6781764887d8b171cf2a0163dd79c76b85273bf136f1356f27c9457823f77d731c6ef785f64b171dd005a25626284ad19787fb9303b4591c071c4e566c957e291993cdf829007d6b76c1faf2f36b4a272dcf2acca232593ae5e4d38b0598898bc0209bcbd9c8a955a2db206854e686ea5cadb2ac9c09a3bb0ec437915ab4d87e3d81b9c450c3a8b4fa85f0b2cc2c52cdb8e77b1f9d804a2098d8d9766572e9b0f07509dfdf602c6c8811fb11a4159021b368f25b15d512d8c70da177c56b534b5d1cf98726192f9f9bae1c17545d21e9a81b72d9e988eba0cf071a33951f700f9759ef91febc58fa5cbfe95dd7243531f4e80a2d9277bcabbad51ede7433284f70d6ad5393ee905e34c418eee3f240c18d184e1c1c531646191760470737b863b05bc98a400782d7bc07c334d5bb78450ee4e22c4b91a21ec0d77a606f543571ba21ac00a5b84088a98066389293676ad9f9c492ef123d9f22c697f23f397deeead2f18676c270010ce459a93c69db2048b4551d3575e0647fd5c3acfdaaf4e0ba4d547f579cf26f966ef5766dcb00a479981b70b86230b850c2c04f22ad0cff79dbf74d08c71445639076844a95a143f65a0ade1492852ceeaa27482a8d39ef8586ca64e2acf88c0a816889e068a7653efc29ebf192c8a0ca7056298d7beea4665bdfcc57a7a829525e7be13d1be44e2f58755f2de0953058643bf351b1b0bc4ec30b26af24e0ba26eaea8fab4c9033138586c23ea019f616c833f7a3883e244e90e4b31b94532e994a8793ec056814617f39c1b3f42dcbe5ee87ff3d8eaac88a9921a06edaa02cf44b4a5efc990017858c0158294743d56300f125147efbe9e121819d44b6840dca2429756c06a5031525c42877ab3198cb525d7da1baddf88e3f394c694c93b069212ce9d4487b8b67b5e05833b1b8fa8ce4c4610bebf519374791457035cda67a4ab4b4bb6cd53acea4a79a7f6101fa2a371c7b1cd42062639125e3a7bde728070f137b2fb177969d3833676d866707514112c23eb9e6e4e7f7c179ae9947c325ba222356df49a78ce27a7c4da1c741022bd4e05427cbd5c4393854c05a4c1e415375df08e2d36424411e21fcc1fda7c8c761affbff98ee500c0caddb6e40b4a432e08854c471e73fc16ace3c07342236b37e1db25c15ff6d5110377d0bee898acf4b5e2373bf9eb095c6b3172a855a01122abe9224e971ee33e09447baa6779a7beed518554088022f3e9ef05bfd9e242a6c31ac2469555edeb0042ff983eea08e87333919ffebdd706c84dd0c6a5387e3829b3e0ab936ad14b685117439627af3", 0x430, 0x0, &(0x7f00005bf000)=@nl={0x0, 0x0, 0x0, 0x0}, 0xc)
setsockopt$inet_tcp_TCP_REPAIR_WINDOW(r0, 0x6, 0x1d, &(0x7f000027c000-0x14)={0x1, 0x20000000012c6, 0x1, 0x0, 0x4000000000000003}, 0x14)
dup(r6)
shutdown(r3, 0x1)
getsockopt$inet_sctp_SCTP_PEER_ADDR_PARAMS(0xffffffffffffffff, 0x84, 0x9, &(0x7f0000dc8000)={0x0, @in={{0x2, 0x1, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10001, 0xd0, 0xfffffffffffffff8, 0x4, 0x2}, &(0x7f0000330000-0x4)=0xa0)
getsockopt$inet_sctp_SCTP_STATUS(0xffffffffffffff9c, 0x84, 0xe, &(0x7f0000f09000)={0x0, 0x401, 0x7, 0x7, 0x2, 0x9, 0x2, 0x8, {0x0, @in={{0x2, 0x2, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0xcc, 0xffffffff, 0x40, 0x356}}, &(0x7f0000fb8000+0x3bd)=0xb8)
2017/11/27 06:13:09 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r0, &(0x7f0000465000-0x58)={0x26, "736b6300000000000003ff03ffbd", 0x0, 0x8a, "6563622863616d656c6c696129000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat$vcs(0xffffffffffffff9c, &(0x7f0000693000-0x9)="2f6465762f76637300", 0x400000, 0x0)
ioctl$TUNSETPERSIST(r1, 0x400454cb, &(0x7f0000df1000-0x4)=0x4)
socket$inet_sctp(0x2, 0xfffffffffffffffc, 0x84)
r2 = bpf$MAP_CREATE(0x0, &(0x7f0000001000-0x14)={0x7, 0x8, 0x26, 0x800000080000404, 0x1, 0x0, 0x0}, 0x14)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bpf$MAP_DELETE_ELEM(0x3, &(0x7f0000cbd000)={r2, &(0x7f0000895000)="0d8628531ff5"}, 0x10)
mmap(&(0x7f0000000000/0xd17000)=nil, 0xd17000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = socket$inet_tcp(0x2, 0x1, 0x0)
mmap(&(0x7f0000d17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_inet_SIOCSIFFLAGS(r3, 0x8914, &(0x7f0000015000-0x20)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x1})
mmap(&(0x7f0000000000/0x9e9000)=nil, 0x9e9000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xce1000)=nil, 0xce1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = socket(0x10, 0x4000000002, 0x0)
mmap(&(0x7f0000ce2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$bt_rfcomm(r4, &(0x7f0000ce2000)={0x1f, {0x1, 0x652, 0x5, 0x80000001, 0x1, 0x22d6}, 0x3}, 0xa)
mmap(&(0x7f0000ce2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_inet6_udp_SIOCINQ(r3, 0x541b, &(0x7f0000490000-0x4)=0x0)
socket$inet6_dccp(0xa, 0x6, 0x0)
setsockopt$SO_BINDTODEVICE(0xffffffffffffffff, 0x1, 0x19, &(0x7f00004a5000)=@generic="61f9526bce41dfd14f19fdc4bc78d87f", 0x10)
recvfrom$inet6(r4, &(0x7f0000ce1000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xde, 0x2000, &(0x7f000009f000)={0xa, 0x3, 0x596, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x5}, 0x1c)
mmap(&(0x7f0000ce3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmsg$netlink(r4, &(0x7f000061f000-0x38)={0x0, 0x0, &(0x7f000047d000-0x40)=[{&(0x7f0000699000)=[{0x24, 0x26, 0x21, 0x2, 0x0, "d45029db0300000000000000ffffffffff"}], 0x24}], 0x1, &(0x7f0000923000)=[], 0x0, 0x0}, 0x0)
ioctl$sock_inet6_udp_SIOCINQ(r4, 0x541b, &(0x7f0000c84000-0x4)=0x0)
r5 = socket$netlink(0x10, 0x3, 0x0)
setsockopt$inet6_tcp_TCP_MD5SIG(r4, 0x6, 0xe, &(0x7f00008d2000)={{{{0x2, 0x2, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0xa, 0x1, 0x1, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0xfffffffffffffffe}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0x3f, 0x4, 0xdf4, "e04f389b5141c94dbe03bf19e8663824dc281dd2d2cb6882daf9ec95a2c7e5d7a3e42fa3134993b8c4cce7c981731ee42cca503f127d56868872849ed712b0d5e5bd7d114403987cf41b4907e1cc3cfa"}, 0x160)
sendmsg$netlink(r5, &(0x7f0000012000+0x808)={0x0, 0x0, &(0x7f00004bc000)=[], 0x0, &(0x7f0000496000)=[], 0x0, 0x0}, 0xfffffffffffffffe)
[ 1055.542318] Interruptibility = 00000000  ActivityState = 00000000
[ 1055.542321] *** Host State ***
[ 1055.542328] RIP = 0xffffffff811be573  RSP = 0xffff8801cfa0f4c8
[ 1055.542340] CS=0010 SS=0018 DS=0000 ES=0000 FS=0000 GS=0000 TR=0040
2017/11/27 06:13:09 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$mouse(&(0x7f0000652000-0x12)="2f6465762f696e7075742f6d6f7573652300", 0x0, 0x0)
socket$bt_l2cap(0x1f, 0x5, 0x0)
socket$inet_dccp(0x2, 0x6, 0x0)
r1 = socket$inet6_tcp(0xa, 0x1, 0x0)
bind$inet6(r1, &(0x7f0000673000)={0xa, 0x1, 0x8, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xffff}, 0x1c)
bind$inet(r0, &(0x7f00000fe000-0x10)={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r2 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = socket$inet6(0xa, 0xffffffffffffffff, 0x81)
unshare(0x80102000)
unshare(0x20020000)
gettid()
r4 = syz_open_dev$mice(&(0x7f00004a1000-0x10)="2f6465762f696e7075742f6d69636500", 0x0, 0x0)
r5 = memfd_create(&(0x7f0000a34000)="7b00", 0x1)
r6 = socket(0x10, 0x803, 0x0)
bind$netlink(r6, &(0x7f0000088000)={0xf, 0x0, 0x0, 0x0}, 0xc)
write(r2, &(0x7f000062d000-0x26)="26000000130047f10701c1b00e000000000000000100000009ef18ffff00f132050014006e35", 0x26)
ioctl$KVM_RUN(r4, 0xae80, 0x0)
getsockopt$inet_sctp_SCTP_PEER_ADDR_PARAMS(r5, 0x84, 0x9, &(0x7f0000e54000)={<r7=>0x0, @in6={{0xa, 0x0, 0x7, @loopback={0x0, 0x1}, 0x1000}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1, 0x6, 0x45a8, 0x3, 0x80}, &(0x7f00004af000)=0xa0)
getsockopt$inet_sctp6_SCTP_AUTH_ACTIVE_KEY(r4, 0x84, 0x18, &(0x7f0000c7d000-0x6)={<r8=>r7, 0x894}, &(0x7f00000b3000)=0x6)
setsockopt$inet_sctp6_SCTP_CONTEXT(r4, 0x84, 0x11, &(0x7f0000b35000-0x8)={r8, 0x5}, 0x8)
setsockopt$bt_rfcomm_RFCOMM_LM(r6, 0x12, 0x3, &(0x7f0000a6e000)=0x2, 0x4)
getsockopt$sock_cred(r3, 0x1, 0x11, &(0x7f0000000000)={<r9=>0x0, 0x0, 0x0}, &(0x7f0000000000)=0xc)
ptrace$peek(0x2, r9, &(0x7f0000001000)=0x0)
mknod$loop(&(0x7f0000639000)="2e2f66696c653000", 0x8000, 0x1)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x553, 0x104000001, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x4e, &(0x7f0000012000-0x4e)={@remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x86dd, @ipv6={0x0, 0x6, "43f087", 0x18, 0x3a, 0xffffffffffffffff, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, {[], @icmpv6=@mld={0x83, 0x0, 0x0, 0x0, 0xffffffffffffffff, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}}}}}}}, 0x0)
openat$rtc(0xffffffffffffff9c, &(0x7f000001c000)="2f6465762f72746300", 0x189182, 0x0)
add_key(&(0x7f0000003000)="73797a6b616c6c657200", &(0x7f0000016000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000000000)="de1cedf472b18e11f1ab9e3336aafda995d35e5d4cc4f26502d133dea22b8634be6afce1271eae25c942df9d3fd8756b9eef102fe265aeda95aeb13ba85446e9d645712e978698de20a4e30282a1c4620043947fc2c1e3379710a2f74b4c7657e44e77aa6329e669ebf89e66c3d569adaa6bc32e885858e8025da1ada9941ff5caf1230b596a55411dfe413dcc2b3d7e06e03420d7e018f6d1cfee180f3b7ec3c495d284f7750ea37b22fd2428f47fd90aef49269951fca725ba368c04ba51531c9620", 0xc3, 0xfffffffffffffff9)
listen(r6, 0x402)
socket(0x11, 0x2, 0x0)
2017/11/27 06:13:09 executing program 4:
r0 = msgget$private(0x0, 0x100)
msgctl$MSG_STAT(r0, 0xb, &(0x7f0000ee9000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = memfd_create(&(0x7f0000e34000)="6264657600", 0x1)
ioctl$KVM_SET_NR_MMU_PAGES(r1, 0xae44, 0x9)
perf_event_open(&(0x7f0000500000-0x78)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x237000)=nil, 0x237000, 0xfffffffffffffffd, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket$kcm(0x29, 0x2000000000000d, 0x0)
sendmmsg(r2, &(0x7f0000a7e000-0x12c)=[{{&(0x7f0000421000)=@in={0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f000017a000)=[{&(0x7f000021f000)="b688e8e73baa04484c960ba7d9f27150d2dcb8738479b5d9d00dd9d9508a1e5dfb4a79bfa7c0f689822b7c35f36b9a2453bba11e57e5c82036fbbc179e606ecad1be402253d724bd4377f651baeda2fbf994540f910dab17c8ea3eb4dd53bd0de500d4b706ee132c790cb145152630fdb99efa7110bdc871bc9d0a89", 0x7c}, {&(0x7f0000757000)="c153f86b9f61f3efa391ef30a26d88a8061a4f4874a643bfed266835b5", 0x1d}], 0x2, &(0x7f000026e000)=[{0x90, 0x0, 0x7, "aeb665c51db99b991f20d2fdd816a14a970b81d90b72804fdbf7e39734dec4cfc307fabd7f73e20dcf262ea07ce81f968964bdfb1bd7c1310d8424f3e9f292fb0b7dc09dae4de9d822f8bcfe3c4c25af1b40b9f57781c498b8c7707b8ddb7c37614785a1d832a39cd58ebef5e7d2ef92b6d30bbaf03103e592d5"}, {0x90, 0xff, 0x10ac8b7b, "a7f49dd8734a0fcc1650ec343cf1b74f8faeef3708607e3dcf47d02ea277e33008a1457300bbc6ea706fe353b369bf72f59478ed949f72325ea78ac72bd8bc724e24d943402499c8cc7d652fe0cf2e56532814d5d76037555b0f3d7ef9d1c0dbc0010d860cc23ce647ee5010dbea1bc642b6b0e142a8291246a128"}, {0xb0, 0x11f, 0x6, "3ce5c460d41587a46e37a8aee3b1743efd9e624ed9f4e1f6f4b4b6e6df3d01d7356abc079523c2395f7267f4ba76a69a967f7ef8c6a9ea643dd21e7a2f6c762c9e62f362778ac8a9b25fe60d93c5a1c89dd4c4c457c9a3ce45c75c2901d3374a50e85ff7602796e9b35e9d154bf86125071a0b88c8b758cdc244a4006ba4c6e5a4cd94a144013b3ed006a1d6109ecc8eaa2871035155748a774d748fc95ec4"}, {0xb0, 0x13d, 0x6, "dce1bfb52f6cdc44ecaa6d49fa6e79c2bc7c048611a497643345ae5c6fbc5a8c3366a2b8ea82ee863c1c494ad09378d5b6cada0e3d3af413b3e5be50fd0213f6d3eaea49a430faadd3edcd79cc805d066503ae0e58243076b0295385e9d0bcc782f2732f3d3757d41e9c87434179c1fb63b60d92ff5196ceed3ae7d19985a4e7884dc5aade4fba047c3c66812786db9daa29a353f803f1c60c09e1ba43d4a798"}, {0x98, 0x113, 0x6, "975cc582c90131a49e477ad40f5514a04ead3b03238b2ced09cef5c9c3cb6cc7875636659c7d339fafb55c40dfdb3d964cdb4cb6b4d69f0ce9656493f1b66dc43dbd397a1c2b51f15057c2062bed0abb19c6f01753c9abf110e4655fe92efbf469cbdf78dcfbf556b0ed79a6616fc1d6c2137f2f92159df835cd1fe92e203f58d01d"}, {0x90, 0x12f, 0x100000001, "342b5351ab4fd0481d86f87c86206afcb5f858bf0bc3ec8466b63d9db264a2ef414cda62183fb3bcadf0cad9e615977e9a8a6d94aa82988845e82154ff6b8eabfc32725ea479ce1d0ba1350664c02d57d0fac0f493d66bebd5d85ea195fa15fcbb2c1ea92a5098213ed282f3cc68c406ed18e70031f5306a0ea0840e22"}], 0x6, 0x10}, 0x80000001}, {{&(0x7f0000d4c000-0x10)=@nfc={0x27, 0x1, 0x7fffffff, 0x5}, 0x10, &(0x7f0000609000-0x1b)=[{&(0x7f0000430000)="a8cc9037aa464a4bdcbed8a2e781b1181ed52f060c821603c787542ef78ce770996129bf179318f496caf045d35fe70bb8747dcb7f285b344ebfe08f238b527f3e15f246edb8d6f594b2ea37782f8fd5c3d3928042be1a72ed7dd06441930eed2848559a0eaaae45071ca523d2a9b6cb9f1fde9aa6e10eaf07e64046099f8961ca6e64c966256c6d098fa88f9aaf95d5d092017039b276dc7e7e79cac448e6dc50040fcbeee7a00cd6edf2cac7457d43f21d4f84e7", 0xb5}, {&(0x7f000057b000-0x58)="d4e03c8f4bbdf6a7cd3fd5c02202d190a7e9ea88a5ea2a8856fd24ece1da18fcdf752f419ed0d0edbcb35c82cfc24679e2d66f294d7e44bf26db9bf0abdc97af054b68f053de2795a192b92e9abf531a8a479cf70be83b83", 0x58}, {&(0x7f0000191000-0x42)="4fcd85e5abc83bf4ecc66d59ebdebf605bc514d7c654526a3a9a93ce5d5f0eec04ebdf9193819bea2f43a06ad44d1e25f8192ca71679c1b71bbb4992f5a31416d470", 0x42}, {&(0x7f00001e4000-0x46)="8a99729e69a723ae63a4eb94a1ffcd890a549a47ea666cb471f526613d999ace1f69cbcfaa8b476e9836e135afd47e023dc563bb7a539f12ce79507f51ad2ec467e62ffaa506", 0x46}, {&(0x7f00004ea000)="9be16a8d5bda75edea8ac64baea86b26f51b972892c3656d0be0623693ac5489d8954e5781e32b33f6135dd567747fe936c5ebbe29dd4404edefc6c7efaf7b7aff9cd549536875029b7ed6cf2ed425df08e288f2f712dc327cd1f70f9cc406d54628e5e6b59380766b17d02fb968164574baa03639d3a5a80de34065ab14d372fe92c86dea1d317cf970ede16e1398b7e1021f5095b17f76e73aa426236219e813d9238ca538af0959b5517eabc379bd31d72e6a84abf3f3d840eff0d5ad12d602366c9a1bb99f7f217fabea35b8d2e220", 0xd1}, {&(0x7f0000ef1000-0x33)="13b2da035b027e613afac025a452429c354bf806c0952e79c605c00254bc18300c5173504934c4b9b1c9afe182f297fa6672b8", 0x33}, {&(0x7f0000324000)="ff65", 0x2}, {&(0x7f00003e2000)="", 0x0}, {&(0x7f0000f07000)="6753cc3ed0abe63748705d0c4f198f6a1cd3f25d2862f719c5e5ad92596281676410031a98cc9abc512b4d7eb663cc4445687a3fc3e579264e633464e93b8aadbd209eec2586257a0f4697c4172c43386770a5426492e6db8d82d256378d1aa1c0615201ce19a4cabe90d1c995eebe59618b8903b49d63995aa7d08efec932335b50ea08e02f80630fbb8c1b6692163cd629ae81d966b84a2146cb6838f374a498360b16b43cc06aeeeee6554071823fbd5a93be9f3e2a596188138b5ee1e006af4a8f983673f3aa017e027111e8f05fee5df2ce7b5c10d396e2070998172bb8af5a21dd7e81ba6f7861c202f487671da5b43a361d2a270d8c0a98d019db6edc63c86fa4fe3233d8e670f85fea034d40c28db40ad76a7905a013400898968728a1fe09a232a76534df29a027e5f97550e1b58f55c7c79002a28125f38588c3d7e2033a15202d73d500c4501feeaf86385529479308bdaeb73e75b4a2a57a62d6e5bcfa7ed8b3e967bfb9b5c86a946381153f4a89c6b9d8cea80394beb95cb6ad08dd0589a089e6b701cfa96b0cd49961078030f3ea69217876ecee09ec5ea1b301dcfff5aabe4d6ddea1bd368008232e0daf7c7fd15472f93e9397f43881d72e5391cd915168ab147692050cfc4bc24e1a4801709b56c3885b80f4e9acb60f14c2084606a79fe8b50c45ec60bfe995d67b291752b4adec3f1b6c559a42e4783ccbb78b3c6c8ac443c62c8aba50c4c6a49436ab902d6f991e0cfa23d3624506cca2fc88752f7cbcbca2d55f390e582cb6a16703c9a486647d64eb7a13782e2d3a09927e3e364ab928fc08f3deb3fd47a1b2e5029fbfefc049867548e8b8be7dee8c2268173feef4f6289b8103bc35e47eaad71922e1cfccae4d6c4b0e2bebfcc891195ae35561762af9f5814a2285a0fc16831cc86f19b0351b353393a797815681a66d55790fe431be0db105352f970924a61f6488909adbf0b1f8f4c49aaae38f5fb14a99761f31890f5d2ce3f7da38b9dd95812eb50105bb472003d62f7f1e9f0551e29f1bb9d344e89b5b7cc3f2e53d718a1f6c5fea0afbd7ae2554348e2e0c863fcc8f7417da2e01c2960cc52336965e762b7a97e326ccd9b7e89c30cb76ef24cfe10320199b9d0e6b34bb53a5f52a95ca03d23f50529fa9dff7503910db10c244814b5ff6dddf27ed6f9bdf4cd2ee43c89c695e57463395d90cba22daab69218901d2f3c7a6ba7ed433eb05fe3f7b412c3f81b9f4950a68a4199a445d857db3794cc94604acd8ee943108a03bdd7d216e21aae66318ab1ee906d3e55c83ff50983df6e2efb1fa6c5422422ed0d77fc83a751228c622a673af568097067cc51e25f71771f85994a57a6289271bbf23dae977047144c7351dce16889aa4e316bf66350a156d03d565b22dd76f90879ecff83b4bc19330c032f187b91e76f4c23d6634ddb9cdc8acb90e2e2e78629bde89061020026d556ec5f6fb18e3f376c863efc89325ac5ab8d1e6b4345f7fe6bef0956a37c7a9751b91f817ebcb6867fd709b72a2bbf55c988b0a9ee1e6108c042814f92e379e114934c12f53141b188a7a8035262ea21e72bd5029d180c66fe214b2b7706c12d4a1dd513778f2d2a13c03b75cbc3e76976a69a2b271c6fafeed807d1ed32dc3699752020c6035da446ffc60a56c640e60219efc9c041b860e6902ef582cb62c752642540de0c01c5cfae7df7963071feebe28766b8c6416b154df4006c6e42045c5e0b4a54d85f0add87dbd3ed97b9b3dbcb668f09c2996bb663287d54fbb4b883909f85ac459c5122d0b25724b2ff2523d713827b750279a9be1a1eec57795bd79a4add2c8d85cf2fb8fd39f873f33f765ccf2d9f2f21bad545de51e7d952b68a2d9d4bce3b47d1eeb0fd33486f19bed5db7ed74dadeb1a5d9888f08d18dc5f03446b15fd36f141d1344f5a46d4612cc130bcacdf4764ab27601a5fbcc0a546ef82aa6ec5a9df6b593b1f6b6d88907afe30c120d8a1ee7fc3607078a9b0c9115404a61f2ec82a20bc13102c87ec90aa29085c19eebac08c9883899c904c4aa41f6faabb7bfdfc6f030f303c24bf45de6f4fa754013dfff989e26276133589c2957624110b0e9ea9465ce2c0a4dca90f8335911bc4688636dce479f68243d93475ca6bd3bd6f8ad960bff707eb83e6c45f58e2b3b88943045da6780389a125298c5edc8b8bebecdedb8c0d9b860bdd02a63f30737fae49780cde407d811cb06681433e37b7396d6326cba93ef34eb9800cd5406ac2b743b1beee44b1ff61a215b204f3fa69351d273e240bd6cc19f5571aa4375dfd7360bf2a6195515a6db9b81920907e2b0e8ed121666c9382178650c40dededb4bd984b5a6281c2e7d81ff2341db24fdd9f285e56cd279aa45906929a14be943d8fc0ea733d52a30ff1cda54d751b414b207c59343086ebff7a6e21dff46247d37854ea905e3aa742e5dc9fec44631ee32e5803c9c5583e49fa9ef0793f915b3d6aae8d714e2ecff381033284a366671f221cdd36a2eec0ccd339db4e55943c2575d071798fb579d34e4b49288499b0bfba5f12a2dbae0e43fb90110c03c59541dd56f21ccf9c79f9d8002960a179954bcea9170fe8a23e053ac09c31f7d247fa50a513d65f490e2ab7f73d109c5afcb05f18668271356964fe86c5fcc5876f6f7baeb6d55842f82e4575cce1657163db7332806817ab8dc55dad2004d84e3f9d5cc954170fb8547ce4ce007e6149bc18fc8f86fc57a5da220186f5dda2e50ffdc8a985f6dfbda4b370b819d7052aabcb3ed1a21ec287a987712e9ee60a11fa98bfcba3b94e8043bca4b15da47a6327e1a2e3be15afc9983fe350dac0bd654bc0c1ae1b743a4df1ef031be3051f5ec013679b5a90916aa6bc943b3c3ad0cd4511efbea560c03f7f1d0787593af901002a11d4e380a9cbda39292cba98dfd8aaeeafb3e9051551c143cdce35973024c093d0769d5eff804146a2d7936f01cd4dfdd20585fb79df3471ee7f46669ddb9fa7753a05d3dd572482117c5695f35003860363760cfa74cf0a9a180324c941135b4c4a8a42e2e3c8f40b581bfc21d8f10224fb4f6ea8953c9a85c42e73331005790acfe02fb03ebb932664dae5cecc1c635cbe4e654109953bd42738fac1ad4e350aefe7b9f2b689cea8d7c2be1e53182f2bedfc03b413e207312937bf76784cf92780fd0a25e2125b42f5855b825817e589ee3e209772a1705fd594e8730d42daf92ff4d8abd4f25af5a5a5f7b3a38c5fe4520e97f3447aa87a4988a1562218659e38f2e5f7ac3ef98b29574dad30e4888efc7531bb510eb005b908fefbeecbd936b37dae5d439bbbd2ce3765388b623b326df7eb7dcf83c259e56c46d568dc701abf3c38ea4a9c07bbb9bd9bfac9f10587f6a38589472a62cd6a94db3fa40fcde5161641bb08c8baaaab2416ea6e92e0b24e5749ef6ceda10434c8bd75c724cfbb3bfb2810d69a676b220626558b0a561e2e963f68be69639a63857730bb7c6b8bb330bfaaaa7e93b2aa140e82311cc9e3c1c53ffceae4df3475c9383f723e9b61bc5613bf31e94fa4613e100db615a9c28b980cc27a5ef7194373e6a53e71146500ea85c67194a2f745a347cd72fb0b847f16d496409863031f7cbb226f6ecb218670d12f9ccbebc7192f92c340bac83131f241763b58d3bad8cdc1b0c522976c3d1214fb4380f210e079c66447bf9d774237b7fc5f329ec7c5c346b3f8aec9c69cfe9956247c180d86203d041a8acc3eb01ffc686957a38f04f4b6ad0af402ea6b774d516370438f77f364b3da92bf71ce1b3b937c5c9688d042544bbaf273675f9d46da20a3908897a3ca7ac3b506c5413774f7455878e6a188a3f1e5228f8013f273968d308aefe0f978c744418fdf01c03b3469b518abc5ceed5f959c69046e14b823c5eee0275071eb0120745396a11b0ea8ebdc7f13d2d47120032f1069a2ab584b7e0d756be43932b2b1a1ddc2a3762b9f6bad68ca304074e51ba805fb6c39198b200f414ad5dd9b0e4a9e8ab92d9a24e511940d14fec8a60b1049e2493e3c182388869bd930245019c8aaac759a6db997acb3d0c7a5c8fcc3a712a8bd6c2ad38ceeba38447dcd86ea4048931bd524e1ddd0dcf6618637765f2c80190521a607a8a752d2ccd652a1e78183730f5fad229e6023860c9866ff537fa3c972ef7c788f3f383f54b0357adfade634d16f4b1b165df30d75e4ee79335743cfc5f17a11bf935d0432a44d837de2faba7623a98bbab0f00de574cc292cd7022695e5538b43fd245fb3cfecb94be2864ea76ba804151166f314f00de7a235f03f8f91c92be54353479119f929fc2a593d3f0fe21406a4e1a7d8e15b69fe3f2d3d91036310d61dff6002ee3ec2a5f1d59bd7c0ac2604600f43b7040e1d0d4cd5f0370f314966de51486e431ed65c20ba0c6de13afe82728f9fef5d26c99e9add1fbd6020342b2c4fbb267aed967fceb2a717d440c1241541bd57b128eff6591b7a198ca6447ea9cc940f81190ac719f4c14af7631c42f18b0dbb9aa803771a18efb01174a8762f523466866edb37030d2b1bba9768d7c1de0ff52806f9638e77bcc1cff8914f82760093a611f293be23728fd5fde28b1736dc19375aea8e61f5d525fd70faef3b048f75e8e97ff3bf8673e4b110f6f7a093ad2ff62428743e65fdae44b27234c8a1ef8ab8ca88ab673cb570c706c0713dbc39e929bdeb1f2ea9e951217378a1473fc188d25a12be3fbefc3f514ea78a8b26ab35d1cb9e68425ae9f9fc78cffbe350369428ff0f4d81907c91420dea35335d651b42c43ed97b3113bf1939867c9ff7eb84188fd98b4068afc3239bbfafc89519fb66efd2a227d4be0350edcbf123669c83255c372a84d3c497b3b19b5612b6d192d827241b00fc4dff871f86a4c99d644ddffac1cc21b69e8a1dcb0c453a0019ea3f73228259abca97468e244791fa128db2bee149bc118391e6b1d6621c78d796cb2c611f13d728a435ed9689ddfa03b26bd9327c01d50534d3200f5b02b10127ece84cffa78909635139a0263fdfe86d6570f3c65a63375ce95fc8d037c627c47931fdefef36f2b6fad8c663ce41fede26ad2bde09d9200cfabd3e399145154644fb86f9c06654e192ec92a4bedada7b129b0780fe91024591f08de152d66526a21091353db1200e6a7de32d887aee8f047cb05932b86023a13d402b5e37d0ccef828e08a88df9b3363461ddaf38a7f83a3995d487b3bc7eaf76e23bf0771d909142597400751ad3c90d1879b75b2524a1ae8354c51d6a2f3a75a20924697cb164a9995ca931640eaa41f63894f52684d7c5e2f134f0c39ed807a249994f51d3a6a2a54a65363b10483b30703ea07858bfc5e38b03d512100742209804eba59e5a6f405c94f18516b97b963ead47278786b81f500cd2a4b40aca1161f43fc510645ee4724e172507457a9f4b463859dde66bc5bc0361c6d8a4dd53ddaaaa5b2629112b9dd3ef0f1d7de59c694e20cb0e2fc4ff4670344b060289d433385bfad09f4b0f45e6ec3f47081425469332612de13acc0871e331e7052aef20e9b264083cff8bef031c09919729de975b1fc0a3270240cdc794cd5af1ddceecf44a6e89c3c8a1d82f61ada8e77f62d58c271b468f908fdb147d166ce1b3325bc71c6667f8e077fe85e8dc7368b0e232011fed95314e24d9b55904979a69f1beddbee09d74aa680ad5f304148c93f8d5a025d2872feddd2a2e39cdeed1e38143270043408fe3e0f47741d4993f9de", 0x1000}, {&(0x7f00001c4000)="5992c2b7203337ba2e1c5c0d03ec721570ab93a790bc769eb322f01a36c06bd87cf55a8a083d1a91bc91becabc41dcf24fa577ae9832c05fcc64b5731c7ae5cb70f6b9d3d62d923d23d8d40af2a4f58b7e67cb4a6df89a7ac4fa2a0141310b95051931169b92e3918a6c0e45d1ccb06da5fef1aab4f649a2ccfcb9ead72d8909ab568dd95c82328f44ec5537fec705605aebdfc01241c7", 0x97}], 0xa, &(0x7f0000bb0000)=[{0x110, 0x18b, 0x8, "97560c5bbf15dbd5720d5bd9c448b70dad4d0cad6b5ab7ae4a939bab6e60c7da0a8ec3079d1eccd27cf56dd57bf0c3acc0c3790f785b71ac70a7effbe8261b39b7edff95ccdb663c97961edaf390d96fbea5d389e4c34e4ff0338b611e1711f1ed1a71b53a22aae2f2278d4a3773225e4d80e65c5555c091cedba7f79cf6631f2e478aaf2bdea643a74900dd6bee1f146f99c1b5c4c767eeaedd28ebe954c1d4ee6d36c2d6d4cb7165fb8222ef7ffdd5dd3cbede641d6df6005ccb179743da2665104a443e8312dbf36155f70ee258e93461c3a856698ed46259b2e1d064d4efa23993957ce0ec9bbd0f6a184c740a6e9eb3e9190a77e85ca9"}, {0xc0, 0x119, 0xc8, "9b2bf64cc2411307ca878bf53cecbf4081d2f3ee8132947a0ce3b80abca05ba8d3acdd86a70984cc6b087a3978f3047503a8503df688d1e621509fe089ae92beb660f7ae368d2ae515c3b59230e545c10681436044944766ab5a5ff4a2e36245504b42dc57701be9eee54d9d00113a83b31475bec540c3e2db80edc9fe696dc24b5f2c0a384f880627de3f2d5fbca28c0c5350a42179ebe3794adb3d4d83cc32b9f9cf652dbe249d0933e7ba"}, {0x48, 0x11, 0x7, "1c1cb65aa9ae1a32ea3fab51798d198aa8ec878e36f7fd177f460bb016ff07357d6a92129f9feaa8ff1e048548b8334c10f1e4a1"}, {0xf8, 0x88, 0x400, "5491e698aa8a97e342a8a58e0f95f64f28f34c3f5ed1b621b8a2fdacb831300f7dd8dca5eb5c12f80481bd8bf0ef78f1e02ce68bc4aeafb5c3a7778831dd573413806507fffa4c678faff1cc7a64023b1cb79a13ae87531827b08a10aa0e724463d094bd018abc4ce93d4005d6e156b66ea06e0cae63680d42ae90ce9f07f98d70f21b8a4ab6c0572bc419d7a180e6f2b432153ed29e2dad8d7778e61dbc0b9db2274a712d4217f61a5e516e68738fe73b3f54df7453b99ae2210db1f50848c099b81f42b41a24d5d524124aaf00512085c26754297c08fb9a18469501110a5cf432"}, {0x40, 0x105, 0x6, "72e9565aa750365ad68131b40e846ab4e2cbed37671074fcdb3963041fa6dcd82ce246b9b6ded7b3d517a85f741f"}], 0x5, 0x4000}, 0x41}, {{0x0, 0x0, &(0x7f00003e6000-0x60)=[{&(0x7f0000b00000-0x1b)="3202e63b2fca0d2371d2d0ea884345465ac82a13f47fc3da4a920e", 0x1b}, {&(0x7f000059c000)="563cf3691d7815447e99b27b0969eb1a78c9fc4462c1ab1b637bf105d614f4d5a25d263ba05b348676d75e458d80f938a87dc2d7cad0d8e8031b7aef676e24ad9d56647a7d8ea096f5bf8692c4ef394b30391d80f1bddd7a8519378e727eb65c20352f46156b422add0d6034e2d548db602057efacd4d47c83a6003ad4485c7e45675efc38e59f30b4a10d2801b724e60fa7c65e25bf166048a542d41746066507da92f42d1c43ab7d39c767bd1fb5e2e72e3bc539fb7b213c1ad4205d6f0191509d6edb9b5364253512050e201db77cb66a2d9b0fa4eed3fa8d0e7ec5c2925e5eacd8823995179e987b991a7a36", 0xee}, {&(0x7f00001d4000)="522fd243a0db65e28a272dee4578ccb05cadb210eb3c77b0e720d243674564b73bba00cda62a16443c13edab93c007d8923ab1e99f67a2d9c3bbf8cc97d34e16586bb0d90d631bc2ba5885847af6346eb150bbb005cf8fdf299f1c32cc24268841d2b2a221fbfdbe81df2c7ee83dfcb381822dd9941599c8bee28ba667e730e03db95ace12bf9b0eebf12fbf851b66f73946624375ea8f", 0x97}, {&(0x7f000045d000-0x8a)="0b0f130765f6c556924c3fecc3e959e3e800e7494645187349768678e102c4d37ddeeef84e00cacf6af6ee660a7fb33a14335596af552136bb751c8e27daf752229f029377245bec1d4478c62033f6f3dc8f01192eec3029b13b4eb78b86c15caba5f4ade98d958a493e21f98b71a07bb1c9ebf7eeadd62279fbb1e6143e35b259fa5a989d9314c384e7", 0x8a}, {&(0x7f00006de000)="1f3f7246fdf570dea45a002dec9c870cac1ac9b2541f305dddaa4b2512bcd72acf7d0e7ee0658e21acdd4da306009fdf4da50928ed752a064313877f78c7f10b8808188fa6bae7f620baad78c8eaca47f7b13a4015432d483d10079e9ed3d76049c40d6b8099eee044ea1ee19b6bea686702de3dc1091f4b4690657fbcd2c78e2862738e84f4975b4c51d3d1b0b322a513221d673b042292f962ae15ea60b921f3b30d340dba42f5ac78572249e0c78f9b348b4543842a9eb961755663703675978afdfecb5cc38ca1be52a1c8d858dd0284565f3fed029071567d23ced18d26648537e8db05d14107830589b7ab268262e005b130e928f75f94cfd2438440c702f6693634f0f839f996ed26d131a4bc2f896d0d56a2e444d932687ff3af2ee66b59f24cecea37cff65844669f49cc72a3dc1561adb2a92ffd11c0d8cb34efe458195665d6a0851543bac46e9f4b0a5950edbf544aa6878e2136feea8bb5965e07fe89cc7ac72dcdb0e0e9ca5a96a06e3497da66d63172fb4360add93921f0655e9b70908d7dba251ad5708e1ed80493b34eeab5603796b857491055b1dd320be210d59ee968deb7a8922a6df87606200824934aee678855b548864214799f4dab012bc48ca5c79f8949b6daf944fa4285ab9163f590b355d8e0aa168b22bc41dde9cd9ca557604b07f8ce5f2693a40a04527e86e8a6d53b38f6ea0f086ae53bb6b877b4065220e46d7b22f7ad3ad663670489e05a8fdd157e725d0d5ac724804b30a39bf986cb967f28e9f306b40cd98c5f07dcda8275810d1852d0d740c47e3c8fd3030e84d5222aaff7d51700e648dfb3b2f3f9eb640afd5a6ad75bdec32a98c233bd4aba852be82264eb8713c14278d0b1deecab250a77fc05fc8631c16fec4216bbcc65531ed89104b3d9d8003d0b68c45e05b884fd39a154e95510e38d9bcbde916f482eb77305c2d8407b2429bc1c50ebe217b11bc7af30c940d0d750e4168f14e3dc48cd40d32a22aefee20650893eedcdacf00d2feec873acc0d322a4f83915578cecffa7acb15bc9aec7d063fa5108a1c8ea5aaeb50eb9bfdfb498bd11878b402b9b81b38f1934efd0fa806f42feba3830f0da46e3d28667e4b06eed6403553d1e1c7ed4d01326e6b2a42605a190e388fc173decfd4cb8c593db715fc347e2e2abc37d0412a1097bfec3265e424004ed377c35b6fa813a5957c8e93e48e9e6e4f1245da1ea813b08ff9bf3b406cf895f2fff5f5d51a1589bb5f92c9b6b1d9ec9237b1c63bc62a54552a4654c01a4c46e7594502f9869cfe8c8bd595761cd9bfe8bcec7b8fd10f3346069347a5b202837f7d650ee72f04d8ed6d92b2846e9cbb30fe462fbb1798a60e03e0be8be7c654556d78b2dedac64439e6340a2c119cc6a88d10be2a07de74bb15386718fae994dee454449b7016339fcb9aae038993a717f7f92ecd9220730c600bdbc505c76f3c98051ca3ad22dad8f1da6819b068a60ffd07a23fdbdcbca622635197ec8f8e6f174f55e7fe69f48a2f38110d33e363be9481e36bb5c724b6a9ddfc4de4a3088b7e7fc73ee22aa7460397adfd5f647560d1ce9b1d9f22e7530ba2fedc8294476c107a2d0fff8db032d80e62358a2c90f2bc57e874745a70ca78f858ca248f7203fa48834b68c3ae60ad1e1f52004b3494398bfff276d80d0ce119d0c0954c7866396cc2222d46bd2f78b01f7ae196ae3bd23bf72525e7761501852fcda25d577d81a5c5e01ae00bc21502a4efe7a48cb9874af1d31a1863c44db6ea9671f1f85ee850bad3789d3f72f3fef5250201ee17ba5b84a0b9041de5d2676c630237b52239b47411da263d70716e4d34c6440523c96c024f45d802b8f956d2fc088d437500d0069ec706a8c9d84ca2e52941f85d2f11ba110dbb04d1072567c62dcdffe2543f6d344751b5200035bf14c6a8b5b24399b8b8c22127b6fe0a8bcdd902f7847e862cd835f5912269ea794f11d6762933fdb73e425de8ea7538588b43c2bc52668b27bd4ff0b3ae719ef49d3852aa3e4bca89bd6bf0738a9312f233524f1ebc5794eba8161c7d898b74fe6f5f038b9abc137b6a35edd6b6deb4008c737789ae21c811013aaf92d5a7db4be1978eff8f2f47e18c1a7f45360879c2cf2c2e8bd60e9a3488701894ffa9d32cf77021eab54b63d08bd2bbd336064ba4b72785815b8cb932a3a591e17b8894ebdaffcd78b368597f8bba802431512fea34fb2aa9629c7c4aed158a01e8fd0382e498df35c095cf0a0e6d3bc1bdf24f659ddece10eca173ad3a27314ac07ba538f159c4e5f7db830d0f54ca5e153bdc0ac4dc25d54dc7603d65eb9d0a198156244c268f02f48c10b608a4f2abb395cb7255cea0358d7889d5b59836e8181296459c7ea77140d449f6dd7474b75d8c7ddcd94030ee18ae02f97be803468712310051a7c7bff07af2a28acafd7f792c8a5180f3a67fac04e9137ae7f610aeb540e99aa9047a45f60a4c856bbb7a1bce009570611982e9d7a2934a5fb8dfe24427cbc31a60b2c551fe8cbb607d1586098a93c243e89814120d860dc29fdb4bf615b6864dd5c1538773de688b1ba6e300b8528e38573afa692e398a6bc6424934061fd1d977d430ad9e5f64f5795e5fafe799f4e6913e2e214092729b9caeb5bcf764679fbce5cb482624563e35172d27e8184b390ee71fac5fa4d725823acf737900c118d1499eb9c9af833dee56037064523cd969f413d492bf8d0f4dbc840038a0aba7c6fd649f329ad360ad17ff3d8a5c636a7e89c580418e4e2f39a4b7833b829371f5f331b266cbcbad0fba3491adfed9649f5c3e76a7cad8806c2fd953a5c9635769dfa399bc1755d8d0d095e71ddc3d5d5566e0c11dc78c761f59fbaac2adcdc31b57ceb4616fff4ac33362f5465b1e12391d1a5a4da692d7de06910af7e9f2c5df7344279d67cbfb9946ba0006a229fdd783e32ba88519182df15ebe4c99fa1d27d65a425aba43f9b0fc5ab306d54bf0655dd2cae226cf7d9a690822dcef1a26d146798201cc752e6ed2a50151ae9bed211862747ad9c9e81fb0afb213b30808a1c25f691bdb5f5759c38bff6dbdfbebb233e61b04a6b51d4fd75316f358eb0c0f3a99d2de911cb8c10bbec375d67f79b8a3aed83c6cc204ab6d83a4767bb638406665588d40e3088d4ed0938e005ec95743ba91ffcca758a7294b8ab5ea25686793d85f3ca07fdb3c2fb594d60b88038cf7482d6f61bf8cb0e8f33c2cba4ae4dea64b3ac7fb4bf13d7cd679879bee0ea133f5d1addd47f2815a55a405a7f2e5c229980cfcd861904757231b5c78ed99457b782d4b085fb21c480c0af9914b3e781d79fd682df0c49239bf5f43bd0b139011be0ce5950a0cc99340728ec9efacb32abfd1579d873c83106282c69f22f2bee56887081f9f1509bac8cab7d7fc71be749fe652e364e58ef2b15814a1fb5f33ac2b7da2a64725a9a307921f3f9773cff2d1746a69ac3e6b9f873ab0f84f8c3a2d5bda75412cb95786c8a637dd763c5f73ebc4fc929b072bd8956bbcb1b4b52f5012b4fd547675335cc249945f193002e60d844172fa95beaa99bfdce2c38f5c7b686b0eb9bfcd87b02ffe4581a34f00e1867ac842d25c94b0267d989014b97ea4268cb9062a7595e4f011fc2b0de401e2e65c9d797a47bcc5ec03a2ef0c923200a03fd7d568cdc020bad8e4cfd05768e905343490d12082b22f19d726fea09558ee97b4f4a4002e8de4720d1170166b6ec61f6cd4efdd403c9896cdacdc18c9dd750d77fa656533241b6a7cc9650275f31cf5fec40b386bc3badf6ce1d5c3f59190486b6bfb82d6edb0fde21ebf13359dfe8637f69ff821f4660e675b3ffcd192bdc3ab29d7369773c25419cb2f10c2b3bf5da6ea7f9b8c0c981a54c3ca9744b1f866aec68abab7db8ab92eb4ba56877ec93e905cbbd038cf5c2007903adb63f901023af6903a7d01b19d18c7fec2c9f65e470c2b6270c9367395c4c4fb5be2afc9c2e79a578dca28549cf94ec8552fd3fca3dd9c0ea7b466788e125ae46537bc74d62944c22160f84091edc84774261a5fdcd047a094ed85c590d46cc35d4eb10674a5f41d921975ee4bc4120bcd46d093a692f0f5d17d04f76c1dfb20214a614073eca4d7712795d0ae3ec092ae4251da71d5e98abcbc664f77e35a52aa7dee20580e4e86177067cea470b8104de17f9f08665c308dbc963cf4aafd225f34e39ad41b41f3699b6276e4d85707e3178174155122666a5709f698e34cbdee062b4ab76d45ff795654c74fe25145791be4985b4a03bc19bd7923af5b1a13fdf2b2fc6bd4e772558340516b5faf13face457d7b6bd7250bc9f43c6295584438f015d0c38838d4ca0781ecab734af14adfde74c655729183566f84014eae03f7a53298ea08541131f476b01cdd3b8af75b4530b65913ea80dc0ab82d84a157a3ff9e856e86800538451d740b1287abd44ed52bdec78840b2423ff376ebd8db8a616d6d4cacbd669bc67d16f3972bef221430cddded66fc84370399738d3b52c4aee291b2574eb75add773f2437b3b1cb83832264f8ef7f18c99f8195db6f58b5a6d01743fd1a6c5f1ba1183a162b039dbe0b0307b90b2f439634094491a46fc1b09c9efc0fc687a99e62646352585f23d11321398b787e6b3d01243421b8254b1aac2d03c7458692f76e6715be1a3d599bf139346274ef9459e94ec8b68f9be59d7c091895431dcc7f9c48562db46916fcaf7377bdf7c450c69fac317f3dd2460cd835138cd03d595ee118b2c608f48b766e613936b42449f15096c7bd1806fee05c476bbce94e57828d97c0f58374119a4dd59189f900de6ec8b348d00dd39e74089813691f061adaa6ccecc5a42dfb5e5e114ae8ab552b024f0b395e7b8116de8906e722bf986d8c87a5873bc4af88ef0ebf61f9f7d3a4d0930813910b11008c9a07d8591671889eb7eb55b7e73c9f963a76aa44f2ebe954131d2625365c4dfefe7eefac807c46d976d238052452a2239b0e74d58a73441fedda47cdb502cd12017b3f88018feec30bb594ec420606baa9b4936ff7d3432924531202e069623d26c5547665ee7b06c0de171fbe72b37711815a3b0bbd64c676253ba2eb927f323766d0bdbd712ab59def8e82b4a6ee2aa5238f2748e9eac2829073dcd9f6f73e62da4620a919a78a52bbf666c112c5345dc7b342e1e5185bcef03d1939bc64276b116dca5ec318605b643683d158b36ce8defd85faa26c7a6ea81b8ac9abd32df748199ef9ed5991c25be864d962dc6c1f4f6ffb0d30646834a53a3893789f27747d45f20f3028c254ae1a9b4cdf5fd5b878cf5099c8c3c8823ec73e83619e0cf3772357bb8eb2567b16a4420458608ebcdc6c569914b35a72fa5f7367f90184b55d65b38ce540bb4f12120b8f8096504466641ef72a598e54a181044507ace6c1edb1adcc56fef4316e694d168e276d402e7e5f95a984bf00056fcb8f803350160d9120c2b55bd73ae97793f21f73926360f2493c18be2bd9c21146a7ffc19a57b8ead4bddbd14929a85e8e0a2382e877a74ccb004d6390d91b727602b6b0413d666d0650be64b4a4252de18240b9139ae2cf659ebf89b80c8ce3645617658ba20c6bddc344014d93216e148f4512419f307eddc343deaa388a08f06bc84328b37b0c594964c2e20ff59abdbca502ecfd05f74f02dd9ee1759d7e287edb53687dcbd1ee56b4a36a956ef47b6c7ecffc1e3e6fdebcd680f161b4651fc32b36f985a40f1beef6913b000a36242", 0x1000}, {&(0x7f0000918000-0x41)="7575d9721b5e3b362b31d1c800d20581cbf7a908fb90179aa597830e49dd75d6c32a499a5ab02015793afa9648d25ec2fdb0edbec82fb81481a841e21a3ce6e8ad", 0x41}], 0x6, &(0x7f0000664000-0x4a8)=[{0xa0, 0x10c, 0x3, "3d92aebb9e17eae634cbeba6b5eeb18e2a7f0f505ac4bbb3ee77c60b9bdcc1da2a98b54246ef02b30e8b63dc1c297a178c3b574dad9dfc81983f182e08a7b907cd6b96517979b1fa81b44321abf3123a4b7ae1683de06fe480b7683852be55127e76ade21662ee0da0320fca0f076cdee4e61c081e23d1ed47a20dc7dfe6ac056022b4dfa55bc115f7122484c476b41d"}, {0x110, 0x113, 0x101, "cc73437dd69bc0668534d4a194e829f875648f59f1c5c436ed5e04a32c99cc2084c8d9a19569dbfe40a91ddfdfffc7c65b5a9277d594354483b4030e8ecd9dee1915e80c3ee334c0c2628a5a9a80809e34a02488674139f4705f5e0bb727d2fb6592bc43e5000e4d2146bc38e36bd2d1f75db71a1f02e22a9305b7272f36af9958c590088d539a6e536741588d1cd0ee9a0e83c2bb35c2e3a6439cebbaab11c0643cf63b8642e2f8cafb45173ba290783f6517cc4dc8584e54ee9b8d1c7a7dcee99c3aa15d17098f7303c2c94f87b9e6efb2c68a051755b0ba74cd8a4e390b3723a176d7d1eaca31664a7002e912523347750bdc06f059bd34a7"}, {0xa8, 0x119, 0x1, "5208200c23370b5790339814bf7b31590ad9ab0a0dd563a8506d5c84ad1454ee8811f356edb8af7ff7eafaf055274d91c343c9169a81ff66cdb4fe4d3717b05d40de6ceedaa34bc456b99db0fdfce6f70b4c44d6dda8dc56cd34f0378ee0164757ab4da47002c04de5355300a707321c581b6d895771ed0aab6ba5d77929afc327fd73412eab4eab3d7f8c0f2f88bb5227"}, {0x78, 0x0, 0x7, "a34c5d0b33af79fdf29bbac4452d9dc54ea74ce928f5c8ae3693e226b8e0a796a8c91894a709df7614ec6bd881c2e8652483d74dc8ccdd275ae938bf76b7c74ec582cc74a1b59dcc97f6a9768099da9ce8544d1b8e640c4118de0347f29b292a803bee2f"}, {0xd0, 0x11c, 0x3, "ba8f17d3b7c47f0b33715eed921b8c0ff96bead2148eb0d0b8bcc16cfce304db60376c8b19f338d4a41a117abea6f72104b1dad7022daeb477226f715b96f779f238c2c3ec35796973cf8d18e93f2d38518511f47ad281b872d179aa7f3cc480c6a954c6e8d1db0b8d98aba9142e5a1906ba1bd9489d9bf8565c16a63650ecd171c6ff69f0fe44f96c8127453c3a1c482b99a2f83bc69e87e870ac19c37bfcd3c2984370e67374e86d6d51f9c67b6cff992be16390cf280315d07d4f"}, {0x20, 0x13f, 0xbef, "19a49308b77181bde914"}, {0xe8, 0x10f, 0x1c94, "058e2fd6778173db9395312bab9b01244a88a2d046050c13231a82952ba269e653ba7cdc02c0db98d23b75e8918aa32c517415dc889aa77521b6e2a246f6e91db15d1aa5058072308ef74b1c101284d8e262eadd03060a65827ca8b849544b27e5b3081d0771acc9e203630c66e5d1dc4cf77d8781897ff2c42441d060d065458c25d3dd5b637cde4e0e288d32dc4a56691bd659edffe485645993254414f70f4327da60dec16df697a69d1ea0d0bffe171a4d3e23665b5bcb900091d6e6dc969ede33d1ebcbbe4e55f61a4830c4f92723862d"}], 0x7, 0x40000}, 0x8}, {{0x0, 0x0, &(0x7f0000952000-0x60)=[{&(0x7f0000827000)="95ad2844709e27ee3d25b58e5850062f31f7dba7604b38c5f33f4537fe91ec71cf3203c9b1dbe3a2a7e470f72c0147df383ea8d46a1d2d9fd9c2cff1f9424d0e727e6a7f7d99ee3adcfb292bd46c827bfac45c5316ad477153fe5e4db50e7a7a1940f203e384df34986ea9f00b78b5925212b7729d771ca70f9026b8f866d1f471c7f71f1be50dac7517d2e3ca903a57f95d7aa5b2a85a23501720c7f5fca494117689bbf3e86c85e0b151cacbbb38591bd5a3951725e9db311203ed6a49d56f5c54abfd08115e440b50b42af6eece1170d58ed80031de522e9d1610d99283ea4c93b6b1f2f37345", 0xe8}, {&(0x7f0000882000-0x5c)="f7d0107060eb44bc4469cd91bb9a0fd919c00ff5623958b8e1bbf282142e685b6d731b8530a57ea087455e3f2af7265557baf72d75f04828889174ff0f8871d0a18928376eb9eb395ef5a61da3b832906f722d52ad271642bb16f41a", 0x5c}, {&(0x7f0000989000-0xa6)="dede9a81804ffae80943ffaea2b8daeeb52ea4b1665d3051db7a0b70df0b9e225b5535a63f7da4af70812bf75edade7d44c1298a39e5780ab2d83a3bc1b91db05996410efc2b2e09282f0a43744db0e3f5d4d55f3a804b7b959939a9aa6a224d19a9edff24626809236783f747b3e96c9573c0db240847b4e0264d231671432c38593a57b2076d94daecc39a09751ed4821a8edd0085ca14e2b63b03fbe1b6df7a67d4154031", 0xa6}, {&(0x7f0000131000-0x1e)="0948a183f6e44ebb4fc09b9377f51eed77592f82dbe64f4f393c3e461586", 0x1e}, {&(0x7f00004e7000-0xb1)="9af5e60f66eb971febfb5dcbc7e5536ed4446c9857a38453227590e56e4e663f675b095985aa87b3ecc166d37c2bb792f95b1dcd5d29200fd1087be71402eec33b8b06def21e77e9262ff88e06f2bf091fac0a4b11b296f6441abf426e71f710f18d59fe571b60465654f123236021beb68269fdf4561317e374a82c3504072b23d701c18b951a68e524593517e1cf2cdeba302976e7c7bdcf93f7865fb8e59c67599cf0e2a8429da191107403bf697bbe", 0xb1}, {&(0x7f0000d5c000-0x1000)="eec3704c061c7d42379dff51597297151a09f2bfa7649ab075cddf943390a9dfed65fad602f9f7864af1f1f18f08289e6a9949d8a6e9c481fb9fcc88e4d274a976c48af90c57c02f9fdf2f924d574a9b8351653ad24f312e7c217084bf0f97caea4d88116da45a683dba68fa1e8b4a17ca5ee0ae7341651e77b0c7464d16c9135545a75b75ac95ecc6885b9475863ee51392e536e443817509496c30847f7a63d52850261fe35dadb737959d537499430bf554a2311210fa204860474538b5100764fa0c24b392d24e1064a9803fb06d08322936104810aae50abd598111867e24ace4d2fbeef1cf855a826b9786a739a237da03d791fedb40f29cffdc6e8758b21ecd896e4ee13dae3ce7326419f1a6d7c7feab0ec0392e9ccdde0d4d85a1a13e4a133533f4157da54aa33fcfb3db2475879ea3816d1b459ff4def115f27132c1d11c411f5ad330176e5fa7acec1a288a9d12ad107e9bec67f919864454c5de767015ff44486e05b097b04e8545daacada1898c0d4f5a3ae3a58f7d3a4f7103af523afeb7bce3e9155bff83950eb25d8a4b6495d3cfdc18c7add7abceb2c585fa993a3f7943ae3210ff307c977017994ed0851bed0537cc81fba42ef4f7f8ed66808639117f794f627b52b9ccefc069fcc9cbcd894f6b25cbaa2d3107a960c03e10ae114b1337d3e671109c4ca0886fa453a573d8eeaefbef3265cd7c491d9d7ebdf71c7248890eccce4c9b57f7cfceaf0710f0acce6f9ff431a6e526bb2d088a4c6f2ae013c8655174cfa099e39f0a8662a3494d15c4415c5f7bccb5b67b99f3097e24023a53b8adf991cfd4be340ed453e19144dfc44fefbf9a9320471208ecfaea19c98ec1d289674a73f9dc6ae0e7682fbc64def8e4d38f2be3de2e24c711a7778c8505d6a42bd5971e8663eedb9cf92ae0e87b3dde88e1e3e3550ab82921144570ec93fe7cf8f63f2402184d48d75fd30c8eaa712b548184ef8b2f3b02e7d7e2f3bf476e7587e9f6c2b93f0ec34c462efa7b769ef0002ac2a0d0960215aea424407a1f3b31ad273fa3b8458e735224479255cd88411d53a1951cc6035d97f579c456369b653384d0b941168c2893d25f292f8343a9562c1691d30d08d732a91434a43ea1beb058db2725d628353bb3838072f0beae6f0fce50b11f61c3b76b359f373fe4499cdeca12535cf01ed1ce0c55b6001594ab49f96d3d5b16e72da1dc50df261d728cd7f1ffad11eee9d0eaa6f9d902bc5ea0687598f89b7da92afb9e62b17a5c9d2e76cefa97b9529a4eaf4af9faa14a76990ac6ac10f795afadb93a4a3bbcac544de88990cf6f3342c634c155ef87806575127d8379c7f6c3b8ec5f1854fcb022c204cf093465dbe8a37064f0431a82511b166731122a42be158745e5b65f60b34bffad57ae82f38d611239f710573703de84d20d557dcb890c8c63c0d603ff99414dcf38063360522e1d1066ca8d021d60d7b2c5b03a04f3a91a0c71a8a8d2a525a9e6e380937605a0fe779d840f646d68de8ae2d085966746e9c5ce93aac4a41f7fab1bf0398f06165cde0d8ee53ad37c02ac475b71f96edbc8eb7f9e400fe263f7e450640d2ac6ee3e92891f4fc611a333bc18bada1a78363f14870ca2680ed36f080e7b98a5030ccd44ec7775bcb8fcaa4384b1135346a3cdd34d344d5af86f2ada9b6a450669038f4a7f29ff0b9b13e77ca9d8e1781f3cb14e8be4b05a09cdc085775fe4a7de2ce7a9c4f64ce083b1eee8ad37592dec8f1bfde9f519bfad27b234ed940006dfb83f682e61f33de9942fe2036266ab15a1a683268b0ed330fa1ea8d425a3c6a2e9e099f26b482f541ac53c5b674135482a1011d0ae38038a0757996c05bffd503ad71488e84798d3d0e749b67982a925a9c43ef1bdc0411194a78143285ff8e98c8d7c1a9b1cebe1f8c015c7e2f49727fb90213544294b6d574cbbee5ee8998d413bf21a02e1e9660f7988b85d6de45d70037336c8c00d766a7e5ae1eee310552cb9c08778ca50d71da1bfba2edd5b5c6f426c7b2b5cbf5996c7bc97e1a2312415b0238a4d49e20541689718f7812c330ae0df29a54671987205e729bac6cb4809e2aa288ea00ffa7242587e12dc8dd2d9cb4a5a3e52ea0ffa80e880678af37c9bda14f78b408f58b7ed5e45e429b0b398f38aa3eb0d488bd11ec0b27295a8724a63fc73ae0b74494278a1219c1c677e8f48f8eeef1b6af259e9cf71c14229d9b98e0054eb308a1ea06e88ab97477e13d77fbdcbe748fae4d37d3ff7396d0f0a38e3bc4f49f5c4209566b4d6c0f3e90576f04e521e9bb52c2fc7f81bfb4246c5440cf6ebc34747ac450a126c2962db42a74eac9ac3d5870f0ff55c084cd473845be7a1f7462c2d7654f4612b66854a563ff18853313c6f6f57c8bcaff3bee472b94d4ffa61652f3b5b430f1808db110ced002fc2ca5c2c45fc26b8fc2521471b719d69ff796c5815cb2f1da104d53e02881e69b7caf6aee2697b51d416b8e09a9f1eb8c2cffa0ae7b93e049a93bad1964a6f274944e638fe839289c88aeb92b342e272b3a2f6a95b724dc79894eab5e52398eee02308154109c8ef010544fa9366380cee3bd09e1be0429607cbef2fb9f4b678f66daadeb1d0d55c1cac9d2736523fae1fbf25318f14b680a15ee483b1b0bb09485d1c25be3e3e3bda798696d2e50fe2b99a4defcff26b23605d318b70d656dda524c6d14f03df76172b26b3151abbd694e15ca957f658acd68bf5f91c499ad95eb8873dc21ed637898a5f6ed7e4bb0c236f1d1e672f6c909ea48be5df02da829424add3878817316d00a2685247df1b32a3b4c33bbe85df166a097eb81ee5d431bf87e2c29425100b85142b6abb48a6e2821acdcb83293580b172154fdc0c9ae31e8f53a1ae76d5e53cc5dfe7466df9749327eb7a671aaa804ab71e9d93220c18fa138f1c615a77825e6033bfc8cec07d8132028783614602de9316d45fb1924b4125e0999cc9c2fe92be6bca9309ad0336fd02969f2e1a41455c50bf29dde3992d07b003add569f3370757cd15ad2eb753d1666736e060d8f6e005251adefed2d4044049b9c1dde4a3860a44ffd7aac8d6aee471be8b8b0d5faa398b95d787bedddc417cd5354fe6439bff31ff05e923537ca8d329d2acf87c7465e4c7320d2abe24494d2f28888be1ea5029ecf9c546db6c5919919a835ad0dce40fa0f37adf082bc3d2301b8d2bebdd8dd9a0c0dc1a5eedfd37b6f5507791d06b6a5c439bd71ef18a259440d9293e95e5ce9d2c07fb494ecaafe5bd8edec14dd1cce7762fc3d1bf6ce8a12017cfa192d2903afd21858452295a4b7efc7b579d62bbdd32858b732f156c03d5355dbabf2eb6f2187362454c0d99d7a06356b96355b639ba52f2ea6ffc852828f7a52cd80f93a19c918590d6632351756dfddeecec7a66048d52c069136f2f26e1661df1746c5d27cd39a37320218b50c8a8d3d240fffb77cd1872b460b5461aa737ab86e08ccb43f746e30f6c553255d7aecac74db0ed094d463f783be61265ac267f12464bf4a9eba878aef43cb95289e5bd6c5b267fca9fe90cadbb5cf808b2af8183f1fecb76885c3bb182ba2addf11920e5fad6747a1e95a29baf1b0dee7edbd700a74f2668670bf43d59ba9225df7db42375e8a820c02ca91dd653c6162b8f80299f19ab03a9d37895fa2b6d803782d8204af1750e2ee10c6714bd7f5b8a819082081e04841408a541fb98953855e7cfcf0e0bc38dfb92f199edbb10ad86a01b984a9b23322fe519d5e963a0d2a8425c4b76a3b5adb58b991ff2c47dc8f7cc5e11acb54927810f85c3f197d17628bffa34c5d41df0720e5f830dbcea4e4e5a673f9cd308a97b0315754bffe4615bed93fc450a69aedd244d94131a2a9b490fb52195625e1cc0a118a5e071c6723da30785376129f27cc0acb8f8adfd97362c6cc8b15bfd2a927598f11e79e783161159bb0f87d6523565387c2e57f07ac335b42016fadc5d9d71114a6fd9eebae6fb4f3ce46e81339325303e8b88e21ab1c068044d62e16e669c99023668ee4a71fb6b6538400c26e2b1fe3b672b46fbab225f66faebb252298dce0a9fcbb3cfd31b51fbed6562a05b33f92f6690d96f62937db59eac37cb8844e1bc48d2799e8b47eded64321253f601a586be8a83b8a14ad42fdcb1a1d63339dec2793d4279444f6ac1cd8ae7cfb2f43f9a2ff46c07d3e27e28ebb8ec9053b85a6c1de45d4ea407bebcf5d68e5b9b657212fb7328dc0688c6a38fe7a7fb336dfbb1b8648f989927fba29cfc66ec6e800a2b151098a8d85b947bf19588f62c1f34ccda83fdc63f09ffacc7acd2cb42052af8a665948fbbc2973a48dacbcd981975a5d260adc8288efc01d104032aa4ddea4d31813e9be1660e9587d9186ddc0bd4247b44da6c006e2dc42bcc2c81587349545e2f70a0faf37f5d6404b795821e6381f692093814cc07593d6e65d0e7cb287e25adba32abaa1cf84a13cdc9ab507052e9f9b5b8ec16b6f29d47ccf8f83161b7100fe9a52d0c718d061036bb276f96a0b22b0aba3a7a6a1e2151bfcfb73fa1f380f899ccfbd4d272dfd10efcd758353a33c52dc1efa3b28d33af45e723455248282d91e4eec09f09581909be40b53a5c769c46d11e62d33c4744955c86cc8ded75362d8665f838a857e523e7fbf443fcc2e786c067d38f5a500e86fb058ca34189c4d14b21a6499c80cf554dce587b75f88ac6f07c4ebedd45b288a8f2e6ad88bffdfcf6d7deb092642f20c4ccbc83cabff7f47b3ee8eb46f7b1cc942d88c4ccd278db11996c36de1f29f7bef7f16468ce46b287b154ae8fe43a56ecfbba9b91d9e60ccd6ec9ed1e5419cb0342f91698571468a12dfae60067cb4761efdb8ffbdbcc146679541b03547eb633959134981ffe5a5ba19871a9cd1336196d26abfdcbf926b6dd9ae1640ad3a4e95d864941bf33c86ce84dd0bfd74171692fd1889ccb0d348f546c58503a6b7ace2c04019b1ba2cc1d2bdcae043c6a6c00bfe63cf9e6f954e81bf292afede81bc896658f062bb8b072d6cfb906323fb4d6dc3a8f73f02eee59a3e6fb7b123c9fd9b460f9c026e6137653e0633e720f2af1b2416b76e92166cd7842f14dc4ecadbc16ed9866ec4e95961dd3804d8eca1b8f44d7e898da57a0cdd7d264dcdb80a7f9b462559e50cf3f1b1b9819fd8bf1f43ac421ea0acd62d56d49498ef769af08ef0570606df287ae355b6acabe2257446fe02c46471a96af49073b906eda7f38236cc3000a40b63914d5a71846d080000ea6dee692c7909e544e20f6d5ad85a9b937d0a7a18fd5313b83e4f41ed26fa38cb585056fee7965731704451ad3a50a1dbaa024729581c620a50a5ef598076373008ebc11aa0547f9299c69b4157226946f5586ee24f1b48f628611b301adb8d208385810ffc585ab47a84299d7403b8c2e1275c2381df0ddfd56742f2a5824c21e06a922eeb7ca0237f2eabb577ccd6ba7ed9ee1122ff284304c7f38925a483489a3db0d9d1ad5fa8f567bd732b1b2168488d3ab80611708a0662cb4ea617bad8557a3de63221b61c2643599cde13ec3923f97e295945251bc0726d4a9f258fbd6b3f81f6aee7d85130cfd2eed431b102b63f7063f0e12ee31f281871fa61466ab3190d2831cc7d2800b863770c73ff7ff0a47b4d87a1750a8fdafda100471a473d26181889ca29f04700248389d73e585cb1e5d84561a936efd05ade61a06f9f94a9cff3ea9e73f75c00eb3744e3af8053426dc100560e8929a4637c84c", 0x1000}], 0x6, &(0x7f00009ba000)=[{0x70, 0x10e, 0x20, "51791844c8326df9176819da49aa6b5db6ae40cf6dad444955a7af9aa52751c720a2c5c4bad5f6dee5f72626c47c8c51e3e684da67170e77c2fb6c21ad22df9919aa06c54d8cacca485cad17e7878e5113fcc3da6ebbbbee9c"}, {0xb0, 0x187, 0x6, "6f4225a2a8a9f8d2f105fdb68104fc61ca94ae55ebc057af6fe86e1ae56e00859b5994598bf909d360e714fcd25ddfdce9c096cf5d07c7a0c9c801cfe1a2c337e26b9a09112964010419ea151517aee8619937f5198a18f47714d440540836d2fd0acf2e25a07c0d5312cc1338f333a022ceff6ce02c1f3d73bdf955dcb578bebce78d07de33745de0d7ebc7ee6cae59af09896ff4bc7105c3"}, {0x1010, 0x1, 0x5, "1e62bd8b2a324b9b5ec16791aa3c49723e313bbfe566650b812844c1968e524fa84b3fb6fe1828e084314dca0cb4ff93489a0c984d58ebe2d8d10b758ff77a948876fd19d9802a17f229aacc4af9d3540ce234ed5273b6a0c6d635e1ca4cb81163cb0c98164c5937b7a206818f78d0612ce0fa24766379dfa3dec8b0f781921713e7e845098b3813c37cb7ff44fb14f2d46c8c3dab2058e8babf7c3375e77c4fed4ab9be837426206cdf3203be24f946a034d6f368279443b0ccaba96900a469c00b9f0ce313cb2b0df3ab4286bce50a08fd1c69bb8d39b70ad252470522d21550868b864185e9a44eccd8f87c4a3ec86dc577a6736c5ceb1fa0a06884ff01adb9637ff92e167995c7e34380c9b98b9b79679a5bfe10b817b9bb45beac3dab4778ec1856c6df60afa78067eea9d603135d5bc08df0f71d5c066041522bf54799da7f635823e11306362ab9571d2121be7fa3fda3b0eeda7c900a6d73feb8f2eabd26bd7e97bdd06c4f06a6a28e0e960eb81266b1bf671379d97c67c0578556b6595207bea003b55dc627b930c805f8541380089568e82551bdca42048cf0c55d4f818373c539716be57e99ebee30d618312d3c43f9b383a53936a4a99d2d671fe949ddcec5592d92fa31d1a70b349452beaccbf6bb52fc3945f362abc821157a6393f6263d1b754db4dc303223eee268e4ad8e52270a4eeb742f6f9c305fb6d9d17feedba87885460134b74e50e59938a2d3ee98eda62a4dd61bec7a52c7c35aca9f0716685123842af2af795ece0caab3581937943a9d59048436dfac66bd911a3b8f35ead1cf0924f5cdf0abdaffd009ce3cd45ee64775c21a51d3de489840203c2e27d5fc89383ef89c17af482b311cf8e5a2e5fcc9529593c83c30e15d3f59f7c964c9e74797ab2647737556199f5165ea54178ce68e2fd19d4928429a81cb109ae11693ff187b68968dfe6044d13f836fd6e77bda37411a5f6338a7423ae43dc6528f53ea3a473fb834226d8f9300e36d53323f39d071c3e2c8299e4ba839a6f2d582f465bfb5fcf3a6a6dd14e9e6efd1a24695042f0c3010a51aa03ed0b39e6c12c74d2bbbcaa7332ec02aa6570da87256033cbb3613acde214ef54f594441dfd1acb9d13841815e723738d1cb58e708c2a4a1092d577d3ab49b31e35c313fdf5abd7ddeeb26dd7db22aeb2e2b5792e103a147bdeea9c45d52f0ad87b93389c86bead77c0e59069a1b8c6ae312a7ba972d388d1342f483b649545a8fa31d344eac8245ac71d2fc81721234f4ba9a1a85b95ce7444ef8ed787269bcf0f31eb4be0e362a931db8e829bb6b49001924c8b44acff00f9023e8db9545f04a01f7fc020794b8e8293ee7bcee72cfb5fa4d4aef85b9a3ccc4b7ae000fba7824e8e507a20e57e89cfff82bf3aace22f25e29423c5abea8462389f7017f966b3a636b6a6396dcb700e9aea61cffd6f0b970feefe166c64af264f16f50d05c284990a0ea7638b030cfb667e554ea55e3470d0610389b23a8f2172ba32c26944cb2355f4f0d45de19eebd0a88b05da27e99c80ac09206650c69531a9679ad12e0c400aa456e897b268ebe226113ae3889e5298c2222b611152452294580ece350c4adb1afd1ff7f5b123e35a3fd1517610543fb366ce3e61f9fb0f508dc2dd8cfc50ff62a4f708b2bf06943c5dd234c698cf9c25b891cf57da055370abc0703048a205553f0894658294d88bf008bdd702267fadd9fe7045d0a7ebd0724edcfcf0e0ff216afb96d013b77eafe227565d318754ed05cb99b3d76cbd196751bec68a3bd6fc32353edbec0c18b208500dfda3d7ae7da404a12b6ee42030e0955a6182b9eaec44171b9b1853aa4aaa4733eebbb49730d3ea978ea01417949ad7d88a18c81b4f8e5ba8f8968a8131f49d303a836992431f153dae349fbee1b2ecafee14f4c6677d2595390c733fa4ec43ad7b837d1a81d9c71c6375ca26a008262a387e32a6b6cf3ce6fe34e65d387b8b724b51c1c95b97275a188896abb6f579847fbbd3682da912960c50bc58d72bb061807fb1da1d72df0b748199a2ea117ced0d422c0838ac774f4728cf95bd1264871e71632daec812817599b1ed13f0855e66c14409c4989222db0cedd7b3e793621c38aa82978cf0ba0b250336462708c3255c6372a0dde93e32e5a2fb4fb51e165ec81c886230df344fd4ee3aa67b5caf12adc3477e9e1d403fae02d2ac0fc7b245b1378e99d4afb1486753ce9a5b95eec62d4a051151c969214eaf96c6cf47ca07affb5c3f152a362d5acf2a0159edf3e3e0ba10388c7ce0bdbcdf7a10a1a04bbb7514d3b48dd98a446f5b9a34b1e20622148d8bc1f564da296edc487bfebd745eb94e93aa307177762fa7a0900ae4c04d6ea7c6ca2fe518f8f4594f26bcdfa17e0c3c8f614e0f636ca18265b0620cee7dd07a5630f61a81746063cfb41504f57b6feafe3a540d98a18c5b53fdbbd09993695c7e1acec00842998d0c2cf5520b6ebb00f77082c6f42cc61c4e6576c5106e7d280d278e85b37911b94f94286bdf5bf4f8892b32ad41083839239700254e5f00dd61c76ac544c6e4bd7a3aaf2923b1392d71116d1e6320d799d344eadcc4b326a068e9856b8fc4ffe5f3a0c1b1f3104d82370adceb7d408e0bb90e288e0e443386e79e74440612396381225157eba7bb8f37c43d2da84fa1dd106ab5fc01de656ff127db997492a809a6347be5c0c1d6abce6fbc9ce37a4d7660e353d7378d26c49e11f5d96a0df0a0e9952d3b1f43a6f0ead5df6d934d88b33af2136cbdb662d2a3fc86e3387fefd13742040f7861faeb0c3ff8128df74e8713d7da3f3d73ae0691cd774b0bcd87e993df793e2beb5532a8154218d880e94533f1a679c1c742133e908328d354d91ee36a15e855901047458ff699fa3512b4a35111056911780d2135a271e469d7dde635fb9743cfc22e7c39d9ec3aee88c1c17ab00d9ff4f532e209a39fe9601eaf4dcad85cf8fd5da937e5ea4f66a4c8363c2ab984d74f83b02314f40b2e52e3895b6e1c3eecd650cbe9287db893db006419fc7f006a996b02fdc5e18d5d5652748920227841b315e3f9c5c78ce1ebf666a3f1da6aabee1bdbcd202915be3219e44d302b1ddee7887303a34c3c06c4dd1ab23373112ef00dc7396742c01b402d02d3ec925f1832db469721d61137a7db7a15f9240a219cff76bd0194d24bfcc3870302855e9de6b241a0c23eeeb12b6528799eb4497b9a832bfcc7fa5b01dcda287bf0c147f7ddf3c1848caff68574e73edf5566f456261a76783baa880e6aa8d278b8561680d90c763785433b1370c52bcba216952abd1c30493af9d23ed46b84feb6cccb6c4af5fca364d0a7bcaf7c5d04b48ff8bb76256ad0c66b9dc8886e07ca648688e0dc481ceb65b24513568c07105b936a8deda3c28353edb27f78887a9ec925a2c1a3b6ec146ae444be34e035c9740ce72b68637ecd8f214751e1c1ea1765b3cd8ae97052e69a1b96564c4dd2e265ce3962127e700187f7524e30285e4d039b6ec8ea8f459b6694fb0fbd2d3d6d89e8a43d7d92cc6e62cb5ab3dfb171be91eee4dc0848cde6699e885c8963347a66e9bcdbb4bb5063a6aba8fcb1cc4ebda6d9c39d229b7df1dc258d989a80052a8f6d8f0e6ab0a7ce1b7fe86665561e80d364ef66511116a6705e387f5cf1ccba52f7938a3eef9e33aec04ef8ab6a58fb44e042708fefb4458b53c2531829af8695309e82ae6e348d369da3fc85ce6fc72a9ce598dbcd6afad75065d2db4d0168eb79ffaa58d979528dd7a6beeb34724d1bf2e72a401c2ffc5d3028a0f84a59e55ec6b5a7b6d698e5c7facdb4dce42df0a1c0f5e48911ab64a7de97fc2a180e04c0fa8b1d1ea99367eaa539f949c59940fe94ab0fc2de67988f308b2d5ea4424acc1405f833ed7d1b7cf3f2416221a65d80022a6743618c9235ffad36aa465573890c9ad2e7e405ee0f7f4cca766db064a584b8a46437cef3afd2b26dd9dc7e8230c7f8c39af9c4e5449c30ddc59d63e1bcee75b1d9a147c9942ca78031ef7c17a4ed967c65c7ce184b529a2542e3f4cf3fa1857a4c709060729d816a6dc3e3f7af8e6bdcf3abdc7c4fd665af2d4095a057ed387c867ff2b13d2d1328d3c4adc53e2ef30ba34245a6955f6ed07bbdb5c9cef1fac8a6df00fe95b8fb277417002463a12d943680556af62f7f0d0c8d3910b22a2300ada38a0dc66fa77d2139f8d280aa8c7c09f3e261d04597106a31e2628b49db67552b84f92a2fc8908550d5f4d4692298b38551bb8631b003b5c9430b706ed5b9bf1001e7ffc1b2372197fb2a6a773d82cab22f0bb37d418f08945dcb27568784533aca9ff9a5c5890859401622dee6cb12d43946faf220f2962819822daf80e352e0853b8a3fabfdfaf2fafdca611bf354a61fba94eee08731b3ae1df699b99eb523be27b6c3af1388775e6ba8fc8d4a359cd4371c1b8a4336ac818ac1731b8e68719db8a1dd7ef02f326b150de6eb932d3e3e0e211593888ef245712a2d95441cb9f8b5f4dddebbc2386808c1527c29a84502afced4a19681dd025514a611ad73ead5d0cec8728726bc13ce4150acd17ed230b0ab7a6c3d3b90f1237f6633583974eec9c24618626d6baacddc7ae43430ce7e02d0c0eeb3c4f79df1e7cb8372a4e381aefbaee2b84e0fbea1c226068c905805c9d2bd768f2b4f889ceb506bc6947626d6da5b797b9706991eb5b263962df6a2b545239f0f5e919a4ebaddeea9997a7cc887762f7f96d872d59633a7b4d0cffc022f7c710e2fa1508afff4c85f54e13845aa32158acd9727371a917ca172cb11bd97038e257148ebf3e06190e171f4908419ce89542fb53ec252ca46b6882d56e254e2ab349d9324280383a8c53474f7c23ac8a5d577fb09fa6ec0a9fb1bead234188ef321afb707a7ba46dcb8aa38a5853d503f1f6a75c4b1d370731559506715b72467afd7cc6c7bab89dd335161836dedbe933001d9563f427271d6aa7f1b841921168410133569cfc7438b0341cd13bbdbf862cac52c0193055fca02fa4e77de6abbef35771070cbf536a4301a65cc398a2a97b91422193777dc65ba86d7f71c717bd3ad896924689119c8c1a2ffcce50dc4145034967ea7ed66a23eeb25f2fa3789d548e9d3e3447bed56d4d2b7ebc3e1b3a2a61acbbb022d77931183fcfbc2fbb12e2f2b524e8da215cfdc4d5b0b536c9c967ec16f1ed2d72ca3c5bb4b8b864ac11f8c39376c61e3ad99970d58d111f0d0a6378880fe891f86fd6b542f9cb11b5fd78916090094285f6f2eca028907b7a28ba8fe22b0a4379112558e7fc1a0c7a375cbebf08634ff0eeb86f70908f3262486e232d17a52971d0a619f6fa48371471232575a806cd7c69e9093351051f7ecd8cc882bf6cc4bf0fbc015f19be86d627a3fdd1a30a7b4b2c3b4d8db1d3040e1e2ab594561c178d6a58670db014695c76638ba37a17f6ad005eaa9409a3d34d3d94f485735af5cc54a874fb5c09dc3c1891bfe268e3a3b600b85c09a11a1dcffc7e4f78ba6094b088daeda9c8aa94a60dee23ea7b71b6de40c09386ad7473c675824c84a17f0f13833b67ef2a03ef26beb38090019ecb180c62e3273c301b5ca67f7ff1edda009a88e69930f885d930ef057981380e3517eebde9399d9ced6a62d6ea04d139200c9d22a3087a99c95ed23c484f2031245290306e60299902a2bc32afabe53507bb58708edd96debae5ab22a066ad50dfb6c517f6961aa7d2946bf1d4c41c94106d2d27962d74"}, {0x70, 0x115, 0xfffffffffffffff8, "b2eec278cdceff48efdb12ada1c241bfe823197f0c9af07c4f0fbaeac281709eec8cfd9d5c94f8ef98a13e1317a85063d69cb53b8f3fc84b2170cf2d7d89c5453619c86268c5e37ffc99389f562f5d438687c5dcc354f0568479"}, {0x60, 0x108, 0x3, "3e229f31447df3ee7d3ae92d13f8748c31014e19dfca2a91aba09e6a64be7bdf306cc1fce87b8074363bfb144257e0a8b9b0341dbd253598d607d51117ed36a1135b50b135315be5ae4806fcb8"}, {0x70, 0x0, 0xffff, "7d0a61f853beb06292c5be523a3d4da4ef8eece427198d45149a80c626710370e055c9451cefb5ecc44824aaaf4e3f484f8c7a5aef612b5cd00dfd5164cd5e1a065f1ac7bfbdf0541d0b28ab284c41ddebb5a29a4374bf69f9d48c"}], 0x6, 0x4}, 0x1}, {{0x0, 0x0, &(0x7f0000ba5000)=[{&(0x7f000087b000)="62ed2fc8082279808a91db786ae623a06fc0820aa0f5661da7fc21dba168f51b82c857c287b7e630deea7fe8de04bdf0f0056697878978e465dba4bd0e178b96e30778e947739b061e575b97315ed6bec3a1ae42ab5c74a0efdbe57d37b6cbc1cac6f6d38d39bff7e6531599c76e9ab7f8c22ba464cb1e3674ee9804b55c74afa53700acd71ebae521b1f57fdac181ddae017e3b2da6e73a266edc8da92d6993ce8298d92d8ffcbfdeb971512257add72046464f54d80966b1517113215734e9eb941a71b400729df8c7eefa3ea2c8e6dbc9c1a5e3be8456360c76b4f78c4e96bfa7f801239eee6ab72802234258874e26595478cc5a70936e1b2403c3dc7662252b8437743db3fa2470f5eec9b1080031848d957658022f46a187729212b9b80c619446263406d34bce934e4f7b5d46b34cc599c0eb91767a9132d99bcdc635bdbf05af87629b2586271c63a632310aa27df8f538562d86c99fc8f983bd5c731b58999edb4d9a87b8972b4853d46c0751098e41f5fd09ed756f195ad0e136fd20bea5aba0fd04be8da44cdb8b3d225172f928573050d2bad9ab313fec3c0fbf004d33c3b920956574109cf0851db99b951c9b78a35820a7607c24d60f9d37de43e1422fcbd44d3fa2ac65b46a0200ee9a1fb1d897e99948a4cdd806e77443db412c7bf7d63ea4329f3d092fa9c4e44ee2143307efcff96c74192056e1f2ba1914e5ab8eb51afe5f225a004b1c51228bfda5f2aaa877ae9450edb611de7e9dcd49552f3de4b5a051bcc0fb77d3bd6f8ac509b3f914844e0c326696520c40cf7a51dcf7ede602c97d2b1c2c764e5a36c00a494e0d5bc62e9c8c975aeeb2c1b994f7d2460018b1d7b717a51732e0a75dcc349d623994416b4284d973cdb148efeecfa8cc15f9db2ee7d8f557f75e8ed1270386562d3519e2699931625bf316d30659ebe270cacb57f1123442639ec2fad260af90de1f2dc08540598dd4a751df84618bf028b1635006fb7516ec44aa5530a06f85a7fae90bc22e3ab01b11dfb2a5259acb88f751cebaf99a4db3c76952f2ddc067a89dbe78caa17ccbb25d1358b2d07bed6197eb8fd826e66a43ae8fc9db605a34ff66be80afb1936d22a3513a0d1f1716a6ab1a15a75b3ee7f4b4a66578970bfb12fc680cd75e3374f30322542e31bd0bd69803ef06353589d9ab938ef5d4a554c447579537995020ef53c4bd5bec8e80c24b0ec1520c8186239fbac1ea188567bc581ae11d599e17aa459a5f6a2dc9e3896e9a15b7101728c3480f8fa33b95418d018b52a8790acff2c525c48fe60835dd8fd13e6990b694088e2420768451e11bc6f8512091da2ec620fa36152bfa4d6c2cb9b5791d6ca1e1a81359308df0cce626bb51c67614d0e6cd7ba775ee461a26a5ffa898677a163c583331259f4ef1fbd9ca0ca8652bd939efd628523f108321c83324ecdb3e6c51d017afedcf6cf391bab892f0554abd7ae1e56d0dbda389ffd4b3fd225b1648d824a33fd42cd0f0ae904563b9753444cf69f782a6a51202d250a09bab1467631eb8e771364265c5faa6926f641f568b6acb66ada2da80330ade46b7b792999b3d40754fba01de38293afaa2113fc39364a23d880b4048c34c71f86c9edd5516eb68b4242574e0c2f80ebca6481da76a3403178ae07f3382288fcb087dc5a5811d4dfbe5ced8351690a4bd6dcb00eba546c947b91848ca51f9cd9db068c6a90d0f6d7ec66bb28d33e1ae97fb39529039532a970229d85a06c6c154a229bbcd0c2f749fa2abfb44734f3f886842c9c9d609522c398a1082bebcc730bc1edda88e77fce9a98902d0efa24e89b96446681313a2b09b1178c094a5f40abe8d656b36012436160e7c434a84e9e0762c5c0c3159b8d649656ef859e7ff5fff5c53c2e70c38bbe95f660dbaa090c86b3c28df1ac032109a41b230c65ce5366b954a89993afa95420dfd0f809ac85ef5684b00bc3e8e7b826fd21885e4444fa1fe5027b8470a07b51f163b5bbfb47dcfcbd15249190dbce256e27fb75bfbfdc3dc7ea68016c7920c5e86d4f7c97f2403a1cee595d4e10a57d15c59f8629e6510794c860e45018b32d19daf86a914aebb0907dd5352aacde8f3349616a27bc34f0c517b538262b93a3dbe1ae7085113fd1c348ac0d154382e89b3312202207ef1f9f85ed1642e73a2bedbf19d85b419514df80c6fae7233fed4834f3c1c5b0302d6d1e84abb27fce0290145a6bb6045d034a23651047dccac04549769f0849278dda673488a8de9fbe9b460f432b20b0765872dfcd7e3610e2970e92e83d4b4b5467b9430ebd7e1fd6aaea6c181147827c0e008047b1f67a2ffb0870f544ec681517f93d9e1e2ce4faf3fc2c61529a709163395f7213f8dad5b31190dab5f4f29e433347101017ef325bba87a5eed6b61e23209114c7c7435e7debaded50f36dc953b6922d54931c458b09582325c4177503ddfebb1828996721a61fcf8a2804d995f1ec8bb06cff25cd3f68e245f220c6cb4bcaf5799ec99ba70404376d35a91c2c1b5a70dcd3a0607bfcac1c6c08d49f1e59da59bace78bea882ceb6b23648217f6051bdd2c389eb162b731eab4573d55670b3b74532925b983080b6810036f8c02ae65c6a31f77a749c8e6a978edd442a67d7c9bb6c7730c6b721cbb636e2ae40e16a5f8c08deb10f9608b7c0d8d19fcaf8ea8d39b72f2752a434cb68bd3058d2c170928b135761f42fb0cf834c4f2de5eb0ed91b82c34bea799aac67429035dd81aa12fdd29ec1468ecba9e74ca8c51c44ef5a3119cc0a55582055f945900ac6ccc440be2bf8233f65e54a634059f2796f8a8b151cca196713579c782fd40c877f527f5b838a9adae7520b075724c1eeca837d677e925d5dc8a528a2222fe8a1335d277e9a64a208e670ac39bd7fb5fa8568a8917240c6260b72c602cd0079678f4e2a726deb9299a0ed6ff1ade6e8af54a58c6aa152bd247795aadad03648fd0bb8d9d2d8e66e4d46b105d7c0d1fa416c280b9fed1a92bd86bcb072769e6cda178e2ab0e58854ffe09f7d0d4b4bb22f17dc4172cbf626f60367ce7800f64ebe4f94acfd07c9cf4bbd1feacfc5c08a8c37e1b86f55d3acbb6aceb908bada29951a73b7a7ab415e81f9bcb5cd17b8e8b8bd4f28591ec525dfe96708e532a1007e6f539cc840f066e4c17031ad7bc19e1b47047637384be32ba05b3a36cb5571ebb6fd98b80a07be159374ba26e8b14735d6e1666826693dbc7bb217f009f567f535da939546a0fe07e56e840f58404309425814fec1e8d29da6c3d1af9786c37c9ca2cd3bbdc7dbcf7e3ea88a2a320457663a56531bc51d48a9606787f6777cea8bd055f959d72ffc9d69db9cfba6f184c7f12278ac749d72418e2e4b70ed0e15abecf4df405d868f69a328b95715bcc6a46138e9399430d7ce9741a3557ccb2280c5af14fca71c4279120303fbe64cbf7206d9df8f5361ffcc7390eb06be80b562844bfa66d0583939d56647d5ff04916ce42f141eec0815b3b572fcafc609ca130cdb2127cfc4cbd8a137d1c6d27bf958fc9d53f778531b198cd8feddd4946f8be99f899eaa4012dc7fee8685f94b5cfa90091b7b45f237a03fdbfcb72e9ec8eff9ef48f6f7bfcc78159964a8cf11acd4800bbd51510656383b67d99f63071fcd831630e6e5184872f13712099a0032f727c7d9f5c73eff271aa6c86e26c983a9d595e9dda6aff4aaa477ceacc866376df947d49ba734e8a1b60c0dbcd44834d1ff7fbced4e7d73e2fdb7dbbb36e7837e448e7720067392022fa5e5c9d08d4c04ded396c4cc3dd1c52e88ff9a4e1c1fc80d305077b9cb83d813ece34a34d358685be9b2c5fd90b8b0d24b51cd010ffcdd6e243904f98deef5ea57ece642d91c1f9795049c73ebe8b530c2ce4861e511a6647f97274ec5d823a71948c80580cb9df5e9952dc6c4002b045c9ebf6850cc414458e56d4b55bad19588a950af8e55d0a237b45cd9d7fbf4660cf3b5afe74c1808430e0e2cd7992380fadc15b94d710071585cadc835c7c669d8d3ab3d7e5e1443ca5e8cda00c8a3bd2802777b75b7208fdfc1e1b3ecc263d1319f89a56c9075104dcc430b531ba6b2a471c414bdac02019e8e8589bf1a4735c5544e0fed9a8ce6fe31a5cfec2447b4ad5f628ea374364b703c4f0bd5f1d0aab9c027de27e3766b31ef6bd204d7423cb68f67172897f02e068a2797b668fdb3a0e88a4bb99b499ac48637536fe246df1dbc4ecb16abd9d24d74869b88e7821ea3bef2a3198d8d5870dea8dd4baa8006d4283b039475e745897c4e33913eea26bb052f14c4f2c277d578e88fc68073cbef635d401dc3509d3ebfb5c5849f9037ed6e986530fb4a0fb656a064ff8ba16752bcb9cf79fa48f3397addd2e8b03a6b52b1ae81a2a66d9dc55fd4f0e35f54af58b6b83f9d0a47b3dd58f8dceced389233bdfbb2d8605739ab5b07e3fb8cf24fddf8be287e4c8a545944c402c7db2140274d40d5c1823c1dbeefef8befe745af1f54c7551fbb1da327e516be085f257ed6a6e962b19aabfe1576037dfafd0c877317e6e151c1c91c450f961bd6af8bba0b6347cd4e9691380292316c80582ef9c16dccd2709b8ab957b1d4b4d752effebac8e3265e94e058596d7b0a3d8b1738047d8f8fef1e5c50ff459ad6af00d908f67e6647236c7317a5f12619c77942d709f53a026d3d4ebc2aab7689487752bf2dbc645d3cfb3184c643b943b47a79f814c3b161715082ef1452ca8c5da4bc64259b2eaed1106ec88a60c993ab1c5753a42ac72f5d40ac5722e32698f11e53a14e182f190bee4e90993aa44e87ce82c13b945d7a18a9129efe0834efdfefe30f3383a8a5648644dd6267619b9bfb5c2c1c4cf68e56c1f3846a6cb82553b6512e82ba9245a323fee7f1a4bf2786bc1c4d715e126f29e22a7bc00739f0305ede4e16fcbd4381d6e216d8981ae9277d62203bcf77f57950982fc6882be076d78de45e0f6daa6d0d7278fafd71b0d91f178d4e1d5786aa84d060949869410c0e25c0f82c4bb76365799e406b27afbdf14d8f885d859edf139a79a1dd98dc72b53cf3bf9430f39db6c8133251fed67b8f56707b6c777af906dd7ef95cef323b36992da71766caeefea8f3bdbd201636ddab908c60aeb314c865e834c8a45ac295431258c34f9c221fb871d01b72ed2974da43049b583cdc6c8b7d405f0028de2806602fd3f99e6562a8d8e59e6d246b715745bbfd43129fbd898e58304a5a4bd666aeedbadea924b45fc8e44f6d9b74a855b9d54aea3f4ffad7cc30ea719c14cf4e4ffb6d00eadf711bc5d6c7eb257d32aeac46d5152b901c3b4b5bac9ae2b458cd997d7ca54987a57e571fa6140bd7cc769d4915647d658aa0aa5e01bb8a1ffe8dee24378009214682f5d6a806544e088598d8ef1dad893c71be9dd676fe5f39ab48f2d02ad425704b9d1bd33a193491befe518c66b18f28701fc50706c6396b8e01396e92c60fd96f26dc74571ccd427e9d9b269755d94b5fa8495893df271fd6a20ef2a7c21f97e00be96ad26bd4157c5d0792d5bcc960dbd32d4694cb547c3407ff68f885380df151b109a2b49358101b33d1457aeef841bd2bb02abad927e58cd0daac24330e8603ef11c3e576a32a0ad9b4ea2be9d11b82bc1ad85eb9d859a3c1f453f61d9e8b7106d529096a978079e458e72993e20009ce0ba7bb056031e23fef7a89b1e4e99da2cd3826de0084d9d6740afc0b8b39e8c3c7cb77c228eb0957db6b17a15462925f1d2932362", 0x1000}, {&(0x7f000040a000)="", 0x0}, {&(0x7f00000d7000-0x24)="2fd109846b32c56ac9596329f746b535a56a8cfae7bc169e7087ac59434cd90122537c3b", 0x24}, {&(0x7f0000f48000-0xdb)="f26d3bf01a16b1d36b7efd540e8cc2e80f53d5ad04a03bf45b5532ae31366c9e6de0abb52d9a00360f841c064af6eff948186d5aa1181e97247552111093be14896737391840e351c2d105abaecaf7476e3e19c058ceaaea03bddfb3c75b732aa9c346997ebff7a5bd6618884c871ed8f8db0fca8f6cadc837c968ab9b582de19411c4ba252eb9e2ef7f1d3842b6e3f2a313062990bcbd0170e07216107a04dede75c8c4cbaf5a83b30133c6ca5fddf73021a473b6331cded27840d34bf6294a52d3fa06b541e282163402027d2b054420aab028920a37cd0b94df", 0xdb}, {&(0x7f00004b5000-0xd3)="1761b0711991ae836158951c8ad71bac1c2bbafa6af06e18b7407395ae753adb45d39a324afb849439b7d676fcf22623c9c5e5fac0f7cc8c0c7de633f1d03ae9a1673edd620bbc5aa036ba08bec55e78457473d1177768a6f578b7bad923f2a68a6f721472d65138b7bf6d00f5ab857fa159be3b149153be2567bd8bc260e074ce3cb0b2c595f05bd092069da10edd9f0757fc93035481e3afd716f26c7649541ad58dcb4d025beff40bbf706cd15a3c61a7d1775702222fa5c7e079c1ad727af694e53faccd572cb916f417c4b818358d644d", 0xd3}, {&(0x7f0000516000)="94b21e986d87ba73518cd4f525391d29e27274f89278ed10700cbee0028f0801d2879cba4b4a83828398e0a2788a5da13e581fe50906376c5682b10efa4c2a34b75cb33f88cfc3483b7954d597c3f1869848c13315b5ea9bfd8639be87783b105c", 0x61}], 0x6, &(0x7f0000f49000-0x1068)=[{0x58, 0x10c, 0x8001, "a727b63aa5885623620c331441c6d2fc24d1182887708c29a9768204628db18e552b60d04ce9d6497336c6528c46c4e7ced1d19df2bb9274d5ece8fdd1bc79754a4e"}, {0x1010, 0x107, 0x87a, "093f7cbd4bbc85969439640500b5210de265bf61c27576a6e9e427d141051b522f805bc1739bc0125aa9c5f4345076ab70091bb194b7ecb3e996d1150c6dde508bee61db7c26e30cd74428c347e9e03a3c706563c93ee0f882bd5c0286d47dcaa1d92689b1cb953a77c2f20f253a143d80acee5e89ac14559da3e86bd0b74ed224c3e87bff3122310b91ae4d5efa82bb9137b9f067bcf1ad70b3693b315ae33fea7e6788e5a2b2c81b409dad3d13d9718c4f9a5387c5711646ecbd5e40c7b6061eeb89510638c83df3bbb6759a5bef87fcedc445b22b869499e49abba200473ccb663b15208408936fba5a8c431d3ae4c1f8f467b8a08d35cdb9740a4fa3ac671a8994119b885aa25bab14927d4887820268b8c232bf8e9d0efce05a7eb86ffa30d40c49d13589e97d3a1ddf90af0611fdb400fd1b32d6d4a3ae67ea5bf1dc380b507deaee446ab249daf2a1a7130a7f5e688d683378b9e6615928d79a5edb4db185c5803956092efbdeac510d4544e99cfc1688318242ec3d9af197d606b3d5ebf327e5f26febc122f4d0a281c4cf138a3cf875e04c11c09d68c00fe110181a2819f12d42f491e7d3a9d1921ea3cedcd1636b78f9f16093cbab499f7fc4af94bcd6d31cd720a5138ed14a5e9c98e79b102422f6a789e9d63740e5ea2df60f2e0fcbb00c812c7f5c2c5dd62154ebc17b528150d713a7bdc71be8f56be889a4455e6ad09145c4afade797192479914ad31d542e1c67beea67d670eddb64796c599a2bf0294e5c69041f125e6d0b0d0d9b5b0021f5201aa9bfb0d0c764a3777ed8e29ba7bb8f9008c3bda0802464d13b2ae37b84c7662f95596d3b20801f6a5014bfdb26d925b90f4e20c65e288cbc6bbdb370e788f5affdf31223afee572998736af7bd8923f1949d95028e26e74cb124df06a4bb9cdf23d558f309dc0f5f145b01ec18749bc459e905c52b07f8c24a558b8e7dbb6b23ed13a42fac57679b6e70b5f8ec1d438e2bd756bebb6ed993022f40ab355dc9ec7543b7763c1b16eb6b0b5ef8a02227c9bbf567e68d43e5afb2a166c9bb18c873daf0109599077c382bacf9ba0a3579c670d808b995337ec2fa3095f9bd5857b7dbf69aa5f659ec2f9769bfa6a6355530fbde228ce68736540069465e71a354d5f002e9bace016e534ad9019616427929ae187a0b5c0b81dd5c3fd0d702605c1cc5d57c32aacfc7113855b3788d1f50c1d2f10481ce9ec8a7ec537c789d5898b4561e4a0020dde0fcb79b92bfbab8bd7e997a2e3002409e5e3b96286af4d8bcfac6384cfdede917c385bd755cf0920007916caf4b94b1ef1ade73c38f554ced55aabb422d9cc666d40ffcdb500fb6127551e8f25181ba9dac850a6ccb801e9f867a6872475591748d69ed22679127ccb4ae98388819bddfe6fef648576d816f388a585d28f56f54fec9dbba58f6fe0d595aae99e128b7ab4a14fc1065320326d9593c84515814f82e56b70668169578fdca69c7e40493f1d3cba78ee29d4ebe3f06331e0877137e46821034f76bf2cfd4311d60c0db23ed2fce9c5a516e29e937f1c9006f7645942523baaaa06848250bc9ad6d9656246012e556aae295f5dd3b28a861f25d33183500877f6ca1ecb401b97630a96d2ceaee97129cb3b5dbd2663e494af594a6b71d361d32cf258469c4be83d9cc2151ba52ee6839f92457c29560fea8d0cbb41c402e9e4ee9687b05fda3cb82a1552982d191c26cc2d804650f68630ca240d8e43520ef022a55a40f3423106b006e3dde26b148f4c7232d06ef89078b4264281cf44100e260cc0945c922901d892fed329f53556937136221fa6dfedd4639905219bbc9f4fd82769151b1affa3fbf32a8fa5d97623cc6df82ed4182e003ff1a7f5ddf2aa02e05c41879346e19ac4b5dc230e7e9daf0103465aac441b2f9c8585b18dcc8566486e7f0590ff98295a3f5078f55b8b467f8c0ff0002635264ef4353f87ba4fc5117ea25d91a4a3547799387189e47e5f00ff6c2a504a330ffaadc8034c798a9b2f52e05807eb854a7001583145c07f4343081a02e9a3bb6839be962f3a8a2e1c618751894866480766e935c0893ab16ec42002f5c1bedcca37e3626396d2381267b9683ff8a96940ee2de361fcb4859f602129ed66d700d58ea850063e327a5e45a2334985c395220f35442fb68048f38acba5ef08564bdba4f96c2419b2fa579ed25d772e360505e00d63cd8242795751b22fc0cba23f74fd134bf12e880fff36392933086790af9c1df017e5327810db074fda3d292960f1ca05b8c0ba241d0ee1d8dc0585e23dbb173a26f15ed2d8968acc04996944adbaa9b235e465c20cafd71beca6ac94856f7e1171fa00a879a9fd6292b0d3852ad5af8da0a29d23e51e3dfcbf3c264630c22980c4ed021e917dcdf65f64a7f28cbec953aa6cf06a85d7d558d6adb08d10da8fcfc4849538476bbf6b0403ce857ddaa86c85c901218b8d8f702e9d24c9639cf6824bd4c0ad736024dfcc249d58c28b59afb6c3dfe187e7a6cd75d5a463c2faaa5d8eecc1c20ca3c1cb9959605091dd40f95719ab6eef7b3b2b702bb070613e4d167530307f17e7e53353fd6ef029037e40c5cc72651eb1a2b57201c2624658caf5b715bdd4722216a821d3711bb6f22ddd4427e35884e17f53e1f33f01bc6fd4e3fafe175d954320f17fbbe36a45c6b048d5e3809eaaffff9fe72f990d30a0d539681f6a998e6aa7f5fff4d4bcd4871763ef64940398c5eb7505e9a27e59e0a1d28c2f304c24e85498a8f35755e2b647db0e817278670ffcc3975efcd15cbc1f4258f5e836ea11e7d558fce2e6cc150fcf577ec46a49b60e0d0ca8b722fd171319f67a4750328af9a9d068c024b4116509ceb56f6bdcd6507ce7b7b9d7c8c3d38ae5874323348001b9a729810cad8180d988091ade3384055b040fa177c78b13018291db0a231f8e30ed2f087ab84490a0bd577852e6c140253bfd66afee46e6d03d8a5201d54feb801c490297f0eea8d123f9801c1a1465602de568a31afc465d93c470e6e350876e6c484f0aa6a5cbf90dade87eec77a0a81fb5b0f95a533a8dcb186ce7f05d2fb05b996f0e0a53fcd657e01f59dfb793eb0e57857458e2772f4921dcb4ee9015c5a22f03036023e65a9336435d4b16c1309e3ee5851109f07ecc5d544b0ee1cc016cf0a39a8c067e4536ceb7f4e6c12dc48c059168464a3671b958274e044718a0cde03dd1f8ac94b3bc939e3c7e6087a8e5f6bf00f6eda229f6d0d400d99adcbfd18faa369692277df7d5f1c8fb09e8e86767a691d72d41455e2d415239e2ff095ed2851f426ff7a8da83b35697b29facce11f87c17bed6ec858df4fbb30ba10c49c946292b37e6ada41d6bd9f98c0d5165c0acc5829b3c37cdf5cb9ccfebdffeb99e460a806be59d673f3360621e7c078a2cb8b048f3cc41293e2d0056c1baf4957ea5d9fcd8a3f04a3d8d7ba9931291c22dfba566c549a3ec15b4817bf66fb5be7f634c7676cfcb473c7a61965de3f7c8e120cf733517d148aa93e8a07c0830ec71a92b5bc142c6525cfc0f4afe81b320f60dd44b513fd6549158366f8eb71db950b275ff5dbe15d64d6bb003ffcc1e9a605e97b29a8f10e2fcdfc314c2f9209c3d5ca1b73ec8b0ab69494b00d66e641ece50f6f2a5e47063e00cebdae2ef41e54a4e72a6e6eca8c422979b1837effba215f582266579ee1321e3f5d1815c60159e36ac8d8cb89591e4e9c1d2137888c3f3a11efcfec2cc34e730906a0b35b47ae6dd4a471374c440d8c3ff10c536e3fe5b060d95937d782f3249567fe05f692682a770f4e99489a8a18113d1a6e6e6e20c2e9410e3a8e17aac4f52cb85233edac4b5ec841fa67d9d7c21dea5d1669dab27128e38ccd4538fc8135db21dbc403007fbd7753f3e158f21198050412427f6ad7b038e864f0deebf44fc6c6abeed4c80040828382797b673eb37fdf369c5654ed50b58668d0737b2f25a4029b57e4dad63cebba8f51257264a2ad9d5f3876f71c26daba7ad950e0fb4482cdcd7cb64b268ed0d60fb1b3f2be4f3acf8a76b4776b294cced58a600eb609bd230e8addbefe7ee2ebb293681b15e5256592a4266c49f2d9a3fa6af6675f5c36caec35a186e3a37b1146ccaa226a03b9a42e39d2c2178a4779868c2e1822afdd21fce95c6737a586d8d4c580be298d1090f9d1d7b2efecf2fcbc61a079d9d442f72b330a0382549dc07815cfed68638ded8d688ff879a4887c04764635908e1ca85d0202be13192fa1e6a3b82b328757c3e25467cf8c834cb41805753bc3170420b45b9a69c7767dc2276994b6c3aee9f7f0c710b48356add71dc13ad7b05673e5db92834d88b4b821831c433b21488b834217e5f7e6cd703d38a3dcceb0eeaa6e216e00908ad2e3eee7e0fe20a1eff36be8ff8c16296a43e3d375fbc97624472641660bbf9fca1f27b033ee36cab749b9e5f731e3a77aa88addc0c23518473255f89c68fb366466c52e05208afb10699db12d22869653ced9594d0aabf027b1e7984c8e76aa42f9b64313cf5891d4335c20b70abbbf590cde76b5f79efd86a62657fa2bbb1cb8c4bd861680ef16f7f57a80b7724415712489ec3c6442f66e044149d517fccd1e16bfc94883d274829a70169ce8b31fec7367796997ddc19a865cb975bd91479bd1e6fcb2908d4c0031738f237c5c530984b7503f1358abf0663b2add735c124c97a73ef799fdf59ab48a4eb545f5766b418567bc18c471fd6a6748461864b45d21631e9196ee66b6f2bcb0a0d8d740c2bb48dfc5ccf37067b69e59bdc88c56abeec65d4fdc3a7df5047ec297baf810545187f723af1e5c6eb9e410c9d1071f933537dc023227d7c5e5918e6f948522111fe09e7fe61ccf7edd361a67784815672add8b0c40c9fa2bf73b5e4dc4f9a0f610ce40a32285614ff741e7fe75093aa245be72ded10d8423ec39ca7d6674adf65bbe287c7ddf4b4dc1e1af213e56e890826a56975ece45b013327b1b972e8714989d4cf860a68252a4975972041f59a6c5472cf927c06bd22a7f2e9127ac7d39988d489d2c69628ef75ca79926feb0f0cafdcd1f2c7cbc39ddf4a4bad5ed009bc89b1d852d2a8b1242118c5174590fa60d272920e74a4cc9c04cbbaf16a4e701113a6993cc59066bd7a6184a0aa04ebd84e3b1747c8fa1595ea66669714be204830c8897278d91f0dbdf1146e542adc976d4a43a5fd167e7f1fbfcf6c0b7d590d06ddbb9d1e315823406008fff1e5705ff07c19da0870cc2eac636a67ea1b3584afd5387d5b6ed425138a2690d63c3bf1dc0022fdaec3cab09dd3918e11d84e22d227e3414e954b678e5d533789dd914bb8ac3490779efb4eb730fd1a8d5a9b769dbb861424ff6f798ac7e0992417180cadbb01b50f27bb5afc44e642ec47965843cfd2498254711f9817a594c436541f71ea3c88c4360570877131ade3b6fd47ab639316123eac07a27c9bbb7a20b175a91e3a158a2ad268259ae74059346830d8690c1fda9e4d2267ac178405d40b9e80eecf921195937df66c994a65eaad375d522c5cc277f08958984d9c584977aabc20321951d27467a2a94563c5cadee4fde90bcffd1ced24f3941155a7515f7f3eefe71a8389a083ee4a7d96740e1134ddfcc8d9010eec3614383fe32d54da21fa74d30c153acf1c014d05c621db8144715e4b14d375af69019a60a2001b0b91a0a25b15becaf3947075469b89baef8f55a09a965d6f8cdea05da871abd3cd394f4e8f92a3c7bed"}], 0x2, 0x240480c4}, 0x7}], 0x5, 0x80)
r3 = socket(0xa, 0x3, 0x4)
getsockopt$inet_sctp_SCTP_GET_PEER_ADDRS(r3, 0x84, 0x6c, &(0x7f0000efc000-0x4d)={<r4=>0x0, 0x45, "c53e2845e63598aa5ebc45c5375ad4ac47f7192c430e2aac5a97831185a693b2386f0f306ee81ba1b77fc8d58082f489fa820830a98bb3c65026aabc93506e43aef74f4040"}, &(0x7f0000819000-0x4)=0x4d)
setsockopt$inet_sctp6_SCTP_MAXSEG(r1, 0x84, 0xd, &(0x7f00002e4000-0x4)=@assoc_id=r4, 0x4)
r5 = shmget$private(0x0, 0x1000, 0x0, &(0x7f00009d7000/0x1000)=nil)
shmctl$SHM_UNLOCK(r5, 0xc)
write(r3, &(0x7f0000072000)="40b916e77a172750051dc28cfe778d4c9d47967fda2d9832897a9fbb2850034b3f378e0e3c1b6342b48168b0cb9a501ad1858f314a95a147d02254af8b1fb8441c20a3178f4a9ea9efefec9b35c79ecafa65efeed8d325249f0a3b97a3038301a66da23fd4268e801251aad7517366e1b5995c23e0be61921aca9da1e55f526dbbc303d531e9387c529912067000040597556ff7c311ebfac7a51ac6e597c0f35d03b5784349790d1832d129916ea0839ecf62f96cbe1984ae8403991b625b98", 0xc0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000fd6000-0x8)="2e2f66696c653000", 0x150)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000027000-0x8)="2e2f66696c653000", &(0x7f000000c000)="72616d667300", 0x0, &(0x7f000000a000)="")
mount(&(0x7f0000037000)="2e2f66696c653000", &(0x7f0000c50000-0x8)="2e2f66696c653000", &(0x7f000002f000-0x6)="72616d667300", 0x100000, &(0x7f0000ce3000)="")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$loop(&(0x7f000058a000-0xb)="2f6465762f6c6f6f702300", 0x4f, 0x1)
r6 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000252000)="2f6465762f72666b696c6c00", 0x8200, 0x0)
ioctl$sock_inet_udp_SIOCOUTQ(r6, 0x5411, &(0x7f0000525000)=0x0)
ioctl$SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT(r6, 0x40505330, &(0x7f0000d00000)={{0xb95, 0x8}, {0x7, 0x0}, 0x3, 0x6, 0x5, [0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$TUNSETQUEUE(r6, 0x400454d9, &(0x7f0000fe8000-0x28)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_mtu=0xa})
mremap(&(0x7f0000358000/0x3000)=nil, 0x3000, 0x1000, 0x3, &(0x7f0000430000/0x1000)=nil)
syz_open_dev$loop(&(0x7f0000920000)="2f6465762f6c6f6f702300", 0x0, 0x40)
r7 = memfd_create(&(0x7f00006ba000-0x10)="69000000080000ee0500001b004001aa", 0x100000001)
ioctl$sock_inet_SIOCSIFBRDADDR(r7, 0x891a, &(0x7f00000c0000)={@generic="c68910a5f15a6bbc51b901bccb776ac4", @ifru_addrs={0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
socket$inet6_icmp_raw(0xa, 0x3, 0x3a)
2017/11/27 06:13:09 executing program 5:
mmap(&(0x7f0000000000/0xf15000)=nil, 0xf15000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000b45000/0x4000)=nil, 0x4000, 0x3, 0x51932, 0xffffffffffffffff, 0x0)
r0 = socket$inet6_tcp(0xa, 0x1, 0x0)
setsockopt$sock_int(r0, 0x1, 0x32, &(0x7f0000f0e000)=0x1000000000000004, 0x4)
r1 = socket$inet_udp(0x2, 0x2, 0x0)
socketpair$inet_tcp(0x2, 0x1, 0x0, &(0x7f0000004000-0x8)={<r2=>0xffffffffffffffff, <r3=>0xffffffffffffffff})
mmap(&(0x7f0000f15000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = openat$sequencer(0xffffffffffffff9c, &(0x7f000072d000)="2f6465762f73657175656e63657200", 0x83d, 0x0)
ioctl$LOOP_SET_FD(r4, 0x4c00, 0xffffffffffffffff)
mmap(&(0x7f0000f16000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f16000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_mtu(r0, 0x0, 0xa, &(0x7f0000f17000-0x4)=0x0, &(0x7f0000f17000-0x4)=0x4)
r5 = socket$inet_tcp(0x2, 0x1, 0x0)
r6 = socket$inet_tcp(0x2, 0x1, 0x0)
mmap(&(0x7f0000f16000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_tcp_int(r6, 0x6, 0x17, &(0x7f0000f17000-0x4)=0x2e2, 0x4)
mmap(&(0x7f0000f17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$inet(r2, &(0x7f0000f18000-0x10)={0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000f17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_tcp_int(r5, 0x6, 0x13, &(0x7f0000f17000)=0x8, 0x4)
mmap(&(0x7f0000f18000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$inet(r1, &(0x7f0000a86000-0x10)={0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r7 = socket$netlink(0x10, 0x3, 0x0)
mmap(&(0x7f0000f16000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f16000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockname$inet(r4, &(0x7f0000811000-0x10)={0x0, 0x0, @multicast1=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000d5d000-0x4)=0x10)
r8 = socket(0x3, 0x400005, 0x2)
mmap(&(0x7f0000f18000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
accept$unix(r8, &(0x7f000054c000)=@abs={0x0, 0x0, 0x0}, &(0x7f0000f19000-0x4)=0x8)
writev(r7, &(0x7f0000918000-0x10)=[{&(0x7f00008e9000)="2900000020001980013d7524000a04210200000000000000007f0000080006000000113310315aec00c87f8396b8ddaa", 0x30}], 0x1)
ioctl$sock_inet_SIOCSIFBRDADDR(r3, 0x891a, &(0x7f00002a6000-0x20)={@common="67726574617030000000000000000000", @ifru_addrs={0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
sendto$inet(r6, &(0x7f0000a36000-0x4da)="27fd314809db156d33020fb6410a224a84793429e89d243056180e76a6dd26e707536801319b8bfc8aabfd15407d51e6626f94d67224dbdf832867ef0a7280bab96f6cd5bc99aa51f0b567eba87083663ae91141dc81df16c4d1b337432c87d3305c3966fa26a3f5164d447a740e6decee4c2f94bffdeec20cc804ffd1c8ec75a4f07b6bdbea9a319cb31219f0f1e2e75964bc3dec87422b196ad4d93fc47b66023b13d6c169a14bcc7f31c5c398cf2c088434f3a3fd3551849665f54d6c8613d4ed4e55edebd5162d7e88f29925142027ceaf74a4e73b5d228d93bd5a54ba33da5f7e2b9a51a861b3e0c264df4e790e6166da5d0e15d823afeb1645132b106eef188ef068e9fda8e02955c2571ab4f5a3b3cf3d243444ecf467ee2be0be673ea110b3a6b7ab650de49b06ce6687d5f5aa00d3b0ac02077f298ad7ae1a20ec7bcb5f2fdc6b7f511f48efa7cb5c44cd9cabd700a2ef791d85132f7049f63dcc64947faad16fff0b0f16b1b3e82f9e10e45858cd65d07c938a0c18f9c6ccb123fa40c45fe6c7bae5facb20e55607cd0ec3aca2dd62c61c4031a20cfd23ac9c06680a5285f57cd12679131517af3d3f04dcd62c8a98533e3ac0ba7098e0bd48c15aad926abade10bafe76f78b9b79440e6b4c43e86a712666cd35ab49415901d047f2200b69f17d35636063ffb0719a6b42ee20bcd795ab30ff4e12fd0123873d5472964208b7bc72e1cccdf0573049946ad1a1b92f0f900fb4b6ccc033da82df25b1afcf4deb316220c10f4ab0aed04ef1cfd02ff165190ce297824ea9a700a0db61b947d5f98b8f7083dcbb1ed57abd308f8e94474086f163dd04e774d9f126f499dc200a7d05e6508723e5b153188851dec8a9936e942f622725285ac556851837c159ff005b791d36092e3a431d988569d49ad20aa39a68233310f0c98787c83219788ffc706d31e60af8a5942f0240511b9362775be7ea4bc64d5bdcc5133439109285bff634510dfeea0cee2b34b0a6dd2629b7ccd2c7c77bf75c6466b9b25cc7aec3550b58038148c439323be929acaf5ef8f034a84fce353d3e74ed006e7e01f67d4037f6fd7e7fd7c099f2b345d8a789e506ed0df67732c33dc4b75c685820f6a71be5a63d333ebf5a59eea207f361237435278f84ae54cca404680328504dfbca430e7bbfc259e72ef8200f02423b1755ebd1ae3e5c9a22ce4ae5e9ad481e7ffd303e2ed28d32c63f8e8ee6c9a86919453ec2f1dbb8754ec670bb572961916f613ed4a214fe2ef38fe19b4b30180b72050108dba3a70db7485a309957e499b006515bc2e358caff6c35962432a032bb671319f681605753eee2609497c0fced0361836bfe8001af7cf9eda96c8c067563025281406907c4b7be1125747506c3eee49dc69ee7add1fe2a73296555392974df963dfa107e6b70d539a4f37b31a5dbc916aebc65e5e47a7e78c9d79a089a49bc7bf7b16e176094085b4c61d7436168f5c1eb83ee03cd3c82d223a8ac408a67ce81b2dce87c7f195b29369528feca14f16b8af0e8ae043e3f70abf1480d259175740dc9d1bf5a0ab5357581988444ce125eb37b0c4cf25218de50ba4f024e8f8d3ff2e49f4d66a1c26eb3977878b60576a0e3b3ea0226fc97beac26fa9182d47b4eb639964cd89b8f8277ace960e06b9091785f7f622c8cc3186128f279e0f18c43bfa0e8403ed85d5b8abd0ec13c396dfa6a7da44608a6076bb17260698f5c9791e59323c4", 0x4da, 0x4041, &(0x7f0000852000)={0x2, 0x2, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
mmap(&(0x7f0000f19000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvmmsg(r6, &(0x7f0000dca000)=[{{&(0x7f0000252000)=@un=@file={0x0, "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x50, &(0x7f0000f1a000-0x20)=[{&(0x7f0000dc5000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000dc4000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xeb}], 0x2, &(0x7f000090c000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000, 0x4bb}, 0x20a}, {{&(0x7f0000dc7000-0x1c)=@in6={0x0, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c, &(0x7f0000dc7000-0x60)=[{&(0x7f00000c2000-0x75)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x75}, {&(0x7f0000dc7000-0x7f)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7f}, {&(0x7f0000318000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x77}, {&(0x7f0000dc6000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x73}, {&(0x7f00000f8000-0x41)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x41}, {&(0x7f0000dc7000-0x66)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x66}], 0x6, &(0x7f0000c2c000-0xb7)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb7, 0x0}, 0x3f}, {{&(0x7f0000dc7000)=@ax25={0x0, {"00000000000000"}, 0x0}, 0x10, &(0x7f0000967000)=[{&(0x7f0000dc8000-0x7a)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7a}, {&(0x7f0000d3c000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe8}, {&(0x7f0000805000-0x95)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x95}], 0x3, &(0x7f000005d000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa2, 0x6}, 0xfffffffffffffffe}, {{&(0x7f0000420000-0x6)=@hci={0x0, 0x0, 0x0}, 0x6, &(0x7f0000dc9000-0x5f)=[{&(0x7f0000dc8000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x4f}, {&(0x7f0000dc8000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfe}, {&(0x7f0000dc8000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x9b}, {&(0x7f0000dc9000-0x27)="000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x27}, {&(0x7f0000dc8000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb7}, {&(0x7f0000dc9000-0x84)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x84}, {&(0x7f00006e8000-0x5d)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x5d}], 0x7, &(0x7f0000dc8000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7b, 0x5}, 0x100000000}, {{&(0x7f0000dc9000)=@llc={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @random="000000000000", [0x0, 0x0]}, 0x10, &(0x7f0000dc9000)=[{&(0x7f0000dca000-0x18)="000000000000000000000000000000000000000000000000", 0x18}, {&(0x7f0000dca000-0xa1)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa1}], 0x2, &(0x7f0000dc9000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf1, 0x4}, 0x0}], 0x5, 0x3, 0x0)
mmap(&(0x7f0000f15000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_SIOCGIFBR(r2, 0x8940, &(0x7f0000dcb000)=@add_del={0x2, &(0x7f0000300000)=@common="6970365f767469300000000000000000", 0x1})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
memfd_create(&(0x7f0000f20000)="2f6465762f73657175656e63657200", 0x1)
r9 = bpf$OBJ_GET_MAP(0x7, &(0x7f0000a3d000)={&(0x7f000020a000)="2e2f66696c653000", 0x0}, 0xc)
fcntl$addseals(r9, 0x409, 0x8)
2017/11/27 06:13:09 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_tcp(0x2, 0x1, 0x0)
r1 = bpf$PROG_LOAD(0x5, &(0x7f0000b4d000-0x30)={0x1, 0x2, &(0x7f0000415000-0x10)=[@generic={0x8db7, 0x0, 0x8001, 0x1}, @generic={0xd395, 0x0, 0x0, 0x0}], &(0x7f0000ef5000-0x6)="737973654f00", 0x1, 0x80, &(0x7f000000a000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, 0x0}, 0x30)
setsockopt$sock_int(r0, 0x1, 0x7, &(0x7f000056c000)=0x79c, 0x4)
r2 = socket$kcm(0x29, 0x5, 0x0)
ioctl$sock_kcm_SIOCKCMATTACH(r2, 0x89e0, &(0x7f000059b000-0x8)={r0, r1})
bind(r0, &(0x7f0000550000-0x10)=@in={0x2, 0x3, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
pipe(&(0x7f0000229000-0x8)={0x0, <r3=>0x0})
getsockopt$inet6_tcp_TCP_REPAIR_WINDOW(r3, 0x6, 0x1d, &(0x7f0000c7e000)={0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000169000)=0x14)
getsockopt$inet_sctp6_SCTP_AUTOCLOSE(r3, 0x84, 0x4, &(0x7f0000a42000-0x4)=0x0, &(0x7f000052d000+0x488)=0x4)
statfs(&(0x7f0000857000-0x8)="2e2f66696c653000", &(0x7f000008e000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r4 = socket(0x10, 0x803, 0x0)
write(r4, &(0x7f0000dd3000-0x26)="26000000110047fb93ffffff94fffffffffff70403000000000000000008005105001aef0000", 0x26)
[ 1055.542347] FSBase=00007f3b55d00700 GSBase=ffff8801db500000 TRBase=ffff8801db523140
[ 1055.542353] GDTBase=ffffffffff576000 IDTBase=ffffffffff57b000
[ 1055.542361] CR0=0000000080050033 CR3=00000001d9a33000 CR4=00000000001426e0
[ 1055.542369] Sysenter RSP=0000000000000000 CS:RIP=0010:ffffffff85142970
[ 1055.542376] EFER = 0x0000000000000d01  PAT = 0x0000000000000000
[ 1055.542378] *** Control State ***
[ 1055.542383] PinBased=0000003f CPUBased=b6a1edfa SecondaryExec=00000043
[ 1055.542388] EntryControls=0000d1ff ExitControls=0023efff
[ 1055.542394] ExceptionBitmap=ffffbfff PFECmask=00000000 PFECmatch=00000000
[ 1055.542399] VMEntry: intr_info=00000000 errcode=00000000 ilen=00000000
[ 1055.542404] VMExit: intr_info=00000000 errcode=00000000 ilen=00000003
[ 1055.542408]         reason=80000021 qualification=0000000000000000
[ 1055.542413] IDTVectoring: info=00000000 errcode=00000000
[ 1055.542417] TSC Offset = 0xfffffdc924124892
[ 1055.542420] TPR Threshold = 0x00
[ 1055.542424] EPT pointer = 0x00000001c61bc01e
[ 1055.582182] netlink: 3 bytes leftover after parsing attributes in process `syz-executor5'.
[ 1055.718492] netlink: 3 bytes leftover after parsing attributes in process `syz-executor5'.
[ 1055.718539] netlink: 3 bytes leftover after parsing attributes in process `syz-executor5'.
[ 1055.923862] netlink: 5 bytes leftover after parsing attributes in process `syz-executor5'.
[ 1055.947151] audit: type=1326 audit(1511763189.106:27976): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452879 code=0x7ffc0000
[ 1055.967678] audit: type=1326 audit(1511763189.106:27977): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452879 code=0x7ffc0000
[ 1055.981712] netlink: 5 bytes leftover after parsing attributes in process `syz-executor5'.
[ 1055.996661] audit: type=1326 audit(1511763189.106:27978): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="syz-executor7" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=202 compat=0 ip=0x452879 code=0x7ffc0000
2017/11/27 06:13:09 executing program 0:
mmap(&(0x7f0000000000/0xf44000)=nil, 0xf44000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$autofs(0xffffffffffffff9c, &(0x7f0000f45000-0xc)="2f6465762f6175746f667300", 0x0, 0x0)
r1 = gettid()
socketpair$unix(0x1, 0x5, 0x0, &(0x7f0000880000-0x8)={<r2=>0xffffffffffffffff, <r3=>0xffffffffffffffff})
ioctl$int_in(r2, 0x5452, &(0x7f0000009000-0x8)=0x3f)
fcntl$setsig(r2, 0xa, 0x12)
fcntl$setownex(r2, 0xf, &(0x7f00000ff000)={0x0, r1})
recvmmsg(r3, &(0x7f0000f40000)=[{{0x0, 0x0, &(0x7f00003ea000)=[], 0x0, &(0x7f0000f40000)="", 0x0, 0x0}, 0x0}], 0x1, 0x0, &(0x7f0000f41000-0x10)={0x77359400, 0x0})
clone(0x0, &(0x7f0000f42000-0xf5)="", &(0x7f0000ec4000-0x4)=0x0, &(0x7f0000200000)=0x0, &(0x7f0000f42000-0x6c)="")
mmap(&(0x7f0000f44000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f44000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
readv(r0, &(0x7f0000f44000)=[{&(0x7f0000f45000-0x86)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x86}], 0x1)
gettid()
r4 = dup2(r2, r3)
ioctl$EVIOCSKEYCODE_V2(r4, 0x40284504, &(0x7f00000d9000)={0xfff, 0xd, 0xb802, 0xfffffffffffffff8, "b65a932e7490f79fca75a66e2f0c2e5e2635554db94781f087db4f531f0ff51c"})
tkill(r1, 0x15)
syslog(0x1, 0x0, 0x0)
2017/11/27 06:13:09 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
io_setup(0x3, &(0x7f0000f8a000-0x8)=<r1=>0x0)
io_submit(r1, 0x0, &(0x7f00001b2000)=[])
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
syz_open_dev$sndtimer(&(0x7f00007a8000-0xf)="2f6465762f736e642f74696d657200", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = socket$alg(0x26, 0x5, 0x0)
socket$inet_tcp(0x2, 0x1, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfb9000)=nil, 0xfb9000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_AGP_ALLOC(0xffffffffffffff9c, 0xc0206434, &(0x7f0000d80000-0x20)={0x0, <r4=>0x0, 0x10000, 0xc})
ioctl$DRM_IOCTL_AGP_ALLOC(0xffffffffffffffff, 0xc0206434, &(0x7f0000301000-0x20)={0x57a, r4, 0xffffffffffffffff, 0xfff})
r5 = fcntl$dupfd(r3, 0x0, r2)
ioctl$KVM_CREATE_DEVICE(0xffffffffffffff9c, 0xc00caee0, &(0x7f0000d97000-0xc)={0x1, r3, 0x1})
ioctl$DRM_IOCTL_AGP_FREE(r5, 0x40206435, &(0x7f00002ac000-0x20)={0x800000000000008, r4, 0x0, 0x80080000001})
r6 = dup2(0xffffffffffffff9c, 0xffffffffffffff9c)
r7 = ioctl$LOOP_CTL_GET_FREE(r5, 0x4c82)
ioctl$LOOP_CTL_ADD(r6, 0x4c80, r7)
r8 = socket(0xa, 0x1, 0x0)
getpeername$ipx(r8, &(0x7f000019d000-0x10)={0x0, 0x0, 0x0, "000000000000", 0x0, 0x0}, &(0x7f000087b000-0x4)=0x10)
ioctl$sock_inet6_udp_SIOCOUTQ(r6, 0x5411, &(0x7f00006aa000)=0x0)
ioctl(r8, 0x800000000008983, &(0x7f0000e48000-0x2)="26b4")
r9 = socket$inet_udp(0x2, 0x2, 0x0)
ioctl$KDGKBMODE(r6, 0x4b44, &(0x7f0000ac3000+0xfc4)=0x0)
pread64(r0, &(0x7f00008b8000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000, 0x0)
accept$inet(r6, &(0x7f0000295000)={0x0, 0x0, @local={0x0, 0x0, 0x0, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000c69000-0x4)=0x10)
setsockopt$inet_mreqsrc(r8, 0x0, 0x29, &(0x7f0000e55000)={@multicast2=0xe0000002, @local={0xac, 0x14, 0x0, 0xaa}, @loopback=0x7f000001}, 0xc)
ioctl$sock_ifreq(r9, 0x8983, &(0x7f0000006000)={@generic="1b520310b564c42354e2d0b8a14e1ad7", @ifru_settings={0x0, 0x0, @fr_pvc_info=&(0x7f0000006000)={0x0, @common="6c6f0000000000000000000000000000"}}})
getsockopt$inet_int(r6, 0x0, 0x12, &(0x7f00009b7000)=0x0, &(0x7f0000d95000)=0x4)
2017/11/27 06:13:09 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
openat$ptmx(0xffffffffffffff9c, &(0x7f00001b5000-0xa)="2f6465762f70746d7800", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r0, &(0x7f00005e2000-0x58)={0x26, "6861736800000000000000000000", 0x0, 0x0, "63726333326300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
r1 = accept$alg(r0, 0x0, 0x0)
setsockopt$ALG_SET_KEY(r0, 0x117, 0x1, &(0x7f0000ce0000-0x4)="3b692cec", 0x4)
mmap(&(0x7f0000000000/0x786000)=nil, 0x786000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket$alg(0x26, 0x5, 0x0)
sendmsg$alg(r1, &(0x7f0000e26000)={0x0, 0x0, &(0x7f000076d000-0x10)=[{&(0x7f0000b5e000)="72c904c70f60d5839f20f08bae0b1fc5f624e464a02c74e550e3d6e0a97c4efc68cb133cb9f6f56d434c9c5b90d8782288031f161c23410b53d78b501f61a4f69cf6f9057f574d213098db98351140e0b9a188b45f354c6384d2b17d62eccf7a60ceb924f0aaf70b61357eeda33f68da4b776095f5fc4c341724bf273dae3bdbc7e030948af360cd308c53aa1b85ef1e7806158adabe33c359493f1ca7441aace6713781951c3be24874b5dc5b538b89384d4ea2c48d51c6819785a6f8080603df5444b7c1190203aa68a0669abc80d1022ee17bb1cd43ebce4252112dd2b0a20a", 0xe1}], 0x1, &(0x7f00005ba000)=[@op={0x18, 0x117, 0x3, 0x0}, @op={0x18, 0x117, 0x3, 0x0}, @op={0x18, 0x117, 0x3, 0x1}], 0x48, 0x4000800}, 0x40001)
sendmsg$alg(r1, &(0x7f0000bcb000)={0x0, 0x0, &(0x7f00005b1000-0x60)=[{&(0x7f0000ef5000)="f0f3407b8c8af8d92f39db099eb1ff6207eac575cfef4dc64b", 0x19}, {&(0x7f000095f000)="689b2c5102879b3e71ad2ecf172115ed3cc544a3efe62890e3221bc225cd8b63ebf0e5cdbb7ad4373b5cdc481281ed25536db9fe50e8b0a6ad2ad9f715d145110c00b379add08ff1ff6fe1b7500a7dbe01f207e4d10cd3b0b64980f818671bf275fdb4f7fa36d66d5ee8c16c796c4a12ac59013c5613b630b1154ac749547a2aae8b96d306b934b9bc53b7ee46ff81435140e7d4896035dfd8", 0x99}, {&(0x7f0000c44000-0x9d)="63fd367c4a5ae39154a6f67ef725ea8ba8874087c2861a7f45bc404a4f99ca1cc014c3df1b1ab0777a60c36b197a402c624567839ccbb560f9e9f7e1a67991791ef71e2596630ba092bd790a2fe460d9b160eb843551452acbd4c71517760573bb7402a4d6527e0f37ebd104560abae2eb4ca1a9b69dde21abfce6938ccf03b20533caaf630d30a81bef292c23c7d448a1babe16a2b4d5b75c1f14cb55", 0x9d}, {&(0x7f00001c7000-0x83)="02f8fc15df5a86e485f7b68ae7fda7c0d693ad8941bfff9fc827c148c8dd8f73c44d33b402924776263148547dd16f294927fe623150d42dee9258ca73f27b26e047f24c2f02a3fbb6fa63bf0e076c07cc24f435f632b0045ccd379036c95902236a1dc96f0032a7bb27c378988e325c4142358edb2d247cc61498db581db7c5ba25a5", 0x83}, {&(0x7f00008a7000)="095a2f37c5b9ea563ded0fd9f8f2484104e2dbd5fa0b3d2b3805d2a1d8dcbe037defb52e6bed629d1b2ada66edaa0e0f9ab414b3e4e1827d3440f11a6a1a8e7165ee8b475b2734efcedb99ae24a9bc24cc62e99b92b406afe78bd25e004b81461455867aa721400f3eaf8751439a50cb3c3e1c186c54e9d3ae09e330624255f84404317ed19b9e8f8aedbe72e5cea84c2f8b7fdbc3806643ed279634257f30acce973ee35eb61a54b7673d19dd93766992e85615dfe1bd5f0e17e27937688b300936a5dab79845e9dfdf98dbfcd6b0cdd5ae0f350420146dbb45d1c5c4e7311fe6141e410e", 0xe5}, {&(0x7f0000ad9000)="3c2a9c1fb67c28b3", 0x8}], 0x6, &(0x7f000024f000)=[@op={0x18, 0x117, 0x3, 0x0}, @op={0x18, 0x117, 0x3, 0x1}, @iv={0x1018, 0x117, 0x2, 0x1000, "10c7f77bb8caf0e0642fd1a383b1ef6875ed11f4c80eb1af9cf8f228db563e5d7e120c8e33d6b8b56f3cf3ae53926923dfe8760d6bbb94a08d07c09fa05c6b220a3fbb5b715f265bd8c1feb9a8086feb130be98b1129846d283e46a216fdd71b894cb2403357e94363ec8de600999f4066a5a2ba28e301135afa209ef6c9cd406e09004f0dfb36096a0fba0aa43a469e4265dd6ccea9d0a0ada33a4662c70f2210f98a05b7e02166c3399d9bf1e89181c9b7c598e534cdbda28d59bc9fb6999fd302c2ed9ad6567d56867f6a8f78e41c48e1dcf4773683bb36c58c38f732ace0eb0168cf1384c387fa47a75de61f9d678f993dbd3ebde396dcad7008bdfc02b44d570f9b6ebc3975799e95fd02f6a191aa58b943abbb6eec965f9390b28b1ef7349ae246eafbbeb60c6a2f835ea4b04180e930d6fe33095f7097006c47e2c4c664211d04e898df1066a29f9bf7bd1430dd30e5cf1a9faf0c6433f0357e62f2c629011ac2840372c5710a191c9d223b02548e1e54191015ecc153a1bc51edfb3d5c918009a8d2f110ae0e0fd482d84c4a75aefa1ab92789a76f599b0265cc6e366c1dff8c907865f46c0f8dd5d816cdbf0a9bcce8060361677b18bf18421329a0bf793f17db7f8498f9e0aa7129f4a06d4edde5f34fdc2b4fc15bb7fd3b2b1674a735a04ed946decfebc14567fb7899f0ce13979df593b5705592868bbb9d39f21ff6d6579ad2334d28c50485e79eba62c3653989d2d747697fb04370b59a3c8a7089f09440826b3cc1446ec895d29f8cb27a6ba80bd12dde9c20887091526ffc4b88255a731eea868824d72bffd2e6f4d69d5e89693124ec4d9a30a3c2628724f7d4ac9d9a0b7f143b36d773e76eca68b33bf5e3d035b30ebe6432f573db7fba15611d522bd1c58529b502f44ebb11db25d29eebc53c737e176eadaf31edfb578a30096b79e08262686d12430bd5b8824155a910b515e58d33b3b2a3d3af31570bbcdcff40ef47c55308fec0b1e1539046623468fadc93de931a7fa13bf6340e764e2cf3ee85e6965f7c655c3882c959da85a16ef7aae68b732508a72f0b9ba9e958194f7e16f978aaf32d77744c1e03aae58fbb8b678fd5db8281a43c813e8d648552d46028549eeffe1ad3e89ab7856c4d7e68cac33da1014d7d66fa42b38a8d1b497f2ccf592825447d6f902fbafe968945641757b4c733f82c94280187344be638cd46a2a79d8ae398339a64f3327cb118575808f71673cec68afe0565ff029681dfde8febbf79eee79099231cffa445371b863531361c2a2149d7138176fc43d78784a54cda20b60aa56d451ed8876f00240b28ece79659a391a5fe9be1835c182d1427db56974ccf4fc60fb286e52a10f60f55dc0818f5c550adad1eaf21c66bdc3beced41eda3ef017a8740aabd7068e61b782d55f0fa7fca28a7b83677da1131e75d9f539b00fbe0befdcaa545b5401f52df7e7490690b708a9dedde7ce9fc6a3b100089b586f4aa98dcef8d6b4a78a1b08b7716faa7fc56ffff0f5ebb0d9b58aea993286347b579de9432819d25b93e12e13fafbaacd0390cc921daf56ce1e0364aa5dd8c387e1433e3644a9985700ba58e0c264dce534ecdd7ef64bb6d4658d9c445b85be1975c5d9e9118796e3e8db10c6d88df015e79e3091f6888c9a0ab3970bbb95af356201cbd0858145bcd40b9a8919a74515acd07f46a16ad330c9a2f8b3c271d6dcc8a0070664f1c783fe963c73699bbca41422b45c9c8e7037c3bc7d5da06be1aea140bbf884481c0b23019ae6b04b09b5321ef75decadac7dce2c69edb95c2023d8a9fe129f98c20eac646ccebd2064da4cf90f054d56121b5800e9aa4d27d8f29bd51dd2d3440b051f747ceef94a335272fa1cdeb65db983e67279722d6935f0334d8c858e9e35c7c93029435064e6befe484793d1bdab67437550c5ae9a2e82344862bcdcbbf84286d48c620805f0edcba967270c8d0eb59d033fa2cfc2468a23be8855c5cb13ad5111b17664705d847929f11281f33c3ed6b5c0a3493cd5d71eea89e08b6f2ce2eb802ee37efb286887f22a3f1533e4d2813e360451c7d0c84f431fb26e6c8c58a65a326a1aff6e4f8cb8f656f69e59e581e794f86af87a25bdb6648456d0e1e1e0270f90bf730df63c1288d358587594836d666888cbbbb40c0660e4e653adbebe80ab28671ef6694e3893bc2ac56a54effee2223831fd69d6ade43763aff7217c5d6eba3bdc843dfd76b708c4ffbac8d8ce33410dc379337a1b7e177a8d6447e59e054ec12d1132a2cdb90ffcfc3f58e63f0a1e7d006494cade24f1e82d11bd5c716d481eb53ae58aee173094ab5bcef647d4950d50653b9749785ffdc13498d0a5cab1026a321bea13bf7e317694d9283bbae3fc98ebb512626d192c644ec02004d9cbaef3f9d967eb8ca79fd22d3af6502a7cbc427309bbb6286ed8ad9ae58cea1ef8793ead05a52cb2160e2530e1e6429e8dffc918d415569217ee9d7242c092be6d866b1e61b3fe586b0cd37aeca58732cb365eb87007f7f30e549e0559901de6700fcde158848b5d024fc9946751b7347daa3dfbbf09453ef8adf25968fb2c724bbde4d6119c9afa80b5d3d7caddf9ab1f161d7b257eb96f4b50e0faddda63b4f39c1788ab4261795ac526fb22745f7bbeaaf150f9eca0d058a8bf0aebbd530dc74ee1eaa18dc9e37247fa4869ce461bba6fe7a7d6baa8b0fa84afb07b336326dddf40b2d835a4282eadb7451b0b4a17e82a486a655966a93e1c774e6e09517f0b58d357da0d69f63ed6c7cb923570ca7865cd763e11ca9869639824b40f82b22272bd204ea312dd34fbe76327f8bc8ceebabfb8d0c43d7277d121d28203a7b8f2fe5d5d91fe0669141b1adc58f88145f7aa5c322d5c3dded3ca39c6567cc47ab1b65ec730622237184249609687d6224837d09620aba44dcb7ecc224ab194114f6d188d78680fac359707e7eb508014dd34281a93d8011f4161a7c5c7f1ed8a5a822403b747f78cb793d6757e3b30cc3dbf47cb94b1b3566fbe62d5b9a31f87e2dd915a9f22705d0b2e0303faea9f7535f93c5bc15f620147124f2bc4b72cf04786f425a54d71b185ea3f78894976a4349158742cf3a3bb92bc120f3ab91098d9153b7b1d331276963a4bd0349d137ffc1bbd7812b8225bde6bf8852803a2c8d92d90b3011c390b3d04bf571b0be417bf82e7e8b7982b72caf6307043cdb36d9f58fccba2e483bbb3fe75fafacdbe8bb59bea027ff46b2f958869dafc5dc24ce4fb94259a08e8e57ea5f774bcb6974126f4395882e69a911fc5dd3eed70a6de9b86e4e64b5d5dba4be0bfbe089d5012011875eca2df0a278ad3094aa87e0eed9b384299ce82206c2c24ec846b5f24a8b0b93a940bbf3b05d155a920158c11a0cbfb90a050200eb5a62952da2760e78d2220c95063e461790b0d776bff175ceb331adf4df85c49f2b71afa09f9be624c16650219946ebcbd0276d50d52ecfe6a404c29f3c69e7d0e80b9b744739a34cf33ca762567be136b1f4535378d879adabeee066ef5ec9ba4a3d8b462437e2f5d38c0d5776db9dd238fecb53a9a7e22b1e6f045c01e5bb05a10824b5b8b8de5ab97d7b36225198db1c83b3cd3f44c4cc9e498e3b40fd9ea9a066d53fc107d184aa2a271c2476491424906dabb843f78c9c3d424780b95c3cf9cf7290527aa0d85994b4fb5ba78dfd59b7dc341b1a04643106e7607eab9482e32a5af624339b40697e77a7fe60c60f42655fb42f12fc9e66f0f807af63de643482ab64fb7fbbe69e8ac91c14bf46dca34724b9d9bcb8226fa3aae41c86390a70002f552bc8f2c3a1f6b356315f96b9b545ee0c20be748ccde3a68b9519beb7450e8fc534883b92c298817beb579e4dcccf38f60e79312179cd5251557d81b1e89125920122d0cd0c3eb49c7be67edd2b6e2f47929607e76e42ce68ac4ef6b631dbf553e74012267533f7462c3c2174306228186049c26beb0c352c095378013fc140b617117bc48d5a201066c3225c9060ee28c0fb335f178435582ee706fde46f85de5b76857385cabccec0027089ec5cd676cd2db179cde8616e29a3e2493c40168be0f703c0beefa60e60c45e8dda69c80abb00576a8f22c1d1478cee1dfaa1ddaa7f99870f0ea9868036180def6092559a3c05eca49e0cd92dd2ea9beb9bae420442aebed934f70275120c28b1b7a195d9dd0cb7cc77261f4f3f5465597c030e34c21309ff97608ce74789ca1ccda0a0901ef6a348527ba2867deb42f8af61fcdb6c1df103438662588f9c941262c008e58477f184ffba3393224086aa4fdb0fcfe278bac84dbf6368ae9719c7dd9f2cca82b726b72a37d333af130c0a7fcbd76f510395b6a8936f8ba8ea8a29f69314b98f91be26b26ec0106f2f7d6c9a1ba6125fa2f107eb24dcac33cbb93ffbb0c22f863da2a4e38a27beb37c08129111118e2fab876af6481e84bfc27fffcdf00d56d0a4c3a10a4c2be70bff6efef3afa989128d850295b73fe54791a112ae674d95ee7626234d50f10639925506bfd322a714dcdd4639520734d45fe7f4a277e25e1f4713efdf1b588120a68e0cdb1297b90c794c204beecd1eb00663a8bfdbb73e47beb16ff090683c4a25eeff9f79049b0fd9dc41d21c98b646c4c8e53fd41ad597254061a7ee6b7edfc8a60412911634ad763a927ab21165f2b8f93bf03de82f8e570487abf44bf9826d4f5ed56c646053bd4ae84facb3be8a4e60d8d9b8c2e6e882240f83fbe4c509299c73bb1c2616dc605ecb65670a3cf6ee0da9dbca6238a9668a6049b98c88fb2981eb1af104aa6f996417d8dad053fad5f03875ba2972d8f21673762c7528d837c3bec00da725674b6851fb2a5d91aa2e5cff5fe2d7698546ec9c87cb0f6dcc4e8e86823345a80c74e9acee0a1eb209aa1c4163964aefd5c555ab2e9bc131d7b7a92434b903c2562207d1df8629b8467e336875a31d52ba64e3dc430cbf15aa9f245e4a9c8637d8cecebf1977109e5557154f91f41341a1fc7d7a4eab496aa0e1b0639382d95c8455fe7458a9637d8a077a5ea5a86af3416442b1b9990250b95812763fff72aa4297579ce838db92834c8a1cff76fd8256f7069d64f23231aacd471039d5942f03da866895e55374619d3bfe33c401aa8dcde45d8599fb2c7d7c995c84ea9a45b1642fd71fac223a2014f15f8a47bc866196508f4fac0e806607e070044c297b756da8bf06e6b81d136261ba52d5c736b626721bbfbc3acdc1289bf71b05f4370b774dd7c063774239868d8a364562cce6ae18cc3615c8d22e11bdae5275257a9a5d304cf44d1f80f356b676154210d36719c3121e0a6d35b7b57d27181f2d2fe04067789382f207a64bb2d2c5973275adfff21c100a7e4a31aa5ed522b49c281e7e42b6cd55e01eca88d553db76e1f8a39745de90b02b8323191456713d62776c8d858d9f87b8b2571c00d151f73eba69f307472c517425b7714c299504110c5b3239d8b9fda878f672b387e453ab2b54433c2d560064323d07a24e8f49f9af20c7605e1097feeee576b8899a6d1a299cb5ecdbcb6aa6a4a86f73c7cbefa70f44ac7f9f3b036a98cec7e0b929c63212fe9a7d2bbaebabc147afd61dd678eba49614f1d883caf831bbced176c17e3e9e9e95d796914deb726cba71a87b3af0d2654ac6f1a70768c3a81e4a33687ce7fd6cb1d1a7786976f7b8b7157784bc68771ed06bbf3c7c9c176413b4dc09f088b375cddcee43a2f0be5635d234050b3f"}, @iv={0xb0, 0x117, 0x2, 0x97, "ace0262fbd88f54decc26b6da472ee732a71518e86b7d573ad0a0cde38371aab682464ba68710256818afa8e8f1ddc506ac89a5f9c62527b7b4a6ed72e168837b321bf3cefca7dcdc0dd1da945b209d9ad878402674959a6d54609bdb02f8153b794d7b97eef3ab76648f7fa3d3a14637819f812e7b746f7ecf8890d175cc1f352d513a6fc29f1328c723dc871fe074a49e4916d341565"}, @iv={0x30, 0x117, 0x2, 0x1a, "8ebdf535ed850213110e5f0c5f82ae09e1d82279717b727771b9"}, @op={0x18, 0x117, 0x3, 0x1}, @iv={0x70, 0x117, 0x2, 0x56, "615cc3ef02cd6df743b3880b875d19fcf038c15268b6d9159db587cfcb888f4f7f92f75d6b1471d88d3187895a1a71674c4bf21e9d91eb2b7b77495d3fff0acfe2fe27942ac2a49d51bbe42a45e4c0087a68d825ec02"}], 0x11b0, 0x0}, 0x10)
bind$alg(r2, &(0x7f0000001000-0x58)={0x26, "736b636970686572000000000000", 0x0, 0x0, "656362286369706865725f6e756c6c29000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
sendmmsg$alg(r1, &(0x7f000064d000)=[{0x0, 0x0, &(0x7f0000765000)=[{&(0x7f0000cd4000)="3d872174dca2e392bad163314c8f7add652031d22ffab1bdebb554c6c7314844033da1084f0dd7855972aa", 0x2b}], 0x1, &(0x7f0000e49000)=[@op={0x18, 0x117, 0x3, 0x1}, @iv={0xe0, 0x117, 0x2, 0xc7, "c78050c83b7e2688ccb49b3d5b22764ed5cd30402302e13ae62b87189cbc6d39e94a7929b2581475419c1401d13e53db874340d1da830e706cdcec66dec5c37b8560a5eea93961e957307bfb24e5eb974706fee8561418084d5696ab41b816b2a4f6f7e83f2cc338f2ce38303748df38ef89338f696ef574a8052b1176cc4e219cc62a015936ea3c2e50e4b78d3c436a3b3d6fb3f30aea5db2aa0ae4e564bb1f8d53f0a1c539883568c73124036d7fb594d070bd9dfa03cbe95434db5c878a31da343d39310c9f"}, @assoc={0x18, 0x117, 0x4, 0x8bd}, @assoc={0x18, 0x117, 0x4, 0x1}, @iv={0x108, 0x117, 0x2, 0xf3, "e8c57c6e619e0d50362cbfd75cbee108641df6a47f39078ff523d0002feb9502ad743ff789d9076615774ffa32618b783d1317ba4f9237151fde50b804e9fbbb15524a825b1b79cbbc01dfa6dec8a805488440d15d5fa6791e696a9d30bd8a1292647c547a4ac83991159ca7b9ebd295f628b2d3d95e68d2dad84654f7c3bddf5e134962086d61ae5d954f5148cce8824d1db36b6ec5d0750ce8927bfafc503b23455150e73a192002b16105a606dbedebea565a5667d72912119e9397f89ce97348b6aefeb47d7404bda3f449c890c0712c7d33993465f6b37cf8676279526a0fbec3e2a28c50b872d332615be819714d2829"}], 0x230, 0xf0e62cc5fc3e8b7c}, {0x0, 0x0, &(0x7f0000d04000)=[{&(0x7f0000c9d000+0x775)="d783c7846691a33989b3bb2447cb38d7a55068f5d45f2e6aa0d69e3775fcdd987a7d5218de2b838e428624419674afbdb61b66f2cd9bbf7524822f2485d492c330ad18e080c21b079074d762fbf4cb0bc815384236c726253fad339c20332b3658a50d267a566fcc0e1c912f722f31ce79028d4f336ccb6152cf21ac3bde3598d28c835a35fdf99c174f2f9a5b290f9076e945ac13ae86be2ae4b0842ac68f744aad226878a4cc082a330a5f5661bb2e5310c67cbf5a5322258df4a846f133df29144b59c8d6bd391c2b53ae72b68c3dd05a8641a3c4b1d3e49f15bc0bbb8b4a5de1", 0xe2}, {&(0x7f0000f84000)="189baa74e1a78e3d8b5ddef7f419eb6c88a8fb06c1cbcadd8d1a52543ac90cf9612278f0065018c2c0f6d54b483075cc1ef662b77e2be28fae1ba0de4414cf5cf52b8b669da3d103b2bb", 0x4a}, {&(0x7f0000484000)="c13bb91106324db8bae64f4602771cfdafb40a58c30ec4cfd0e9649ef943545adc96b5996fb62686bcfefebea528c4338fe35f5cf88fe918610a2a1d1ed6a8d39e12b5ff725e1d647baf028f2bf6a569b8e599fb361097244ac99771ef4d8cd32d6e0dea132df98b32ff98f6950aa137f5a0b264d1a4581d50f6a7a84a022cafa45173c9f49279b965a32af913d59dea5f1e0944edab1eb1be0b740c9cb01ca1ee052cf4c7ae50fab0b9998a06cc1e3593fcab0b5c035832df2eb5c13431ee45c756002d256eddf8c960d1ae2edf2e320b6e390901acc8a6b7c97771acaaa2a1350b72c10c88ffed023509ac8449fcaeead1db9a560047bca201db", 0xfb}, {&(0x7f0000fb5000)="c5107223f3c816f63c12717fc2b3dcd7b4330eeb72621a662a070f799a41225b83617a0f50a5e54797544ff54132cc081601dd81d1465b77eeb2d35ded10c99bd1c7585c3a900a676b79e956a0ad182ff7dfa929af301539ca6d7d9d4ea11a2899dd6a6d8ef941443d2b495a8df7dd00ab906901b51ef60ec475", 0x7a}, {&(0x7f0000dfa000-0x49)="4e6a92c1e58f08fdfe2b7670fe1816104941d3c4a3fbc30b7b46b4d697c475276c0c0b5ae879857dab351940710638c86bd1896055035825393f5ccc4811c4f703e61727729bd14e05", 0x49}], 0x5, &(0x7f0000ace000-0x60)=[@op={0x18, 0x117, 0x3, 0x0}, @assoc={0x18, 0x117, 0x4, 0x20}, @op={0x18, 0x117, 0x3, 0x0}, @op={0x18, 0x117, 0x3, 0x1}], 0x60, 0x4000004}, {0x0, 0x0, &(0x7f00005d0000)=[{&(0x7f0000049000)="c6cdf5e37e294d49585a7344d8cd5d572e9cc3a6dc9726a05e2855b0c99ec149cac29260bae6059a57548199f06973db9e485f5d2f15ad3d2cf8f4445963b3634d1cbda6da6a16a0bda7088d2a9a3e72a899270d639400fd28eb260a53b1a202df2690fc53bef9dd620d1a2759f9a727a8da6ab0f0af5cfce8cf1f1ab47f146a9ecadca3362d7b52c9112ea1ca439de252ba966129d9b8dca4b30dc234db89e2edd931caeeb97479205f0855938fd4c0eaaf5cf6d337011927862b4944028d6adfe052a50690f811aac874cd8b30be920cf5d9de737483fde45738d8536152b2fbeca4987bf9", 0xe6}, {&(0x7f000085c000)="fcf1f15cbbebff73c4f0a1f4620c2790e83f34009f3b64db30f7a2d65b9294e8661d2dff4b87b5d321d846d89e4309130dcfdf9a7c8dc1996eb1389a7fd23d570a72fdd0b08e9218938ddf55e29221b453481f48a10da9b7996630c275e4e4c16cb6060d560583282f67e7f2168dc0dd1139afe43a20926a03a8b99547bacbec01a327291a7ca5360220468710d39f208ba61bac83ff5d0e799c6311766212d62f944ec137c6222b57b386d3619a60667e960c766aeb69bb73e2fb1f13549365e02021ec527dbea18a2729497ee08bd9f1ac343cedf0e28e052082671752f2f4a9e792a3a89278bebc12958a3955e7f4be2718279c92b88643e029", 0xfb}, {&(0x7f000023c000-0xcd)="6f38701c9c00667f657e0b0114f119146cfa09086d042dd33767ec6400dd53dc677f04a9280b476f351871275406c7ae29d72466c7b7583e3477dc9efdd78366df55e0a3917f73d8c1e04c09e9842786fe65003a2bd1dfb9c5f5763317d05167d47e4a704d5e345d6cc4a3109852d6f653bae6ecd423fb66a659b5314b700104b5de970612d7e439469acf59f3700f7bb6a06470f3dd0f05f0e925e0de64553811f519f74acc5fba3d8f49a03e6e5657309247b20f5383c806c2c9279109a2ee9018d47e1e0412761e08e3f848", 0xcd}], 0x3, &(0x7f00000d0000-0x158)=[@assoc={0x18, 0x117, 0x4, 0x2}, @iv={0xc0, 0x117, 0x2, 0xac, "8cfbb333eb535ce5c85a937fb57c7e50e7720da829fcfd42726e1cf4ea8ee8534b8488be01c5fb7a572919af1c9806382c196c014ac1530a7632316e1ff2852274fa6fa8fbcecaf21c6123a66e69068b87099c20690d6e89095dec76c51182d21d7b94395996b673bc9137b2a8fad98255105cb941a8929f7e240b54baf740f887802378f0c2bc262b45a3a966ead93f3e613aa7097fe9acb13964540e9affa32d3b3c1481b9327389f71d3f"}, @iv={0x68, 0x117, 0x2, 0x53, "7554840ed494791393d37152ea7f354e2c31c81aedb37014ff85f5a293d03f0873ff19a881313dbb05f483f8216e51bf852330c30e36a09db7927cb32fedb5dfb551e6b4273ffd0f9fb16e151fd89d2bb213eb"}, @op={0x18, 0x117, 0x3, 0x1}], 0x158, 0x200000c0}, {0x0, 0x0, &(0x7f00005df000)=[{&(0x7f0000bab000-0x4f)="98d75b42d6d42fe2c6f2e163bda2a1f7ea33c4649ec6d07bbef083b3b1021eca772fe6e3139dfbaa3cac5acb92fa8c233714d0c917bd5897687166ae4dec1cdc37bcbad5ab674329d680597d7bb283", 0x4f}, {&(0x7f00001cc000-0xc7)="1aff0b4f4bd8b9113abc528133492b43d418db3b74e52c227f942a5e459306fd8a8960bb0c31129cec1e81f82fc053fe7c0a96caeab6931bc8baacb2a8f5f3216e7dc636ef066adb641438e880e9ccc82b941b8b2e2bf8bb6464b4380a9307ac323337891ed353b7c67feeee9ce6de3ebb980a0356d8c467ee27cba18a193951f0bcc47fea125b1a837df42275c1b3f9220ce51f0050b6569c92be4610e683ebb5b0ee32909bc28ea11ca550afbab0779ffa011baf952f83bd7b7346e3a4bafc13637983056138", 0xc7}], 0x2, &(0x7f000017c000-0x30)=[@op={0x18, 0x117, 0x3, 0x1}, @op={0x18, 0x117, 0x3, 0x0}], 0x30, 0xc800}, {0x0, 0x0, &(0x7f0000287000)=[{&(0x7f00009aa000)="4f47038dde850c07799e14fd616181d770381c8415682a1cbfa82667cc8a24db80b04f27701ebb058ef3a3965c42d03b814dfb8a7244f2f1b1e173a1ff9823ca567d69bcc6376ba97ce5dd812c8245e7ed4ceb4c2276a5eb749d5671c02f3b32c71b3cb153e097348e48080c81ff14bdaaef5b3d7a047ad48ff50e843c5574a50c47d789b71201ec2b7781a6", 0x8c}, {&(0x7f000021f000)="aa14c72b82e82282e342953aff0ff7a7b44d3c539ea6fe57c422174d972e05372696feb8d0380f3d389455d4c42a310bd2dae358d6d534e53d5ec163dc7c558dba4f35b0520a6f39098faeafd805eeb92e4bd728b31d82b439082991fbca24d586618c03fb5d923d7957a1e0dac9821802e848a20e7a0a430a56989651ab2b482de8743cef6147d7aa7860aae8bad06f47945e5ae9970de3b2898a256e2b1bc6b375b4c636ef36c37f7657485e619ab3b134df9d10409d2d5d3c3f34f92446026a4e32d484900312ee4b8bcf189e221fa907c0f889b9cec1f4f6d3ed72b3ee3f7d1c3e786de0a384d921c21ebbbb663fde3887804f1c560f04da3aa6bce99f0452dbdd86429c61a738a994434096b1af716b67c6a88d7fec6d9ad6b002b9bbaa4fa9415dc11c6d3446ca8cf2b1ac67edb81063c7e465549b6c638d103828df691665e1908a0a0dbe0410b2792a5c6a4329a12e746bea157290e254169d00d09044488529186fe2019e4b63431579be474a481486260842b13ec90df77d6c88c928e96c3358bf693cd4a61827376e517bf8e798ebdbe962628640a8e467642d1652ec4f5b6e4c1191e813c14514a314c5c03bbde16abe88d913799cf88a7a54e449e42d39d0b62040b20811a97f85748d05f72cb7e08b0aa126ecacec50ef0f5b3b2e1c2822a67877e85cc25e124e339f8fa58c5d34736f9627707d04eef73db43b69abcc7341cd3783a6d9d2c986401d6d0ea215f2eb184785b9d516882883fe9bbe8dde6c93011c43df5a05ec3580d6e601fc22f4f6aab53c534c8c076f575648f68b6741b8f449a9f09fe285de3527419f1df4927635853fab642aa9e19d1458f1cdb05c8d6df8b5251c532594a884de809c24d016c6a623b699fb711ab0e5de4901e5be36467b46939dd222ae785aa30c4143098da5a69b960af4a38dfb0ccb2d97ebf64b226cf235ef81e9561d5c622a140279f0014a9911a5bc0f39789b264d3fb93ffdfc0230b45a76c20c9257cd92873cb4dafa2a964b9e6254abcea17679341b182763b419879694a7205f57ef9a8805c030892a007282318a2e14e715436bc24c6b37ee0d7eb8dc6688abeee81a06bc0c106f2b74c2dad3f71089aa6b9fe227a6f6fd06921188edb5ab472d055cb617973b55f61217cccdb9db75fdf224796a02977a84d7ff7108486eae358fcf77da8497c7f924e4975bcc25e287031f265f90f31e6d2ed4eea5c05a910f80bfb8753edc7ada938bd61f0ce03ef82e1fdd5d403d4a0d71b0a84aa7d80769f64110e54a12d1b2ded3a4d6fb02188fc0859dcb4d164ba9b74d0f34500ed025adfaa103d60bbeb24f464b8c81b9e661a5e8542c715cf19f95fd54ba35ce80c3e43bd365c282af3acc3eabd8e34ad5bb4139c5dffb1d17ced0ae72d6d1a526c6890e6510047b8aeaf5c16bfef9d437b2433ff6f752d1c1723ec1b896d49ff3d423d325d681d5444a67aa774256bb6df5d21554d7722c502233856c5a596c9e8ea29857c2b2b19724f23ffed8ddc406835b2284d9bd10b23e52d575df1bed7b04a27e82aede712ea1f555045fff8522e99e3b9ceb1c51cf4b9ffdb661e20c424f96a535194aa93ba42604eb77cd43582dcd0d9d24093ff8bdbaee91c3558db725f92a41d253eaf38760bd3dafbafe2f506081a9529d3e5c7aa37eb529b43029592fdd7a2f42829c8b551c77b816ee2328167babfe91430474d86c9a71212a3ec4e1410c2442380315552ef9c6d5e6b45f0ce520919b08fdf5ce6a10ce865ca579c8837cce6ca0c3b264daa31563ccb2f2f421f95b5b27e87d1fe443545416319add57416fe8531c5b83e37ec8cf4d3b1a21628d64d37dd775ffc2213a4fe9133a875a5108b16c57e76dd2e8c005270d1408d7b470ea1666b1ab89d4a5f93d1bf61ee4284509463bb2b1d506000d30d590470d41ce1915603c20ad316ae8ab730a04a5f7a8fb8b7d430d7ad0ae716cb7aeef78cddc0f48afceb5aef1a02215705e898325355f5f350bd486bb4b9eca8aa9497395446ace6fca87d2c5851d6834be20d75c2dea6538805e3ada824f96b82c79553d0a2361f0ca5f43c13713a8fea3e8cef1e9da0c1e9800af8ba75160226ce4bf9f4c628d4674c5fe79a09fdd50aaa11dca6aa46dbbdcc872400cd09feb65ff654fc9e5b84a7bff740ff42334f15fec9624cf671ada37c46b71c40e3a78d7823183b3ccd9f3b258d89eb49650101f55f5c84fe683b7a4b3ab9a048525a554734c3a4d25c83b2896dfa8b9662cee96236de7b9eb75005b721687cd7a31f05e3515db7a17cab97974696cda9f0105f8646de4c2a45d60c7e698f0882655a04620587c6ad54cadb0c979d52a1a10fa5a47473b7f8da76ca20db387cf652899cc800e5ce345119d88e04a65d73919cf2d28cc2173b6986f641f8b31c50a4052d2fabcc2787fb9b1d77e159bbd8e92e64ed2ae6f88b35e0516cf4abb8f7b6cd5ccb186f3fa28d3c9d8869172e03408851b972691f2375515a73102ae339fcf2db02b4b7068a900e75f5b7e9cf43cf9f91a437994914c81439f97772d26e3465d07db9794b6136b8eb3a45edd92ef4cff5a188e56c6eccfef49e0519f749a4ab01d0476876458e478850ec47921612a9f6dd7f01ba7eee97ba0023af50c86191ee2b81cc942e1d4f21f3fb66bdbe4abcbcdb67685c3cd33253c5df3323c27da1b275bf1d2b73f7bd25f8a08d24072398f27a072602ed62d331a82b13adb5127250331fbb72696f358172ce258800d811fb8b0a853662a81c44f5ee74b73070eaa163b699a3a8916d5901251f61a707e4b5677f165be04fcfdbe524fc30d294540d6c79f8a7ed0632cbac5c1ebdea5ecca5f4fd6bb525a5ede9e5f42dd11abbfb2cf8f2c6bfbc0a6209d79f788cc9cd38d4e8887785acee18146993500eb8bf52672708083b7f23c4ca2e358ae40cfe2ea45d6cc806fc231038e622f052ef211b8e419b7dbb8543243b5475af23e51ebf4513bcfe02bd114c041f84ed049c04c909ed227ba015f38647a14122e194077780b78dcec305dbb0bb68bb07a79165c824efe392a519dc1e57e15fca7c88c38fa711c2441b93af720860a240d5765178d0374dbbf86f61255cafa2b6ba1073fbe487118b5a29b964ecb2eb3b0d3b2fde054cd8c226b31e3fa39b9cac2ea740c070e841f2b3e98e9debc2802da1c7010c46baff45b3b0ab1adc6382879de1d249f881d021f18263c06396e4d9051073eb84a6dacb90164f7e6bfe9c519162b7aecda9bb09f2194300b4028abbc930cefa5870a4b00f8147fb9ff5c35f38e7d7243f821df093715f8531ced9fe72aaca4ae9bcbc9c6a9438c0a8a20d5103a37772d4f0babaa120e69d975b8f58e920d7f9b209cab38892cb9731bbf94430d43b967d41867b80783a2d8fbf1413912609e7f54a20d92ff9cec6eaf15684369c616b69bdd55ff16208d0ac6d0b47042133d55fee7a389999db37d2e4a84466e82058565f49082ad6f71b25804ef38f1ba262276653a5b96768eb68e819a8f957f7eca96cb5250f09e571f582ceb06eac58f3363ff56d76bba6a4968c4fb434c55003865de0f2232683ecc30787303ca054227d084d428b50b7e54321cc7ce9dd326f769f2c113e382294744a734382124d591284335eb28376ac11d911fc52d1157461d79700904f5113e0b4f20421dd4be490a98ab5ed99b41b319ddd97d8c167704fe72871c2107212a6accfde7bcf9ea47bc7c76a76bb92e06536c40c12b659bcd23a71505076aae000d51bf80ce02692cd7559c1eab44d044bc54a08208f44ae35620237c5431a07ad1df1b97357b7efad053b90d534963425221c3f3c12d088e90cec7cf5bae5df4757c1bcd06ba13a4578caf91e1e6d3ecc76b3308796933329a53516bb8518244413ffb13a5f101ccc9d0f5a4eeb184d53554d4b39322bf015087400f1262daf0548dd153a964e303ac419d951944be08c65be4150b0ac48a98e93977c34b594983e6cd9a809bb37ac4f6152c44c67c62000f691fad2e2be415476f7483121526ea206b3b353dd6c3f512d4ab14b6a3d87733c8fe5f417446660db7c48416a27b21666d2a84cbcfc171ab2b888119eee1142fe6141236e5c4e26d1b973c9cc56e2ffe28d3ce1a0b23d86ea80e1a8623ae5c42444efd4146624db75ed334a498ec325c3cca2eaca2e5af1fe7ccbfe03c2a9ba7f055cfada8ce057bfdcb1cbd23d8fa48af550141c8282b3c0651fc152279b30abf2811c022e7bcbf45b61483bfcfde09a4456817e887d4a7e65107a4c0325aaa8265dabba89daa1ed00cc47bbc4ba6e9c416c6d078bee8f311daacc5df083bd8d33fd5aee949f83cc34b058bf7160cb693d6cf322c3bf0d344cfee5101e8ca1e756219fe654a45174606cb9be6d48feb1553e53c628fe46b1eda2fee5b7eebe564b89135763ca1043407145282d351ea369304a26845ca3b356dcf026bd498e9350bfdaac238b432be0f0aaa60338849680838e8c80d08185944cfa65ee3004ec455e52660299d4878ac042cc52ffd7c846223bc8a50fbf915386f7657b2c90bd9c9e1a6b1a057373c08d3e10ba6f7998eac4ebaf5654b7b2269854bc476453a0adabb9d0eecd041410dbcaa152fcb738a8e2b7aecf93d58ddf1fbe4c87b237e8bac3ab3fb3ea8f7243a83a71f92127542b8e158b678f0632c245528bd0e6c69dd8644ce5e098dafc36c890ab9558557a6dafae95241d6a7cea431d877be8140bf0d3f0364c78e413efc2171964327c6321b531bcb2e1b3abb34b84f711b28639fa876a53db316257b313c09dfb00bbc390d1d7539227d3f9a4d4cd25b492f36ff429ec82c012e04b3f9b9294befbb6584b5a6b125872eca5f02d5870d6042f268153764ccdd55778ddc56e4cc48046c8afa93bbe9553b72f38c62a7043c63c57be4a39703f15eb3bd9a4e11f1791837355e94b067224b83bfbd21c2c320d5ddada1e3347ed7d266135e064bbaf4756d0ed8f5c7c0e65b784f5b94df58727210c288d071dd39b09b2c129593d0fad75f49ba59dc99ab5e8fc4e41bbfd2ba3a02ca12668927bcf3ee2f48e27901b7561bbfdec70df78a459301bf81ab846d5f457fb79a1cd10f001b5ee328f0a756c725852824288b386f759345a1e2a4f1eea92c0cd6fcb9764deb4780b0749a1705ed7a6578ee6426a628ff27f61c121a88dffc0fbc06bf325f408b9fd843e96800c30ccf74cb041cd472d3a14bbb11160d30c79eb40cfb6a9e75d02a9ebc5c9c4b57454d529af3b0497451bccbb263b72e68241c3009f88b5a6f7907dee57a56279a597f860cdccd2c93208c9db9e68a624e43330857e81c550a92ca6881f54c693ee6e589ab4287f02babe204642eba4339c3f3fe55f05d2ed32453875a0f55eef772e5445ac2d832c6d39b88ec459a06b1282a600a7df1e29b9898c62765c954c9af18cc5bef72371658b494a6f046f260f67a7cd5f9c7cb87a1bd6997da4fe1e9d4aa3287160e67de0c59c8f06ccbd453d1bfdb1f67333094b016edc075b66630620d648d74aad97a0f9da86d830681e373be34d7f8f1d669948832b07197722ebaf7f80e4895da2ee5bc7850026ba8bfd04cd3d892935e126ff513e2fe38dc3f4c1bba803b16a55aa9897910d88500ea00bbf3904d0ad5c4a58ec5aa626f7467754192692c75cbf5bdc5da3a2fa98c26dcf748b30d0bd1df8dd9b5e9a9a1efe703e9e42dde17e7b50c685175e2373ed1531d4a558997ff7d0802c7d1ad3227ce3357afe8ab2ccf", 0x1000}, {&(0x7f0000fb3000)="96721b6adb157d474c208bef6122ac7a665ed13c0fbddac82dc974a159b95a89473ba7016a924d4a33c1d94b745eff4e9b65b40039eb413dbc553f1be3359dc2094d5fa471a41c0fc0c7aa93f1a2ed98eb442a1e0d2a9c74cac6c3f578cbd5bf7bafb93142c8978c49689808c3f216aa25d92240c23acb2b623d84d7291634b61ed0ddf1e65413c91d49b138", 0x8c}], 0x3, &(0x7f00005db000-0x18)=[@assoc={0x18, 0x117, 0x4, 0x8000}], 0x18, 0x4004}, {0x0, 0x0, &(0x7f0000162000)=[{&(0x7f0000eb4000)="221773f68802ecda59fd1427dd727a5078aa57b6f432d5ec9cabd8c5eb4e71763148519c8cb656959609c4a22f6c99f650c24cd0e27da581d895c7ffb6d2b785b8f6e0987d8cb7dfab25ad", 0x4b}], 0x1, 0x0, 0x0, 0x4004845}], 0x6, 0x4008000)
r3 = accept$alg(r2, 0x0, 0x0)
r4 = accept$alg(r2, 0x0, 0x0)
sendmsg$alg(r3, &(0x7f00006d3000-0x38)={0x0, 0x0, &(0x7f0000207000)=[{&(0x7f0000785000)="", 0x0}, {&(0x7f0000785000)="7ede0d8a94d75e76aae63f15d5dd4e307e33d032ff84c91cb652c3a8a85bc7118eb415d66946bc4e41ba13635e280bd6f52ee4d94b1bb9aa8081230346275ae8bb34a43f0efa48f2b7fae0531be00cc69030a9dbcce306749a8ce4c7a5fb01fae60dc6e53a2a38e7e57f333496c51b826ebdf6d5caa14a6c0a611ec15f464897c33821920446f6f963364be28a876bff49acab9c7016b219383eefc5bf866636bf80aea5c08a8e3bdabbcaacf150b318b838f6b0865181a3b3b143de7a9763b99e9c33d3b3ba77d75990705e9966ed48067be1d417b4d6bcf1c7c9e8753f41d143e4de2233cd7fc156e78dae50fc1a6d1b7a12e77354b2a62a1314b26ee39c349f08f128b36cbee60bec2d72da21a33a52debc7f6f969db036952d6cea13cdb24225dedc8eb7e5bb77813139a4605ccead2cb1b30d57723ba18f7ab05de21f8faf0eb1b08aebb9ea22a39241f36a2171e6859db113f3da8bedcc887d2fd1e768e44cc794acb31ab000388381daff95c9296a9d8306c5bef07558be82dc4e6032bbf594fc1cdfb91cf1e63feeba5a7f8a695ede039e18fc75749ba4335f3c89b9574399d53fd15f0d8563219950d4a1352242b88f71080187bd4b067eee0ca067e5d41ebda18a39cabf142256048c57548fc2bf9f7744ef6ed5a1991a4884cfa7017bc69fe592d1e9552b40625778d3f8517a187c6fd3f47237b7de7b10f157962c05c0e7d79776a8a884d7da54ba21e27d5a379022a41e7da111473e46470ea3fe2d6bae23059f868199812f253382bc286d27b6ed7bfcb80794dfa3115a1cf42884702adfd74ddf1d9ddc5f590053e93b4680a368150047439ecc5c4239a79f4ff3103289716a84722de15e5a7e01659cb47ec61876d0d002c3e12cdda210237d3f4006cac21300aa89bb1cabe72455609fcee018d6893a9e15ea851515433abe0e9eedfee60bb46f54eebf146b031aea011e66b94645fa9a6a2ac79552ce8843e928f3baaaefe706f1809d44098e0f25dba9e95eecf6442cddd6829d4c231b8db055c4e66e3d53a5208424a2b4831954ad1836b697ac0a2844f000e8bdaf92790020d906fe0ece2e0264d0cbc30a0fce23b64639583a2a5aec635172b873bf7fb12deb4a9a7b780d1270e0a53490141fdf018363f9c2904e4a82f76e6705c6a106905a846c3c529f944230a02cc8376e3a6ce47e927d77f3314f4b43f634f3f22c6f331027fc0b337011a77de574f97e0c737fc92722a01a9f9acb712730438b7b900c7efe32485134fc858c3a71be4f2ff24e5e3cfeb490253a19feca77d464114f58ccd1c0abdd3057ddf0378629c05cc0b1e0d971f880f8d11e90fbd4e767b195cb19d3f645331deb05c62a1bf8f2e06c2eb8799b653fc4735ceba43b4904bad7c6c91709e82a6bcc90dc1cd78d796bb4f3dce2e3b1ee4954e3612c6eda5cee83580716a4326d49dd40d58af2d1d5318f92e10885cc1a358052dd6c2befe3ede058d17322f93f7c4268ddc90d03823e51a42f3a085119a72db96575dc918fe67fe61634e317bc8eadd970415f5641b982ff2e78df740a7e105222f7c2f43d2f21437cf53a26fcca0ca40564d9b24d2abd92d82fa49d1d7baf58ef8c897227e9ba968468ada33a9ccfc0fff4e358b0b2317e887ab639dc31d70ee0a82e9943c059d226ab1b1b526c84931952b4b21be4b4b86ecc18044aaa8c991797d6d51dd08e49234b5ee32662562b9c9261709be678ad42e9a4f908144ac8a7d74e993733e736f1cb7946eefae11e4410fa9ce9d29aef9d5351a7fe15f1e2a51f57969c1859b3d9e8975206dc09684f644659db7b543c9e4d103e9c98117393a31335bafe254a3dd0ef8bbd9ad2c45c6b7b51ca8dd73f45c8b74ed715fee0b401e49ab3d70337136d8ead719dcccf6de88e313fa81d357ec23f0c5cac8f96971fd4d956629389fe3c470e766e4edc152c069118f4765b9bb7209412601c7e5d792458647b16082c54a7b2af8d5c548d7fa0a952286d1d9047f9fbeebd933d2704bb845f400db6ebc5cd56ce1f62783aa8e09cd3afa5d864a3230e4da2b8c88a4d45a7df8a18c4df6ad84c745c520a7f8c9155e1904f587045eb7882c02dc853ccd5edeb2cf3f7ac7432f62d059ad60318969ec82a824572f080096b2813e0e9bbe45ead382b66c15efe2fd755f3e2192b4917f25cc93a8c4be0184ad7fa9a64234bae0a70476d0f9593435c879dd79dae9c0615262cdec4d8352f5030f7be6998b57f0ba254a0574eb0e2baa3a6dbfc8c8e5e0668cbe01af61f7cf7c6812dfcdcc3eb1fc200254c23f4ac563aed642089f1aa0be6f4749283096243f7c12b48411bea7ff94c47cebeb15f1155c8f9486a7ca697b51f454335a5c059dd46c1ca6911308fd10f8352745eb58a9c96047f875afd3ee1403b2ecb3ad8d4df71846ffc9d1eccf5f221cd9fca20d85a46bd2c630092d19d1cf0f38307f5c723b4419609ffb83f9c27d4c01ee9251452802cbd372586a01dab7b7263ae0e2705137a7f31b1d95e21fca8f18d0bd276f0bc2c329d6d004261f09933d96249da64ee0a79f00167e781a5ed85ea2e067aa103962cc694e794831e8957b48e9c58a75045afeb47d339fd5c1da93d1f2429324f3bce63349e52a691f1f3a9f5aef7ac854bfb53222a765f1ba5c8b1492559002ed09143359f6674fe9e725c62904567ad800733bfaba830313144810fc6fc15bc1e97c392e6785638920f860c887510357dfb2d04307e9aec32b3d1e3175e25acb4a9599b50d8ad078e459180ba6219322e235460b15fd26b3e7876d9b04722bb87b0768eb51242508ed8ee34dd80f5d9a33751bb640de8a549449b36b783237741c137b251e1acb9b81bb919d8e2a88fa73179bc85c7add396413fb97d2e897d4e225fce858803f9614c159c59742eb8467a77454c8a5a26cf030b26d6a52c6f6d970b45e3f837d915327063b1c7a86a566302b47f14877acafe89aabba2f27d535d468a0ffebc43cf0e2a478a4d3c1238f6b3c1e1d77d0c5250f2d9cd04eb8f9f77446a14864099a7f0a8ca94fd549a93f4ddf13f0fade20e3306a0be18e23f4a2fa339d5d2d50ef50a7ab160f6f4d326b64c439e88ccf78fe0c068c72c1bec3209898b0b98497a0629d34edadddf53a8906d44ba12d8d253b13a3ed6f54f7d52b715ff6b985446fdc281d81ca8084d03c9cc610dae5f891f4c894e463348ef210eb3f853192d2de87fe95b9095cae542abd2674223f12f0c2c7a6fa47479ac0f2e8b76fb6607e902617b178d5c9f0eec4bbf7d9a7a7b24c700173575b3bbece5a97b0a17e9a74a1a530b01eef9596d057696c4847f1f0c99341c96780347d5288e8988549dbf02ec2dac98d2c1b66dfc850f1fe831fa64345d1afcbe7b096945d664b30443c716402cb23cb331f2f6098f79ac52952b2d1f921faf443500eac75a88c485c32e3739c2c2a2f8656928ee36767773d22ff3b833299eda924630a289ebeb964419beeb39d66f6074b267e7852bb3026ab3ee42b872f8a7db0cb0e4ebc50cab2f107744b013cb833ea2d0858676c1a79bc9858b7fd147d5316426e5c75bb2d964e7f199a55911c35669c5ea4e12e377ed0660e1ba6200bab6427f8e9b46233fef2b7f759dad35d1bda6a7d0648f3dd5cdd24661783a2b5eb01727be63d97590dccb09fcb635f4b56a8c5f233765df18ff8ff18eb58ac38512719b2f3c29e7a53039d728534ef5792093ef06a14a0e4f027056442ce72ac65b3e048f5c5394a8ec2b5cb14af97371ec3450e4bd1bb13e5e6a971a4c5389e1dfa1608d14d55da4896f41608ff6d176eda0574ec90e08d80c3ef935c36c7e44ebe3bd8534c086752f15fe01e27ab4ec17a57e26554bcdc313506c0ede12a3734b0351df2cf0403a42045bdfeb8206f6fb76a0a4c1dd051c59111faa4a51d2e3667dedff29c04c937caabf900630313eca058add320bf93aa55c77d15a0d203edf429bce73da1d7cc1670c89b4083dde9909ea10fce0013517c17e30b0db842a213bf95fe663fad62a13cf08e25157d467fe1bf08bc4e723ef66ea5586047b28fe59ad6dd62fb8f9462d777178111a584ff7b44601a46b0a96604504a3c3f269f3cda31e9218457556eb72b7bf44748666692b4f4fdaed0e2311f35dc8806f262cd81afa5fc7329ae6a984eb264d41823b4da7d723d859dcc39609767c266ed5bec3c8e5d85162a5980f2b26e25c3e3ffa58e0429554a9b770944a5c1bde382ff681ea548a084f108b2a9199c01ac5d566410ce158d842d6656f23eefe9ac73cf6e63dfa2d8662c94a914be16ded4a384d8e6c2475a0331ec36f62f2b9a50ac384faa714c81da13d546347b0a7c96e95f0462a21fa27dc8830afaac4fcadaf18ea4aedd6d5088c30468f062f447b5fc2cdf1c080d6a70b969faf9f4ed92a2789398ee3e34c3d9d4b0ae0008fae97c7d291c343fc80baa6a6ffa70e32d379ccd09acf86508d24e35b3515d5e3b2d894b0109b9e08add0ee13479d4cebf2eba2259e8e288e29c46ac9da2d0ea992bc35d9b38bfb51603ee0312ad7383a75ead353f4d77ce4000a7e8a169bbe5cc471a08f69adca6a30e6a06415ee53570e0d239a7dfee83d9529fc96e2cd4594568e5025644665a76f3c46ae7a2245dded49fca576c7ce21b7b67ccc45a7cfb3e4d011b4dc4e350608355f6f0743c70f4deb31351b0a14a1e5fb166334c271446d6e9122690220fc5f96e1b58ec17126c24b3db998422556113a611e8d8b8f954702a3ab8e8beeafb3db24e64165395181165fc63fbaf0e940223a87405f40a57e0a69f18ec46c15ef467743a881b25a9dcfd6a6152d92b7d69e36670d0b30c23a115866d985df82308e5afb1db44686bf3603b5eb0afa846ba8a6182717a52f3d49bf0923ba7fb35310e8592fc48394ad0de5343361f8d2811837265ea248b04c8f43234aa91e7e886c1514ea5ca06120b6db935c0ccb5c82765cf74f88a6129b83948a04a94e3817823820a7d62a0d15c5b57cfe7e41c46fa2d62c57ff0d6b2b2ecc38f21d9ef1f9109240624e1d4cda52a5cf78a5330d576adaf77f336aaa6b8c2a2c8efc4ca9f58eb387f87f1e8c23a59d87a35357ab05afa66ce01f5b32418821a4fba5247e2f5411c78eb17a8e300e3e9a91cb851c3516a56e778c46a73ecb4eac54abde668a7441fdf7a351f94a89ceedeb36d835339184cca6f0325a240b64c7ed3f4e8ddeb2266717b8d02d6fe92943b0c75cb58abdbea18a23e48a011ef8d0a6ab8ad12b763e45c8c6657e5964d2f898069ecbf1f05cf33a3053322c75df76f7775d788d27bf36cd6cd41c2a1860ddf2d0f9aba36bc74b2ac03f523ab466ec2efa14782c7189a3949c7499fe3ea833182d3877fd824c124eb57fbcca4a9f6808facfa1024fd301048f3a8355fe82c1106f029efc779ba9dc21abe1be7ae10e7d421063f3f8cff0e6d28b78b78f26a82b7739e2d3f22496543d14741a73cb02ce08fac7e74b5d218e25fd487c3e2d986bc9c6db34ac21566e5e655e5e42c31be8c7d28d519585adb23e9b949270016ab6694dc362a1d876bf68e8be68dcab38f00b3338cb1446138d1816f5a561c5fd0a139660c83fd1b4f2a74e182f1395b8ce9f761091afa30006c47565a060e4388a9795cbf465fe7fa4086ce489c35561bc041c8d1169330475ec8af101021cf4a38a2e3416c48fcc42fe2f0e2d827e3a63d1532a39fd66e5ff7046ff893d6a52f6297e8020d289b0ba39cbb1e3bd48cced97e08b88e5db7c", 0x1000}], 0x2, &(0x7f0000624000)=[@assoc={0x18, 0x117, 0x4, 0x8000}], 0x18, 0x4000}, 0x8000)
mmap(&(0x7f0000786000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmmsg$alg(r4, &(0x7f00004cf000)=[{0x0, 0x0, &(0x7f0000dba000-0xa0)=[{&(0x7f0000bb1000)="07f3fcfc02ffa72e7c08f4bcde40fe71bdbfdd7718d16a07769b78b504581daa1ebd9277cc68c367a1bf27a8ed05268775d83e3cb565795b5e589d3ffc6ab442419903df90563f9f1ab1301a5fb7650dffb42266fbfb94b89c489bad4f4d88149481dfe466f006e5a1adab3ac86b8965637d5dd1f908ac2f45e3a6beab79779c5f7e3307a39c18cb103415104a3c048e4aee390680691430ca43a4bc34ff35d0f2e80b24345a39acda1f9dc4d38f295eaa7fbf4b92", 0xb5}, {&(0x7f0000ed9000)="895da29a5cfe23c46007159f575d4125f259f48f272d2c70592648c85595c027c3b3e0179f14769dcf631ab42a27b27756ad9e44fa8dd6f04adc2c810d980fe98d1797fc129cc5172050f8d6ffedd16ece60f870d0ae3fc882cfa29d6ba19b69a7c9ee199aa617253660fdcfe2024fd5f2", 0x71}, {&(0x7f0000fd1000-0xa6)="c80688b4c8b88a7e4b455514905c7e1766564b07417c74da30e2f7bd2f8718bf61068f28c4f4f66c14000214f03f61e15cfc1ced7937b58aad098be84aabdd618db60ae2047d0c2a27ac0082c5188aea09591a54caff87047d66143f9a43ae88dc4037d48f57fb4d1773b8e7c1c79ef15dc54e07bfa55abe28d5a4d93b22a37539cc348285c95035f80f36c184fbcdd89985469f7c27f8ff2460a216b14cb6e2ee413c671d9f", 0xa6}, {&(0x7f00008e9000)="9811366c47d856ca5eca5d71d1a3703769bd73f39fffd51db2bc79b77978f8ee33443c0394dacf9e20e442269b1294f5b7fd96ce1d97194e327488cc", 0x3c}, {&(0x7f0000cd8000)="099ea25ee2d232ca094385421595bbb1747691537da436b9b24d06275ded5f00689af77ded6c0a7c710025aadfefc8ed2b91376fade2b9a2e94f855e330e7ccb453d1fb35e0292286b23737408bde055efb01fa03a7435bee43f2c2526bf90406755fc1f1f2ed64ac8e4aee94e55ed88eba0ffc34896cfb9445ae65c1aa610a94e86ef21e01fc82acff716ff488d179f27d49ea57f2b4a03535df606c382f427c43738f618b19b738caef2e2a349fe2d0d6031", 0xb3}, {&(0x7f000045d000)="29563de3cb1f4d8f28e816602148e003356a8949a716c9789d9f805a80ded63372fa27b4765fa4379f8d65dcab240978eb6853d6163dcc7d5da2e7825426620c2ca8d5982470369014fcba937e9f2fee8ad2c9f2241631a0da36cb13b7081bfa1f9e04ad05c976d35188ec2e22e0bfeae3daff7d7e0b8ba3fbf671e7c8ca998b89090f0f37f787c400c8574e8ffedb90a1d720f32d9406ed9bf37de8362da42f930dbfdd1cd1ab", 0xa7}, {&(0x7f0000bb2000)="d79a7204a0e78f0117a941d04b0d1e03a7d3f68fd4472ff43e63e54a070206560e50d84b2e1e8bc954d8d697c20ee8f6b008e3bc213b0b16015c7e570108309bc26da582", 0x44}, {&(0x7f0000bb6000)="abcc9f0425c4ef00fab5187fb6d59fe3260e17b7f86a8b704c213f2f2dd4a4f70ab9913db1c55698f5d738ff8382fd028ed890168efd46a9889e7c8d3123fc584f9ac7da15c631102eaad2c92161630cd8c1c74b353c6dc9f3a289042bcd363a3a218247f6ebfbd0e5bcce679f64cf7160af42d6467da3698267e5589070a71d3d3333464428ec0440937b649a5378766d3f", 0x92}, {&(0x7f000005a000-0x4b)="b766ea7ecdb0a422a32daf855bcfe6ee68de3150186e08de303e47108b3e525fbb68f7ad73194fd472d7831f7081e945e90d532451a70fecef77a9a96b428b0b6fb24f678ff9f10fe40750", 0x4b}, {&(0x7f00007b5000)="c8f2c19ab37dbfd8d0a31bd5e2c246f943314fe095af14d3e1b26e0820a96b0ff72b89c2e50431bf22ec34f50145e41dd7447dfc2ea024f4d1", 0x39}], 0xa, &(0x7f00001a3000)=[@assoc={0x18, 0x117, 0x4, 0x9}, @assoc={0x18, 0x117, 0x4, 0xff}], 0x30, 0x4000000}, {0x0, 0x0, &(0x7f0000b9c000)=[{&(0x7f0000fc5000)="82ca8b1a2eff65b5347d71f38bf1d98338e67f4c76", 0x15}, {&(0x7f0000556000)="e2aba13781bb0304ac0b05cf277c8b33c4099bcbe0420e985588ca4a6b5d560c43b0e9f239f1e90be53bd94de257a1fe8240b5dae08044e606c274d2c1ab20d4100db87ee4b77069b542ea9c72c781de7219731627a348c992d9bec3811662648e97ccbb23e2602df561df224656510a67d762164c77c7559de8aad4a85caf0b26a9f836fe51248df87a1aa49fdc2a53d6093dd9719e0929076bcc50d9328d02b215599498bba7aa53dfbd3f0f52caf8739e72c45da072cce67edba204d065800582fccb7051e71cda00f337421304edb7136618c42c22de87da1bb5fdbe0eca03fa8b338426dfdec7219f7617002383ad591d42e23b2b842709712f079650f6ea177644cfe484cb924cec7b84c3020cd998c321ee575ae72bba23bdc79107fb7fe648caf9b4e706a30f1907fb30b3ef021be8e876bbeeec9abdcbf0dbdf9e4b8620bc430b037d9d36a18a4fe887dd3002bbe0819f451a7d42770936d2ae354bd214a27842f4d98304b45c05ba6c11324a4b66345b87b2d28da5a4b668c4faba8ccfbcbba7bc1fe493d11cf118d048b44cb9255cd152ca9afa384afaa32a28e1bac0870b8915c0ac57b6f0281fbf21f5e0e3667102a199d7e99bef497d61b185606b4be6ddac74e5a4699e4b23ed154f8e59a64d737f3ed69384a95e7acd1f749f077bf512b63c06e5d8ebf6f46f734892f6bb25e702e5b8af6a3c7458d9461dc6dfa9fed7924ffe65d9777a4fb1015fee15a0382ad41643ed7f81e17cc9a81fe31d16c04f8e7b4fb8dab5db758344293a854ce3e183a3320d58173134ced52a4f22c218fdf9867906c8bd30a5105d0f3f121296c744eafce9ac008962f466c0dca3f2623da34ac788474630b25de2f9546de083bb518c2e0bcefec863107955e2343d9f254593980d66f2860e0ac37cfb41a99d3beba325a708a4dd9d38a459c10438091441bc80dce5d5bcc225099afa2dd7aeaed2df5386157a723e8224af8cad9f895463ce8f39c8bd36a0ce6b195cc382985ea40212ce4f3d46a7d3f93bf8868fa59f970d3651ad29493ba421f57ddce1ec941be04372b129c4288171255eeb8a54e18eac39976ca94cc723d1babb39a3069e4a5e367d407b7b4ab53206e2eae1118911f0f143e1b6c3f481b660334936dbed716c0329d38fb29a844d4823c5b8d109c1626a53acce2e32585183836d65a453297dad8378f8c4c6f5064826b557e27b4b0f7d49d628854d64003f589fc5e0ba988b7682ac050ec2ba5861df9d37d937a257303e25d6f9f917007b70cb1cb45b14312e56d856ce66ac554a9db885b4a1b889d9c732578c657a69a714a286d74f2fbffef7e61ca76af770dbaf9da51aa28855e307e31b34df4fb46ffaf2e1fa1106355c34dd7f26fb9a89f7e8197e29557d8995e3ea405617f08745f51de360f86a32086f9ba8cd736486dbb605e86a0254c838fa63d948844a765209c45d8cf67b6696d487b627ad78a93126072081b3132f029f1b8b9e696004c06088385491c7e78375ed3f319113f55667ae3f4992297852db14ca84210ecce03edfeba0d3ef7911d590212707797518622d6b3c36a328e387faf24876c855f55dc7ed81b6918efdfccab7a54ff584e45d6e5f146f35e7435037887a9207e393e72c80195ddad4658855570bc7cf41509e33e31aade18e38f71309fbdec3bc955caf4e4cf98cb57386c8bbba80cb3a454b0705c47b9af648463e16ce044cf1c5488f20606c2fb760b205ac7e4559a497a33892073fa59f43c326648d30be17853991b7b915f8a3319d88c7dd8fbc4a49492d27f7a2b4ea0eee44576af27cfe81088eb3963ce2a74f4d75d517caa8f903ffa84eb1f0c50a9f5f91bd56f5199206f4a89f7e25b625fe51dd623372629cfd47f02ed8ec9ffe39319e367bd6b2087232489bd364726dea0404d9f30593342acbc833cd2e8028117e7fdce84ad93330510633098695d9a52302763cfda8cf37df3fd97792a683d2deb38eab260655b82d93494d86db391117e0e923fee04f0659a0fd8adabf452811578489631953c5bd03d836432b8f11b0efd8d0f1e50be34ab391c9970809fe49af4d091f800b92e410e7bf5c061078f44b4dd9885daed06280685803c460f58688ffa59546d41562bfeced1b71d3f51b19f4ca3a8608b43dbe4659729ed26a63f5142c58f8645eebd005762661b2e1f40aebc2626357ae1eaea8561e91c5ae3269aab5677f17f4f6e1a35fb825213e7ddeb7b8f17f117a2073d2f5fcaf4b09e892337a24f9a7911a2a5126421ea86dd4d96caadf5c8dbf771ab39e282daa684edd4d5d3d7be53def295529489416fc9834a68a60f30b59377287e71db69778c1afa1df9d02692fc017946b3f7a2af9c01ee51fbf1b5cbd676ddcdb76fe2e1426e2640b31cbc18de54440d17953d11ab8327e8c02d931b5f229400ed96b0e160ca2374e9846da69ab3835475b260606c900549cfea3646801442557f5444a60b07cc6dfe06bf195fde399c633d729e84add93c774d796734945d99acfa9a9ca092515d38ef61b65648b0b3fe5271158331faf94f8923daf65f19480101da9f81f0bd9f00f5328a03d3f0f1486d5f278b4dee7f00e0c16bb2d89e8e3055868e465e26ce87708044b0cd72de7ee9fe0e991b06fc2366e42f1be4122f3da2c2d96b22c445e26dedd964d2bb1f080d07cf8de24f51806377fe5e63ddb45ef5334758e568a9ca4f3fa0002d7f0ad9d42b5e95623e3134239ffb01feeef810a3db35b98f799bbd1c88e8e060240414ee4e93219ffd5699e65f68d5519126e51a1644f9a951bc965360a83bc2533c7a4b310321883df35f7677dbaa984afc7eedff9e4ba57ac7ba3545b92fc4b91ab332e566241999fc5c02f724a35fb6d738578003b40cf66f7e0c79c5477217b1dc65ebb59bae1f506b89ada6619f555a248ef265a078028ce15042522c04db0f18720969e446de4614dbe248a20a69712d9e6cb7800b3847d37e322787b1a770454d84d84fe59aca66f80bd410953319f85c00a44dfa6ddc8bb9acd2ec1c3b849558d0d22a19defa7c27e8cfc45f582d082467faf6188d95d971e2b75c68a9d936b1091b154460f7b1bb56d1a73d4cdec5ce84c9e7b899d080ce9ca1ada7015329fb2ab873504a179185f8706a9b9a0686ef94c3710675d13e584a2e5b6ab435a02689efd8440207cbd709042f5430c507d3c2bd2e2ba637c3760963ed23eefee4118d8b9029f766b97ff11c2ffd92708aa61437c44a5a4d09181bd588f76cce6c65793b86ebe5c69d1127d8e7eb7305588d475c7fcf2308e4d9303859e4e3db1c94ef6ef5b5c1d26727a6d2767e5a4a536d281461a0b4dc5cd3e54216dba6ccaea02cf1556947bf855cd576bbd54b446adfea356aa132d3b9d8be521cd149216c797193d638e3bd65af84a321f5644c866ff862d2d7a8dfffaea1eca3c540a08a674be338e4979e869aed959feaf6da2ebd4f5f793c02f86841f007af1a0bbbb8c3dd2de4eeb4cd4764fdb885cfc64ef5ecc495db47a63c757f6f6d4325aaa2038ebf12b5b057f644a6569892291f132ad36de2d530fddc46fb770921ae6f1aa93322582f5c5cea5b53710b62cc2bff92cf57470b09c5a4833258e18c5401a76ec93935c7c190f4336870e1371a1e41e882ba62d4e8988c19fdb9639b4b17ed40899078d4adb2727f5cb4ead094d152c90c232b04607d7c07ace0d6973f990d7d48c34c2e0bad00df540898a1ddb2df243ea3e10e5bc8c5bc0f122ce8c39727ba568575e389f1ae5d577f1fe1723b7db06edf121bd8c5d50da801a0a80cf48cce9fd9dcb9a12dcdbbd1f753e71d367e3ef71edbfe712c7b0cb8b27547376b3c17b3959f35040679e0641610acd2340417b9682b1842cb3076f437d9d4c1445b97d6beeeafba3212545e4f33bc9b42b2c66b79a53b33463178276db3013bf255c423fe83273638bf87adcd1e466e7d34d93dfd0a10b93cdda8f8052eb2641f45eacd77daa75511573a7bb2c37d266a8896f39caa3c4d92cf5c7d96cc5beb4fce78727282b6e6e054532301e8b7dc102fc10346be948ad585f888c0920ebf93b5744697c354fbc726ebf8c910d429a013a3917097868858b618fb2981800eac1f449d6a3acce41265d6e3e80a086bc8ffa501a305450682e6879d9fc8f4d54d4812afcdd4c7ddbb2cfcb47a882ef24757f9e6b43b8d6e7d7aa1a1140e3f9dd9e51e6bf874354620b1c7e22f6e5a928bc61bf1f9003077d7b042aec632f1f603907d895d3e640bf020e00b9769cf391ddacb803991c6588a21c0f64af2f90d4bdd1a125eb289d2d1cccc65ccfdadf8162113137367cf2a3e90f187b57c38522a25f8b65be1f8d586844296a09aee88a31522bf5353124d8196d699d8f5e927c86e175616426a9433e775a31628f56afe6aa1e65547c3a4b3274fda3c238726e6b962f36b661af16530e96994236e2aaf3684db9da2dd1aa04a6944ea4564d5d11eececd74859277c8c1e99ec50abae4084a20f003f1355703c639047734520590979457a87b2f77902333c78606dd638165435dac2354549b2d9ed8b11b7b80fc490cd32d2373a7f5cdeba39c5ebe26d0e13c24cf6c00e0becb0ea0f1831e1ba362c9177dc8a32163507c1beb7a52d73b40f5cab691729d10dc8f1bc4f66b3c5ec6a956ce342f4163603b85a32002f7b8ac438ee4d23b64dee858edb142509242dd4a8b2b87bd5a42f0517a8624e6c5631ef50d17424b4060d787a70755c32e44afbe1ae031d546fd5f525cd95913bea8ed990fb4185b0c5bc0ed3561764f7c0c29e90697c8dfc544ad51cf88292045bcfe7500d8c2f57cf1e28ee9846878d7099f40ca634f7fe61dac61c08677bcf5e780289870385fbe6d909a556384beb6cc8f71481b715f3b9d36f65890f5f65502a1cb0040f02888d718af3ce871ff19bac5cec092fce0c6c35bba2fe5f3b67dbb3560154b95a9fe08857f83bc9c487f1b19b7dfd09eae273d2d098e41773fad16f37cfa6bcd30d189dd2978ab38cf2658663cd216336c256ddb24379db41be1bbfc32ed0ea51b06ec7d727c689cfea1499e6ccad2383546815c0b4fd25b6b0cf302fcda8e3205385f6cddb5a9a58520cc3cb4c9f457014e4f6091fe43fbe7a0dafdb3573645b978620dc3018b6a2dd08f49128438524678d9211dbd1041f7b18d3e6120838a6bc9d55c28a9920d4cc3a447643320651b5dc11b4d98976cf3aa29359575fc87279854874af11f18f343d75ce18dbf1a7c9d36c7c2fde5ba34a560eaf5c5c555bd92b09adab991026462eb31d88262ef077c976eb1f273ca1cf281087fa8ed64a6e56d57a95f863251c76b8902d49ade0d71c0f123458e768051ca3b09bbd106f5b1ed773281c3937dd045ab4a24759b45c0f5bda5b07e889b508b9bc3e9f66a8808530cb4d5531835172ac7d05f10814c11d3d7210eda26c2ce8285c33b37d218f41290fdfcd2f1760e6fbd1a7aa332546989db88c830fb7cc060c2066a5b66f5122bde7c55f4af3845678353818b66871dd89d9266228e62e67dd2d8f75773b62460310fce0060d43a8ed8c98ca840e4adb927d7aecd79d2afe19a557b766ca67b3449c255ed5a9a3759e74f75a7d1ce24f8a6e4244a33d79b31706c96a61a27d85e24fd2374343640ce4af18c8da41b013f016962e2b14820606032b044576cf85e2657365beba12591c1d2e2f76d4ac492cf182fd6432838479422730df99c7a025b4786c94c2c4ce13b83242d304292e7e4cfc277ba", 0x1000}, {&(0x7f0000b42000-0xac)="8a159e241cd9a5fa8d227ea156165a5c55e5d6314b630d3b9ac90995f04d8bdd1cf5ba805496535bddaa22a6dde83a6594d9e5fa56211b1f3e73129e8d01ebb88648d304de46b35433000022d4269d941d9ec88b63ed4f1619090f90f44299716126a76d739b4b1afa02212fab85e99daa308cb938816b81e1296b6dc83d8bb357beae79431997dc8054529a9fec956449d378baf5dcc6470550d5fb75340c3f86ba61493031bba8708e7804", 0xac}], 0x3, &(0x7f0000b39000-0x1b8)=[@assoc={0x18, 0x117, 0x4, 0x3}, @op={0x18, 0x117, 0x3, 0x1}, @op={0x18, 0x117, 0x3, 0x1}, @iv={0x110, 0x117, 0x2, 0xfc, "6f2e74ec68c59452165fb52d13acbeeea24e95cb5b2637ce6a1f069f4bdcc03848ca8600952921e18e8996d342c4592c41fdf18c37d600487aeac3f22dc19d60c5db1cd3b14a930e7a1c1abb8a8b976d583e70225e95024ab98cbc9fa30d6dc2cc1ad0017a505f77fa032c4146ba98e9532b737018f2f6369acf96e7cd539de2d2f1e3e4394c102d218d94f99bec64d3bb9c51ad70ea878b8827d0df6fa22569323e27babc12f982e373b9414abd59f420c5f0b2314825d47d4981ccc87e6754d2a079dc865705568a1217021fa15f0c7cd013fb61f200bfb0c88ae6d4581b3bb4891a62f9888ecaec417e22cec422cafef05e8139be3b4b18a010f2"}, @iv={0x60, 0x117, 0x2, 0x4a, "e26e3aa6759b47bb13b4fca627173517787642de5687be400bbebcdbe977d601ac493d86efb3aa9cde9f3844fe452f010b6b1f66b77002c0c7fcb661f4f73fe8cd61773ec0d728628eed"}], 0x1b8, 0x4}, {0x0, 0x0, &(0x7f0000edb000-0x30)=[{&(0x7f0000a67000)="fb7c34e3fbd766e71579e1e2c1", 0xd}, {&(0x7f0000d04000-0x2)="e430", 0x2}, {&(0x7f0000ffc000)="6fbc3d4405f55318959dc46d70977d2e9d8e416136807854ab9c162367dd627dcc9d16149cbb7055f5e5d726cc45aa6e9e957986515df26707cd3f6d61ba7334ecab3cee72c82f7545992eee3c64", 0x4e}], 0x3, &(0x7f000067a000)=[@iv={0x108, 0x117, 0x2, 0xed, "96dcffb9779fa3e7e7bcdb66712e7bc83edd4d2a8ef15eb673d5600c9ea53a99f6109e873c2b7836ea72254b457d5cfb6aeab57259b41a6de8be25ec2e9ce46bd6686bd8d2d8915eb4eb744ddb02e3004e9f7ac12e40bfbef4b66bcb11e1cbeceb08148379b1b7b0bedb528144b3bbfbf231563fe96976baed9f8f836f864bfb64a7a9b38eb75b70d84d4e39473bbcf0429c7a865b864a6b9f9393af86fa6342c93612371b1529259fd06442eec5bf291bffe319bda49c2b2ff4860e8cf5e942b77f52f6076abff3f6ba825f280daf2aace5910e2acf8f3f6afddbf0b88e21a088f45142e70135f93603d1c4c2"}, @iv={0x118, 0x117, 0x2, 0xfd, "0a17f9f91e5a16415a6e090943caaac5a51029f168a50e0a2c8fee308a37bbcae3cd77cf4f5f6df785ca8fcc495568c7d86cffdbbf878c4a1a4691fc5d4c1524208198c5571b9b1a5b53a5647200396ff4eccd282b9affd8c6dddeeadce1cd2c91aae6b55a9ea110c608be15c7b7893b06a52a8dd9305f611e01333bdf0c43beedabb8dc0e5f8510cbfa90db9ba7ac438abd1d98be0b383adcb89e80e2f1c00937b0c049c481ea65bababb88dfbdd604ab5551762c829e8082180ad58edc822282d4f5ce12058cff274b1aa1c8dd786ac5fa9f1b5ebbe9cc2c3b60a6744465ec027e7b0858fb61ffdbc41cf99de8e4d88d3ad227fb2ec42663eb0fe9eb"}, @op={0x18, 0x117, 0x3, 0x0}, @assoc={0x18, 0x117, 0x4, 0x4}, @assoc={0x18, 0x117, 0x4, 0x8001}, @op={0x18, 0x117, 0x3, 0x0}, @assoc={0x18, 0x117, 0x4, 0x7}, @assoc={0x18, 0x117, 0x4, 0x401}, @op={0x18, 0x117, 0x3, 0x1}, @iv={0xb0, 0x117, 0x2, 0x9c, "4b8ec56ea8dfe358e107345431cd2b0b0d9a674a3d9f4b4e9efe3945862d2622c4a197eeeec554e2648de353388c0846564ac66e94e846d29de32832f07b2fa572cbf4a58db5cf630891635e55fd8689cda16f2f444380c71853cfb87e38e7d2377e0ed2e019a53ace8b32f40886967083f145d558f7a2162d3f30774dd97820f801a4cd1cc65d9672a389932256df9e502f08978ac3bd25a426177f"}], 0x378, 0x4}, {0x0, 0x0, &(0x7f0000309000-0x50)=[], 0x0, 0x0, 0x0, 0xb6feb605f9ee1d18}, {0x0, 0x0, &(0x7f0000359000-0x60)=[{&(0x7f0000cb6000-0x55)="d85936d6157f78ca147260ac4fd29153098cddc04eb3f78972abcd8020875c774b88a8e4f30a521ebfff9421cb2f9bedbd6e9a4ce35ba422c9b919ad1e9b5b557b4a9217bd4501c5210c7360a3645fd39e4f643ad3", 0x55}, {&(0x7f0000821000)="e63b2ca26f4897c46ba8f956c130cfc09f3681831f3b291e870595503dd60fad8abd0077f07660a99ad7f386fe989d9f79029181d9dfd0ff86ca10885c2b1f469b30754d2d1dffd601b2e9644e0235b067b20193bf7431e9c44ca85d4d191ffa6d353553fdabfa2ece75d4dc0f0d158a8c67ac76b54718bb1c27daf8752c627d5fa299a7d8d8dbb98ff3ecb68ecd1dc9a6c5428940a93894cc1d510531706930e35fa1ab25799618db4de93967601099ccc73fc09ad3a6022ada46e74ded0fd353411b4370b97ece6f", 0xc9}, {&(0x7f0000287000-0x1000)="c5094eb64aee8529aab69d24bdb8a29672ff7956cdaefd786bb434726ad399b9c9c4864c5b357c8f5b15030aaea8b37d2c6d272ca60d03d0a28e29d5ca52c7a69b97ebe60a4b7f2ff1bcceda26567742069f12f007c24819952a09cbaaba5849f4db233514a385cbd6256c7f07a5ef88d7dad826cf2b9b3a3714eb10fc3fa0deeff5aa98db8f4f3384d16a7f364eec9c35ae77724b3e6417fbb1264e3f6d898a7794658194b5d105047ada55473140b306fedfa2e22cd2892d368a46a252c1963437ddc6918dea9c7a67e2f10f60aa475bc8fef85d7cd70374df3381d7717c0e32304910ce9d0b196eecb76df803d38855366a25bb2e93f79c01aa3eab2dd993040a7f619dfb5d97dd1e26931ef75e66df9b8b760d84dcbefc40d76128ed98e4201ab84cb8d2a0d1d51a3166dce8cc288b7eca1cd1b00ed5c6322b838379bd25ddd8bcf9befa178fae62ddddcd53c472731bb77342819608d7d6afd82c441577d6286a428cf47fb6b4e10e6470cc841163a2f9bf91691fd05eeee2b180cdc7fcfc387d3c86a3caeb9f71e8fe25a46d10a8d631d63b4ad7e6f7ef7a64d5f87ebc5cd5e5f8f66a7a8e3583b7bb9f7d449837015266f9842c31af9f51cddb46cade537f007124bb0ba388b4009bceff7de1dcd0685213bfabe9727c1acc555d63e0f7c37bff8c1df008ec392bdcdf258a9c08a0657f64cc4805483d628b490811e913e19d169b7176acb2b929843721593c1164ad190876d338506c111349acc47c308661cd004e2d1552c85d28675a5e0114047959f8dd4c37e9b1671a9f4449ddc157460add6b84b4d8f00c716bd066cdf9301ad83d2eb3955e1e1d20ef53138a7cc1d20261c7ab40be74fa6d90cfdb8776507e38f08a6deb6be953793809854dd6eaee55f50ef97ae561f8905a344af3692364244a8a736c79c847b250ec4a08a894bc3b21ba7ac9a3c5caa0ba4c3a855b6ec6edbb3e840fb93e4e6176f7c738745b37660a7e5002571b1e5972cbcea1b92ba6d09dbff642b774c5fdda6fdd6dd6866943e263f230bbddfc511a42f9988e6f35c63ef134ebba13876b4969af01306e21f93435d14d7f2292a9bd8abb17e7f38480426efaa3e23dffcbd7f8b78e73ef2a3fa6f3124ea0335e2074f4f420442e7fbe49d751a2f4864a3499e36891315e1448f603f6ba23a11f601e72cd9f132c7c0138706321b6832fb79f45646bd87892b8d39ac691b485b13c174eb9f3250738e0863e86a78195d6225b29b4fba12e9c360b915b43069c4f3061043210cca006c00603e3bfac10e57b09175a27cc261d221e611a22cf57a61406155fbd235f08ffbdb8c2519f539ef6e4d0c311adc6b152e23bf539f0c7a3be2dfb092ada6d1ac9d0294eaef039cc9f2639c7cad937682d7367ab95b4a072eaa147808644075da48eba4ae9203541d14999ff556e74672b30b87f6a6e72cf26e98d01e60383d51a7e606780ecd1f06eef87690f97e864a93c4e118358e3d8ceca54da935fdb423efe51dd85cabaffb37ed7d5ece3bf2d0bdb3ae03edb20622959247f713196dd78143f083ef8862d68682f5be080b1421873ae1d15dadf0866d8f98176cf85919a2fa7d317fec699fbe8dccae97987d4382eb453d870debe3d7cba2bc9ff1b87941357c845f46db6ee74aae2f46713abe42c8ab8bcafb981504c70e45457e6ff5a51d2f67840ed779568199fdb7ff66269c768f981c699c02ec6bf583a612cffa1dc4f2660224340dbc7b348df14c9c20fd7c9a43310e9ca26d4702d31ed3e5bb2b7e7d4255efb53c3d7ec50281b01437f5f0883edafead6fc1e831e5ac43561236ab5c738a9bdd3461db0c675413be9df99ce63be9b0b2b623abd29223a3eb802683290c9f71de0b33ea8c2b01ac91f24a2f0829863c70b1af57770645b19866cfd0f259b51638cac930926b0e0539012aee68c88608b2feaf3244743d3053285866d52ff52d9aadf5f9088f466fac4388e41f5734a5ce60ef0ddfc0f18f9451e108056485fba135821e54c5c2714637d980a12ebe613ced4614149f620e414e3558fab6e3fde712195b1dbbccdea9ed3f41764aafef2298fe4210cc5e2b7d6e8a84d107a169cbc1c587bbbfa68fe630a3238922dfc7273a2e0fac415801b89c913bb885143f564d43e2e98f9580a617a13d109a37c04105ad836a9748823000037225923404de1bacce295cc217588435e5feeb8004c7b014126dba1e35c04b909e77d54f868aa519c01870359a36b2c6a14c845696a0882fbbe2e06b8776daedfecdaa2cea59954b3f4cddfd8c345b7247c79940d208a753a94ef2a33b56e0f731566795a50fa1f725c33de2b38ae6ed397f0aae22ba775343923e7d0a839c38a6bc7c02d4a0f65e5c5c9e0cf45042058f0be3269c2e46d7da0577ef3058c78bda1480a72137c3704bd22caa762fc879272a5864d47454a1a1628ab425f85cd7ac82f627098ed126baf0b864cb7f0059cfc268158d5da39d68344bb15ef937661fa7d879ab361e84dc2ee2c282bffb553cb77370bc546b1442382f0df5764b24d0a4a4a90f49a79737812296aea8cc76930a31fbd017ca87a241cf6f82017659385c011fc402843b58906f06aa66cdc82ad1b8d3dc38f7ec2ca327541b55622133e3a2741bd2ddf6e4be74908fcf6cdb663d9898ca5a1b8d8d24f92143ae6b06cecb52251e067a726000a31651c9507ddd6d4028485b334dd9c7f6e1de43a17a16460e8c8c3dee61df6ea3eb0f0cddbb30c042b87396505dd562a25fa55b102307e8b1095f56e7776a35138d184173a5e4a29a996a1fe6f5c4b00f6d0d9e882f5e471f85ff827a4daa20b8ea60797130f6f3b79be57a6deef67be237f91d60085f344853c6c2dfb1f22e06ccf796d2b8173e6649b6988c22a96b80e103c0f5445ff39b7167ce6db6220e04fda7e2a59cab1b5493cba837f9a803df5e041d335147aabbabc791dd423361e85f45c2a499d25b2bc8370e3083d799e860cf36f7f970aff5e83a297cead5bc38a7fa32f69f41de2b62b5217061618bf6f6d08fc2eef10861ad76e606e9a6d9e71089d7d45105aa4b56fcde2a8ce02a1ee8e6ad69eef5b2bcc6a2fd6503565a0d8128810a52c69aaca52d046d9a44cfda3b51e9eacc78eafd3d0208e18faaa3503e83f0cd67eaa1299311f6ba90c66cd85ed40938b50c5c384fa90c171cc902a2c2e7f48bc1ae68f5423076d5bdefe89dc37dfca217fd73069c4cebd8ca4b9488e6984b22ef14425ae4721d9aa9c76a0d4725cf12bccc97e587817a08c7f4c6160710dc4a1c7ea8586ff5cc700f28bcc22ae5f4ca421f91326e12accee2ea50789add1466f313afb048f97b2f35767f1347487d28c441aad4c70e45830cb2ba5c6b20ca9c34a0f420a24c954dcf1304ba3e2e4557c743e6772aac6cb8b7e28412a5af9d0665f9330431b5416da93b76497921f0210cad06ba0f697119732d5f20c94fa46584c0ae8698ffaae991a68dae28d68ab24e36690eb887fb0b4258b96059facec550fa1183c7872d866ea4a3d4a3dcfef79c233cd647998c791aa179733a28347716124c74709aec59e0e4bfe47116997e9217bce581802ed8b51c83c3acc04bb7e2e8402b8a229d49ae2cede42e41b86e2ad7d55bba3b6984f4eeeae72588a974f75f67315fa7787fcd88042323a5990ba8639e3e57f2700a2a2fe19722946725c145d73d27e8808bb56edc9861b83d1cc6276c03770bd93d21637d4c1ade2b354ff2b7f48b6f8a783c7833ab603c261eec284c759870aa4b7fdd27f25220c3e202e2a87a32d2d45650cbc1e226b2d2fe5e00a4dedbc38283910b13c59f3bc699f367c8def10d9a04e11d05cffff0379de634b696c0c27c85bf4def35a85bdd29f41c51dbc3e9f86c6cde4fb030e9cdadc6595bbefaad8e073d489bc45e7bb14ffd366e93c325c4096934c05259e782237cc8df13276e0fefb03ae2311cf220ec452cb4521285edc92d74f6bf2596bb1830cdd57d2d93042cf4418d1c781f1f1058dbf1686db0e5fa5b51c739cb2ec15e714387a6da6bbe8548d02ac71b28216aaa1158d07ecec82dfa12cdb5052f468f23445c638a13b14ac759e7b320bceb2c3118824075849682f48b60b461d9e0d801d7e84f760568527cf28e3abc4c86328d9480bc7b54e0b9742c9f52e846eb16019425069cef91c740b1345cbf3b29d6020db0edd846f2c80a102e6b1e0c649aebae3c9fdd469096b7ab7970e0ba9c6c4eda5558d356003b98b4081d53fda3a46dea938c782092b04ef0f0e55fdde02396f96d9d644c0b3732b39214e64eacbded03f07dfd443f3726b86589920e4d06e41b5f6802c25791963dd90b1797b46f22ae3b7cda1d913011d6e540a9e45c0c024241ad044b2972d1981630f97716ab4395a24901fa2a00abd4d50151ffa5d770cdc80831b6b5af69f8b49bedb4a6b37256f6da509da78d4a7de67a7550d72967636fd686175d5f67b53e05f4d92b05f416643c7bef198b71ef72964d0b5ee837690937e6ee7535da7125b1d055483e961bc2d8aeeb6f1ae955c3c1e75f7cbc6bd8d15cef1d6b57261d49a614fc57e00d6e0137e9b174142b875c39393941a48d9392c7ff67cecd0efb56d9bd06c978948b5ffdc97da17008c0b65a4e27dfa6870664c65f5c86f37c00e327a822cc3e243bd83950f6cfac4256792150bcd89025a5d2f18b875910443c786589d99c234baaa2102a8f5806ef85738156e4b1b88b8489ff56d279fe0e5197163a678212656e014c4a925256cb7d5c74acaab713e1b229656ec5f393356c273ee8e41312a04fd0ef7641a665da5c39d19e0e90ebd026b919604e56c4f2313d0c01306917e74ce09d699a4441a0e4d1b62503f973d1f58ed1ed61e974ed39193db50e59d02bbf1fe393a573be05f54840d9f1bfe24ffefc31a77719593da70ac8e13ddeaff0c83c5b60a05832a11dd07a62f02899088fae86bc703478af9c3bbe132a11438c75d308cd67ba3bcf9d2603164349571d1537cb42ba27159ca813aea1294de14abc1cf1a5f113d7b4b06da262c1f8de3bd529a08053bec9bc60b1873db547c44e6245a0481c1e00cbbdbd69101635eb0da10375762abae0cae7a2d77f0a892f931f11022ff992b8ff0f46e6f41a8b191bd2fb658855d9850a5d8242b35968a417e22016b99e0d2a4baae5c93d35fb072e0fa7e3b1cde33ca3b3574169527dc39a0b939326f17e68abe781d6e06d3c6b5a38e9f4e8830d15e9c715cb2d4baf3d19844e80cc17628549b23a7b3d5ae5ca9de3c7519a5944ddb6ca9125f570b5223946d94cdf4ef453d714218029c8574613609ec262cdffcff7df23c5438e061caf6ccc2a65d60ba658122288c9620248bc95adc9f742ad84bcf55f06686e71ef62efedd6a6b1d5007b506a0afe2de5b9ba1c090c1f114849e50e56829ebaa1f63c4d1d03520477da5118a9fac07f69d557d12a351806d92cfc12977a7fe98eda665d9edce317aac3b18141e0ff5eb1102607e5605eb6ed0ec9d226ef19c058bf54e41c5c5c58021beb837ed2ff9be98e59fad3abae02be5156c4006f92d95936b1c02fd26309d4c2c21734ae361b0af948140afa6590ff8cca330dbc4e728fa1d96b8534973ae9c883463bc275e46f90ef32e9ad56cfaaa7e160f1235f506d860a6ed33d9330bf2f29e09c3f34966c8558e250499b2603f685042032b082d03e82f3fe085ca71f90b4c99558d93d01e8123e4eb99c5f4af8ef715fd78713322e07cc79417f6b00a389f536290", 0x1000}, {&(0x7f000072a000)="f11955db01b02b786295b38cccde671f66769ac6753e957b578b972c753aa85eac3c983967d17768cd6bd14d1b2f64b3ae9f79cc242a8ba2225bdbdb930abef9e18e1971a2d376bc53ff30a4d3ffbcc43099b61728ea1bf377499a1029e94947e949cb01b21be8cad0abc98376037f09fab1bb7bc138a0f142d2085d8b466d7b545960d2dfaafba64eea3a8cf3aae1859162ae3f859fe8c1129f1d6d99b9b74d4c10d9a60cff4260588ff1bde8887730f59a34b53e9f652d72a2e595a678b85b242850b767d62d28131f581a259f690ec85873b099ebfde16db009ffcfe3a777cf8e68b59ccf957da94b294887a1b6c50bf0ac10ed494bb29fc8d326cedd011cf2e039ac438b77e1b2b3ba9bd4a8a08b7abf0d44213e226d91643138012e14710b8da379c374bc87b8acc4788e40317421539af9f4cd5399915901f171a7f8bf904d14a4a56ff9e09388e1c3fa8a38bdd74cf936c2aa897d5c02e10f006ea17c54f18bca9cc63a015ba13445308cae1a181f69127e572c72697cb2c021cb8092ad4b32290e91f9ca68e9d0a04a31ac4768238ada7e1ac210c45ee0259df60a5fdc974d1d10723d0b2f033c22f88e08f81312d659c8cbb77a4e8789b056ce27246baf7b609a540ba5346ccf7b281195ba594b58ed0493f7a072f78108c9b921a9be6eb183a8658f2dbc329832faec795fcb180217522403f839d0a96f419595e560e15ca7ba6c605ac4d5bed9ff2f83ef4fcc14459e362a81a4a5fc21642937c68f13726e848a8e6470bd6c5f3ce95d545190581472cec155dc454094970f63165fba188fa883c5689709cb35145124bf53a843c4afdd0f4c43230a65d018702ad62c28fae7ed22ec120f8faeed678d08f3eeb800083142928df3cda980d8eb5a57b059d1e4f5c0f9de3bcaceef857f2f31271756539a331c2544c564ab092b8ed581942daef5d6150ff503b3255aba3af892af75072c65b554ca14650c41d6f241de148875b1958725180bffb3d5d721d6272b3c983b454d783cc95ac1968ce914b91d37970039468bad8374b2aa3fb30c6cae37239127a1cdd99f31ebb13ac66fa4be0e1695855c882b8e92f7b8c68a8094969b461f99d2fca96a6452b88ba8179f847c1bcc5e3ea1fcbf22c1ce38ff1e03c40b59816bfc147abc3c43e3612de2ba46f5e3084b6aa1068dc7364ed56e060cca06d8f43564316a309a12166e16a08d54874f26bfc200febfde0e70a4ebe9e3714a39095bb351444790dc02d9999697677b74c5b9fa3e516b5beab24c0caef1a94d9e378f5153e02c3b76e7450f7d45cbbdc54d7bc6a50608bfefe3c603dacfb756d837723218f0040322c7d60e2b835c4b3c412dc057891044f2ba5bee11abf192dfa124ff04d8d82cca3467846d09513acd9205ae3648dd138c6dddf40c9e939b525a10fda56bd2216bbc091b4a5989bfa9609d56a409fc98bff4aa4dd945fe87d9cd0fd3e411dce4601fdd323afbf431ef51c5cd3fcc249276e873e4f3708d880f126cd135220589dce277f66ed0876c71e8af282eadacb728bc422d45e4d19919e701853b4b76cf5dcb33355063b38572384efa39f04430c99605bee3b5d2f3be7aa86467fc202308453634ff5b52f5d4c76dcc71bea3837a3a562a29efabda4a351a96407ee6036b4dc8acc6c78052d063a0265b1e15418d9aa799b7c1097a9ad59abeeaaf6cd8d8600d9d3003ca9f44fa248442a89ff26bafcfcafde484657d7fd3bbb32533911ddd15b39e6b7cd5889f9b023acea7c7b24a6499ab855fa4d400ae2bf2fbad881cb8fbb276a1cc419128701ff2a81ff87b25f702aef9cf90eb0f16f221b96e09d996e6ec2bedce73386f5535ecef1090ba3841b45966378d6d359e3d0a0827e62802d1879d11a725884959f87eb997b7331b9584631c07aafe98897d01cede98686383b2d204f3e72e9f4489b1c9de6e872356b4cae7fef9a40b0b4ba3a45497e8543f1c5d6731edbf1db84961271fe1f141455537c467ab7740c382472dfae667dc6839e570e48fe295a0bc9dce451c5140bccfb891cd594606c8d2918bb82857fcb048260c4859a15a979abdaa8e7a487d4bf680a14e03a8a0ae75c88a397cf4444865616460f82a3679120d1f801d436ae9c4a448b81b0d18f1eee2670a1daef759e1de764225f24fc75332fabb9d6be3bbd6822df8a479035b8810f7ac41bf523423860a440cd219cf6d7b32fe61c43584f8971c80ae155c6e590dc41cdbc521bcaebdaaa0041f72e4d586e71cb35405f7de2531acfa7f9846fe6451da03743d37e0ddecdcb10b9bef2e86fe669e8d13b05df8d08ccdb53e73289a8eae3e8d655591afbf18ee4a6ad94a18c837cb7f5b38328cebef40002ceeee6c66b0fbc36937b325bf31d8942668f22ff3e523a3a909ad1eb609fe77e31adb07139da2e885760c336c163f92950002c2d6bb82be5cba94fdf8ff07d449beff97ddcd97c07fb14b52d39622ca156c1f336c0db4b74a6f72550d3faa2e45cdba90f322ec6a0c16b08b259b897ead3e4c0df8a898b7569011a2e8f1dcfb8c0eb2039ed394fd7880ebda4ccd3d9f9e889e31afe918f08f1d31070a70c18ba6d48392afc31b3edae8226314f2094db05ea927b48bce2529ba68331d4f7405ce9ed7d1346f396c50b86d7ff2733e22efb739a7834955296b40e5d9ad7dc7c0218e11e8f508403473ffdb4bc643c43c0a735f17ab1e6877ce19aff7e64c8524e9a8e3533faf5fcd50e2d6443410788a59256da7041de41759ee9bd02d692f711ea36ac00e8c4d86275cdbb2119e389dbb6dcca5e58124c63e3940f33165bb4a9ee1a4a6176da4d7fd7918fb2ee6bf248c921f27b6bebfd805d5e90fb97e0e638e98b34d2d5375901f8454e2399c223fce026a88d610732d26dbcf42597ee28f477fd0d8c6210094689eb71eeb4292369226cb5c91191b11486f018d284f75dd4e1351286b2bdd5c39f47e9667039bf805b9e1a313cd0785289e8d6b1c2fff213f9f411032d23ac67f0b99df754341c4cd22d0d18cd1db1c27263a9b7896ed417e78c83154c409a85d8ec7f01eba50e0908e0a43e656cc75b86c97f8cb745820ab6380233386e48a347dd75a98eb6bf808be2eca6ff30365c42f0807f02f8f11d05889be810792224e39cc87acdf74cb614c2a6927ac1961368454ab3ede537610e3075a54240f891ccfe8ff0c20b02524e8f96ddde2ecff0f300603eb6fe6eb127aff85d8b2822910b8faa840921234cc81c7a73251f71e9acca20bec3714065aaa097e2579f8f9a3330f3b589811778f4941a69348df5d4efc9caf1df216dbf592bda82a28da9bc294c1d4244b1a8b496e47be361fe328ccac4a8cd61131e1c6bf49d5c5ff38149cd92ab206a5aead608bad3ab9ca89905791ae82d0523ecdd280256ea421ce549c13018768b5368bca1caa771a6cb598c58f96d260e045f6b51320b9070195a65edbd0abebd4c2097f558b35af02ac0e459cb0f4a90df13996df8f633aa85f531e32affa7a2f527fc90aff0c08d730fd6333137905739f965972351f7167e18d6012cf1bef021b5ee96ffab279bc9bdea3ccc7cf4b924599cd073c381c3daf3de1e6743b1363f94010802203a3bcc9db17ab892812700331d83642d53480d71f7a757fb3a924d4cf73264fef004a403632e32640a113e3af5833f05814381fddd766f7ca96dd16a36e14b97467ea01df70aca37b5332aea923fdbc7511abb002ad208f8329f85100e3304820e5392c5ff06b1b8331e835f52c3063735bba5ff22f0eaf99c46289d1f49ddcb788c03217c39ea029d7dd92849e1b4415a3f8c9ef8d4426fdd5fcd94baf96b633870f87bd45ec47ecdaeaf601a8c166be07e9c92b19df7c2538ebd1bf5b66b11c3415c4867a59cd27916770d0f7913b54d1117f8e8c2a2331335554302463b61b763ddd99faf70b9b8f4823c7c26a922e395d47cf5b7a265fbbb78a4e58fcd2ab2b20a3746deaee656aa375ca989a3fa40a35df1715e3333507873b657d029f69824de10da4cf21bd92fd9ae4b27a81a3140fd35c061be332615139079851a1cd3b01372f0edd69e33a7cc9291e6d9a9126e91411986b54e40d66677a2aeba5eec609ca4acf4f2b7bba3dfeacaaedae6d99dd32d092ffa7741c4360c53e6ed7f7bc3b17adeecbbecd8bdb3e7e63b14607e0625cf5ab8572c475f168dcf2e6da7b348621959bd7d0fc0f07dd9f0bf96c7c33bf2323976f9e4d928997568d55fb1f88917a21bcc8614c7877b9a33f81d5563e0369619a7ce036dcc8f33beda10956c086aa451d22fc8312794c0944441dbd1d0be43c75caa2f6705251a31c4e9f4131e56b8d6c0c6ed06cadf0212de8600c548a74c1a71ce56994bc223ed598a6477b3b33424a285d38a9a61d95d7b32211d163db422074ea11c0ae5c8454ad2dfa60b0ee7728ceea2ec4a7eb070ed489bd0beb3e191682197d4734bddaa940703d4eefc52bbc2193675411973fb16cc0d96f9d2844bf4e03d59f8f0d71d3f9dcafb8da1465b4b8404987fff2b8f92fc7eb2fdc18ee14e69654aaa27eac931d25adf1e141cda14f01c5f7249b8cdaaf5bec26e488ceb52a5afaf46007c0cf531a51b6601e138fb2f3d036c77ec486f1c957d9e783a92f6c6125af0148ae401c385d17701a2dff3ba6b7146f4d925732b7ac4e897537894320d180ebc5fca0fb78a5cda4c92928bcb67de06654fa65820ca62bfb10856ce831a7bc3e6c4c88df0595211911ef1b754477d1058d1ad010ec7859fbc9bf6c6d5a918efdd741f98dce984faefdd5392b0f7959e4751eeee7dc6658a87f4af14f2da6e64ff54403e080b5deae5fab0304e88421bcff5574e9e47b722d06da0ff0579bee8f76154251d6432751abcc13e10c95d33a74bfec549df1be8b361b8097eaa29bc1078b0a9afc02ec670b26cc7ec9d1d173cc9c192dae4b9705f2da38f6330f2b5e9fc5777f9d21f5f02f581de1a61537f30db1ad7ec1b42fe930b01336270f13968cbd325ee88592f1957175ee39ed00ee7fac5f872318c07366c6b372001ba97d4b407831adec336f1e110e5a3f2fd95d8bd0f60c77ab64f0c76099c60a490778bce15061a29537a51ccd4dcd35aa1e75e1accd5e3543988b7aab6bfbab203fc4417abcd966adfe0341e6e269f16d0bda071b86164beba333ea73a0dc2180ccab88926c8d290e4bc435ec56601f9a53d771222c64edd43f527007c8e86d7d4144fbd4ee1b3060b6a66f50036d2801410b254ec86462a7a70393cb40fef2cd432fbec86d1a4ffda1ad035fe96bc6af4986c8165f945708ed2b8022a9e6fb11058e4d76dc8a6afc3b5d31affccc5d8820c39d513238590dbf1e35eea620b746a54464e0ab8a2d798e444ee469537fae0f064f86ecfa4a1861aae0a9580b43e3907e9a13c9853514f901410816b438f740440926efd31dd3d1bc3ed43c69543490e01d5b24105d2e0c830456138d974010853d43d21ab87c7dbb4f4c39aff2e5ab662421c806bc4db4b3b97ae711b3bf908c5698ac7386b536743bca2a023b7158d0d7a716ffbc198f6d5d1230565a02e620a6ed15793454095c49a1d48807dbd9c023fa0231f90fed51418b7c0c603e83ce5fcbe5db938a5c8065dcbe5efeb6fe194d1edc96fcb255a5d8cdf750784bb2b94eadb04a80a7a521f7f4ae1711acff3ecaccf7e04935b74dd78426926a1dcd04e4c15fc106dd2a4138419f53674c1897d8dfa2087b805e6aea49cfb3b68a8019045134487bec05c45fcf7c54f5", 0x1000}, {&(0x7f0000fa1000-0x59)="20e9fc377f6dd1ac2722dc14575c1bb44077d1cc1aecdc79ff4ac46455df0a80a58cf413c400145bb6e27f8b279d92cbd9e6c48d183c33178d3a9dabd79d4370a2bb9f4a6e122dc53a739cf3d32b1383a9eb1e7cc11a7a6ced", 0x59}, {&(0x7f0000f7e000-0x1000)="cec95a5fb92455864a246a3214cfe3a0cdb38eab200a57cdf7d93aa0617ba301f74eb80e6cfa252a976e0a322551ba6cf1583874919a68fdad87272d9f02c4491ba54b88928e9d664845b0cb09910634d3352882a0e5401878a919d044f73a4cba3bd958cc6cdb0d4d54cdb264837061f630e4b489882754a06d9410ab62c9d9d2dd9021bd839a923caec854a9573de6a04405af2383f2362b47c180f9ba3fe2726b84461c990824483a42033ea1382cf0ed78f1ea6200907b922333e2a3a4d2f83faa740c2a4b9bd8465dd2e527f3303cb8ff9ab331f9eebb7c6e2924d08c7e3d55076052d266209d6a0de9acb12623306aecd301f54ebc85d07d562d726e3edc09deff187e0223902125de6da14502bba2e72d3175632ac3b4789ec3f4ed3ec5de11bcb7a30eade185717ab0e7b8e7d41106348b274a72634661efdd8c75dc34f81485284554e3e4be3be6bd2b595cf68f2b01bf06c968914a802223d969ad4ad2f141120e435349cf041cb7649e276133702d6228b67ce2d55ba98b24a76a632829f3a2dacab3d0accdd3937ac194beae701a7e3de976509aad7f53c2a45bc23740b705c95cbf2e7bbf0d32b308ed92bcec2ceb3d91fcd2604bef027c6c0523d136aea9383a84b60efd4001e6876632b945879e4e638c3b2caea9eb7cffd2d344347ff91e1b42be6e32f9a93ed5deb285d1f4651731359cf1602859c2427f44196723536fc7fae3a8ad92ae898d227e54dbab1a045a7c22dbe589334cacc6a84897faf1318abee1a63304c66186b818aba29fd4f3d7263a1b221c514e2a28898fb151a39d540facd7e355c3099ff9851f16914643bfc0d0cbeb982399f8272650efe426158d148cfb7d95f1077a3761d87e114b69db3b2c836f65975a6695761942dc2888524debec0781fb459099c29b9cbb8e0bd8773bf8d96cd657c3dc390a3702a91ba431bc0165b7115af77890eab9e19d45e2d569474c03056cffc3286b15b898c74bde51a012b07372de63350785bf36d08cdaf24b1ea9a2cac05a44c2db020b38e09f3b0380570028629f17d9f45803eb55478980ee2cb3e921474936cced8e6e3b7a70dff49ec992ef336cbc0b528654ff428d06dc8f35525c866129c9e8d565a032c27fadcab1277de87fa7e24b2beb20453a4fcf58d552dfc40e200bf5713b1474914804cfcd78725b927563b347f159dae02a2d10c731477c03631f2e0f496650e2f6a9593a699cb3c90e7e205a894050c8059a4089de464015739535b55a16bdc09efe204d50413aa77d4ecd0472fab6944ddce50e7021c591d721c500e2eebc3576df97982fb4ba6c640bf6097383357c3d2389917a07414b822cccf0e1982ba56d630368a39461f7989977e04e432db4ad4a9dd41add418b5ffb289a01845d86bf1eb123645f7e08b4dc593ff4af3039e882d41aa58425d75791f92160ab83c3498e21dfbcd6b4043663b82b1f6b0edabbcef71b36971304a36bb48ac0d8b6508b47dd76bcb98e3fa7b0673638f2db5f70289847b0fa512db427db69472ddeb36d487897aa30924adf14710ca371b165f1705e920ff7b674fa99b7220eec3d838ebcdc995553c6d1de0e393369c5892bc880dda6e62f44fc60087051e44721f6fb0a60a210975fecb8126a298d8051d8e2ba506f7878cbca58cef16b5982a78d77a29feead6aa7e4a8686809c0a3bf88210f02319056db0a5c49310c97871031f9d214910cb1691ac9947735cb1cc5ae15d3fb5ece390b7a3975c200339c2f1abc2f45e265b4a0dd281b89337278bf55602cf409e741998840b78575e3266c319e9f932e111d140f91392e3f033514ca0f4c938edf7fff2019eefb7f76febcafed6b416af999cc1b8a63a285179acb016f34eaa83616fd501ba9bca016d72ddee0c829c1aa50112a210c2ac7be8fb75ea299fc62b8f17ac816cda2df481de1915a9039f081436473804c1f0b22517a445f1df12ff6dbb5ef9ac7e39fd39c8708d992310423cfafecdeab345b72298271c554dfb381d5a580f8ad83a53d011199ddb187c8e1d30b402d0b15e3c53462d1bb8769d0362a6d0a04d778b16f1085b5327a4a6bcd4420e9887ca3ba4ce74f16cc3a5cf3d74cc7dcb0fe49d24c88dc64ac35214b9f09e088c9067934faea307cf6a23db5042a4577ffee1c6c212fae3634f8c424bda1adfe9336c1f8f919a2a95527300e365369973c5d2910d82eda822e13b53723407697b991cf4ac2a4b26af98a405c473b242c16b2fea30a74218a2020584e08b41fb22d74e9b14f47101661b4e3cf45cf2769bb1b2e8a72415200ecc379b8396cf5b02ccef8c24b57f89d5f51ab7087944707de35d6dfe4d8a2058b3d94ade8851b5da001fd1c91aefbf83172dae2fe74fc6313ba157b8850ddf0ba3eeb89e3131f85946aba2617ef6702093b4397bf984806dae42d24cf02b7f08d9721bf24fcfb4c183d0ae276f83c4d360f21309b124081f2f9ce88026ede4b202cdc6d8a37397fef1a27d6529d61bf1efca499c46bd33856bb71d3b7a178a71e9690eb1fab0feee067f7dc0fe1b7cf453729557a99ac0947c44358800a4b9c7c6ab83cbfa06d322bb492f52c9edcef55297184712ebbaf0c7b9203e6f2be6f993f6da610e8194d47a0e5701bc9ca82b615293f8fa13d5f6ab3eacdd7bb79afb6f5e3f4ec5adfb8a2ea5a31c0870c624d80515938388c0f9e274d6fc00706e508a1bca50954afd16a80baed7aafda113a76e6cbc4e6d536075ca214f4bf8ddbc15b338432109f1e703e82d40a3faf7f89b7a1a37b5ddc355237490344f880c193432bc5db230cc852f9ef50754947160e7ec6189bdaeb9513fcdcdd7efe0115e0671444004bff1f2d265440b284e0a49f00e05d4230b7312d73bf65d864373e71a6c4866cd0ac00446c9f37071972332f8867c7158db613c5581966ed9596e94a8fa3f7999b823586eb7e9040cf2017d7d85d9089867c1d317486de7e090289257675118d51b685b686b08ced166eb511d6f572d1565f183b640c07a0c9ffff7b7a39e7e13d9fd0962bace3e77a65cfd6e7031a4855f11b15ccfa33609b093b7502b87499aed046a16e7210147372007049fe03e12e80c6846823c4629c39fb3192c5ee80e49903abf00df15c05d5ee90a42a79535a795a399ec9f4165d409c43036fda10710e08044bfa955a3d95e0133eb3b25a222bebfd29d9d428174fd354a22caf9db6378b9711196d8c7af73388ba4913b9fdae12da42a2dd918f749be28a89c37161b54c9be899d6553f674179b53e841fb5d686e572906e39bf0a00cb51478bc311d9ce50d03b905f29e2cdf96bc03f0ada1c742e547480ff1f1a4144b345e8c8c2066b38594bd87ce0c92086ca103a7c618a0d40275a672e65be8d4ba2c1151de045408032411ce857994537a5d0b4808d46e795da842ced3217e1398f24c2bab5881ccfa8c226d13d8a5e65e68629a3555eddc233715802d2e30b3fddf00febfa7bc86669d93f8e2d1fef105bd2548fbd4403b695bee5add6b48ce3749917d333121c4494d08a7b22bf8d1d955ca7139c81ad3051bbbb9c61239e82cfe4bd0609f4966cb8165483032989493a6ef19673ed3fe839260d2d1956b88ebb3f7c23581b1f515c16ad1c400ffe52832e05214d970784e5ecdecfd601fa84a57b19a72b7d287fd5c206b881d6187f9269e366afa7edcb2daeb98e603fc3340eb0c08a09f94a9b82952605dfc3b941241188187ff433def7be233db31e3ac74a507d0a2862ce79df5f6281a199ed15b269d7a2d3f40a999a992eb17f41e3d4da9d694f03c2cdd3146ac5fc0e49eeba961fad4937d3b99156864130d3c6b0d5daf7147a59da146373c05e6f7188f4e2344fc1664b13b72c73707a088e2d9a6a4943b4922f8eda2e6379a55f12a58b73e68ee16dc54e28e83ec83025855d348fd50af656e3e3221ba262cf2f0f6193e880d3c5eb87d078ff907d79f1bcfe5a1c0e28eed52f769930f62b83130308e75cb93592d69cb355bd1a512c0a5cdd5202c15e3e762f569c537e7a471c65b715383858d53cd2167b5159a9eb1d07542abbab4106999e3b3ffee49b3a348593c77e7e226abd381cd38c3d5f27b67a7aa544cbe783eacdcc8f1c78ce1463a4f498f005ce7032e0ae47410a4e99218ba1643e5d3e2de87ba245dbd42af958944c3b4f9419a7446c78f122479569e4164f8da2ff7ee7704fa30c12dc2e0221f9f44c7ae614737505661b3cbddaeec32dfed497a3496da2ab8c94ea6d8f59d2a1d364403afec441d81723b4b38f66d776f4de1a98a94897f5e11ed0ab65996db0e4c21b16fead4bb4c0a5568cfa64a2121aa171d890bfbf675036e2d8cf0ca711ac0eb6ee63b8ab19322d2feedbd959c78fec5bf6d008c6e9b8f8ea8da4cc4fc9eafae85f6971dbf7dc86ed0e3a17a83f0339e51cf65edf3169823468ae2cee46909d65299dd87987dd237825f2c8548b3e2283bdfa45c3d9586d2fa3ea7c67c679cd2972d009d081d5507508579eea649e793d6b1f769bb0092e1c0310061af7a421f6a840a5dc8f696e72898eb959985781490055a3b13db71373b76d9a49a7d091b1b488976764838204d1006bb64033bc97cb631f9bd7d4e0fb9b205c905c1a1486017beb4196b6262e849c40d81385a83fdda44ec804a5ea371f788c742164ae753a46f3806baf737457ed956d3460b99d132a790626c8241816eb69d62a07fcd5c19af60bd31f7ca95352d89ad5ac1758faa2f5e839f46190a8943becfe5303d3e9d73dce1412a137b2beca52adfe79cff255bf54be1af82850dd69260ad2ecbab9e2e1e6afa96813b1e29fe9eda1acac8d187307f0210d19a4a805cb5d729bdbb850d1e2762e158880d0f4d944197b8f87b14739271d28cfef4f7303a179d7b295405b49b22b5b87c6ee2e0e6e225fcc38aeda4317cf67530ec4c33fed5fd6ff6b6a13dccd114351d3de2415c44d145c9937726433f49ffbd2e56310aad924c2663b95004a1e15eb493441e831c15972c52e6367e3db91fb597df5d4254fd53c5984e9ba40f5c731cc895ca2c4af07aef322b6422377c150a35a0f8f6281db9fb2879f7f6d4104e2f305ae97d5fe9ea01f2e3ca1986709ea39ac257a6d39ec5257bee4ceff5da915200f6cb1e0dd6e9b7c326e33af33e24d9c4b2c7a366f1a90ce9fa1731464708423b47f7b41ab44c44a79a14936e58c40e2be8ab096fc589b0f46c38c3a1d50fcf57d01cd5b49ce91abc116ba9b6e18a32d4d20bec33f01daf8f98c3e16ad0b360907f7b207da5ef4a8f41f8cb23560c436f3dd759f0b87896a112862203b478c45d6184e7d10e393fab12dec343a41e73b5046ea8e9176872da308f4398469a85271cfc7ae24178fe1dcd74609783b19fc504e398c52b802b36a0bf3d0514e1a8912d68d2ca698d592fc35277154697f9f67d204735561bb368b8a1bc6a57b93500f104fc21e18a703d12376534e3ca00250950bb1e985a01b0b70d358be968d867a8538ff1579c9f7a586e974ea94c88dac838d168f52a9e16fb2d9e223a83a3a32b960dbf00d2dba47a6c73c387c876f8d8baa823e81055e41847568b38fe093ba585f5cae54523e052ffd819caef990306a00215e1cb868e98f2bcc3da5cb62f7a0cdbd3d0ef330b84d4b590ed65b14722e0285f39517d68adbce361a4812a7d5ddca164bb715a1dd1918842e55ec354ba275c118eb9ce3cb94a41a4ac3c2b830298b030a20fe3974dc2f11625459f7c674704185d7adcf3d25897265", 0x1000}], 0x6, &(0x7f0000fe7000-0x208)=[@assoc={0x18, 0x117, 0x4, 0x1}, @op={0x18, 0x117, 0x3, 0x0}, @assoc={0x18, 0x117, 0x4, 0xa8}, @iv={0xc0, 0x117, 0x2, 0xa5, "d90338b5a63d5ec47c975188b2faf2a8efbe1066a04e78b31fbb29e6e07ee299d16d95683a86d44338c7cd0b5c4bcf7f7353afe9baf00b7c4fab87d552d24de060c7df3c1c6151ea4f483c1d3d46cb98b2d651a4734b9449c11be2b690bfb45ac61308411a708c1e2460a821dea0349be31ddd729dc98db835c6994801ab1122d32e5b2ab2cf08fce14add90f999ebd71d3f5eaf8b42168e72d63dd8cddd92d12c62afc992"}, @assoc={0x18, 0x117, 0x4, 0x2}, @iv={0xd0, 0x117, 0x2, 0xb8, "e09078d311b4c35b2bd0318674c66fe7c75c656a5336d42a4a6a3619fdbf90aa975df986301333eef010d9efecca04e519f7c5b3f2dd1d985d61ef797c4ba0797fa2efcad8bfd22a36f5e59ffdc8e3768a01d9f1ce5e0ac5ea33f79ccfd5d096a0b66d920e3e7a9de28da5ae0a29c80fdf9efa9c2942790ef3bf487bcee04076c25bb9dfdbe6d18136d6227cc419850d0fb5da7343a5fd044302e2097b5120aae5cf8308d11c49bbbbc824efc29d9ed874d156b3787bcc37"}, @op={0x18, 0x117, 0x3, 0x1}], 0x208, 0x20000000}], 0x5, 0x20040000)
mmap(&(0x7f0000786000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = fcntl$dupfd(0xffffffffffffffff, 0x406, 0xffffffffffffffff)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvmsg$kcm(r5, &(0x7f0000002000-0x38)={&(0x7f0000000000)=@ll={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, 0x14, &(0x7f0000000000)=[{&(0x7f0000002000-0x6f)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6f}, {&(0x7f0000001000-0xf1)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf1}], 0x2, &(0x7f0000000000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd0, 0x7}, 0x2)
mknodat(r5, &(0x7f0000001000-0x8)="2e2f66696c653000", 0x8021, 0x7)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$evdev(&(0x7f0000073000-0x12)="2f6465762f696e7075742f6576656e742300", 0x0, 0x2)
2017/11/27 06:13:09 executing program 7:
mmap(&(0x7f0000000000/0xfbe000)=nil, 0xfbe000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x24, 0x0, 0x4000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = socket$bt_cmtp(0x1f, 0x3, 0x5)
getsockopt$sock_cred(r0, 0x1, 0x11, &(0x7f0000d6b000-0xc)={0x0, 0x0, 0x0}, &(0x7f0000fba000)=0xc)
r1 = openat$vcs(0xffffffffffffff9c, &(0x7f00002ed000)="2f6465762f76637300", 0x46043, 0x0)
mmap(&(0x7f0000fbe000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fbe000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TIOCGSID(r1, 0x540f, &(0x7f0000fbf000-0x4)=0x0)
r2 = perf_event_open(&(0x7f000002f000-0x78)={0x1, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0xd34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmsg(0xffffffffffffffff, &(0x7f0000007000)={&(0x7f0000fbf000-0xa)=@un=@file={0x0, "2e2f66696c653000"}, 0xa, &(0x7f0000054000)=[{&(0x7f0000941000-0xe0)="326e440dd80e598c1f1137372a2a71f57c3723d496afc0842c5db29d83f67675674cdf105ca1f86614d0ab58fce59be3f9b6bb439d2e99851723a142e5e8a10e71a91ef12f6c1013c42fc2a36b21e6b0b4693fde20d05ad82ef2468f1d0fdf27257dfa1f4c4213359ac3f47de55e9c02a2f4a3c2e08208f04d4294a21a4037a4ee1a77fb056f3ce561098ff30ce7b1aa7f99a41a36c7dc3e326336258667b52009ff01c936b5b87d8d8b424280ce7aea44d6683060a6f07b3526067f27b5e5586d7b446b810a207656ac256f6802a284d9d4267fa0c00a312694cba4351cf892", 0xe0}, {&(0x7f0000076000)="23b140e9da99b69b41c59b393c05d65f348badbd7b8e1632999abe5b12b5bb7f83", 0x21}, {&(0x7f0000ea6000)="5ce0fd47d55fce464dd95044f389ae6b7d1a0a6508f34985cdc5999d6676836e5507e041abb15dd27e7f8bfa41e6188d8138a67e66c230551a818bcc7551557262fd", 0x42}, {&(0x7f0000fc0000-0xe0)="ebfcf8c42521b983726be04f44a55495c8a06bd8b65bf83d3f216af56fb7e7c7ae16d9825430c5e62d4de8df90ef1964e7687b70670de1dfe4ce2ce33b865befb80cc753a785718b7cc2fa9719df742fe2aa7499c7076beadd6aac08b3857543c714109eb705b2b5f7d71c793f3f5ff4a55cc7d8ca90de7f5a3538848f00ff615df6fb037ce7a84db3148d7bf75352ac22d8b809b777fa2d6021698d48e299603dedd34f21767e3477f2363c11e3b6873fda0eafc59bec6c4046494f2281d19b5f65c766db9b3b7349cde8db3b1e004b84facb01135f15f119f24ec45dc89aeb", 0xe0}, {&(0x7f0000fc1000-0x1000)="c05929460b4931905005d2f4fb877147788b5d12e1cf5a251d79780bb95da738613a8f9cdbb0de68363e2fb8f95685e33658f1ad9cddd5cc7cc9282c7761ef05140d95c13598e05dbc96f824500f3f9625db1de213e9cbd947aa5c01150200878bae23c4cd703a55e5a44d1f241cda18d74814f79da9ab4c831e524fb3044cc7ba4dfa08ed4ad32d317f958f0a2846397af92f9a56741e1b34e321d52865b7260c24819a9a6ddc72a977fa66cc33e16586769b599bc637fb91f86ce3eab4f63b1bad1fb4c7d68a9648e46397f3a550ddacb8c0b5456d2181e74be6e8e5ca8ae5eca16c94f52ca1bc9dc63c1c69863ebd87c0aadb4b706cb410457feb4405fc28a82aba2636ebe1dd62493a867275bf96be9af2e0e24c0fcdc98d0aa9542f131e05f31a73457a6a18812f2e348a3d56f3410f7ceb7dd8f7b3c805847c91499a786de5c46fc8a642debfc54ff6f111fe557b987bebc916d98b0f1a6876a3db09817c3e689f1bba68319b77ff7783a1ce75d9e02186c103383377c5904917e941fbd25bba80d8eded50a018e6f2bb8cbba8bff88d1b73e2ba8b15f82eab698d7d76fe61277d8335040e3599ca8a5099cdc407ec0950c67ea862ce9930072d20da67d712f25e5433df1770c0db1757837cfda6068a8a60cf8a0f0b8bac77a7915c558f61b097d1bfac61e1dcf142afbe951ac46cfba1cc79bba2bbfe2333186d022565d574bf68c767bf06bd6857a34dbd7422d68bdb8fc333c477c2872759c2963614f312e5161f5df28451cce4b803f5ae0a723360bd949decea1c8f94fcf118f12eb4584ad3581416b313897f48935df98e5efeb6bd8d040a78aa17a00447e6bfafa5df8634fba62990e10e64fe1522810dd9504a6f76df85ab1383b9d52ad930af687cfc36a06c6f71a67e899f9ccd7854c309575eaeb96a19c9445e54aa91cfb555b9c2b3534076210d1d7ebba923a2511c433b674f0e4bb8929ae08c502058732bb0d6c001d48e071bb855230738b1afec099007ff7f6235c2108e1ca44a364ba10e78d434fdbb8fa01bb6a0edcad74fbffc060cf0dbe14402b21aa766e4a23f4506960ea8ec651ab665f066f9d3899c012e1085a0c2f8b873a0520c9a89d821428a52b2195a7ca8da597acca99f43efd5a8585238a1453e6b39b2ae42e9e14f7606298c5f503ab22739f91a3aaea0b1d990a3ba400d255c33fece8545bc0524488534a29f6b6654b2318a15c4dea55aa185c1d343c970b69b8b639311332774274d95c5d98f61b5d9470ef62c1d1b3f2c54fad52e533474f62310d33a153a5e1832d2fea08c782f68bf367052ff0d68314083d98ddf4f908983c159c42aa0e0babb5ff5cf81a9c3b80a1d815bc6f93894b172daf8344c539764d03e65030a0d696ce27df550207b1cb5cb1bd74c0a2ed8bd815b8ebf13b4bd4c84441d64c938773d803c10fe107a0f8d02b3742bec8e4895cd15b70bbaff4abd92104161aa9b8f5f834365b732b9938bf8d5889830deaccdea223d2965085452010c29ff2fa49f6d7a17ff99822230ade870445dad4d4b18d3a248010c39d55a51661d6014752699f86a220013e2c48aa21c42b9dfdbaf2415f8d563e329dcda8b4cacfaf3986c879ce130364dc1827f436788bf3d99a8870a2962c5797d456e43ff0f1d4cd097762852e9440648fd756ca33034a3995ccff05f02ab05234609c47e5612aeb347b8747e80b670319fee82d67b46377a30042ad5d5552cbd4771df485b8b7562b590e8124667a6f2d221046c0cde58cd16c1cb90365f69e9bf7b0975ada7025fe89b71d59b04e021d23b082e67bfb5e57cb2a4cf4b5cb7a315ef1953d4cd9e173f1f55cee94513d5b79fe09a48f31097a51f6782c3c8edf5c922a79c20bfe3d1ed24a11e20f8b806230af2efd7004feea1a6796bf2e1de85d44b554f54e69cf254e1267c8fae1cc29fc5c14b3aa6fd15a4361f992d1ab8878317973ca51bdb226502d72f52520bbd8356a635ecefe9c841c5dad4827675b8fa342e85506a0fb4a0d1146a7a9d77a0b63e887eaeafcf26603b31685f0ea13946cbfab15f3558ec1e91718fcb6800b755d01f885cfc6c5038088bb848f06c0bbc02819309a3bb5fc8c6c90364360a060455680c6576caa2b6af6516667bdb9d16e2f43e81463c7100e8bf6b1caf8fd2a9f6eb5c75ba0f339f6b75feb5eb956aa49394cc5908a070a0dba77450f5206fad33707419ce0532c9b2f94e033599aa3a88de469e53007a03879c5cd2e34309ab943d7ee92aedbc8e6f7f30dd33ad7653a84f1053a039c62c21e28a69035ced12d7ffca7a4074e58821f6dd874aad667f32d602ace5418c75287a845060d44b127bed20d5d6fa87ef50241558b85a5f108563d0341b938836bcdcd96e0499a666e3a572e2fdb75acc73745d6c86d74dfb08a5a5dec225f5bf59a6536873f165c4e9e73d6a3f110811338a47f2ae92dc91e01dcb825094d9d8d5e9bcef95b1ef8bff690a52473c63e6d2f02cc9ddb3507448557729b1466219de024f5b6dc3d9128285257225df9941f047c11721d3d6dc6d74426e246d56ec14eaf5b4251c3458276a10139182d175cab07dc97cb267e18d7bcbff8f30bbc3b1c53fb5aa286bcc3ff4ea25f721163bcf17d3bb3ccd0385b50aea26ec89d658ff451b35be547fb15bd6b6d00986b579d0f02ee621a671dc2b2bd3981858b404deefe0239b20650560cc1ff6bd7ce7abdcab3d4d3d569d6eb9180ddfb8a7e7ab906e450d11bf7d6a03743ad1840a352faf27cebb4c896df1bc32f9597ff00b3cf3ef030b88487613bc53df4bdcd8ca2cdef2d36e21fb747d5c268d594561770ae962dd99fd6c153338150aba6b19d69eb2aa6b32654dac24b985b97461fbdc35fb3d6ac9417e6a8efcc60427f9d8a69d4a46625dfca70aa40d34e55acb12fe2bb27f132a17d928a6fbf5d13edb75a65f77cd32e52130d937daba74b3cff04a973ece15b3d483b7bc4999e142ca31e66b29c82bba91473f4dc07d7631616821fefa3b34834a0f77fa711280a436202842cdfefa06ca28f91346282fbf7079269121454123069054a44ca045a19d4b2266fd2cf316bd465aede4a66b73f637806e47387e2191470232ab380238cd7536562bc04c79bb871326b913c8db0a4b3657113991d117399b45f086ac3acd64782d32d1774db8eec7a8eabf00c48d684df3a6634233426d0df06a7cfb6353cd50c72ffebb95f45d7c9a96094a264ef44f927b8c186fcb0bb38fc92c68b72cbbc850a958a9f0a08e7a7233a2a5c64def9700439eafd64f626cf38c4b9f256cd32331b5fa72c1bcf36b09c4c67721d3b44d7b4933bcc89710bbd9a1e40cbbf032d71d876b97f26724f7ff12c0c393882c4bc56e7823987e6a5ac2d3e6f09b11faaa1146bb52565720ebe46eb380a4128c0c3c2cc2b21f23ff80207d563cc04241eef1429e0ebed56d71e220189fd4d1590fd42b3de29d3e29129ae1cecb62940d734f861bf4baef94ccb73c955feec1a3ce369b46f60bcd3b396ffc70e4d261c0c407483f20b2788916c770c41ec5928269561c13f4126d1ef4287509b6bd407513299ee4b1808ae0dbc709785cb40b3a79e036740ccc5572c7800fd1dace308323ffb9494865f939fc6fc1c385e8a738f8bb40ac64313916a237c612ee819f171b76f2170cd0d1c4dfc81919a4e486e3de0d9492946f2dd226a41ece80e33aaa530025b46522154334755f5b596eb7cd67d25bf234d871d1b3f4c516e7bc6b2fca950cd0d61f3f880f67f6b941bcae0f255d915ae669307fc7e6d940f25c1ab8ec830a5fa8d34ffc365adbf10a0bb18dd92dbf5752e3418d2aba7c015a6a06b8c4389c57f774e47d77d31758ff2dcbb50c6d8abb9f3fca668e3dc9bd39950eeae59b34964dc033c74e7f972c2f544b8851e64c89632742cc2e6367b665bc11b4e866831029b259c80bd8cfe07cadf5c0e45b621c0642c78c1286000bb029294291a4a182edc75468988094d8ace51967da35394a1b5f9f947fedf66efd534c1f652a8cb8fa1d2001bf8cf7c7d77be9ec0ac2da354b4f3ddfb44944147df7b2d6aa0e0b4f2888ccaa6dbcad68f4ced88a3cce8d3e24312dc9d3fea2c712862a7f1d112b04e3d567eb44e6966bdc34ac03300e33bba72581ab7b9bb295dead90d241db57031ba25d9b888cad5161c610673435b6c6283fe40bd6d73fe8adfa3e88ab6098574ab908398c3c7b3f95e396517d32b1c0f075de3f3f4ab908f4112875c75329dc11f660b64afdf14a614c221a26125ee7b570c0b4e8ccd6d4ed71963a7994845b473994b4ae4e7b078a3716208814a366ad68db6b62eda79b4311ba680f6a7757d7f5d794434f1b5ff971cdf7792deb978dbb028dd794f178aa0ea5de6f227559fc94e8b55cf0b1153490d5b576823e81ca683b14293495ad8517f1fc16a9a68bb6d52f18a6bdc1a1c889322bb7e083171c7dfa942b7d8d87372552fc89f618d5a41d6b293995c127afb9be223b5dbe8f351ceb09220bf984ec7c4cc7792225408c78e9617495b5567a64906edfd66dec734975833fa75b2d359c70646859ea1ce83d8319813532995664c7a65a0653cd30bb8bbc2d525262fc001360e6890387df30fdeea63604fac4a2204ed259ad0f464276289c243de4a67b040e9d307206bb056df60fc3bee0df9eff6f6839ebd63f89c6bf6e2b50d67190efda59256b9bda92e6523e7a46a7c80ec6c7d69a261696a15c66d10d0c55f4075bb393aec33958c183510c6fc120ccf696f7c5bbacd8803f601719c3a617d24544be1cfa926733243147edf814125a7ad8d55878c5adce7d61419fa6c872caf2cbc3d0596370df70e69315bf553a6d518d2d31c241343544b2ea173003bf7bfcd9244dc815b8ac551eaa9519d2d100d668578a54587090c9579eaab9a9334e2c3b3b7dea25957540f4e240ec0f50fc0e26ad32f6980e4d1607561723fc451f81e4e4b7860a36a297a7d0a2c4bd2f97a803436f1a44aaad61db798a59cbe3a7547462292a5dc8b2a3ddffb449769faab7e3384353f79a469f1144ce4eab6bda1d27aad00191359048c252fce96ae6b908e26c0d0ae55b11b9d1269df7833ab8f0848e1a0076380cf657a764c3586ea1162182c6f19579aa18756b1de344ae926331108b4a17f41115f30f6594cb304ee866cdd3c06040cf0f8f93349493572315e3e840cfcf9ca2a512a591ba05c2e398ea45f1bcf0f12ce2febe2706380049122ffc50a71c3ec81efa0edac846374f51b24fa68b49e021e86a48de2bc758e9f2d37e0031df0e46bfe2fe5c6c5a72bc8057f21b000242136fd4205fce7447754e0ab0a34bcb3d2cb93f41ecd94bacfedea32042751640538ea1cadb9c48aaabe3707d65945bd02397c2500e40af454838c353389716d01227271da60f77ac3b1a1c4c922d70e0d8c9b8927901e802d0a1c382b023cec1f11b04efa54e4c67e6cc69c9f51192c58b0fa7785ca1f247dcd93f56e8c710bc7a821ff4cba1a7ffeaa624bfb339f8507e180f852fdbc3234d91d2994a7721567dd7d5623ab66b3dc13ec3bff33f5b3ad2b561ce0e7a3c5c66eadcba8266e5663dfe0ce3b39d10fac93f4c7df3b5f549b3af330b2ee92705f7e00af5b8fc7f9d7d293513d280e0197d9410cf4939f37d04522f5840f33e21d3c1c72bf7c5deae8ca80181a525de25648844284b7f71e1b3f902e9e0b509e198027c3c73e47f0181dfa35771ef98c7a9d702f1e8582ec296713837e3ae6e4980143afb", 0x1000}, {&(0x7f000055e000-0x9a)="7a356d09b873fe728373403e5e2c8b10070a670ab66073ba62c74f422b3cbef6e020cfb676460783b4867b08ba59705999eba7b3627ee310ea10d8e43abb4027678831d127849a9c503c68814590c2605781d33e424151b6cdde6813abd43ff08f5cded4da479d41743ba29adbadb19f3f2ad14ca59c2545a3abd1cad89b6cf3a4dbfec691b5f54dea79f6baf89ef25d95a570a60b0bb210ebc2", 0x9a}, {&(0x7f0000fc1000)="291b51ee7298b96828f0963fcff191b371399ba89db12e01e362e38faa79c38c94e664edd44b6137b7aa07fbc76281539e4d933cabe7c2be4fcd35e43c719dc4b1b72aef18b652f4c7ffcce38f22481f7bee7d1fb827e8185c27a87d31394faa00b9", 0x62}], 0x7, &(0x7f0000be5000-0x10)=[{0x18, 0x113, 0x0, "41"}], 0x1, 0x0}, 0x0)
r3 = dup3(r2, r2, 0xfffffffffffffffc)
ioctl$SNDRV_SEQ_IOCTL_GET_NAMED_QUEUE(r3, 0xc08c5336, &(0x7f0000002000)={0x0, 0x0, 0xfffffffffffffffd, "71756575653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r4 = creat(&(0x7f0000e2d000)="2e2f66696c653000", 0xfffffffffffffffd)
mmap(&(0x7f00007e0000/0x2000)=nil, 0x2000, 0x3, 0x32, r0, 0x0)
mmap(&(0x7f0000fbf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fbf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fc0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX3(r1, 0x84, 0x6f, &(0x7f0000fc0000)={<r5=>0x0, 0x5, &(0x7f0000ab4000-0x74)=[@in6={0xa, 0x0, 0x4, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0}, @in6={0xa, 0x0, 0x100000001, @loopback={0x0, 0x1}, 0x1317}, @in={0x2, 0x3, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x1ff, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x3}]}, &(0x7f0000062000)=0x10)
getsockopt$inet_sctp_SCTP_ENABLE_STREAM_RESET(r4, 0x84, 0x76, &(0x7f0000fc0000-0x8)={r5, 0x6}, &(0x7f0000fbf000)=0x8)
mmap(&(0x7f0000fbf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fbf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
io_setup(0x7, &(0x7f0000392000)=<r6=>0x0)
r7 = syz_open_dev$mouse(&(0x7f000070b000-0x12)="2f6465762f696e7075742f6d6f7573652300", 0x6, 0x101000)
ioctl$SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO(r1, 0xc02c5341, &(0x7f0000380000-0x68)={0x0, 0x0, 0x0, {0x0, <r8=>0x0}, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
io_getevents(r6, 0x2, 0x2, &(0x7f0000d84000-0xa0)=[{0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}], &(0x7f00005d0000-0x10)={0x4000000000001, r8})
clone(0x0, &(0x7f00004b2000-0xb3)="", &(0x7f0000e70000-0x4)=0x0, &(0x7f0000132000)=0x0, &(0x7f0000900000)="")
io_destroy(r6)
setsockopt$packet_int(r7, 0x107, 0x1f, &(0x7f000001d000)=0x1000, 0x4)
io_getevents(r6, 0x1f, 0x8, &(0x7f0000ace000)=[{0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}], &(0x7f00009ec000-0x10)={0x77359400, 0x0})
2017/11/27 06:13:09 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = accept$llc(0xffffffffffffff9c, &(0x7f00003a5000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, &(0x7f00004a0000)=0x10)
read(r0, &(0x7f0000a9c000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa1)
r1 = socket(0x10, 0x3, 0x10)
setsockopt$inet6_mtu(r1, 0x29, 0x17, &(0x7f0000c4a000-0x4)=0x4, 0x4)
write(r1, &(0x7f000030a000)="220000001b00030b00000000ef00120120000000000200000000000000ea000500291f", 0x23)
pipe(&(0x7f000081d000-0x8)={<r2=>0x0, <r3=>0x0})
ioctl$DRM_IOCTL_RES_CTX(r2, 0xc0106426, &(0x7f0000b9b000)={0x7, &(0x7f0000d62000-0x38)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {<r4=>0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}]})
ioctl$DRM_IOCTL_PRIME_FD_TO_HANDLE(r3, 0xc00c642e, &(0x7f0000301000-0xc)={<r5=>0x0, 0x80000, r2})
ioctl$DRM_IOCTL_PRIME_FD_TO_HANDLE(r3, 0xc00c642e, &(0x7f00001ef000)={r5, 0x80000, r2})
ioctl$DRM_IOCTL_SET_SAREA_CTX(r3, 0x4010641c, &(0x7f0000605000-0x10)={r4, &(0x7f0000d10000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"})
getsockopt$inet_sctp6_SCTP_ADAPTATION_LAYER(r3, 0x84, 0x7, &(0x7f0000503000)={0x0}, &(0x7f0000713000-0x4)=0x4)
recvfrom(r0, &(0x7f0000b0e000)="", 0x0, 0x0, &(0x7f000017f000-0x80)=@generic={0x9, "db53af5627b1d86dc0b578c94f3ffb059ed5e3b2bbb4e3f8626e28925b9114618d95fd97b45caf48c99a9b6c8d12b01a7d24c0eb838ed4e1158c23df6f11eaab9460a2499e967043f7a97b813725d50c1f0585e016cd603c98863e99280a5013759981840d4ec73f0c3a6cd69e0fe583688cac19e85313179328ca2072e3"}, 0x80)
sendmmsg$nfc_llcp(r1, &(0x7f000029a000)=[{&(0x7f0000c7a000)={0x27, 0x1f, 0x2ffb, 0x7, 0x9, 0x8, "d207405f9da664ded27348ab74f0ee3cc2f360427f3d1657ac0ec98b07a735f5244d35d6fcb2ca6b6e62d731ffd128446d7be0c0af269b8de503ececd8fc38", 0x14}, 0x60, &(0x7f0000d35000-0x20)=[{&(0x7f0000e87000+0x479)="e25b426a9ed2e62a094dbeb619e36b5413da33f5021017d10df3f1fc450279f5ae901920e0235e3fd542eab8a799c0148784306ebb776e24e3e9308e13aecfb6416aa8413861a203602d520fb663c1365d1e6d1a2b9a01b6a1507bc45eef32fc52a4fada5b95", 0x66}, {&(0x7f0000a73000-0xaa)="a9e57eedde4e508b168990bc2a434092b52c5983b7d162a6d64327a310b337cf675e96565e58e09b6e0610c8f8faf3ce5016cc51114464702d5ec63fe9c193f624426ed0b2639998011b9f043a716026d112802a8eb1177bb3730a9a094a9190a5b26cbdcb333f422784fc12c5d3f6c78e3f20e077501972474dd9a31b84171349e957df3d6053dc4d1f46d8269ce38fbc66a8a8b642161908245dbc60c032716964b4068a7000f75827", 0xaa}], 0x2, &(0x7f0000026000-0xf0)={0xf0, 0x1, 0x200, "7a3224fe04761e452815efa2643995c732d8e3f1f3c9162becc7f721de3b4c2ee27e6a77cd56e8a226b4ea02c0ba2f9445d2592d5646ad92735d53fa6b07c1d89588e84826cb6c8520e30a6ae18cd14395cd1c31088dac50960d311ddcd81b5cca69cc19f54d82009051b30e9fd175df8a911cc401747e51412a2718dfa90b5585c7a46f64696041c5932c9caf637116f600b504fc2b9c7e103ed1aa6244fa1e19866c54c039bb6ea112451ed77f130c28f8ce205a03ef8693d34fe2af4fb693f33ed46b32314dbebabee210b959447536368a42a97fb3830244eb"}, 0xf0, 0x4000}, {&(0x7f000051e000)={0x27, 0x9, 0x9, 0x1, 0xc595, 0xa23, "f44c2c09299e00f781f01513fff4a5fe2aa6e6a087d53575f06e6d826b8224e9bc62c0bde6dee0a113642d146b50e7b3fad32bf1d15928985241f99a140b0d", 0x10000}, 0x60, &(0x7f0000c73000-0x20)=[{&(0x7f00008cf000-0x95)="847425085ff8be1d9802ddf6b6e48c6544424a4024778aea2e8e31b98dbd1a0b0d7c5600c608aa6f7839825b60f6c438f2f4b66ecd238496ee53532220e2997cdc2cddba2f24d0b474faa0c109643a9d5b6759f8a355eaffa1a99a83ea09eace9c555b3b1e6f3e5fab3b99ad44f08cd148e889467a90c644f7602cb6b16147662f4156f27748b086c18eeb38834291232bec40d6f9", 0x95}, {&(0x7f0000258000)="b07931171d9a46074e4d6c9026eed5ed7916d9f2e3d38d5c2ae28d45f45657b6526edb5c36bbd548e7cb30c3ea13bb494a7f78479a625c60d898c18342b92f8adfb473d6444abaa2b15b4b859ff17c248f8797e3297d3539c80d47732c4495568560b309523851c284c2434e43c9feb39d1cec999046434328813b73f04296075415fb0da255e6a684d6ebaa62ce2082facfb8a9e1022f5b914df5eb29daef06d843021d7823f4b4719e616956ef1ca99acfb255f6d0d797e47b08ba599cbd206b2d8f851ea8c649e6cae6ebb8", 0xcd}], 0x2, &(0x7f000003e000)={0x70, 0x18f, 0x100, "1b5861bb62a13502a3728d4720fffdcccd772b31f35599c5082550c79ba3480f3906be3257f84cf74156ee45a84b496c85169342952634857a0429f264dc3defb63ec276b2ba41f56f30869d85979d5f2301bf7fed7b973e33"}, 0x70, 0x0}, {&(0x7f00006de000)={0x27, 0xffff, 0xbf19, 0x7, 0x8001, 0x3f, "2a4767ad582cb715220b2d74b68f7b4cf29cb3949ddcafa34638e926ace15990ca6b3dc906697a24c069ca6d924e6a20b5ff639ce31cd7f56d7f424448c817", 0x100}, 0x60, &(0x7f0000912000-0x70)=[{&(0x7f0000e64000-0xff)="c1ea840f92949e5edb147147da6bf5dff7dd3a26525c79b4d650baf4c960f2066d5e55d119464d8c3fe54945ac7456b9f83b00ebb2e1ae2091def57d72d23bc5557e40ef0aabb4de8283ce7e7f9e6b025024ce804272cbf3fdb9d362638caac03ef9320edaaf59b5420236c6ddac4981c7ba87cb31522cf0da17c156c2edb239de6d0434ad9fee2d641b895c9e71dd90fce04de6e590aab771be29615ef2bd4a0ffc221625149aab523aab561061374750406048025f67647f49c337c2496fc7604b0864636be77cb6420a8fe78d5e0ad65d38a0a336963c1b2bdc383f0c041ed0aaaaee9b891ba920b0a04ab435c772c415f33240e7444487fa7f0c990c2f", 0xff}, {&(0x7f000086a000-0xd)="ac7130aae37be87b68d6bcc105", 0xd}, {&(0x7f0000e24000-0x3c)="7ac7ae028e1daf1d6032502a68e863cec9d25e5c4ab00676dd5809b89f3ac9485cf88f2a48dbd0e807ee262ac5a1e7876394fb6da06787ac63b7e797", 0x3c}, {&(0x7f00008d4000-0x1000)="d9c54f56354f7d59de271cff9237218c3ff20b2ad5918a24e4ea2aad6281e47ca12fc697de7cd743f42ff6f68313211f979fdb19760df437895c9569018f6266bffbe9e592dd8dc9aec5111784ff5036c64fb2268d61921f3528d4576c93f84a7c0145560a8290bdc576db45f58e9904c3c760b5ad4b0550014726d91ea2bdabb13a158412f5a736813a5f232311d45a5fe2b5b222be3bdda264bc9661243c5926bb7aad389a42e5297dac2a50b414dbea3c1e378aecf8fd97cca637f3d8dd020f33fd9e7303317795b413cb2dfbd018a35da6d45598440c13aabb3353a098d03cd8810a19d1e36fa773d854392ce43f146720b55b122d4fb63d4470eb17f9f8d71281d8664997e7c6792c7d8530631e7cb33044362d2cb87f308396b36988dc810852fd3043efe0f5fe317839a2672ec24ea41c50d7b8d82ea610a41614f2169c0a7216decb8c352693074a47841231e53f9954e8e2015b4af037dd0b81b924992adb5ce6cc5bc42d10d82e0dae952f115aae8ed7d23d1888f6c80835cfa55a5b86b513ee8cb90984afe6150682bd46074fabf3140fd6f51c67ca0ada95d0fdbbbed573fc32bb5ef3c8795642b45fe7af371db1f489daa32d2bdc148fcffdd712ad868efeeb380161fa378eb4a91be891f6c15ba94a60691838ebaa084927ad50e269aaf22543effbaf33d6dc7350381af00e487cdee6d7a1e75a1d98c027644bae734febe79ce6c4c4eab6a095fa75e0537a5795274ed0ae9f0974b9fff712210ad1df62965f7de2e818e6647d3be638cbb958730d9cf9989538fac0969af7590a2a740458c5df02f348f82b7aa8ed843d71f9c3418273cc05ba5c99f4b9ecf63496cfa4653cdf8367efca152d0ef816a554b1ee71f140ae58bd3bb0f22b375ed7f18c0baf1531477fed4c1c57ee3dfa379f2b21e3c342661918e7a469e87d41f1353ed0a2d984bb2d7f4e092bcb964c6ee463d48e51f187c820e5e93affdbe9f48d27348546a0190970d1a229d4c09f736234d9043b394888d355307155cd22a77bd3515080e2a3785b0fbbdca3869006958c692e02e553b74695fb19cd77f3959d46e2bfc310544e12aad1ad9b11a06ae5fe3ce4e433b26afcde8f7e9709a8def1ee5ac69fe385c26a366f8a179b6fc7de2678a7a373279e1b6c87fc4d78bfb9d6d32a577d436c71e97226a4d5af5e7ac0858632a77c1d4764330f247380ff0515d8425a2849edf8823f8cfd13359f2779ccfcd11ebb1006fea3339d098f0168a285f5de51e73edfd0f7dd1720ee8502f44264c48843d8582304600e6d8b476c4e7ef7ae18ead56d64606cb79acdbcda461d21d1fe2374f30b8ad0c24f65c128cacb2f30527f0160f62d947f6a1036978365f9729ece97e212a6a148833047558751c0930ec0e92e9ddad7eeb75c1cce9a90e328469c496e8236a48bda5f44657991be248df6aecc0e89495a007cae104792d0bd62f13b3162a17ace85aebf27f8e4ea74e5462de9f9b088aa6629ff693a9a38bb30b81c706c727f9737687dd972d14cbb969f225a75f8e0d8356868cd0253b1102f1f2ac78e82334e08215dd2caab6d22186c4107fe05c9099954d37a5cabff912bd7e8f76c3c3f830f353f7007db635b4e01a428ec63206f84415bbac1169391d7ea7c77da908d780e7af8af76f99a2aa38b3720504f7e09fcf1c8b96511bf7a21e4ef90cafd5525a3910252aaea835db1818b64bd20b7dfba660a16dab83d217001d7bf9ba620bfb6c8e828248f150fa4e54d842e2ffe90857e68e780a83484d574d902164144c06bf94e520c6a32bcac02cac8bd8b616f2227cd29c84e1f101614beceb2f8c44936ea713c387b18165e7cfbac0205ca4f8f2521225cd2e826ae2ece013f2922dd7789d07b3d8cebb99dd430787f284f231ec76e1265dbff4fa1ea5668ef7011ad4f28fd0614e5127521846d3c725f30cf60a98b43d006905255cad73ee58d8361124233c568b6719f74b099532edcc6561e7ffc1d977f8307ce769fbf9574606de743fb318eeb6d11d4435b65e9003562276cf4b935fc2b42a7c0d29c535f74f28afcf7de91a86ce8c30fdd72d056fb695a43b97b1ea6bba118c1878907f1bec06ebbcead9ccf978e08afe1a7b679be40ad3ccadc6a88539d527c3e71898f3e6c1bcdeab66678564d6eabe23e6283f9de8e27d494702d3c31e021f5d6538e4eb1d5e45098f4f87f728f1874b5fc46772e5a6c81f5a231eeb6e5f55f0d53a44d4e7fd77aa8731c65f7e6985d6bdb1718da3a94576a0b21b43256e643b2af23b42982632de8a424008c454fb765f139ca122afd394599e4a375665cb5d0ddec2eb57d1fd18427ba7b759883b4d0ef6d37ea8a12ac6e60a171a257912106c6ad74fdbf9c586fefe33a19a6f1d115b8754c95d55011fe853ffc9c30fe0be9e81d4f3e83853ebe65a21f43aee9c8d0a11c690e465e765389913998c0ac0649af0fda0a9e9ab4c05681020aa3bdea74ec27604202ca7690c32f616e798426bb3743f2ccbba6eb40d605b3f7288a9c8fc108993a5de48650c825f278315e3bac3cb8a89d70907a7e7ef48aedb36b85b2f70a6d0817e0fa2a513219ef7366d7105c1c062ef64394a684b740929c337a8d3d5134d2cde7bffb51a8a03b6bc09a73ad20d783d388e663d53ede613420af003e1093d7514f8cf537c33417a1041e695db58301fc9b3971c1b1fa01f26209b8d5a83cbeda9f412d5710e12aa46784f3fa114bae735a8deafa4c5a0f778809a02e15d092c52dafbd4bee32dc04fd5ac085c9229bbed35625e397b51d209e3a7d4918ecafe70fc90fc5f5f4750d8527ae5d257d7b517924de0afb31ae4859ff34267566f9899bb84b3fda89d181427d7fe94c954886fefc047c304135b1d4ea10bc6da61939af60203d01475ab8fb26f0ef35fa233655c318f9350eb6880fd10b03372103e0290c98253a96a3af3af48da4b5cbdcc4e68d96fae8c1219e550d8d8a1a5db46ac020ff2fd855930edaa4031d7bbd4fa0b79e2573a8f50fe64efefdf6a7fe66aba81c5791116fbe8229f7028f8cc269bba1e781eeb636c32f16b91ab0d5e3dd6d7e90dba3af67e0f651705c5c22f7bb955548b54abd08c7c201d2600b12eb8543cac5980baf7fb0f5ba3ab8c4e33f53f6f21653e14c7b782bbb624cfa50db4c99f718ef09860d1c7ad66e186a78ce69ceb994f0ca406b8df8c155161c950f088dfde7857f7b9e883f6a60c5e29a732596e20aa72f7af32fc2525835f535e16b9897fc814479cd7234bdbed22d0bab299f786ec5c35c44f64481ccc70c58444082aca84da932cdce638e58801bde42c09d95e9631a274539619aafe1b505f8cda63a7651c65b563aa5c51045d17ce7185b5601f605e2d07d1eaa69660bb6b61b342708664a6621276e21fa3ab59f446ff625269b4b1cff222a08dcee0dfc94d94ab6cc39b307a6aa2a06261537b703da2002241593e441031371dfadae90f5c4a354509a5debf873875c758080e296bf0d2a2e9bd6e911b3d1a5bb78c958ba90a283e84e1716631d7c4a25c0017d51d7e8d369d9a10487ff7e838e44c1a636a80810e6eb01ab6b0ff47db55027674482621ae8e2d1d98a1511480a8fdbb32d3853459f56966156f82c1c13defe17d19f3eefbce019f996ee106f3a08ea1aba9339688833bbb7d2527b6b2f29ec8ad395baa68bb248dae0162862c37ff581d7cc5b56e0293da4f8c77cde1a982d4a4d7ecca23ef3820791080e90d6ccb3779621c7bc773ff74d3d8978449a589c05daec70f73f019b591da9363f2dfe71d7a3259902be4bd5e2c0af5d1f9581a4d8d858bfd84cc621742945ff3893b030946c6d9b400253eee8784fddb874fc286be0967c4179c44252fadec185596b277f4942672a81bfad46a893ddc8a74a048bc176328a04d6054ed992333564d595e55bbf5678af0d8808e57e51eee0eb67b962cbfe51c530a809722d10c7dec06213ec874d28b3f392508a80d04b01cf721a06232b699981a212d982b38f680d2eda646a9757dfc566261511c47f88a480b883894ccd5953742645ca14d1824bbffc926193a12b0b2ee7631f808928a51969a66dae66fd10a431d3ba19d4130fce0fb5e615c823826c5079c5c5cd6204d75ea1359a36813a9c3c43810a450ca7b0e0465c991844e934692880388ebf48dcb49741ba8265d9731b1b214a0d004a869da57f923629132277afcf0b0f7d642d18adc7c49c370836be6696fa471f80b3df8615bd84a8c42b64796800bcbf0f0b6cef3f688dc5cddcad69d29cbab7b44699640b2cfec3b8deabf80498594b9c8d98c07cc27a8e42f1ca0bf8f0309b8e7b5d7d05204eeb221ba17dfa8a85485fa3f9d2fab17cc48adda3045b268bc4ca272daba9a614b8b198052f56ccd84f6a8b80b14c3d003180caee26939553c3494bb6618c9933b95bfedf353948ca22a9b2037ff57c7b84fde5b9fd74688b18035947a1f9b34ebc9471fb2900d72db211279faef4d5d2a83c7b033e8a35ffd54d1e91f1da9e22693cf26e8fbfed396ef9318476000324cb8dc4147f51e3fb0db5c9b380f3979baca37d6be297ff64a62e95d31c7221d129ab1bb480be5fe1db31dcc33975833bdc2e557447dfdb94a0bb868dcbf70dfc86441d490eafa72dba31e6ae91884227d99baf9c5cc6f1313b5c8d1ff224e379c5e52d08f1f73c2c0a7c30f9065bbcc4ce7c2a6a19e9b1652cc4f95cf3fa4799132d7416803f7fe4f16fdfec3b3924333b71d18536e124ced5c955e8a3dd33abebbdff7297628c31aee450e64008c5ec0dba89af6d7781753e2b03ad8260dd5e646265710c4600278a84bc9f8bcc1e2f6f164e6f3acdc0695a8a1e5f6acd634dd05ea64b7edc8f403ae1ec8c09464bb5980f639014030abda45606a21a3da8f875dd633739a3916f842ef5c4e50aa22e30fa752734ffda0ba1271e70212f5a95ab50d45126fc6b1273743d4bb9313a455495fb957a458bc2e6b28f7df8d3ab0575786b99f65224e83c519cccea651051e5baad46ca473e677697e57eef4c0ba8004cb7cbbda6d4f27cc1f9329e855b0d8ce85ddcd7fc06ba913794ddc1cbf7f3cd053b90011330d0e5dfa38071b07ff05d3f92ed7e81fc3ff3fddcce2ca3c7ea01181e3a57d29cdc821c62baf4cfdcf764c968f77630bcd7cd3c7d10620283542eff8494a85da71d03ba8880b2a2aec8817f03e26b96cc49862e7d8f993c48e2ba4cb952cb6058843381b8c90911e11bff6864d5a14ab5deabc6619dd847467c3662fd8924a956ce07ef0d682fb471615374bc9971826db319373175b96285262c15b4729c9c8af20ffb6ec069d57d17291d4cfd51fd291d249b14ec3f8f04e382cf993a1faf45610f0444805897f6144268e7fa59e38b93e16ed512cdee8adcdfaacf2d97ad434c1d3f4b667286e7b74b7eb89962bd0b7a20129415a4c05684b9a79cdd9a36dee2eb6dfbce534506d42222798370dca8d18c6c6d6f787eac05347b88a19c26afb770daab6d566fcaa185b0b47b014904d7390f3b54dfd848a1dc92d15aeeb25cc754fe36846b1fc751d1596a9d7d59c2d4e2fd167b7bfa3cc2f6f5968421ea7bbdb8651ab8c8be7084538bd2f034f02e2e4e896a5ba73cbdccd9fedafb382d7c63c3fcaca1a69e335436bf126b01a61f95f90a9d8fc80d12d5c4b8e5c9df72a9f838d6d6bd42d792f53c7a84ee3f5d06e47d2d5ad98ecd234e76cf69cad9e03e64fe10271d328b459cf3e660ad3d2a6deab716a75fbe008f6c", 0x1000}, {&(0x7f0000271000-0xea)="5210c1d732bb1c6f1cbad655d2032c71b9e5733caf6d95cd1b930820d0de96ced07fef5d5d4e47df06aa1ab43c162326f9c4957aebf3a1fe4b7c4c8dbc6fd594c4e422283957d588d092c0e2c252e8db8e254e56599bb96218cbee3c7b7222d53b81983242d9da3ae5d58a396fa956f56ceeffe9dcf74f631394570dea6bb0ae2aa8b4867e882bfaea9a0189e315051e2a6eba9433475c8fa8719d72c62ac3d0cdb14ab0445f2b8434229642f6512cf4054aa0400c0fa329f36254ba53bac8a9c3234f818b4f3277d69355c79a5160abbb2f26b66570f98bba4c42f6cc4f4f98e2396635f764eb70e923", 0xea}, {&(0x7f0000059000-0x8f)="bfe92a60ae006479087bfff170855794f875dac47ed6132f62e2e0ae3e10a20b9e6c47f34deb1da29649cf8ac76ea0b764c8e0e2fd194312e445b1551d21dcbfecf41a034a9dde4cc3897ab3ef5cc6688708c9d9fb438b98128ee4338715526127a652f83a06455f64b03d8f1059002b27ac6499bccc22a11a644aa6d6de2f2d505c932d48e79a30bf9f7c26170ae0", 0x8f}, {&(0x7f0000a57000)="2f3d563736b6d0915a47587fb61421f5f707d8ff1f168a2a803bb4d59a4966028ab626302e2251edc873c8a706c185052337742610b4689ce50389bc5a48d6c4782e6b7bc4bcbe58d1148b7ea62066fc064a6f39cd89eb4cbc3cdb697395416f2e2e6a0f0dd814e601407dc630c3d1909fa0a93dc22191d6dd3991f382e5d602559f98ce3f3a115c712b7629f17f775447e42604269bc6771e824c03d7421eb08fc3af98d3c3547907cca69ce1f63bbc8be766605b141a", 0xb7}], 0x7, &(0x7f00007b8000)={0x50, 0x10d, 0xfffffffffffffffe, "b9441a04043384542500a571e87e84b35776621a3b050f923ccbb9109ae8140651993e3523841a846cacffac3fbaf17c90c7a0dbda53b93d3a"}, 0x50, 0x40051}, {&(0x7f0000c39000-0x60)={0x27, 0xffffffff, 0xa695, 0x7, 0x20, 0x7, "f11e6b9ec30f9daf494039045fdf5e1d49b04a2311f2da7077bb4325cd14dc42ffd2d2a72909803f33322c9fef280035093b566c0052da664a2408c888cbbd", 0x8}, 0x60, &(0x7f0000aae000-0x80)=[{&(0x7f0000d8f000-0x2f)="11e10830bc23d5ccd30418e202d13fdb93c2f2e6a57e92fa22fa8ecc251aef9978720bc787bebaba59ee3518d7ca3e", 0x2f}, {&(0x7f0000f23000)="1a7dfcdac990a4c89faee00316ed9fa8fcd0891735b9263486c1044d4bb44286f6309fe7a8df60b9c17ea92d049e474ce9a7fde5b27295f7309e12b8dbcb70d1fa0daceac6cd7d33f42f82f07de62e49647e83e678a13b612b99f4c643048e5adc8b29558e431504a3b8e2c146cd8b79f14017b7b84b8892c816b38f9a1953bf2be489a84f1231dc3e82773ebdac6e245e06323bc5417cf33dee0cdd6d81ecf9101ebcc6d6612ef127b2", 0xaa}, {&(0x7f0000b9e000)="0b6a1478b6a26301716200f647542296f70000541fc581ec3c06b000938a0b533ff2ee05fdfe6d67b2717913f096e72b68304ae5803ca0fde68b8d992469876b1411f957b6e05260e1b09995bade6f1111f6f887", 0x54}, {&(0x7f000063e000)="b333b2106bfcd6bd142a8bd5efb091e44566dea4d4a78d40513993aba80b965fc67944ea244d09e11ec46fd9f905518b2fea6f28a458e52b73eece98ab2a911843347654d78b5a348092e06f3e3fd449da901078", 0x54}, {&(0x7f000074e000-0xb0)="c4d9970097983e7c4f84fa086581b67ec5439931f0709c38f6f701327f87d094f6454a3b0c71883839fe31144d70ca2245208fb7e24ffd964e1d5f52c3fe08629329b7554aae29f2e92ec6cfe912b39aebf8107f149c5eca201e9b1ba35382943c983c28e2caf07d9fa2d495ceed16cf6bc057f8a2934807e0d3f1358cc73f0ee30d709cc27d0562bbb94cf4f6c78a8679fa30a44d93d8560249dd49379c475610cb295d0a5be120e3cbc15acd971246", 0xb0}, {&(0x7f0000d4c000)="cdbafd58bad9f4c89494f0d60b742e5963f17577c0ac0563b1151d0c97c48b0e689fa20c07dd0af3887419e76968c62a6c7ac963e2336be0a4e62d47bdcec4025b56be5e03fc653675b17d6daaffe20773f8ba932766cae26ee63adc0f5126cc1f00819cd0ae4aeb78e71dadeb7991a9311ae124fc9f79cc707891dbf8bdd103a1274af2dafd851e6bd7ce2fe6", 0x8d}, {&(0x7f000047a000-0x2c)="193e9b46810d6287e579a25891abdac3e7b071ca5d44ef3fc341865395183f17ace26469a71d45c3abf45087", 0x2c}, {&(0x7f0000eaf000-0x2f)="3ceee98d18fb59140f6a2a7fd1ca7e1e909ea4b02546411fd3b219b5baf36e9827cee1f0d7a8423fd192d23fba8a1f", 0x2f}], 0x8, &(0x7f0000ceb000-0x40)={0x40, 0x10c, 0x3, "1fe4f0c597129b1ff95f9c82937dbb90e2c62c34ba8299eed579dbe1cbdd05650ea7d86d94fbfb9e4838c2"}, 0x40, 0x0}, {&(0x7f0000a0b000-0x60)={0x27, 0x7fff, 0x9, 0x3, 0x6, 0x6, "c118b58f08cfca00d3224a9f3d525c5b91c64cdad65e67cff40a34a779e6841be7869398446bc11eb82c0a3c56f7a7f0ca1dd81c8a0ac85485a53f5e462a87", 0xfffffffffffffffa}, 0x60, &(0x7f0000a94000)=[{&(0x7f00006b1000)="9ffdb83e6d25317fefd43d916ad5b896be26607d7a3af1d0282947e1b9d74c14c3b4825d7377c43151360eae14e3f078b13b08f62f5df939aecc0662438a5fb3b05d1be8cbf1b9271520e8de71549cac13b970f8751d6042a8a421346811e1948ac3a153bfe52e3109dba9baf2a22b20d743f40bef515650f95d83ebc0eed1079403d2f2179bf3e5897451adc66f8e6c429e900a8a97f6e0448696525a046e62f40df62b4396cc9ac79c3f160fad2b9075154df42ed217aac8", 0xb9}, {&(0x7f00004f0000)="e957c3d6d04c20d2858ed3b2e7c3a9bf", 0x10}, {&(0x7f0000ae2000)="49c68bb4f5b8c151960b6d33a52052b411aa0f294f2535a54b49cb1240a02424c0606d1b3698a27f6d3e3434298b6ca604f84b25ab3f0534a19c2f9ccd6b1d6b633e4f2ca577aa6765f835b7277cf80370cea00610d0a9c6188f04c2c4fbe0616ed60420f54c325a0b4e8eb061f0421600b401619a60", 0x76}, {&(0x7f00004ca000)="a9ca8b7f8d01450107fd532f5f8324f261ff33f832125107c93a058f5493ffc556d0d44e0528a754fe6e48b6bd0d239abf70e383374592a0c6e9582a8cc0d9a97cea02ee18e25c411ac4af0792e24c6a20b4b384bd64bca34db1d4b21fbe203bf5460a364dc7bd16d58725e6723eedaef031ec44dbbc818e4dd58cdfe9f0b6ced5816a5ef6c9acbd55190c8f43ca89d5f383ea50284bc2a26c80d2bd275f3ee3dbc7a11bf0fd4a6c80c2465efb1bda92ea16c26bf4ec7c2915f53ca826c1bf83b10bc6f9dc33fcb963", 0xc9}, {&(0x7f0000de7000)="a16f52e76ca86fc7bed016797f4e09cf34ec40eccef6df878cb52799a9141587364830cd0152d8085fa022f811d63d2360d334efbf376c9e2303eaa871fe998947b88248c843bdfa267680f6d191c0c958dd8920269475ac4c42d7f1634d700e6a4cda198456ab789f6b864fa55765d2f1131270acec7a67a28bda75b65e8cd04a385d2c471dd7e3d3166930e597e50436e917336d237c32811ce6f556f6e787d001d07f09ac8a0dacec47df62cea165e019cec775e04fcb0dd8df47320fcba9df87d669853c510d659fa2de8d5e3c093a184236217a5bb3e3b983b006690f8263ac45cfd5974634931607485f85740bc80522602c0f6023bf94d4deb30d", 0xfe}], 0x5, &(0x7f0000f81000-0x20)={0x20, 0x29, 0x401, "7ebe6ad60921e2f2365372"}, 0x20, 0x40}, {&(0x7f000028d000-0x60)={0x27, 0x6, 0x5, 0x0, 0x625b, 0x6, "ba9b90437b5895fdbf5b663b65e948ae2aaea59f35b9e485ed6633a6fc4a531cf7a039f6b9ff100406182905444d5353a89b2a6500122d10d6f9e5c5817dbf", 0x1000}, 0x60, &(0x7f00002c2000)=[{&(0x7f0000e77000-0xc2)="ec2e6804263b6e763fed99f303e8acd51f1ce4da14bc5f441b0af798e84b2c9f35ce3a4a56ec85aa89e74d26d2a4ce0ed43161ab5b90961fdcc5ff9f8ab24aad25e26bd4c23771bfd0a4535b72d8589d1fae4f806451e6204089745accf5badfde1756306b5763262730be59f25006225e044a699d2d2fd2c362b9b8370ea507cbe1b10d6960bd9cfe31d3a62a45d4d760f2b95c9b55c6cfec9554b1eec15a4a2eb4d8bff3978c622f23f7182f337b2f8052f618784babca693bf03e5f4a3ce6128f", 0xc2}, {&(0x7f0000bac000-0xc1)="5203ff09a0c3b9379a381f4d22e97283a441a50ccbf296d5fb64cc60cc9b45aa092ba63ffcd3fcf7b191f974edfdbcb0b19c4942fa1228d2ee24229fb872a8bf24c2879490343a20600f3253ac9739070086a51c3ccb2b6ad0459365d1e54d200e73e781b80ee0a24c8211113cba39f5b8f433273f56fb7a87739ce7fa00e7fbf2ced81110369ec414c86e46497895fd901addb087b9f62f81f2c4b9b149e9cc2576728b8e3919371260333c25c14e4badf7328ed8fcfc902f0bf1924800fcd137", 0xc1}, {&(0x7f00007cd000)="f5d2d9b990549c708845ddb9a910af8225e5c5915b3a29b303d926ad96e7103bb6fd116e5c70f9009ce593cf3de704cbc2631468fe61d7d11fd63241139e8b5a9c09d12436692221dec523abdb7e82590034a0ba6784af0b7e0262ac7c16edd4880c4ed7912f076b2abe4592399f3a5604814847ffc1bc4b1d0f05e4d113ec373c0a649ef95a5303ec3a7c578454ec9b76854a58e17d5a3dd93dba6a2b09a2fed2661a98af5d721f44da0d83ec87d137e5e699d564b9d7e59ff6cb2244fd393cc1fb0432fdb97c014aaf53704d15c3f98bf37dcd9581b8efd4eb2a0ee098348f154c66cdd975108d04d71d0f5ad7", 0xee}, {&(0x7f0000255000-0x4c)="ab8a28aa6cd832fb1d0433a70ad0c291b64c22de20d9963643063aca5a14d83ead7bc7c55c402d98382b81684ca1d43545f6ad2149f48c4d817a8ca1ef1acd5441d9b4d42028cda3ecc28eed", 0x4c}, {&(0x7f0000e31000-0x6)="2c90a995828f", 0x6}, {&(0x7f0000b1f000-0x26)="7dbade8d9627bf1f0f98c9d5205259baf2eefd56bd4b7ff81456149a3d7038033de40eca29bc", 0x26}, {&(0x7f00008a1000)="6c1b69d7577861bf4b6c86b5580043431c4fd34acb6def0d0dbd1455ef3a85f8480e2435aea4977acbf0dee21ae3c6361ea078f936337b654ba21c286f804d7fc084c9e877e00ec2627688963b3f0d1d56260b2ae51da4ea70623c250c37e700824fe45a9b25d1792dbac0f05a90464aacc49e5f5ae0cb9fbfc3319c78be9ec769b75c25d1165ee84562a025cc66225d5a2f2192445f79b14d0ad912a76f48543dd98f6fdd4684f7f45cc3ed5b0b49c0e57798cd9499eef73f97ed6f6afed90fb3a5", 0xc2}, {&(0x7f0000c85000-0x90)="679a0220ce20ff31c5be8b7e5635b841c5072862e139fe176a25103965ff374b322a07b004fcc941da84a3783f7f844a377f714e581fc1edfbaa79273614ab417ec429594f2e1df345c638ddcdecc077c2971d8c5ce89a13e1ce76ebdc1befa359302e9cd9789b15047aa20e58d6680c1c2ad66ee144c65fdc23f32884470dc4ab6cb6cddb6e02b9ecb917894b31bedf", 0x90}, {&(0x7f0000b2e000-0x9c)="1f1120098e62168f8317ff3d734f76a164bb3ced1dc569a4f3074ed46a93feaac5bc50edaa960479f3902811de080ba9fbab2699a09d43bea77b17bf2a0297f0eeaa209697f01c97765d322e4e54896517bd5d18366482edaadb05b0e331ae1769ece1f4748ce53362726407cd9cc48c7a59b0ca8df4de4e268cb91207da52c93e03656cc85c41e8eb0463a42701f8187d045235802511a4adb212f8", 0x9c}, {&(0x7f0000ba4000)="c342d1454d75c57bf859c965daa6a03c7a9d9994f48a5685f553e45226f21adf8233ed61a47b69c6a35341b20eecd2123525619d6997fa7d3a80ef4eac7142713657d35c0147d3bfc967a9cf823759609d4d5cf6666956d8ed68d7511b91ccc4260823eee0c3927e2b3c0563ed98df632e70dcd82e837f9124bd52c93eb1265c044a1152740e3c6dd23eb34cade171fcdaf165a4cc37f559dbcb2d06778cf67b6baa62891523cd69dd8e48c13dd7fe0c0146a1c2d53a3c61cd956a7361c04d183fadfc91ffa8be2409c070d48c3f5eb498a592d3e7c5ff013128396914832a41c26826b2c6f4ac0ed21cb32ca7b9ec9b5e948d5b", 0xf4}], 0xa, &(0x7f000063d000-0x40)={0x40, 0x11f, 0x80000000, "a4a76fbb74a3e9e6f5da3bdb9fdae663bcba8f4738d0d97fafef20769b0ff51bbd20f873b2732524e0"}, 0x40, 0x4}, {&(0x7f000056d000-0x60)={0x27, 0x8, 0x100000000, 0x7, 0x1, 0xffffffff, "3bb502ee4425540b1674920a11aad59c17c126803984128a5fe6f0daa03a541548c8624b87acc132a45cb9f41e26d8c253592b42dac62bd6a6596a29dd1b58", 0xed7}, 0x60, &(0x7f000019f000-0x80)=[{&(0x7f0000f58000)="dafca1c5929908757946e3358234adbad3029ce98b22e05d5de81e158fa9b75159523b9f41e4e114c67c8a055d736635f2b00cf973546e7e51fbafa1433c974ddb55271210304513102f50da62056a716d70c4cefc1e4a1c96640d32f685aaf216fd93cba0c3079fc024beea789048dcae342f548ba0698c0cd6c8ea4ec7c0d23c58c8c4882c0cc54a322f7a7d1555e93582d5d027d2c67cb1298a4c6669f32b836120d3f5cead3a69105673b86c706c4953f5252f890f92806a765fc71f1d88a2008a6408a090a88e80a0f2a4aa691c6097a028816ae7199a18074577c08b6c4467dea757fad64f1e9ae2e7", 0xec}, {&(0x7f0000bbe000-0xef)="9b6159b2a1059d844bfd82aa035ab1fc9ce5bf417830ccead5de9b7cc4805242b3ea099de3b59a423e6dec587114714d522ed9efef10793dc1168ff268d73ad0eb77f8f10a23923b2380d416b0e7757260824badc00250ef4ed6a006e808cf433431f34016a7d20a8b9afb3dec1b8d3ed74e5217be5b211aa26554d3b85ae52e78cb29351324c7edd9646ce6098ff19ad33df0c55f2da8eac06e6e7c22af85d13e8af0fef2408ff08cf497a130db4a954454f183537a80684d881edac109938d20b38e512f77149b3b528238a86fc995eefb65e1a32cf9797644b13a66fa03ec5fbb1aab417069273e70c06940b95f", 0xef}, {&(0x7f000040e000-0x33)="dd0d3e7bb614f8bb58e7297335aa5d79e6e3535cd229465bde66331c44a38aa6ed7b51a142d752bee0e04307da2075446775f2", 0x33}, {&(0x7f0000303000)="92fc174f02cac363ee1f54c8ccd2494cb5aba16876a1523b9725fef3bbebac5cf561a9adca511d4cfe5966fa272e80d9c590caf82bf9425276913d6ea4baefd4e3cce4fac38c498c2119edc01d2feaa6ef90dbc0d975f71cb90a39b8f4fd8b0ab4376a170c0d1628eb4477dec1df4d3f82a1a7cdb14434dd7fa49a62b2aa14708bdbf9509a20440551bf4167579d0ba249ba5913510fce7010e4757f7fa485b4209121eb535158cf38395a25ca1280841efdc54286064a2f39cf41609379fa39365cb4244446b706bb9c57b8eed5", 0xce}, {&(0x7f0000351000)="eede6b62b08f37c8c71c7debe7", 0xd}, {&(0x7f000071b000)="780ab350f4aacf8b95b7c827ba2942732c9a396de6c80109f76f4682e1cd6ce3c005ecf6f69232849f792b", 0x2b}, {&(0x7f0000ce6000)="6cb1ddfe06269a408d5db5901d8949bf7178a1593107e587fdb1fd4c91c3035f6c57bbd14a56e9a42b8832d561758a3aa4290f3d4b6fd9ea693a421696b6ed97a741e3ce5f86d9198f445cf441beb4afc88570597a21c8ab5dd5c6db9faf62091631a8630ec44cf571c7c2b1e323f37a724684cdcd7b3a699ab3e3b3c00cec91b1c81610dc5a3ca444b898e02108ac2a0f6bf08ab349ca5337fe6be3985c4a21667620bc119dc60cd4a2711ff13ab508e533f31afa3eb0ddb5297f0b74e6a522368747f64791ef5a1eb108bf3435ff7232e5e218dcc0e7a2de877f74fbfcd8975aef1f4f8b462c073305805e16b58e23165893b2e42a7a3b70f17332e19de71724316f143467539bc459d8634de035dc044abf1b7abc3a92fce545df035234a638575bf5b504302ce3dc183069d5668e065ad30c738c2d3c620b6875dd3c95007e0b9f027d2b64e9f838cd3f2ee6b8b75b0b2f02222853ac62dbfa0795aa345601041d96576edcb457b9ca28854c7ab326632f02ca08ec7a764b8c527cdc4fecbdc4bd150b3b1ff5596f96b097bbcf78db3dea2ffd9d776c8feba728bce1e222222b25fbc46b3ec7df42b2a34db06858388e626434f05ea65a132413c6beebf93cc3b297b45cf05af225b45b04c580c6663cd80637aee88c65c0fac31948860f40a2f6c78e5c3f8b2893a81095e74f2af02a2858a9b1113e88b8237e23593c946e469162f445bdf335aa28cfe706e12ecf2aec0b6bed552859ee49b9713cbea03eb4d9f6e441d9b87de4c08e294a7dacb1eca8509f858fc6e3ab04d359ab4992283fc7b9d4749624aba98d4a43491f55066b019594afb003622467f6db6eb72569390a3629bc69e109186c1791df69a5cea35d4e9d3df6da6554065ceb88ace60be1347958b3ad1702a821eec80616f416cc020885e42589309b862d66855376babf0c49b6d7b607b1ebdfe9e77191aba89285a01c8d179b9ca51d5252b0b97f89e1f2702980e6d06d1cc40836b9395e40c1917f12efc58b0dd6d97567f057318e7d4cb56074532d45fda11bcbc672967b312da91158af778a9377416ce009b6a110e639f56fbee6e0fad715b8d86121c861608ba0a423731db5b59db58c2918b51621349d5b4873d962ad7eef71aef08621cdb5b6cbe4b73ffc59bc8b01e1d89cd03b3496cb8dc3cb640a1a89e8cf5febbcf1ace44eaf07161fdb6fe72a614387758036fce84a755d3b88b5d6114abb6f285484f3634f65c64ff7706ac586a2fd2a981352ce69d9b67d856f325116b241deeda70685ef10226b1efe2a5d079500b5ce7f34e9cd1ec1fddab4131f3cae81eac22e72098319e2acf374931bc793afc528dd0ef9416e5567cea29ecc64e0e2b9e3bc7916fa5c1bfa6f41e486a6f722fdd79cba32e51efaa48670303769326f78ad4a52d8e0e218ed265dfdade894c1a02cf1154f208fb93d36c4f1d538414403751a29541519f9050d9ed4a4d29ee57af815e891ff1599d211b96236528f548e1d58e285e7ad34d425c7c67680ef937ce85c12f6570c4be70defa4da2cd202c428e4e6a80a157cefe22d73c57d3da67d1ee6f2a242e5b13eeec275c859306e7381ec245110a464a6f5faf195b18970491f39c5cc1bcc4a87dd20bae872378fa57a3798e2954d85ba51df1a7be43ff10998c21c9caa9bb9b0b661484ab30d01014b632fe5ec304228f3b622ca45a5e78b21ebebdbea8d314fc48454fcc196360c13c61a04d3a6c35bc4b92b4ab36fc117333b70272dfd053ce83848fb7bbdc325065c80e0bb15b980d1ecf583ae24f17bc2632209df92cef7d60dce8f5890274740497e2cebbc34d68f8875ab54c22237749e9b0f248335be0e44580e02125f76fa0b05ad1c0deb724778aaba68e00da1437dcc36b22dabd5f0f18d390cfb20c026f9b4c16de19fc2287acfad91cee2e9fd1e54a48eeb1053049b06d4e7459e0709bf8a1515609b66dba44e9ee00e468fa71e476cc5ea071124e46ba08637aa3effd505aa845bc9a34469229cc10e08cbd9110325a660b190d5dac7eadbcffbe3b57c11cba3c1bb951f9d8ca98d3a828238474b7a5a4a6ccadecac76d86b5ce3c0f144e3a41b1dc29bf2e4ada9fbfc0cf20669584de8a2448caf70b42fdf44eafbf39c160375069233b12954f917b7292a53b454efe7c139435e50c3232300eb3aa356da622c23ec16c6a299622085550244f42bf9b412403792d55d98b367c05f4eeb5956c3f7da5fff2cbff0525103613b43deacc16b171e378b014ecd759baeb9656ad18cb1ad132ee9e75cdce9c4db13c49d550261fd6861a4f08eed6d2580427726abd88f01df2d840d873cdbf971cf150892aaf32ac203edba02e359d63e78aa42f19f9bf2cd9ea5aeb8f19b4939a11cb5cb6cf43d792e8444f6ec3d231b0bfba0d3b225094bd489f4527824d1ac9a71f54b15400a9579566e5d9fcae046e5c995c1ebef061c5d06079f6f7feed75d5e16a078b39ba4a7917bc122e643b07b8482ad164457527e572f081eefde772dbd56cfcf0001f85835c495c927dbdf6d420327f41a5064a57af52d819bc309e9510583354110246c067eb2c591569163f5416665e9de8bda47809484c4daf416415e293717b65dd47ee46bcc94b16939494f9ff8697835ed9fb5e39de531c1e0d9f363fe6c2f1df017df706f515dc963069359185fdae5ffbc5a4ca110d46f79f3796edf346fe614ae642ebd343baa2229f6c9716217a25caf843813cd6e0e1b4c0575cc4ceaf1d662367e6b0d9db8c4fd3393e56916c516296d51d51add04f046449f84b76542fc31d878ac68956d954bd35b44cbbdc4ea63447f4208b5623b5c95f4726d015463070e6b1a135fec37a8066c5d12f7d236d16d8ca1af93e4d0adeef8b83f41a4fefcf4ec07dd2b36483a7782db78520bd112cea84df14b505414e7a7ceb0b83d112c53507a756cc44edd0520a107ed131909b06aaed2935cfacc332a08aa768dfc9e675fd97fc0ce902c54c33fc95b67873977fc12e5bf051d8e29376121acc686b0b2d8e4791fd518cb3c2f87da82e5b0997a0005b453a2cd8ef0576b68976dcb4d551da47170135ac35a4d66b9946f12c49ec68fb0a576ee00c6b83488804f2d5dfe51bdbf7c2763861d9227796019dbcdcf13582fd8b17d624245f5d2c1886a16a84abefa9b1f8c26e22d1e968682d6f9b90544a5da64829dee7e4e7f9db1a2947637d918473e0c7e5e3580652a9ffa11bff006634cf0f8fd7363608a8c16667bc849c9d4ca9fe08181a12db17b262ef34f7d00d979c5a83d758cd2d61ddb623f705e633e383129f9e6d396c4cd154318cbb2d0694cba22658d7dd43cbc94b484cae350f2830ee18d69497e500ce4e52b96864fb7e6ee7be6fc13d341c1a3ad5bdf3113fec52c4720a61d41b19652317bde4474a78309362e5e7160a7feeefc3f5c3fa15c55c7980ee5664149e461b54bd1e9d28f658664b8ec91652d0778edf7305b5b3119deb03da0cf11acce6dded3418c36ef816cf156ea1c0e56976031bb4e2e74a5f94bb810bb6aa5d0c8b144c453596b836a0512f585c1618e8cab313b28663980400c8e79675fe05611fa6136dc99f53726527a11f41a827b67010230802b0da41c11ee3c8158dc875f924fc3ddad5496d9bae63511165883047758076bebd596471f018b88ca58809b084ea6bec2671890638dbfee5930a829201c4183d5c62045746228d1da90dc1ee36612117c82f4e763bcc0762188c0050be1ea179e537aee3f28e379c79c354d92c66bf41d226f4f29312ed874ce09feb78e94dc48b9e16bd1e63b4eff795dbb17e8ac9a0b1234a94083cb38fe10b7c7e0f01cabbb59a35e05b2b98c2c5ab0949ea255e353411a36375ce96501f0ce63451e91bc360556b49a283d7671f6813c5809bbbb43e2c848b6dab86816c33d3e83fe99d207cadba6b4c86d42fc7af5edaf7fc001b826def73e1d45319be860a53f485f888a59615e89e897a41b93e29542ded153d85ae65599742072873b9e0fb9a8e81e8c97efa665e1d8522facef15db71110ca091b00ac9aceff9d739e6324d9cc4ee87daae46ace1ebe57ebe6b481341cc419a3913114e71d59c32651cf2856f3e6bdb515d94c7e54e7193e303e633ff21571877dd30966cae705cadba10bfd236ca574b6a90691317f26f499b1f31d04a57aca1f69b9e3763b9233c25e27f9cb38ffafd95438acdfd14a75e1dacad0c96a2fb634081d9fcaedd5f6e2c6431ea8187074216368d580306b6b39720a4c0ece630dd885ffac876aee729f560288755fb6c90488fe0c5c01ea960a7aee3dfd083b48730520b7db4fea819827ecb96b02b5ce940adb76bbe144338a6de841299ebcf69dace5fe0c2b3a2622b52c6fe2d0fc88e44220daa2f8b2857f45f548e0c317a1001f4c96b6799c3ae399a471699874620d1cc8933144fea3d4bd0a384795ed3cef100c0bed5f667ea156c4a53c1f74f3e55250f7af33e68b9b4bf32493cdbb0623b188b0d0654da26e77b3e3b6b1d3cbebeec4211f568c8dd48b26f5690f9217fdbce2e190171331762cb2b8364102ddcf77b0db7194e49ff5b194881ae3012ffe509005b441e9d7763198e872434f666417faacd66767994abcf2a9dde9eb976814f67ac3077d4b0b24eaf39ad359012495a462607762834e50d58d511610da1498903abfebe2f512898af007b8bed57d53604c4f9d15958ae1121218a037c672f780a90d0b005119bfbfd25decfe1162e74f69d6744aa33ae736c82b960f290d70b0cb602464e6596785dfe60040c45b6c6bd26ae5414c99bd91a171851ae25281fe9de74a0284ad28b28f30cf3a8452d8ae95862f19a5a8f584b2bb7aa423583ee993ffd7a6a06c97e681a57c973a01890fa535f2601b93cb2ec5f481baefcb97899321bcca2bf1f965f243518d3cfc688a00a0e702f9e5f860cf7c4fe5930ee35ece3434bb366e1d08886ed79816084bcfe5ecce801915d9718afee3cacc3a6e7ec493dc31423b55b91616835ea1406fa528fae9fc16fcff42ee98159e796bdd791a9ef3ab25e27549a1c651c5ea2e4c45700c0a61c4cfdd5a535a376ff2de9bf22b3a2593f85ccdffba2b89145829dacd01d9797739c3230bcda0c0fad7966193d7d4c5e6e9f93d6fac27e16013b10b7d0ccd4bba6f6048a482e72149b3ca7c2346225467d9738677fca32654aeed2df7b97e2b7e8cf2966adb2eecc6d83137d7bbc0c1563b5ad5656682b803896679188c8bb25d25e562e0c645bd1d975a4d1fc51fd22d44b5373c985d68e4c80c932bbad71f5f9fe9fb31ac88318d7d4d087478600666a450aa9e9ceef142cae55edb0e011bc0578162429c562adebbc790fb9f4b3970ee91c9bc283bd2afb6bbfe8f9d1b206a06cd614b2226a89b5c5e2351353f0e1b7242afb778309af26df11bb9ebae8392a0d777fd6484c780c43abf52fab2f6e1d7f668c6cc96aa9dd40ad947c992a1bedeb44e77dda316207d6c2055910956c4825dad17a6a1fac21f6d3bc4f44f37493439cfcac1c237bb74ab42463df8af40cdf9ea38ac3ba5f7c7072bc972e438eaf1bb85988f9cdaecc6a66dd705c57e7d984bb168c7c82dfe28bf80a1ad2f0b649023919d90fd91e111fa164479b0f098b68d6a41c6c685817803c5208aab601ec60146d9ad1d774a36490a311205d9a40cc79c8b627bc3b5df56fb9efaa77aab0e9ad45c591793149a09cff1dbe6a7bb2dee67e3e819ed65e044d6353192ac5504b9c08eb0a9f6c27a4e", 0x1000}, {&(0x7f000011d000-0xe5)="4b5b0032538f74b3e597c4e924f11d4207006ba27f33c7162e015150eaed1f69b901bee0ff6c3c1cde880f09a53ec83210f7b067f3c4af6177d842899ddba6c4e3f9346d648d6102b861ec1249507a056cc1819f9cafbb3f732dfde75563e7fa5c2baa837090138721eac1f0b25347597310aa533e93e3aa98d662f9560397783046bfbb40c319b13316a1746eb07e3db840bc577f0988c204958a5258757315f45ecd933dc4725da4931d772211c46b60f8fe31ec29e80f384cf5260c43de133a914d78427cd47126376441c4af3e846596a33278ba4f419be7172db65fbbfdb606e3ff3a", 0xe5}], 0x8, &(0x7f0000321000)={0xd0, 0x11f, 0xea, "2d649c5503bff00a3cf658ec198ebece0e7aff68d1b984355731dedbc1013132a0386184f883e657ab093f6d2409e113602c5eeb08e0c03a64007c55961ad8a6190aa9f0783920a1c16d902e975f1732d6d226b9fb10cab15b80908b36fc5e16843d48895e9678af713818cd4aadad6449b6d204e67a9b34a2a7e7f458934c5caa13eb644929316979701fd43d817ea3afa9c3e8a55556e4953699e3da392ea036f705770743bf16eed3fd20034ae172d04f46a7adbc4a2e2d9855fffc2dd2"}, 0xd0, 0x5}, {&(0x7f0000d63000-0x60)={0x27, 0x9, 0xfffffffffffffff9, 0x1, 0xff, 0x1f, "478a2ebc1cb1480bf940e74d6a5b67b9dbe56b208ed9978090376ff32b1690589b0c6e25f95a0ad195f4ae27af88854eee48b52186f25115a3766464c407d9", 0x2fa0}, 0x60, &(0x7f000005c000)=[{&(0x7f0000e23000)="872e3f3208fea491812c0762560038a4eae352084493c30eafa247e89543fcfa1d7d4f3c3b9ccd3dda61501e3a2559d965776883809e476ccbe4ae10043e1c9422ffa82f65cb6696e352f06cdfe378affeb533a4f26da07c5914a1142311361c5b664f52b3975921e1d16c35cf36b559c02c4d8469ac894f8b52fac3fae6939a1bb27f47807d740541b68a82b8607678df5925b22ea109e7f4b19d2868871e18934088b7fc743416e2ad21cac2d268b63939cdc13069ac0fc3b157a921908bd6d94114ecc5c7e7fcd808c7148203ece2f5adbf2f4efb5f7e5c6dd5450295148648", 0xe1}, {&(0x7f0000180000)="cf1ef88cf7fb7d04e773a4af9291cd5bf0b3d36a939178e78a9c29499eefcb89a70c697e4a9ee49c3a5ef9b4e49fee06b4aa758067e674711db2b80c3fcf958860649d7ecf708dccc8bb28811aa43ffb8dd879d0ba3c37c8e327e8df76d15439237cc4fdc38ad1066f4f345b612d27e9b2be41ec915e90", 0x77}, {&(0x7f00008bf000)="131fadd22edbe05991f7aa3eeadd36660f3fcaedb7fbe24f619bcd2e4de7309353068079773aaa0ce385fa", 0x2b}], 0x3, &(0x7f0000e01000)={0x20, 0x109, 0x0, "dbc1952b2999a83d3e899c9992"}, 0x20, 0x4000001}], 0x8, 0x800)
r6 = accept(r0, &(0x7f0000c1a000-0x10)=@ax25={0x0, {"00000000000000"}, 0x0}, &(0x7f0000722000-0x4)=0x10)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_THLDS(r6, 0x84, 0x1f, &(0x7f0000db7000-0x98)={0x0, @in={{0x2, 0x2, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x2, 0x3}, &(0x7f00001e8000-0x4)=0x98)
getsockopt$inet_sctp6_SCTP_CONTEXT(r2, 0x84, 0x11, &(0x7f0000b76000)={<r7=>0x0, 0x4}, &(0x7f00006ee000)=0x8)
setsockopt(r2, 0x9, 0x10000000, &(0x7f0000688000)="e47cc0cced1a3c43ae7d650bda4ad4ebae430390fee267d0c4629bc7dcc3d74922f2e7a935919a9dd3ce210f6bd3cbd2868c6e858a78a9a6f0f3be0a39f318088a364aa6a3b8d5d6d6630b83e22e0d4ae6e5f534c4993fd44c2d565134c6c9f2f7b6afaf168fb6f6030c0ace3f960165e3460c0315c6ed2def66d96d70721eda3c7cc78c9fedc8f479e6bb539e1b8b35", 0x90)
mmap(&(0x7f0000000000/0x3000)=nil, 0x3000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r8 = socket(0x20004000000015, 0x80005, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_SIOCGIFBR(r3, 0x8940, &(0x7f000088a000-0x18)=@get={0x1, &(0x7f0000eb0000-0x44)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x401})
setsockopt$inet_sctp_SCTP_FRAGMENT_INTERLEAVE(r3, 0x84, 0x12, &(0x7f0000077000-0x4)=0x8d46, 0x4)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_IPV6_IPSEC_POLICY(r8, 0x29, 0x22, &(0x7f0000ef1000-0xe8)={{{@in=@multicast1=0x0, @in6=@loopback={0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r9=>0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0}, 0x0, @in=@loopback=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000ce0000-0x4)=0xe8)
r10 = getuid()
setsockopt$inet6_IPV6_IPSEC_POLICY(r8, 0x29, 0x22, &(0x7f000015c000)={{{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in=@remote={0xac, 0x14, 0x0, 0xbb}, 0x2, 0x0, 0x2, 0x0, 0xf, 0x80, 0x80, 0x2000000000000000, r9, r10}, {0x7f, 0x40b, 0xc6, 0x800, 0xb3, 0x7, 0xf24, 0x841}, {0x7, 0x6faa, 0x1, 0x4}, 0x81, 0xf12, 0xaa, 0x0, 0x20, 0x3}, {{@in=@local={0xac, 0x14, 0x0, 0xaa}, 0xfffffffffffff546, 0xffffffffffff9261}, 0x3, @in=@broadcast=0xffffffff, 0x1, 0x5, 0x0, 0x1, 0x40, 0x6, 0xd249}}, 0xe8)
setsockopt$inet_sctp_SCTP_AUTH_ACTIVE_KEY(r8, 0x84, 0x18, &(0x7f0000556000-0x6)={r7, 0x100000008}, 0x6)
getsockopt(r8, 0x200000000114, 0x2712, &(0x7f0000002000-0x1000)="00", &(0x7f0000000000)=0xf000)
getsockopt$inet_sctp6_SCTP_LOCAL_AUTH_CHUNKS(r1, 0x84, 0x1b, &(0x7f00009bf000-0x6c)={0x0, 0x64, "f3226be45851f81e37cab42d30fea57cdfbde678e115c210eda94a45f8b563b0a2ec27925253cd40915ace6e0005fe636914a7d8eaea5beeb4b0022727909386a83b08133386859935c931321888384f7b56d5538f885634d5f6e733150dbe8656d7a8dc"}, &(0x7f000012e000)=0x6c)
2017/11/27 06:13:09 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0x40000000015, 0x5, 0x0)
mmap(&(0x7f0000000000/0xce2000)=nil, 0xce2000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$unix(0x1, 0x3, 0x0)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = open(&(0x7f0000011000)="2e2f62757300", 0x8000000141042, 0x0)
truncate(&(0x7f0000011000)="2e2f62757300", 0x8)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$sock_linger(r1, 0x1, 0xd, &(0x7f000010f000)={0x9, 0xae}, 0x8)
fcntl$setstatus(r1, 0x4, 0x400)
mmap(&(0x7f0000000000/0x11000)=nil, 0x11000, 0x3, 0x11, r2, 0x0)
linkat(r2, &(0x7f0000bac000)="2e2f62757300", r2, &(0x7f000070f000)="2e2f62757300", 0x400)
fcntl$setstatus(r2, 0x4, 0x40400)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$unix(0x1, 0x5, 0x0, &(0x7f0000ae7000)={<r3=>0xffffffffffffffff, <r4=>0xffffffffffffffff})
mmap(&(0x7f0000ce2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ce2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_bt_bnep_BNEPGETCONNLIST(r2, 0x800442d2, &(0x7f0000ce3000-0x10)={0x2, &(0x7f0000ce2000)=[{0x0, 0x0, 0x0, "000000000000", "00000000000000000000000000000000"}, {0x0, 0x0, 0x0, "000000000000", "00000000000000000000000000000000"}]})
ftruncate(r4, 0x8)
sendmsg$unix(r3, &(0x7f0000001000-0x38)={&(0x7f0000000000)=@abs={0x0, 0x0, 0x0}, 0x8, &(0x7f0000008000)=[], 0x0, &(0x7f0000001000-0x10)=[@rights={0x14, 0x1, 0x1, [r1]}], 0x1, 0x0}, 0x0)
mmap(&(0x7f0000ce3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ce4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
timerfd_gettime(r2, &(0x7f0000ce5000-0x20)={{0x0, 0x0}, {0x0, 0x0}})
fcntl$setpipe(r3, 0x407, 0x100000001)
r5 = dup(r0)
recvmsg(r5, &(0x7f0000012000)={&(0x7f000000c000-0xc)=@nl={0x0, 0x0, 0x0, 0x0}, 0xc, &(0x7f000000c000-0x10)=[], 0x0, &(0x7f000000d000-0x10)="0000000000000000000000000000000000000000", 0x14, 0x0}, 0x20)
r6 = socket(0x1a, 0x4000000002, 0x0)
sendmsg$netlink(r6, &(0x7f000061f000-0x38)={0x0, 0x0, &(0x7f00002aa000-0x10)=[{&(0x7f0000cdd000-0x24)=[{0x24, 0x24, 0x3, 0x40000000e083088, 0x0, "d45029db0300000000000000ffffffffff"}], 0x24}], 0x1, &(0x7f0000cdb000)=[], 0x0, 0x0}, 0x100000000000084)
mmap(&(0x7f0000ce3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$bt_rfcomm_RFCOMM_CONNINFO(r6, 0x12, 0x2, &(0x7f00001dc000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000ce4000-0x4)=0x1000)
2017/11/27 06:13:09 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f00002a7000)=0x1)
mmap(&(0x7f0000011000/0x3000)=nil, 0x3000, 0x4, 0x32, 0xffffffffffffffff, 0x0)
r0 = userfaultfd(0x1000000000080800)
socket$inet_udp(0x2, 0x2, 0x0)
ioctl$UFFDIO_API(r0, 0xc018aa3f, &(0x7f0000002000-0x18)={0xaa, 0x0, 0x0})
openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f00008db000-0x11)="2f6465762f7161745f6164665f63746c00", 0x608400, 0x0)
r1 = syz_open_dev$vcsa(&(0x7f0000289000)="2f6465762f766373612300", 0x6, 0x82)
ioctl$TUNSETVNETHDRSZ(r1, 0x400454d8, &(0x7f0000342000)=0x1000000b)
ioctl$UFFDIO_REGISTER(r0, 0xc020aa00, &(0x7f0000ee4000-0x20)={{&(0x7f0000012000/0x2000)=nil, 0x2000}, 0x1, 0x0})
r2 = syz_open_dev$evdev(&(0x7f0000000000)="2f6465762f696e7075742f6576656e742300", 0x0, 0x401)
ioctl$EVIOCGMTSLOTS(r2, 0x8040450a, &(0x7f0000013000)="")
execve(&(0x7f0000f62000-0x8)="2e2f66696c653000", &(0x7f0000f86000)=[&(0x7f00000c5000-0x5)="7070703000", &(0x7f00005fa000)="2f6465762f696e707574036576656e742300", &(0x7f0000c51000-0x12)="2f6465762f696e7075742f6576656e742300", &(0x7f0000a62000)="2f6465762f696e7075742f6576656e742300"], &(0x7f0000149000-0x4)=[&(0x7f000043f000-0x23)="6367726f7570266574683176626f786e65743125766d6e65743173656c696e75782d00"])
ioctl$EVIOCGKEY(r2, 0x80404518, &(0x7f0000ced000-0x6a)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r3 = socket(0x400002, 0x2, 0xfffffffffffffffe)
socket$bt_hidp(0x1f, 0x3, 0x6)
listen(r3, 0x3)
accept4$inet(r3, &(0x7f000017d000-0x10)={0x0, 0x0, @broadcast=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000360000-0x4)=0x10, 0x80000)
getitimer(0x2, &(0x7f000057c000-0x20)={{0x0, 0x0}, {0x0, 0x0}})
sched_rr_get_interval(0x0, &(0x7f0000134000-0x10)={0x0, 0x0})
clock_gettime(0x2, &(0x7f0000484000-0x10)={0x0, 0x0})
setsockopt$sock_timeval(r3, 0x1, 0x14, &(0x7f0000068000)={0x0, 0x7530}, 0x8)
syz_open_dev$random(&(0x7f00006ac000-0xc)="2f6465762f72616e646f6d00", 0x0, 0x0)
r4 = gettid()
socketpair$unix(0x1, 0x80000000000001, 0x0, &(0x7f0000e19000-0x8)={<r5=>0xffffffffffffffff, <r6=>0xffffffffffffffff})
ioctl$int_in(r5, 0x5452, &(0x7f000005b000)=0x3)
fcntl$setown(r5, 0x8, r4)
readv(r6, &(0x7f0000e8f000)=[{&(0x7f0000fb7000-0x64)="00000000000000000000000000000000000000000000000000", 0x19}], 0x1)
fcntl$setsig(r1, 0xa, 0x22)
readv(r6, &(0x7f0000aac000-0x10)=[{&(0x7f0000dec000)="00", 0x1}], 0x1)
dup2(r5, r6)
readahead(r5, 0x3, 0x10000)
wait4(r4, 0x0, 0x4, &(0x7f00003f4000+0x55c)={{0x0, 0x0}, {0x0, <r7=>0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
write$evdev(r2, &(0x7f000046c000)=[{{0x0, r7}, 0x602e, 0xff, 0x20}], 0x18)
tkill(r4, 0x16)
accept4$ipx(r3, 0x0, &(0x7f0000242000)=0x0, 0x80800)
close(r0)
[ 1056.017893] audit: type=1326 audit(1511763189.106:27979): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="syz-executor7" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=228 compat=0 ip=0x45561a code=0x7ffc0000
[ 1056.039095] audit: type=1326 audit(1511763189.106:27981): auid=4294967295 uid=0 gid=0 ses=4294967295 subj=kernel pid=3185 comm="" exe="/root/syz-executor7" sig=0 arch=c000003e syscall=16 compat=0 ip=0x452879 code=0x7ffc0000
[ 1056.099564] netlink: 14 bytes leftover after parsing attributes in process `syz-executor4'.
[ 1056.115643] 8021q: VLANs not supported on lo
[ 1056.131736] netlink: 14 bytes leftover after parsing attributes in process `syz-executor4'.
2017/11/27 06:13:09 executing program 4:
mmap(&(0x7f0000000000/0xf7b000)=nil, 0xf7b000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet(0x2, 0x7, 0x0)
bind$inet(r0, &(0x7f0000b18000)={0x2, 0x3, @rand_addr=0x100009, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX3(r0, 0x84, 0x6f, &(0x7f0000f77000)={0x0, 0x1, &(0x7f0000f77000)=[@in={0x2, 0x2, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, &(0x7f00007d1000)=0x10)
mmap(&(0x7f0000f7b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_MAXSEG(r0, 0x84, 0xd, &(0x7f0000340000)=@assoc_value={0x0, 0x7}, &(0x7f0000596000-0x4)=0x8)
mmap(&(0x7f0000f7c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000f7d000-0x8)={0x0, <r1=>0x0})
mmap(&(0x7f0000f7b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = accept4$inet6(r1, &(0x7f0000f76000)={0x0, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, &(0x7f0000f7b000)=0x1c, 0x800)
getsockopt$inet_sctp6_SCTP_PARTIAL_DELIVERY_POINT(r2, 0x84, 0x13, &(0x7f000024c000)={<r3=>0x0, 0x14b}, &(0x7f0000f78000-0x4)=0x8)
getsockopt$inet_sctp_SCTP_GET_ASSOC_STATS(r0, 0x84, 0x70, &(0x7f0000397000)={r3, @in={{0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0xe2, 0x6, 0x904, 0x80000001, 0x44, 0x1, 0xfffffffffffffffb, 0x3, 0xea, 0x7fffffff, 0x2, 0x4, 0x9171, 0x3ff, 0x1]}, &(0x7f00003d9000-0x4)=0x108)
mmap(&(0x7f0000f7d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_mreqn(r1, 0x0, 0x20, &(0x7f0000f7d000)={@local={0x0, 0x0, 0x0, 0x0}, @empty=0x0, 0x0}, &(0x7f00004bf000)=0xc)
setsockopt$inet_buf(r0, 0x0, 0x4, &(0x7f0000012000-0xd9)="788827258d5e68000002007c2eda63c74a0877f25d50239b125cc208f92b46d30fc3cdb5f94c9526344db563f8a0d7b78a34a447356e37eba0fe4e78390aa7f23acaeedd94f9871e97ab6816b2827ba7cf792b317589be8e536751554eda9a39a3e93c4f45ce367cda443d9b09f123c191801ef80c2f093631aaa36e20bbf07b91ec33a27ffd5cca8b289c7b09a13471220ba1c29708c08ee675b75e75451b3df080d4ffe3c19d6d062333211b2bc036e6108dcc82e1aad6b559e98139acae7b82f3b9cb6523f25c82aaffe2cfb28549c38411d9dbd8846309", 0xd9)
r4 = socket$inet6(0xa, 0x2, 0x0)
setsockopt$SO_TIMESTAMPING(r4, 0x1, 0x25, &(0x7f00002b0000-0x4)=0x83e, 0x4)
sendmsg(r4, &(0x7f0000f66000-0x38)={&(0x7f0000b08000-0x80)=@generic={0xa, "daf8a5fff6ffff2101000000000000b61b340ee3f8ab691822e901e7d64ac8fef95059fc8a01070000000000bf268f3d6b53efc1cb2b0180fd1800005067ff7f0000ebd039273202ff27f2faccec35120ec6090033c1c99276b26eaece29eb7d7e000000000000000406000000000000bff900030000001a02000067b456"}, 0x80, &(0x7f0000f6c000)=[{&(0x7f0000f78000-0x9ca)="ca7ca354217e9f638485d8ada41a7ea67b207261bd004cd3c1e23937d54e746c340146c34973aa21cc8de9fb6b5e655c5e917d09a609bba7cec80ed4ec81fe96901819f574f1a62649f5ed567ee9396812af7eb6b5ee5ed9d8b71558628f8316374071f342986b0bcd7be1d72e9c09d30a40bd99029426045544348cbe9964391ddc4ce395c31b759e081294e5e2da78cf3b8d363970d1e43b883fecfac0df632bb4d144e54facd86dbd244ad116c9fdb40343f115fd939637bfda4041404807853840decb6de7d4b306c56369adf5fdc1a50070f7245c700ce76b99645ba76734e1d313e23f67ace8d9529e68ed728a169fe422aec263f1dfd6ed9604f0c89ee945aadaa80b68ee0abec2d9b93322b1d0ce41bb1bb28f4a68fcc476cc50fc933e0b801ae61299314d9c0ec2a4d6ae41dbfb6bd9e5cdc5f8a666ab475e7ec19c57870191cd79e11a62744d2102e8a4b1640529d6502e3e3a97f74edfa46393c56be300c7701055feeab5b4cecc182f8716fd4a93b14b583a9cd2d7beb4b07b1d8ae3e2d72d8404934c9e9c6caa38c3b9bed00522be042134af6e39919e1fe82d372383fe4e6a112c204fdcc6c429583ab6b0b362fd0f0ab207977ae48ee5dce72944791e3e7fd04ddecd69ac3df635a1509e60843166834dc23758c127a877ca36cdddd557b60b68875b49b2c8bac2510b9ad0ada1c8295994d5ca330551e04d2fdf37571dcb43c9a3ced0aea7d930fedfdd2b6ed9f17e188b756e1ce4a35ad9894f9b5be3afb1cf77268acb0e6275a6e5dcc4699c6682d5fc2403f605bfd90cf5456f07a522d9df53b064bd55088000765a1a027d1bbb30e98cbcff79e0ad6e2e075a4b54ef92c2c070a4f2f9230a0ee5dd45bec7bde316e124ed891c418563885dc093065c6c25c886cd431c190dd9ae08ec89e1e82bd25c5a7289eea8ce53d2d8c57913652a6b299dc5b87bd788faddb6da38edac43e9e436a83f56473f8f7a27a4f5fa691bd82ee86fa88098b9e627e6dd7bb364832591135a2846a22f527d9c82f6484ddc2255d4cc3da402214606c4031646299b46f0c7484472a71dee06dddfb5fd4ea09617b8209b4acf4e955173d14d54b1617b887d0e12efefe0b63720bcf6dcc1c6321e51d8d8c9d9a01c7f8ac09280401fbdb6e2bfee27b5c9aa88b9f0a6a803126bae4ec36be3784aefacd9681dc90913b8b5414768ad1ea76a452034c30de509c5eeac6575339b917e3d70c276fee339fabf84e67043f6b6481a66f82bd061ef31b2f0e69160cb82605ff436a560cc54138b73ce2cc1deb56460b09ab903c3038d47a97b7571925a3259fcae15a8519fc262777d6a1c0e9df3ddde7d4b4842ab2e9e9904745885cf568cc5ba564053a4b8aa05a62359fcb544c90abe0bffb7f8cfc32e7f0460095bee2283be41fa69818c908f666a5d8c30586a89c252815756bb95cd8d0c6dcbe1d39fb93fdcc50700a72e919cae8126b677d9ca920fcc25fe4048f22a4c082491305598a5ee5d600e88697612008141a4d7e95c5f17498ba8a718009587a8ea07d5445866916ed25da6407982c8bcc4c57acfe33085e90dd2b68686f0ef41de1d8647718f0eb58cfd953b5dc84a188d751bced9cba625afb3b0204950f5d2b89c9c25decf95915336eb55b5e6eb5139d878a6cefbdcc839aba8c4ef30243541de2cbf7bb217d4bef3ec1a03a9f5561f01883ab44703043a145f32066a778d261d83d1239c45082c588d528c2321b6dde858b34d58c1b3ad796c3f7848c33d66d5644db6949ff42b8a542936b76dad2e5d2ec6e8fcd2a625d4aa2a5547e142e5860d0e45c1afffc5403bf23e0ce453ad5a5cfa43ae3a45e0df2e8f9d3a1d473a0cdd5eb7454674504a9053a31a70ee38770fccd78eed3b3982645d35b4b602a288aa9bed72a541e4d1996e6044072fc5d80db3240d64e00e68745f6014cc970a5916eda13184364b885a349598dfdf229454a704676bcf7bbe1ce614369224b9aaf4a58e6b4be6456d6993e03778ab9c62245515857899a3bee53a1821c9639b2984510fecc5e5dbf260e90b58de42dcab244df33ec0fcde84e2987f79dc91e79e3ff8fd2a46e73e35d3e41976ad6d446f38eaca4e6da7f85d0b7d381d83ec393e484ce9f2b98e07c004df0da509a1f3cb3614e76f9762f7b8d1fea5ac29000861b72a74fda52346e73622a7bf63efe0d964ec8c900af2abf3dfd4f7b264692303e721b59aef8eea998a3336c1941afd7ed5e81cc245fe6c200ebed2a77a7a4a269a928b188856bdc613f4c3a0114232fbf2345e3ff4fc98a06766fc6db2d2109878c6f200d36be0b69606fc0f95f24e8232e180b1fea9358bd14c5fe2a1047052e9ec4cf2c4ccde042893f914b7d3c890935005a6b4d78fec866a2867df62b271a77dbca7f44af64aff5fbce1de8e2915f9688194d5d2b79279e6dafa9abc5f63f395dc02f34dfa73bf3f61ca926a06036c18c4a34ff59aee561d350f49660ae09516b95fe0c0dde3b3c163246fbdc4b1e51647c6baf339b084f41031da4b80208ab2c7fe445556e3d2d4a89a024902909c6b727802e038a51a3c8d1e4d8a0d63aa8788d199374a38456bf7186942527bb7357a774d9c0756d8037cfafefbf061cb8c7cbcb67088c14a45754055a9d778ed828f5dbead2b67f0693ba5e2f7c9400a37f50d3fb93dd492a573e0c15f2d6d93bc752d46b34b0f4634411a57d0fe2be0ea26c6264ff4c5df7467cfd1d97c801fc07a392efe4e43625d47b0175a5b732c80c3aae899a9285ae7af3097a53bbf24cb8a208703b36ba960738879e9e740039a9906cb205b12c70e7fb9d9bc50b40af8fd48d16f0b175ad475f3ee4b14faa8fb840f89956304823654adbae5c92f35aa9c31f9847fc31dcce32d880ae64802f4030cab96e69a998f4dee73b7f7a56d7ef088fb22da387c524d842beae741899995b85f40160c8a34b33a8c91f9454d75d6f678929556b57d897b04a2819ac7a1273405555c0c36e5a8859cf2c62676b2fb131eae2959c0eff19e405d0b8ea2618035810494618a97299f95c2d12d2c96c800ffeaac1da98958d849e463158f495664bb304cd6437cf5d534544ed414fcac6cc5926f0284b11ce2491b001713aad90390ebc4613725fe59f24a554ea78ac0b7a78139108f56546103a83eb38617cc5d8c68b94a72a670097ac76b1a21834c97b001ac2c5f26f120be4a0f3aa056ebc214b07433aa53e82dc7b6dca74bada139e71981e96eab9e34106d5770acf152907cefce7f23daaec1bbb11fe0b08389d8df63295f81748ae7aad31aeb3b4a80e4d5f6959978de1cdfee31ed54594d3ce5adf92f6c29c043fca196728e5c07d5b6b75675481718a1f838c95367b10f67e2283e05e101471783d11d1251d83eb140697592fc2e688af4e842eea7f914da8315baaaaf9e17b6762aa2267cb5b56862374a22f188a1a2c11a9c5f1a4a09c0a401c38724d9bf76f4d024b51a6090b963dc4d54b948faf2728b2194ed9aa20898b0bb53b4ca73cb", 0x9ca}, {&(0x7f0000f76000)="", 0x0}, {&(0x7f0000269000)="0685233020c2a951f8873a603d65e01c2288325a1728a97c4cc1b6a937246b7ae52c25bbb0de9b97674fa56507df55f57e40ae49b0ad057c417b7ed70ebf8c790f400fc544c02255021d1c05b444a85c66b3452dc0a51cba225aa63d6d51c64fc06f", 0x62}], 0x3, &(0x7f0000f6c000)=[], 0x0, 0x100000000000005}, 0x0)
bind$netrom(0xffffffffffffffff, &(0x7f0000f78000)=@full={{0x3, {"9939f30be7b35f"}, 0xffffffff}, [{"cbcbaecfd01718"}, {"fb0a0cfffff40d"}, {"13fc06b4cfd2e4"}, {"6b2e4915ecd619"}, {"0a591a2df25195"}, {"1f310000b607a2"}, {"7accd4b20a0000"}, {"6898c97b08166e"}]}, 0x48)
r5 = socket$inet(0x2, 0x96, 0x61)
bind$inet(r5, &(0x7f0000f74000)={0x2, 0x2, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
connect$inet6(r4, &(0x7f0000f7a000-0x1c)={0xa, 0x0, 0x80009, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x6}, 0x1c)
mmap(&(0x7f0000f7c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
write(r4, &(0x7f000047b000-0x90)="9c228cc2946d0e09230d69744632fc97b02c134c9caf0abd32710a47e83297e57c258af40cb5472f9da686d7a4ae694e6bb19e6a3f5d0599200900256a2efca0d2ba6800000000000000008d87d3df0ea4f400009520861d270f0eb5675d25ccce0300005973a5ba28f801e32abd872b52854b583a8a1100c5ff07b339fc3ed98ec4804a0c20099f957da340074101d5", 0x90)
r6 = socket$netlink(0x10, 0x3, 0x20008000000000a)
mmap(&(0x7f0000f7e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_int(r4, 0x1, 0x17, &(0x7f0000e16000)=0x0, &(0x7f0000a28000)=0x4)
mmap(&(0x7f0000f7c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f7d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f7b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f7b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f7f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmsg(r0, &(0x7f0000009000-0x38)={&(0x7f0000001000)=@nfc_llcp={0x27, 0x492, 0x3, 0x7, 0x1, 0xb46c00000, "f478235c8b2089f48d969b6ddc23e40a6df39590ca7599aef357ba7e3d7999a61c7be8e5724f2423a801973da8c54a6fa491e062f51ee46ee5a0ac3c7e9810", 0x2}, 0x60, &(0x7f0000f7a000)=[], 0x0, &(0x7f0000f80000-0xb5)=[{0x90, 0x101, 0x2, "a76e6dc050e47e14e5b930dc54f26a36d00e4156771f2ee5f39d7d0a845998d9c26bc5102613b003c2b9b5e41cf1fadbaace7579e47ccb0e233b22381f7f786283a1cb63a87ebd882717ed20376376099fc68cd4d400267da4cf010452875e366bf428a0ce66fb1ee2b2fdbf0fa44827dade3b687d34c55855681fb010"}, {0x50, 0x106, 0xa71f09f8, "e2c2c19fcefd645b47f775894b4786c44e076cf0faca11dd7e84740f02d6227313deea5f52f5de18f61e93a9568b999c7849c57293431fd706c96fbf6c92f9c0"}, {0xa8, 0x10e, 0x8001, "4fd1ff7aec56cf976be8f96b4524527c2143635f80c452a25c8ae3c823c7aac8d2acbb2bcc2439fb7320227e5f8c4455d6fcf79fb71641f0b9c132c6cb8c0ace53fb1a0423b78f95a5758044bf62813e57482e51265dceb86286a0be9b52d5e2543ca59538d340b604afd03a88b87b0b6d119c207d81052751a2526095610bfc30c0a9f8a180a9f613cae9222334e47bb2eadad8dde7"}], 0x3, 0x4000}, 0x20000000000083)
ioctl$sock_SIOCGIFBR(r6, 0x8940, &(0x7f0000f76000)=@generic={0xd, 0xffff, 0x5})
2017/11/27 06:13:09 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$vcs(0xffffffffffffff9c, &(0x7f000057d000)="2f6465762f76637300", 0x5001fd, 0x0)
ioctl$KVM_CREATE_VCPU(r0, 0xae41, 0x2)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = socket$inet_tcp(0x2, 0x1, 0x0)
perf_event_open(&(0x7f0000b8d000-0x78)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
setsockopt$inet_mtu(r1, 0x0, 0xa, &(0x7f0000a72000-0x4)=0x7, 0x4)
ioctl$TIOCGSID(0xffffffffffffffff, 0x540f, &(0x7f0000b4e000-0x4)=0x0)
getsockopt$inet_IP_XFRM_POLICY(0xffffffffffffffff, 0x0, 0x11, &(0x7f0000002000-0xe8)={{{@in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, @in=@local={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r2=>0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@local={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, 0x0, @in6=@loopback={0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f00000ae000-0x4)=0xe8)
r3 = accept(r1, 0x0, &(0x7f00001cc000)=0x0)
setsockopt$inet6_mreq(r3, 0x29, 0x1c, &(0x7f000083d000-0x14)={@loopback={0x0, 0x1}, r2}, 0x14)
getsockopt$inet_opts(0xffffffffffffffff, 0x0, 0x9, &(0x7f0000d08000+0x4df)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000dc1000)=0xe1)
r4 = accept(r1, &(0x7f0000c88000-0x10)=@ethernet={0x0, @local={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000aef000-0x4)=0x10)
accept4$unix(r4, 0x0, &(0x7f00006e9000-0x4)=0x0, 0x80000)
syz_open_dev$sg(&(0x7f0000901000-0x9)="2f6465762f73672300", 0x7, 0x680)
openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000822000)="2f6465762f7161745f6164665f63746c00", 0x2004, 0x0)
epoll_ctl$EPOLL_CTL_ADD(r0, 0x1, r4, &(0x7f0000439000)={0x20000001, 0x0})
r5 = socket$inet_udp(0x2, 0x2, 0x0)
bind$inet(r5, &(0x7f0000d6a000-0x10)={0x2, 0x0, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r6 = socket$inet(0x2, 0x1, 0x0)
r7 = syz_open_dev$tun(&(0x7f000089e000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0xa)
r8 = fcntl$dupfd(r7, 0x0, r7)
ioctl$TUNSETIFF(r7, 0x400454ca, &(0x7f0000a5b000-0x28)={@common="67726530000000000000000000000000", @ifru_names=@generic="4f54000cc0a1ed4f3a0a1fdc222073b5"})
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(r6, 0x84, 0xa, &(0x7f0000ba8000)={0xff, 0x4, 0x8000, 0x8, 0x0, 0x1, 0x3, 0xffffffffffff3da6, <r9=>0x0}, &(0x7f0000140000)=0x20)
pread64(r8, &(0x7f0000b6f000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe7, 0x0)
getsockopt$inet_sctp6_SCTP_GET_ASSOC_STATS(r8, 0x84, 0x70, &(0x7f0000f0b000-0x108)={<r10=>r9, @in={{0x2, 0x3, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x3, 0xffffffffffffffe1, 0xb445, 0x6, 0x9, 0x1, 0x10000, 0x8, 0x81, 0x800, 0x3e, 0x4, 0x1, 0x8, 0x80000000]}, &(0x7f0000af4000-0x1)=0x108)
ioctl$sock_inet_SIOCSIFFLAGS(r6, 0x8914, &(0x7f0000630000-0x20)={@common="67726530000000004000000000000000", @ifru_flags=0x301})
setsockopt$inet_sctp6_SCTP_MAX_BURST(r8, 0x84, 0x14, &(0x7f00000b8000-0x8)=@assoc_value={r10, 0x3}, 0x8)
write$tun(r8, &(0x7f00003ae000-0x4af)=@hdr={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @ipv4={{0x29, 0x4, 0x0, 0x0, 0x4a5, 0x0, 0x0, 0x0, 0x11, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, @multicast1=0xe0000001, {[@generic={0xc7, 0xc, "1b0fe7ca3234ddbd67ee"}, @rr={0x7, 0xb, 0x8, [@empty=0x0, @remote={0xac, 0x14, 0x0, 0xbb}]}, @timestamp={0x44, 0x28, 0x3, 0x3, 0x9, [{[@rand_addr=0x4], 0x4}, {[@multicast1=0xe0000001], 0x8}, {[], 0x8000}, {[@empty=0x0], 0x5097}, {[], 0x42c0}, {[], 0x3}]}, @lsrr={0x83, 0x23, 0x5, [@multicast1=0xe0000001, @broadcast=0xffffffff, @multicast2=0xe0000002, @local={0xac, 0x14, 0x0, 0xaa}, @rand_addr=0x5, @empty=0x0, @rand_addr=0x80000001, @rand_addr=0x40000]}, @rr={0x7, 0x1b, 0x1, [@empty=0x0, @multicast2=0xe0000002, @broadcast=0xffffffff, @broadcast=0xffffffff, @loopback=0x7f000001, @local={0xac, 0x14, 0x0, 0xaa}]}, @timestamp={0x44, 0x8, 0x100, 0x3, 0x68000000000, [{[], 0x7}]}, @lsrr={0x83, 0xb, 0x3, [@remote={0xac, 0x14, 0x0, 0xbb}, @remote={0xac, 0x14, 0x0, 0xbb}]}]}}, @dccp={{0x0, 0x0, 0x4, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, "b31d90", 0x0, "b99878"}, "500e4156bafc36f82a4b504b036ac54c641b052b4bd37bbd64c835a43ff64c517d4be4bd09fd51dba95d4fe44d8faa82b23a5cc4658c9fedeef7256b40604ee4f878d9d3c3999e0312f06d8aedcd5039894a18126498dcc964dd5a402c417a1cc798189d285118d98e9f7ae8fc0ec9b74efbd90cd7d544765d2df18be50c1323476820af79bad0e65d1c48e0ca8685ab6e775d350961652c7a7c9f2918c9444a307a6b8fbc093f56829fa579723c6ecef716d5085439b3a070b638ce690c66144c8e0314250fa36a5a9113de159c9195db60cb56dc158ea825a7c56dcf9ab155f076e53afec5a4155269dd56fb99aaf6044ec72e8745f18929fd1bce7c52bfa1e099f237de1f32f43bd6ee103b9341a3eb484170637324bacee722c7625288463e69dc1cfb1162ece3f1b48eb95125e52cbf498aa2ae4f949a4f21bff523f3e29cb058647b17895e3901ba4d7750b0544537e77dc19f18b4d2ce1800e06596f84c4de7aaf4338810d040ed19ce89619e475824c0ecbce568fad0c59374a709ae626a706904f394a7874cbedb022d8397bbe406318dd5f5e81eb4fd15d7f49cbd4f9a871b56db62211dd7bb416e976aa57d7d5fd34f25e9f881dbab0466e9ec68c15b642b0057050564c6950b2ad79fcd5c81748252cf80f1403313664b1e54a333c90937f55c002e89304be9236ba919e36b677a2f4f7a495cc51bac62462d2c0f71328f7975f9ebb64f14094c1098343cc26e30e6a1e9b46b5df39a89ff2a44950e202bbddf866c8dbd834dee240dd2b10b3b0e0a47c8f1a810a8be5a71f7e68621fe0928ae2c23b2f3d01b01a94184217f467adee09c9e6a22ba53c634620162868da27af8974300231a1c6ba6b1fb145278327d6ff0edd905e52d0f1adbdfe92c152ebe3e988ec64ab512231e2abce8bf2ed6f6a4e1829fadb8ff3c51117b1094b8c9cb2cd807d88b3eeae3272d250868acebb332a5c6fe7717e782e9b3323d961b872568fe7798fbc4a81230a13b639a673c0044ce623355527a183efbe6367c30ee3d22b5de0e8913deedd0cac21a90fe13995a887baa295a64b367b6da934ffb23836fa6fce9023e8ee9d0152542e57a86c92d1569a1ef1e7d15b325e5c340d6933f890c43467f3b09371a9505a46064fc404c87ac13522b52e89f7afd49974539d3af5d1a5b8567a3570568fc344d4f854e1a385620cec24c6ec14a221d14b7259a11d5d7745933f6e608d74e49a4f7f1159eb2662a22ea7c6ef3ecf064f06e7443df5bd4de8e949e7e3500079e33b6b7dd0dd333dde809ab361601c66c4023aaee80021a8459fa2f4feca656b2f7117969e3e0abd5f18c1f507a207972ef12a11e3c437507ec91e571e487fa8a625608430bd0f9485d8e384f1cde04a6d4046c2f95ec56aff13155a79bd5b6cb"}}}, 0x4af)
2017/11/27 06:13:09 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4000000000, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800000000000000, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
syz_open_dev$loop(&(0x7f0000d0c000-0xb)="2f6465762f6c6f6f702300", 0x0, 0x0)
sendfile(0xffffffffffffffff, 0xffffffffffffffff, &(0x7f00000de000-0x8)=0x0, 0x0)
r0 = socket$inet_dccp(0x2, 0x6, 0x0)
r1 = memfd_create(&(0x7f000097c000-0xb)="2f6465762f6c6f6f702300", 0x1)
ioctl$TIOCGSID(r1, 0x540f, &(0x7f0000843000-0x4)=0x0)
getsockopt$inet_buf(r0, 0x0, 0x30, &(0x7f000029f000-0xc7)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f000056d000)=0xc7)
r2 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x1, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10000000, 0x0, 0x0, 0x1, 0xfffffffffffff68b, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = epoll_create(0x2)
openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000d74000-0x11)="2f6465762f7667615f6172626974657200", 0x2000, 0x0)
r4 = openat$sequencer(0xffffffffffffff9c, &(0x7f0000605000-0xf)="2f6465762f73657175656e63657200", 0x40180, 0x0)
setsockopt$inet_sctp_SCTP_NODELAY(r4, 0x84, 0x3, &(0x7f0000612000)=0x8, 0x4)
r5 = openat$rtc(0xffffffffffffff9c, &(0x7f00005d2000)="2f6465762f72746300", 0x40, 0x0)
getsockopt$bt_BT_POWER(0xffffffffffffffff, 0x112, 0x9, &(0x7f00007d1000)=0xc502, &(0x7f000058b000-0x8)=0x1)
epoll_ctl$EPOLL_CTL_DEL(r3, 0x2, r5)
setns(r2, 0x0)
ioctl$sock_inet_SIOCDARP(r5, 0x8953, &(0x7f00009d8000)={{0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x1, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x60, {0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @syzn={0x73, 0x79, 0x7a, 0x0, 0x0}})
socket$netlink(0x10, 0x3, 0x0)
r6 = syz_open_dev$loop(&(0x7f00000d2000)="2f6465762f6c6f6f702300", 0x5, 0x20200)
socket$netlink(0x10, 0x3, 0x5)
ioctl(r6, 0x4000000000001275, &(0x7f00007ac000-0x2)="")
r7 = openat$kvm(0xffffffffffffff9c, &(0x7f0000009000)="2f6465762f6b766d00", 0x0, 0x0)
r8 = ioctl$KVM_CREATE_VM(r7, 0xae01, 0x0)
bind$inet(r3, &(0x7f0000581000)={0x2, 0x3, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
clock_gettime(0x0, &(0x7f0000fc9000)={0x0, 0x0})
syz_open_dev$evdev(&(0x7f0000f97000)="2f6465762f696e7075742f6576656e742300", 0x61e, 0x1000000080)
r9 = ioctl$KVM_CREATE_VCPU(r8, 0xae41, 0x0)
ioctl$KVM_SET_MSRS(r9, 0xc008ae88, &(0x7f0000012000)={0x1, 0x0, [{0x40000025, 0x0, 0x0}]})
[ 1056.169274] 8021q: VLANs not supported on lo
2017/11/27 06:13:10 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
set_robust_list(&(0x7f0000395000-0x18)={&(0x7f0000764000/0x1000)=nil, 0x1, &(0x7f0000f04000/0x2000)=nil}, 0x18)
perf_event_open(&(0x7f00005ed000-0x78)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x2, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r0 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000471000-0x11)="2f6465762f7161745f6164665f63746c00", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, r0, 0x0)
r1 = gettid()
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xde, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7ff, 0x0, 0x80, 0x0, 0x0, 0x0, 0xffffffff, 0x0, 0x0, 0x0}, r1, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
socketpair$llc(0x1a, 0x0, 0x0, &(0x7f0000969000)={0xffffffffffffffff, <r2=>0xffffffffffffffff})
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x100000200000032, r2, 0x0)
r3 = openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000138000)="2f6465762f7667615f6172626974657200", 0x800, 0x0)
r4 = memfd_create(&(0x7f0000001000-0x1e)="293a3a287d29275d5d2d6367726f757074727573746564626465767b2400", 0x2)
setsockopt$netlink_NETLINK_NO_ENOBUFS(r3, 0x10e, 0x5, &(0x7f000099c000-0x4)=0x80000008002, 0x4)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x2000000032, 0xffffffffffffffff, 0x0)
socket(0x1e, 0x2, 0x0)
socket$bt_hidp(0x1f, 0x3, 0x6)
socket$inet6_tcp(0xa, 0x1, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000905000)="2e2f66696c653000", 0x0)
openat$autofs(0xffffffffffffff9c, &(0x7f0000940000-0xc)="2f6465762f6175746f667300", 0x40, 0x0)
mount(&(0x7f00003c7000-0x8)="2e2f66696c653000", &(0x7f000075f000)="2e2f66696c653000", &(0x7f000033c000)="68756765746c62667300", 0x800, &(0x7f00007ee000)="294995e96a6e4b9c0f8b6b36a5f8b9760f728b2b11bd9a96a9450882776b282528aa67fb11b466e806de90db496c7bf95141c00a6a82b94d088b50a5a9691cc5c2629a8621bdabf4f87b8369fa96c8e3d3ddfca6db9ec20b6813657819c7640886dbd09bf46dd40b27cc99ecbc9f049b82f5c3d1afbb2ec2fd5f2be2fb050aced1d6dc75abb584cb2e566036c828f2580607bbf7b92bfcbc5a3718e1af72f29f6bbf1ada4733bc7d1d14f41d052c613c1de556c1d4c0a0a0e02f70d2ce7429643c93218d7492047d3eaca865439bc9c6af3e548bfa3e24da3d84f97b2e4b5301dddd733103d64c8250abe16f42d7")
ioctl$DRM_IOCTL_FREE_BUFS(r4, 0x4010641a, &(0x7f0000e24000)={0x0, &(0x7f000058c000)=[]})
mmap(&(0x7f0000000000/0xfbf000)=nil, 0xfbf000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$SNDRV_SEQ_IOCTL_CREATE_QUEUE(0xffffffffffffffff, 0xc08c5332, &(0x7f0000047000)={0x20000000000000, 0x0, 0x2, "e06594d232d12448b0c30905cebdbd09c0a763e204c2a32152615df55d05092d3c12ddd25bad4d127eb802407bc091842621790b637ae5ed23d8b2adf92fc9dd", 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x8000, 0x0, 0x0, 0x0, 0x3, 0x20001000, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$KVM_ENABLE_CAP_CPU(r4, 0x4068aea3, &(0x7f0000e3e000)={0x7b, 0x0, [0x0, 0xfffffffffffffffb, 0x5, 0x7ea9], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r5 = socket$inet6(0xa, 0x80005, 0x0)
getsockopt$inet_sctp_SCTP_AUTOCLOSE(r5, 0x84, 0x4, &(0x7f0000000000)=0x0, &(0x7f0000001000)=0x4)
unshare(0x40000)
[ 1056.259449] device gre0 entered promiscuous mode
2017/11/27 06:13:10 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r0, &(0x7f0000002000)={0x26, "6861736800000000000000000000", 0x0, 0x0, "686d6163286768617368290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r0, 0x117, 0x1, &(0x7f0000002000)="560fffffffffffff00", 0x9)
accept$alg(r0, 0x0, 0x0)
bind$alg(r0, &(0x7f0000001000-0x58)={0x26, "6165616400000000000000000000", 0x0, 0x0, "61757468656e6365736e2867686173682c6362632861657329290000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
accept$alg(r0, 0x0, 0x0)
eventfd(0x7)
r1 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r1, &(0x7f00009d4000-0x58)={0x26, "6861736800000000000000000000", 0x0, 0x0, "786362632873657270656e7429000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
io_setup(0x8, &(0x7f00001f4000-0x8)=<r2=>0x0)
bind$alg(r1, &(0x7f0000b38000-0x58)={0x26, "6861736800000000000000000000", 0x6, 0x0, "73686132323400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
r3 = eventfd(0x8e)
close(r3)
io_cancel(r2, &(0x7f0000897000-0x40)={0x0, 0x0, 0x0, 0x6, 0x2, r1, &(0x7f0000306000-0xf9)="13e2f47d404a9a03946110b16f4e352cfd3084a32e88ecdb917586fa434b9541ffb5f01af008261b9e919ffc098de639283b7571b6602a7857bf86d718a62b3f0ce63c2b0d611bea47d9fc95713b4daac978e8917183b4b4cc12df35ee67b74b807703f1e548c7b79e9afa470943b2c7ae393ba37077ab77a4a40c2ce25f8e2cfb3883644100ad7182aa08ff4c69dbe4ded73538bb534afb358d442bd2da173a8985b4456c42fe5e6c0e3e1761d8f489f6055baecf99e2e0c7c51494693f8078b9a736718e6e24148968febf240f213af85f65563912cb2184d9a24c469b49cbb27280c2276576bb495c93699eadde8076a18068c551ffbcc3", 0xf9, 0x80000001, 0x0, 0x0, r3}, &(0x7f0000b1f000)={0x0, 0x0, 0x0, 0x0})
write(r1, &(0x7f0000e9c000)="", 0x0)
bind$alg(r1, &(0x7f00008b5000)={0x26, "6861736800000000000000000000", 0x0, 0x0, "686d616328706f6c79313330352d67656e6572696329000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
socket$alg(0x26, 0x5, 0x0)
setsockopt$ALG_SET_KEY(r1, 0x117, 0x1, &(0x7f000023b000-0x10)="", 0x0)
pipe(&(0x7f0000f3e000)={<r4=>0x0, <r5=>0x0})
vmsplice(r5, &(0x7f00007a0000)=[{&(0x7f0000649000-0x78)="24", 0x1}], 0x1, 0x0)
r6 = accept$alg(r1, 0x0, 0x0)
splice(r4, 0x0, r6, 0x0, 0x8, 0x0)
openat$rtc(0xffffffffffffff9c, &(0x7f0000f8b000-0x9)="2f6465762f72746300", 0x2, 0x0)
setsockopt$ALG_SET_KEY(r0, 0x29, 0x1, &(0x7f0000002000)="2c0f6bf04f75adfd592881bb20047206eb73c3b12c5aa5593458e4f38a98093c80ddc3265b4a189769aed0d436f782b1393fd119ac691dcc5794e8302af5ec3f41f6c9afae3ce91af013f255bbc15d93f47bf41226f6235d81649d1e1a2e8d2d31f4c67a1006129aad84f6e5503968d69caf459a9f5c44454a31581c9fa9857326155ab58e0437fc2cd2d56121ba45692043505a43d7d4b234eb26e4ae7cc05aea3ce20b5c913ea5db985808207573deef158f5683afab3854b9121d81520e8425962175a28d1a0dea748aea51c6c2d821ce36fefd1b9af75c630d911dc1c73a82d773c7c855ec01efa7ca9c245945bd16cf8279f9305d74380b5b8eff3c4973fa7ff3bc77f6da3894d1985468a003a4fecab7fd4982c73aea80a06758565797a7196181df1d08518395cbd9c2d9baa4ee0c8cd806e88189d7d0071cb343e6222aaf72e86ed24d0d3bb31f7c86da2746ca76c9bac6cd5ce73857da3f38a462373d0d51f5734fa45b0a6cb0a8bfe92fb94e57c5e2d5bb9ed1a88e7ef872e21d6a35804929f52c38a21e0e0e60cdde43b32e57e3a80477f96719aafd710734ffecf4ab84847fe650d1b3ff6f08db8399ce8e046ffd4f16ea7b78528163fffdd8a1518c1ac9bd6a4f32003885914e7fa297065ad6465b42e5fbe384a7e7ff4e5c4597977bb5139f7273f8932e3aad6be3784837dc64af7e8b7d4e39b6f1530ea9834f2ba6a908309cb80aabe4bee0cae857a719f589fe79f03ad2a68b2b7af501693afd7a4b74044be84a49736165ef1e9c58d19627c2b1307e41a15524c4857446360a48ee5f4bb367bb9471cd4cb9805765ea4911fc786343b80f83f5246b5954563566182f73cbb610b913fb44aaaa4dab01bf7d5018a9d9b3ee603a41c826af96127e212ced52087f7863b4eff59356aa0799f59313f99037073f3955b91e84a9f80692e5ee92ea7b0c00b93264c8f368e9beab7ba243d235501e8a3768b0cbc3547f800361b198ff6f37d19c68d475509627ba2602af9a645954243bd3f3c9ac600f654b933f12cdb9e6c9a245b87c88e8f2bf8ce852a75f1e77ddb76dc5cdb52b4339f6ee236715a641d666c7ec9898df812a58b469f0711dc86511ee4f0eedc88e98171886dbaf5c91ddf23ccd233771fb78670ffba84c58db90222c29a073cb995f7daeb220260b3d797d09428b15b984411fbcbfec7317237009962c7ad759a7c108d7b1f8145063eb95270f571f0e32b09af6aeb536b0216b519c4152670c829f9b58692d6e7fc82214fb6c14bc23eb8509ae762ad8879516f8d517bd061def07c8e12034435683c6147dffe8fa73b2cc5f42d6ca42564c395d949c0601badf31fa20fe4e3ee5f9dd736722ff238937543ba13259267d67aab3bad309f69ac01de65ea4cea972ba22037e872220900914dc44fa59bcca2aedfda132ac280d6c71a5ddb905a6ce275360503c53d225289250e0699cb9970941d43f683d25b2a93f94a8e76928f6af16e5b3865568c40feadbfc146a5f5644912b4e8264bab3260f17d983f33c7b9388fc05a472d8503049dd082c0159dcfd9087278c92b6bc628c72bb74ca9757d6033bf2edd493cce3a53af812839ea07bdee0979149549959a6b4e6dff8fea911865a6f389a23fd334450cbd6aacec3a38ca78842a31f04114ad1bd1632be4a54e2cf792d7da8502eec802b24d943c64ba7316dd1551e618be2402bf8e684555190e307e24707c0372f49a3f9b23c9e203aa59916b912a1aa63428eaab2d2893257a047107e1090905430dfeedcd5e9ab0fdb2103311a2723ef026e2f7665bd845c52c6949b95e6b8e814e9afef55c4585ebb111cffa852a52cf40179680bf168a6a9a8b4b9d44c6dcf4144434bc37d1aebe9d97c33b677295a7d1a0ee123461fe7d6e3cb0b4cac72b3f76980e212b3584af5c1d25a9d1b8a2738006f41a89bb3635873c0257238e6bb41dbace5e85fbde7f28b00db9c2265fabec1d4c1e0307d6e1baebac9ba5011c1b6af8f2c51da3a33b38410ac66bd5cb0f303ebfdb60b3d2196ea14585da346300690a98949e2bb5e78fcf304d74f1137c432233929a7b1e1cf41c4f063511126d8eee02f97a5c1a32c255949548960d287b3d0683105c0343512aed2dcfd27b412b9b88239679f2a2db804169bff9858355014313259afc08cda0afea4cdf48331d83872cdb2f6e1f1eecc95557417b3081237edd54ea1ccc5de103f89dfa6e1cd275a9fe6739c1c617cb1aa54956a532de613ecbe7d9f1d6971fb9dc4bf8b069f7874cbac4e331d880890f319b91e1890b16e27b13a07b99b3215a57fc5aeda08a29d29d9b2dd87a2c1b1e5d71b787b642845d4dc9876a29a78e0689fab0d40f7d32c341825c1a9bc9d13757ce15f289b39a3cba8e462373857f7e8fc960739b91f0445d9b39cc448237dca14c02fb8ec7b5b40e01fe6f75065d087d1baf54c2fd6b6c2d9a5859279618b1989bdf8c50db8e7dfd9a82b1c1365bf7d4787ceb09e5e5e9e2cd49168bd78b6cdd7ed48f87128eb77cd8e496fa45a36ad66caec19845a2a57f87d01e12d5e30285f30af34ae2abfbdc81e43dae9d435d4568da3615602c4748cf5894765dc9723e03343e96f78d92c2818cb3c6371fac23be4e99a331bc2e8d56a8d7a3f6da215c4e7af8e75ceefda8830ab86e41da326d9d1a232023fa0c4ec0999c2cab732bef725f1a2dc810aa81a41588630577a863245eab9c0a7740852f783607b17ac97e0c9068a5b05b44f7a380d988c88a86021ef9456921b1bb67f002f58f90bb2940486bd3f3a2861ace18c17f4370848ef02fb7c7093986144a09d06d88250406daa36b4b40d049796f35713a041342a46699b7eae759ce438b913dcdea02311253ba338c1b48a5b14aa69f62853d1d013701d1e4f891ab1355988ecc26b985f0dfc7701b04ba89353feaa5ed023f14e947a715688228f59566289c26fff431d8a5eb6602b14276bf6794d2abf5a14af732007e856a227fa1394c843f9f4688896c2d33d1feb474df441852a1a55496b47e2b86ae067ae41bc8c7f129d74b0b3f99bf185aa453a2d76138dd65fa0dbf6bb9d9e06bfc93620f11cb65eba03e102ce1b9c9918a0d3933286f114edd176b470566cd0a503cfd1619eae5596a11d7bc11a3f0725070143cdf086b9ca8a0eb1315ab361c5e2d8523a5ebe14bab5e9ee1f0b7a76e099d86c3ddc1640a15162b9e019b777ab873938afbcb400d03e54a9a628c9c41ae719688c1d1c4b1536980c0dbc43ddf1e1b8d034c8462d3e4bd09be4d4a0d60acae45b92553f7f3c283c2030c7f1c33186016b6df9843dd831ae0bd85272376340096e32ff8da5d5d4bfc164112c67fe8972c697ca0bb6e73710e187616900597e8e9fc8a2de38e8532a15ee60aeecc179159f4672436757798672cb7792ec180a276b09dbcf59fb71aa850a863f52dbad0aaeba6c9cd53c3b38fed7efe1877537a363490ae8f3c22bfea43db30536cc3462bc699d146c545a748c785705fa4574f2a95a92493439b345435593bc720965a8c52fd68a498482bdcda8574c563d46ec816c7cb7444412306f2065f63437880de1bf346077bcb8fdf999a91f42d3b13c89b3e7c94d8c58e6b4cb95bd20563503cfe78d4c744421e92c11947a83181a4365b1c1e03b654793c09edf501169a32b29fc2f5b18018d68a9ca677ca5d1351e985ec40d247e0c5cf57573d120ac0025422846db6c46f9e6e5fc084aee1c89e4877001c13309b9072451a47fb8897430c3f8518ea0a380b3381266615e37690d699ef0d1138a49c81aec3ccd1a0fa7647dcd929d3f593e8f34e3c1e66a670318002808965b2f50ebab1fdfd7372a9d32b7f8124de1e82ab3946610f02422148257feeec72fc19ec6bb6f31c1e662f4b5af35d9a4e7a9ea673ede471867b743931ed9bdace9ea5f79786a475d0b1f7367dd9d23db71482614ff8bbcfe0ed40b1b4068b0494d48336d6d500579c446a2829d28613d5feeaad4a8cf0a9de2285779d0c06d4717ff53d21a86c4f54065f06c7ec46fd59af14f36b3cb195630aa421069061370fd69644749c382df272c0b6dcd5513c5de62d2b5031d3e38eb07c668b25f4491f1a3de06f3a23fe63ccfd4591850b62fff7ed955ebf8f27a8a836ed0c21938d0cbc8dfa0e3ff032a92e439d57a63222da9453954a06d5f73315a1916977d5b38731418fff3460f28e5f3dac9b0cb33be7e934031720c88df31b6b83cfb59d64a36351240a2f414fdb29d37b3c8c941561fa847119132011ddaf1895fbf8a0533a058537071c51d9af415c1f24d8a7692e824225e51684cced343c3d7b0e886179d9d46ca51b390f3ca4337c785dd7c1c9da8bcbfe5c45600bf38394cdd2f7296771333ed2a3c8b7da747d01da8a74ab6cc9abc207b72d21b32875171d9fb7cb31aac21be5618c24e8eb8b823cf9d668a2cb5675ee0f2e2c5b2d9689520b51f60523749878098da5e8e210b955040acb9d6128c0a18881cc2fe56133a0ada30f19547129af4cb4903e42daf97cdf27551d25931896a4b7ba9fcc802d2333f7146abb5a22ec9143e7f2032805b3edd59c87e6dfafefcfc90fd456fd76239b18c67c7379a6583178c4168a6e67c354ce877edb6e84b52095573341caba151b89b55e0687062fdce001b2d8256072d5128448cdee7875333ac8702f72dc21b5621d2c23910cd7e303f83f870767acfc33667ffc851da3162a3b415dfc58ec674a4abde3c6e782f17863d63b3eee882b6d4593f627b72cc7155f334eadbeff6655433a02c13358ac2cfde3ba6ee2f0ffdd6eefc40c121491316d02399d4f88c7fe7b3d35f22d5afe66ca70b545c06bd82f37e4efc0cf2568b36bd87e69adb56bd88c3b829e5a791dd7d5d27efc391ff79b0cae2e47dc5650d2279ae263d189de06372bb37a07a4ced2aa3d60736d02746054fa97e6ba54c074c2987e69b32bb836f4a6b5d73eda03ce2cdcd19c8f0b2f0e18be6a18c865e759216c4d776a9956d1db33fcd56cc4a5633e8586ef1260474e6449b19bc11d05d4232764698ed85898a9b58a4dedbcd635c927bdcc0de8d4f149f65036a83da06107139b1ac72d4a60d6c9c1208f3cf455f55524d938d5808cac354264d00aa3135612eed13ad7287e974b192d2ed37ea0b4908f6dd297a6cf83d58c38a649dd791a222fe7e9f179514748b420b12d4da06e1145a615ad5089c845b901f089a05e72bdf44a139362f186b9282e9362ee209dd0457034282a174545d7549611963f8b0e479619d8c7b2dca7704a3d4dd285cb132664a0cb6036b8f282296816d2eb3dc7c3e9c578646a75787f305ec3d2766db4a927ceb73673c455cf7688c76bcffe124e154d2cae2e276d3f83c8152a7787744736e439c0abef00d7157c117c6ff30b15b41246575bb91fa3d4886250edc6264f7a1d7cbde51090953a2dbd75e61a101523ffa8f19b6dcd7ff68ed9b66487917202de1bebc1dfb22845d5bfd25b99471fdeee546f35daa2bc4894bceaa4c62e384f540ff9acc7653991a2620e4710d4036b8f87f9b3eba7669900895dd5a891399794d624dfc133cdd1d3c75788e1cc0d9e928ce7ab47ac1ca084f2020424adfce2c23f00a8858cd0df5b6a883d53ec8e047faa8d6d4158071aad423e9423356d3a9709a6369290b3826ede7f4f97f4b075ed68c9db73eef4bf74568dad6be31d8455ad97ac5f55393e55c7874e4edc1e56ed3a9fb2bf56e429ff969f31a27d0e772534c7aadc55a51bda28f74", 0x1000)
close(r0)
socket$alg(0x26, 0x5, 0x0)
pipe(&(0x7f0000001000)={0x0, 0x0})
2017/11/27 06:13:10 executing program 4:
mmap(&(0x7f0000011000/0x3000)=nil, 0x3000, 0x1, 0x32, 0xffffffffffffffff, 0x0)
r0 = userfaultfd(0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$UFFDIO_API(r0, 0xc018aa3f, &(0x7f0000002000)={0xaa, 0x0, 0x0})
ioctl$UFFDIO_REGISTER(r0, 0xc020aa00, &(0x7f0000001000)={{&(0x7f0000011000/0x3000)=nil, 0x3000}, 0x1, 0x0})
mkdirat(0xffffffffffffffff, &(0x7f0000011000)="2e2f66696c65302f66696c653000", 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
preadv(r0, &(0x7f0000001000-0x50)=[{&(0x7f0000013000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x73}, {&(0x7f0000001000-0x9b)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x9b}, {&(0x7f0000013000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb8}, {&(0x7f0000013000-0x5b)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x5b}, {&(0x7f0000001000-0x99)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x99}], 0x5, 0x0)
r1 = dup2(r0, r0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = syz_open_dev$sg(&(0x7f0000000000)="2f6465762f73672300", 0x4, 0x8100)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setitimer(0x3, &(0x7f0000001000)={{0x77359400, 0x0}, {0x77359400, 0x0}}, &(0x7f0000000000)={{0x0, 0x0}, {<r3=>0x0, 0x0}})
utimensat(r1, &(0x7f0000001000-0x8)="2e2f66696c653000", &(0x7f0000012000-0x20)={{r3, 0x0}, {0x0, 0x0}}, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
linkat(r1, &(0x7f0000003000)="2e2f66696c65302f66696c653000", r2, &(0x7f0000001000-0xe)="2e2f66696c653000", 0x400)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
clone(0x0, &(0x7f0000c92000)="", &(0x7f0000eaa000-0x4)=0x0, &(0x7f0000bf3000-0x4)=0x0, &(0x7f00003b9000-0xcd)="")
ioctl$UFFDIO_ZEROPAGE(r0, 0x8010aa02, &(0x7f00000c1000-0x10)={&(0x7f0000011000/0x3000)=nil, 0x3000})
2017/11/27 06:13:10 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$sequencer2(0xffffffffffffff9c, &(0x7f000024e000)="2f6465762f73657175656e6365723200", 0x141400, 0x0)
ioctl$TCSETS(r0, 0x5402, &(0x7f0000f40000)={0x1f, 0x0, 0x0, 0x0, 0x0, 0x10001, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0})
r1 = gettid()
ptrace$peek(0xffffffffffffffff, r1, &(0x7f0000b8b000-0x8)=0x0)
r2 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f00009ee000)="2e2f66696c653000", 0x0)
r3 = syz_open_dev$tun(&(0x7f00002d2000)="2f6465762f6e65742f74756e00", 0x0, 0x0)
ioctl$TUNSETIFINDEX(r3, 0x400454da, &(0x7f00002d1000)=0xb)
fcntl$setstatus(r3, 0x4, 0x42400)
fsetxattr(r2, &(0x7f0000d75000)=@random={"6f73322e00", "2d5b00"}, &(0x7f0000e76000-0x10)="2f6465762f73657175656e6365723200", 0x10, 0x1)
ioctl$TUNSETIFF(r3, 0x400454ca, &(0x7f0000ad7000-0x28)={@generic="02000000040000000004008000e9bc22", @ifru_settings={0x10001, 0x0, @fr=&(0x7f0000013000-0x18)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}})
r4 = socket(0x11, 0x80803, 0x0)
recvfrom$unix(r4, &(0x7f0000f9a000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x29, 0x10000, 0x0, 0x0)
setsockopt$inet_tcp_int(0xffffffffffffffff, 0x6, 0x0, &(0x7f000024e000)=0x0, 0x4)
renameat2(0xffffffffffffffff, &(0x7f00008be000-0x8)="2e2f66696c653000", 0xffffffffffffffff, &(0x7f00005c6000-0x8)="2e2f66696c653000", 0x0)
getsockopt$inet_tcp_int(r0, 0x6, 0x8, &(0x7f000030a000)=0x0, &(0x7f0000868000+0xd7a)=0x4)
ptrace$setsig(0x4203, 0x0, 0x0, &(0x7f0000001000)={0xb, 0x0, 0x2, 0x0})
ftruncate(0xffffffffffffffff, 0x6)
setsockopt(r4, 0x107, 0x1, &(0x7f0000001000)="", 0x200)
close(r3)
ioctl$SNDRV_SEQ_IOCTL_DELETE_PORT(r0, 0x40a85321, &(0x7f0000cc2000)={{0x2000000000000000, 0x380000000}, "706f7274310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, 0x30402, 0x4, 0x8, 0x800, 0x1, 0x2, 0x0, 0x4, 0x3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getsockopt$inet6_mreq(0xffffffffffffffff, 0x29, 0x0, &(0x7f000070b000)={@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, <r5=>0x0}, &(0x7f0000025000-0x4)=0x14)
setsockopt$inet6_mtu(r4, 0x29, 0x17, &(0x7f0000e0d000-0x4)=0x1, 0x4)
ioctl$sock_inet6_SIOCDELRT(0xffffffffffffffff, 0x890c, &(0x7f0000471000-0x50)={@remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @loopback={0x0, 0x1}, @loopback={0x0, 0x1}, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, r5})
setsockopt$inet_MCAST_MSFILTER(r0, 0x0, 0x30, &(0x7f0000b09000-0x35)={0x5, {{0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1, 0x0, []}, 0x98)
r6 = socket(0x10, 0x20000000000003, 0x0)
write(r6, &(0x7f0000a97000)="22000000140007fa004f10f7e2ff0d00021003000100000008000200e700ff02f155", 0x22)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet_tcp(0x2, 0x1, 0x0)
2017/11/27 06:13:10 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r0 = socket$netlink(0x10, 0x3, 0x10)
getsockopt$netlink(r0, 0x10e, 0xa, &(0x7f00001bb000)="", &(0x7f00002ae000-0x4)=0x0)
r1 = syz_open_dev$usbmon(&(0x7f000020b000)="2f6465762f7573626d6f6e2300", 0x191, 0x40400)
getsockopt$inet_sctp6_SCTP_ASSOCINFO(0xffffffffffffff9c, 0x84, 0x1, &(0x7f0000478000-0x14)={<r2=>0x0, 0x2, 0x53, 0xd0, 0x7, 0x1}, &(0x7f00007fb000-0x4)=0x14)
getsockopt$inet_sctp6_SCTP_DELAYED_SACK(0xffffffffffffffff, 0x84, 0x10, &(0x7f00001f5000-0xc)=@sack_info={<r3=>0x0, 0x8, 0x1}, &(0x7f0000e6a000-0x4)=0xc)
mlock2(&(0x7f0000808000/0x4000)=nil, 0x4000, 0x1)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(0xffffffffffffffff, 0x84, 0x9, &(0x7f00003af000-0xa0)={<r4=>0x0, @in6={{0xa, 0x0, 0x6, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x69b, 0xf7ffffffffffffff, 0x8, 0x0, 0x50}, &(0x7f0000b40000)=0xa0)
r5 = fcntl$dupfd(r0, 0x406, r1)
setsockopt$inet_sctp_SCTP_I_WANT_MAPPED_V4_ADDR(r5, 0x84, 0xc, &(0x7f00005b7000-0x4)=0x0, 0x4)
prctl$getname(0x10, &(0x7f00007e3000-0x56)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$sock_inet_SIOCADDRT(r1, 0x890b, &(0x7f000024a000+0x3bd)={0x0, {0x2, 0x1, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x1, @rand_addr=0x7fffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x41, 0x5aef, 0x0, 0x4ec8, 0x6, 0x0, 0x5, 0x8, 0x5})
getsockopt$inet_sctp_SCTP_GET_LOCAL_ADDRS(0xffffffffffffffff, 0x84, 0x6d, &(0x7f000040c000-0x53)={<r6=>0x0, 0x4b, "4841da81eb3118f042f22eb190d40896fb5e348617f1d62342a4dd1583cdc08c437ab2ed8b28f99ce8304a2fb43b6d1c096ea44546704db98f170378506763d2112ef8a7d4cae611bb878f"}, &(0x7f0000de5000)=0x53)
getsockopt$inet_sctp6_SCTP_AUTH_ACTIVE_KEY(0xffffffffffffffff, 0x84, 0x18, &(0x7f0000d6b000-0x6)={<r7=>0x0, 0x9}, &(0x7f0000d69000)=0x6)
ioctl$EVIOCSKEYCODE_V2(r1, 0x40284504, &(0x7f0000ea9000-0x28)={0x8001, 0x15, 0x0, 0xff, "5f9a4c332f500c9ae392f1f2c5abb6343642e70a071367762ae01d21d3771bfd"})
getsockopt$inet_sctp6_SCTP_ENABLE_STREAM_RESET(0xffffffffffffff9c, 0x84, 0x76, &(0x7f000099c000-0x8)={<r8=>0x0, 0xe3}, &(0x7f0000c7f000-0x4)=0x8)
getsockopt$inet_pktinfo(r1, 0x0, 0x8, &(0x7f0000db4000)={<r9=>0x0, @multicast1=0x0, @remote={0x0, 0x0, 0x0, 0x0}}, &(0x7f0000f0f000)=0xc)
connect$packet(r1, &(0x7f00001ab000-0x14)={0x11, 0xf5, r9, 0x1, 0x7f, 0x6, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [0x0, 0x0]}, 0x14)
setsockopt$inet_sctp6_SCTP_ADD_STREAMS(r1, 0x84, 0x79, &(0x7f0000cbb000-0x4)=0x6, 0x4)
r10 = fcntl$getown(r0, 0x9)
ioctl$sock_SIOCSPGRP(r5, 0x8902, &(0x7f0000471000)=r10)
ioctl$sock_inet_SIOCSIFBRDADDR(r5, 0x891a, &(0x7f0000005000-0x20)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_flags=0x4000})
getsockopt$inet_sctp_SCTP_DELAYED_SACK(0xffffffffffffffff, 0x84, 0x10, &(0x7f00006f9000-0xc)=@sack_info={<r11=>0x0, 0xcfa, 0x8}, &(0x7f0000045000-0x4)=0xc)
clock_settime(0x7, &(0x7f0000dc4000-0x10)={0x77359400, 0x0})
sendmmsg$inet_sctp(r1, &(0x7f0000f08000-0xa8)=[{&(0x7f000050a000)=@in6={0xa, 0x3, 0x80000000, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0xc82}, 0x1c, &(0x7f000056b000-0x80)=[{&(0x7f0000fb5000)="b84219ac014228a5fd80f8ff89c5072fa165fd63298a47b47ae1b653a7589a848cb488a708363e654c4335402b04b6e4430866dfa856708c6eba38d85c1a72dbdc247cd20530a727fc7ac2b5506677af0ed0f2bfbfd09c0075d1f9d8d8d579284b3733756803f0aef1f3579f8490f77f8c4fa7f80575a8d474392e5010cb14e40c904521526524bca3a1f12ee295ba4d8a6a713544a831aecb27c4bb72385e65b9fd277b27593bed2d3051e6876c55815acc0dc62069163c2d7039c238c32ac26d5c89068b1f66bc6f9c4fcd975eef8f93f6fc8e75b7b4d666b00ff5db8f44f4703dbfc458e7fbe82ae36c0f521aa721bdfe6eadc11cda1898", 0xf9}, {&(0x7f0000486000-0x8d)="f04b271b3639375cc6472eba7d6548c8c2d8e3882d8dc2447cc518e91cf36d87d64751e7de09be1f253a369f78eae70abf84900dabe4d9240d8e0cca278fadfb4bede13eaf880216d45491010b73c6f22cccdf217dc4e2f956b3985f1d41a73484c0f1e1a7b5ed55336a056eefa32d0104bb3b7a0e2081409e37844e2bb70a94cf480d334365a6c8b74322e9ed", 0x8d}, {&(0x7f0000bea000)="cc0f40eff7cc533619c5c7265780eba178ec0322e13c390f91572d0d98aa41be29a5fc678a34f393f802b41bea54f5bbe5ab371c0a2e68964238de6a589c5fbb4658c2e2ddf36fb5294d8aa89dbac10ada5d91d168220b358728fa51060f91143deed3372724449167d18c8c7472e1760e7f7cc79e30ccddc7df69b789bcb2d42348aeaf1bd7a4d6250c74236ec8d629c2b6cbb0cb242db0fd9963ee124a2ef530d80a57e9d043beed073abc3abedb79", 0xb0}, {&(0x7f0000703000-0x39)="481dc030598674239412d40e6704185c764727dfa8069f5aece50ef9cd7e060b9e5333905fa606ae642626ef45d13f350aad4cbcc296fcc786", 0x39}, {&(0x7f0000b82000)="c0a5ea7ab98e56bcc17813517313ecbb165426fd5bc14ad0995dbb2c2d9e1570971ec9cdf8cf162d9e078fbc9437abd3bfe1b10a086a2f0386c0f579f19f0eff573926e6ea9886451269e04462deb0adc5dfa2a2c592", 0x56}, {&(0x7f0000110000)="ef0168ab27069a9711a757301f63eb442b7b0fa23a0316ed32fa439b32b06bc88e3cb9152c72145174e24e58f8e1f6cdae84d59fe6ddda5e3d1789182ce24c2a0e5d2ad4cd16d8464126f2a3d313fd5bcd25512c8265a18bddbff375f33306ba6cb5f430f253d2fb272afd5a55635c7bd9e8e0988e4e52e11f4534e714656fbc2e0a479e60dfa4a501a445f0ce6232d06d3c868fc282d1b73c5083cc2eddf5b60e05f904f06570414d", 0xa9}, {&(0x7f0000f15000-0xbb)="4c169e1ba8fa3b644fb2b5a1483b5207ae595200fb1502906be62709ce873dfd653ddda9f1810ec74ab628eb39764bb25ff87163492501072ae720faac97310741fc6f8712214e9d8fbd7412a2a31a145a761488c884796409028c907cbacb8986ed75ff4157a2f359d0b0d76e7e87a04e8cbd177e3283763c267f8a275033ddf129f13438209f6065a84a779769434dd6b2b259bbf1aa144671a076f5f371c941077067200cb1c1868d6f8eb09b408dd408352ab62395a470d612", 0xbb}, {&(0x7f0000b62000-0xc4)="1bf85a882b5817976463f9b789cfc745d2895964a736bf1b30a8feaeec71d01844e076b8f7ba37847aca0d19685e97395b922407375be7af81b5d6b472de780cebe7e60f50edc1a92e2e55ff63e45f96c549768d1b3484820fe20e28bd5fe7198267b904147278d792c6cf0f6ee229e27437aa28f88cad1a7e4787924024b0d885e8b635895b0bb577a3e291a85fb897b1c0909e69e1f488097602685e649227abea2774849bcd8b065d4dda4c542945b31a1415b1eec1bd27c87fed9c1c8f300a21f5c3", 0xc4}], 0x8, &(0x7f0000317000-0xf0)=[@sndrcv={0x30, 0x84, 0x1, {0x800, 0x0, 0x8200, 0x2, 0x200, 0x6, 0x0, 0x2, r2}}, @sndrcv={0x30, 0x84, 0x1, {0x1000, 0x4, 0x0, 0x5, 0x10000, 0x7, 0x100000001, 0x7fffffff, r3}}, @sndinfo={0x20, 0x84, 0x2, {0x8, 0x8004, 0x1, 0x3, r4}}, @sndinfo={0x20, 0x84, 0x2, {0x5, 0x8004, 0x4, 0x184, r6}}, @init={0x18, 0x84, 0x0, {0x4, 0x2, 0x9, 0x80000000}}], 0x5, 0x1}, {&(0x7f0000c2b000)=@in6={0xa, 0x3, 0x13e5, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0xffff}, 0x1c, &(0x7f0000027000)=[{&(0x7f0000592000-0xc8)="a96b012cd328086f193c2520c910b57f1d0c1364c912d145db85b70fa00403680d3a1384be45a6129c7791e8e650741e740a718c74b8f594d22ade192e833e33392a054ecc9b31a8e798fa7b583bad7191fa7118ac5a85bf5e5040894bd37d9da27f955333b0faafefec997a811f9ab7412d2e9ecc850421d193b8bf6da5431ae927016f58a3f376d00f94ef2bd282e1a4c9cab1d3909793855c110dfdc792eaaa19820e691861b05158c7e99154ff42b56eacb6fc45fc1e76f894e5895c4062d5a058da84da566a", 0xc8}], 0x1, &(0x7f0000130000)=[@sndrcv={0x30, 0x84, 0x1, {0x1, 0x9, 0x8208, 0x4, 0x7, 0x2f3, 0x57e, 0x1, r7}}], 0x1, 0x10}, {&(0x7f00008d1000-0x10)=@in={0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10, &(0x7f0000805000-0x70)=[{&(0x7f0000a67000)="", 0x0}, {&(0x7f00003be000)="f8defe41b7e0d1260861b58e09ccb3a51a3d32a6963df07a6710f271c442929145b71fc17a2ae5186ca3a52be39dd569a56954a6089074b26b6a1f42bb76ef46c4f196a042109f6d46c722028b15eec60dc5d18541fd6b", 0x57}, {&(0x7f0000d81000-0x5c)="06707f7f36eb878ac1656134500d8c5112c9e2411d12cf3ab804e68d7200971a5e6a65c42c9abdcd3b82f8fd96932ef4a68f76b7050bd715666d4afb1c9009c391697557eedea7e87f958ede5d41c6459f9fb08700d8ecda7cd45497", 0x5c}, {&(0x7f0000e36000)="9b528097b0dc1d99ad6c656d026aeedb49c8ba5c306ddf1a0591d30070197254459765a899f9fb5992a5d7db67ece54e909263d2e09d8308b1c9c13046e7b054f3acf136cd4bedb1be63bef94d7e1365bf23dab7ad3c674085e0", 0x5a}, {&(0x7f0000611000)="051347c6099084ff88b641e08f412a7aaa70a065cb4a1aaf42d4501a9876ce3353b7118ec632655c87ad80c5cf343213015175fdd4929aa3aa1eda80ca8668a99eb16658f6ab21fa5f71763ec7f297519b43a95e4f190ac9f49e8c3a9fda2782bbb17a3c986a0be82996e0ff8bacf19f1ec9b505b6e6914ad9257893eac7dfef557f62517f8cf6b01eae782abb5d8ec7b33b080fad4b4d2b997fb5dfcd9a6a381570bf1bf0", 0xa5}, {&(0x7f0000c57000)="1e616ab3d5f291dff8648e95776e0843c6ef74d61bcc9e2ca28fa4ed856d21cf733d8afcb61590cb3e2c4b32f6395e2f32feb16042425003203d64cdc8c002d04e1bee7c0faefa3d90fd99cd4e0783f3eac14bd2a5f91b93d7d994a83b18ff779d20bab68f81cf4eb2721bbfa3a658a60392c9fd4053a93c", 0x78}, {&(0x7f0000929000)="0291f2490f7276baacdb2f395afb984e267ccc5f803193f6906b584a53fc154a7a74d0273c36598f345c44cca38b9c425eeadad8863039b7d9e32d89617e119335ae0d0b2fdfcabec5582457e3903f729b5ddb014b1ecd68688f658ea79b5628a1ea466b40b6ed53f4dd1c8c282205cef31cebe9f6091763ff463271f397", 0x7e}], 0x7, &(0x7f0000377000)=[@init={0x18, 0x84, 0x0, {0x66b6, 0x4, 0x2, 0x0}}, @sndrcv={0x30, 0x84, 0x1, {0x5, 0x0, 0x8, 0x100, 0xce7, 0x9, 0x9, 0x3ff, r8}}, @sndrcv={0x30, 0x84, 0x1, {0xfffffffffffffff9, 0x0, 0x8, 0x6, 0x3, 0x7, 0xffff, 0x4, r11}}], 0x3, 0x800}], 0x3, 0x10)
2017/11/27 06:13:10 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000915000-0xb)="2f6465762f6877726e6700", 0x80002, 0x0)
ioctl$DRM_IOCTL_SET_VERSION(r0, 0xc0106407, &(0x7f0000f7a000-0x10)={0x8529, 0x4, 0xfff, 0x5})
bpf$PROG_LOAD(0x5, &(0x7f000009c000-0x30)={0x1, 0x2, &(0x7f0000f9c000-0x10)=[@generic={0xb61, 0x1000000f510, 0x8, 0x0}, @map={0x1, 0x6, 0x7ff, r0}], &(0x7f0000623000)="246e6f64657673797374656d262a47504c776c616e307d657468316e6f6465765d00", 0x40, 0x80, &(0x7f0000b62000-0x80)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfffffffffffffffd, 0x0}, 0x30)
[ 1056.314384] kvm [3300]: vcpu0, guest rIP: 0xfff0 Hyper-V unhandled rdmsr: 0x40000025
[ 1056.375302] netlink: 2 bytes leftover after parsing attributes in process `syz-executor2'.
[ 1056.420997] netlink: 2 bytes leftover after parsing attributes in process `syz-executor2'.
[ 1056.441060] kvm [3300]: vcpu0, guest rIP: 0xfff0 Hyper-V unhandled rdmsr: 0x40000025
2017/11/27 06:13:10 executing program 1:
mmap(&(0x7f0000000000/0xde5000)=nil, 0xde5000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000de5000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
alarm(0xddc1)
r0 = open(&(0x7f000069c000)="2e2f66696c653000", 0x10000000080040, 0x0)
fcntl$setlease(r0, 0x400, 0x0)
mmap(&(0x7f0000de6000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfdb000)=nil, 0xfdb000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$inet6(r0, &(0x7f00008ef000)={0xa, 0x0, 0x8000000000003, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x2}, 0x1c)
mmap(&(0x7f0000fdb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_extract_tcp_res$synack(&(0x7f0000fdb000)={0x0, <r1=>0x0}, 0x1, 0x0)
mmap(&(0x7f0000fdb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_extract_tcp_res$synack(&(0x7f0000fdc000-0x8)={0x0, <r2=>0x0}, 0x1, 0x0)
mmap(&(0x7f0000fdc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x143, &(0x7f0000fdc000)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [{[], {0x8100, 0x0, 0x52, 0x1}}], {{0x86dd, @ipv6={0x0, 0x6, "000594", 0x109, 0x6, 0x0, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, {[], @tcp={{0x1, 0x3, r1, r2, 0x0, 0x0, 0x8, 0xc2, 0x3, 0x0, 0x0, {[@generic={0x7, 0x8, "d2c6fee5fbc1"}, @mss={0x2, 0x4, 0x3}]}}, {"5723c31b96c306aacfc2e2630fb5a3760f464d9d2ed6b6c9210e0556d7ec4d016d597fc9cd6664c40d409dd239a6d50e4c22347d90de1d4485ec7d3a8f9865e0a899fefe81fe81f56e1c65cd5581b3f2e51ef3db337c86875473d72ba7b3ab5ac997692cc582139df28478b5d9e7d8f72a96e252f2bb3d9ef1d630dd1a213ab4f14c1cad139320f6addb9f50d89fd12a33e80285e0200eeacd040702ff32a4f1631ba7b295bf56ebe43f014bcd8ba78dd9f5f3984e25a55a939f8f0af870f238131856b1bfb9c05bb4641629f9ecf4036548ae6db3e9683c205b35b4052898a7f28dcb12290fde0e29"}}}}}}}, 0x0)
mmap(&(0x7f0000fdb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
rename(&(0x7f0000fdc000-0x8)="2e2f66696c653000", &(0x7f0000888000-0x8)="2e2f66696c653100")
r3 = dup2(0xffffffffffffffff, 0xffffffffffffffff)
mmap(&(0x7f0000fdc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fdd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_PARTIAL_DELIVERY_POINT(r3, 0x84, 0x13, &(0x7f00002b3000)={0x0, 0x7}, &(0x7f0000fdf000-0x4)=0x8)
mmap(&(0x7f0000fdb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pwrite64(r3, &(0x7f0000e2e000)="8dbed6ffd9496c31e2137d91ce0436934d4bf81c4e82d2342f7583cdaf52c7a9b98ed04f349a0814c3b763e915cd644ecfc8d08a1079e8351b737461fbe732dfd0b343ee2cbb247255cd6749fbb0ab9015916985d0ec56a3bdee79027bb6414a53470a9e77d2c3f6bcd4951c4d9cb1401809a8ce26aea73fea749863fd6bca87b17d8997ec0b801dc919d303870dfb3e795823df957670f9037188d617fccdce36839671237a11aeb40cd2a04b1c957f4ccde9d3d60299e49b1acd8ccb6e5e", 0xbf, 0x0)
ioctl$sock_inet_udp_SIOCINQ(r3, 0x541b, &(0x7f0000e03000-0x4)=0x0)
mmap(&(0x7f0000fdc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fdd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fdd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fde000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fdf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_MODE_GETPLANERESOURCES(r3, 0xc01064b5, &(0x7f0000fdf000)={&(0x7f0000428000-0x18)=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x6})
rt_sigprocmask(0x0, &(0x7f0000033000-0x8)={0xfffffffffffffffe}, 0x0, 0x8)
setsockopt$sock_void(r3, 0x1, 0x3f, 0x0, 0x0)
rt_sigtimedwait(&(0x7f00009ac000)={0xfffffffffffffffd}, &(0x7f0000de1000-0x10)={0x0, 0x0, 0x0, 0x0}, &(0x7f000003a000-0x10)={0x0, 0x8000000}, 0x8)
fcntl$setsig(r0, 0xa, 0xe)
mmap(&(0x7f0000fdd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fde000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fdf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fdf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fdf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fe0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fe0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
clock_gettime(0x3, &(0x7f0000841000)={<r4=>0x0, 0x0})
mmap(&(0x7f0000fe1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
select(0x40, &(0x7f0000fe0000)={0xeb1, 0x7, 0x80000000, 0x4, 0x8, 0x7ff7ffff, 0x6, 0x3}, &(0x7f0000fe0000)={0x9b, 0x2, 0x0, 0x101, 0x9, 0x2, 0x9, 0xd1}, &(0x7f0000fe2000-0x3c)={0x104, 0x12002, 0x2, 0x9, 0x0, 0x4, 0x4, 0x80000001}, &(0x7f0000fe0000-0x8)={<r5=>r4, 0x0})
mmap(&(0x7f0000fdf000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mq_timedsend(r3, &(0x7f0000a81000-0x13)="af0ddf47579ac835e57c1010833d4a348095fd", 0x13, 0x4, &(0x7f0000fe0000-0x8)={r5, 0x989680})
rt_sigprocmask(0x0, &(0x7f0000de3000)={0xf97a}, &(0x7f0000de4000-0x8)={0x0}, 0x8)
mmap(&(0x7f0000de6000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fde000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fde000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
creat(&(0x7f0000fdf000-0x8)="2e2f66696c653100", 0xfffffffffff7ffff)
2017/11/27 06:13:10 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet6(0xa, 0x1, 0x7fd)
getsockopt$sock_cred(0xffffffffffffffff, 0x1, 0x11, &(0x7f0000bac000-0xc)={0x0, <r0=>0x0, <r1=>0x0}, &(0x7f0000983000)=0xc)
perf_event_open(&(0x7f00008a8000-0x78)={0x0, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffff7f, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_DEFAULT_SEND_PARAM(0xffffffffffffffff, 0x84, 0xa, &(0x7f0000466000)={0x2, 0x0, 0x3, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, <r2=>0x0}, &(0x7f00002cd000-0x4)=0x20)
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(0xffffffffffffffff, 0x84, 0xa, &(0x7f0000616000-0x20)={0x3ff, 0x200, 0x12, 0x0, 0x0, 0x400000, 0x9, 0x0, <r3=>r2}, &(0x7f00003f9000)=0x20)
mkdir(&(0x7f00001c6000)="2e2f66696c653000", 0xc)
r4 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000d48000)="2f6465762f6877726e6700", 0x80000, 0x0)
ptrace$poke(0xffffffffffffffff, 0x0, &(0x7f0000bf7000-0x8)=0x0, 0x6)
ioctl$sock_FIOSETOWN(0xffffffffffffffff, 0x8901, &(0x7f00004d9000)=0x0)
mkdirat(r4, &(0x7f00007f6000)="2e2f66696c653000", 0x80)
syslog(0x2, &(0x7f0000944000)="00000000000000000000000000000000000000000000000000000000", 0x1c)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000a1c000)="2e2f66696c653000", &(0x7f0000014000)="70726f6300", 0x0, &(0x7f0000fc9000)="")
ioctl$DRM_IOCTL_AGP_RELEASE(r4, 0x6431)
chroot(&(0x7f0000adb000-0x8)="2e2f66696c653000")
setsockopt$inet_dccp_buf(r4, 0x21, 0xc0, &(0x7f0000b05000-0x9)="147bac5480ef178d37", 0x9)
socket$inet6_sctp(0xa, 0x5, 0x84)
lchown(&(0x7f0000fd5000-0x8)="2e2f66696c653000", r0, r1)
r5 = open(&(0x7f0000d02000)="2e2f66696c653000", 0x8000, 0x0)
clone(0x0, &(0x7f0000df8000)="c4", &(0x7f0000007000)=0x0, &(0x7f0000007000-0x4)=0x0, &(0x7f0000001000)="")
ioctl$LOOP_SET_BLOCK_SIZE(r5, 0x4c09, 0xd4)
getsockopt$inet_sctp_SCTP_STATUS(r5, 0x84, 0xe, &(0x7f0000223000-0xb8)={r3, 0x1000000000000, 0x537, 0x9, 0x3, 0x1, 0x48000000000, 0x9, {r2, @in={{0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x2, 0x5, 0x77f7ec2b, 0x0, 0x6}}, &(0x7f0000138000-0x4)=0xb8)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000143000)="2e2f66696c653000", &(0x7f00007d1000)="72616d667300", 0x0, &(0x7f0000802000-0x1)="")
ioctl$GIO_UNISCRNMAP(0xffffffffffffffff, 0x4b69, &(0x7f0000955000-0x2f)="")
mount(&(0x7f0000471000)="2e2f66696c653000", &(0x7f0000c5c000-0x8)="2e2f66696c653000", &(0x7f00007c0000-0x6)="72616d667300", 0x0, &(0x7f0000d0f000-0x38)="")
openat(r4, &(0x7f00004aa000)="2e2f66696c653000", 0x2000, 0x10)
mkdir(&(0x7f0000145000-0x8)="2e2f66696c653100", 0x40)
bind$inet(r5, &(0x7f0000257000-0x10)={0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
pivot_root(&(0x7f0000ccc000-0x8)="2e2f66696c653000", &(0x7f00002e9000-0x8)="2e2f66696c653000")
ioctl$LOOP_SET_FD(r4, 0x4c00, 0xffffffffffffffff)
2017/11/27 06:13:10 executing program 0:
getcwd(&(0x7f0000c35000-0x7e)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7e)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
add_key$keyring(&(0x7f0000de2000-0x8)="6b657972696e6700", &(0x7f000012e000)={0x73, 0x79, 0x7a, 0x3, 0x0}, 0x0, 0x0, 0x0)
r0 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000ee0000)="2f6465762f7161745f6164665f63746c00", 0x129040, 0x0)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_THLDS(0xffffffffffffff9c, 0x84, 0x1f, &(0x7f0000256000-0x98)={<r1=>0x0, @in6={{0xa, 0x2, 0x20, @loopback={0x0, 0x1}, 0x100000001}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x9, 0x649}, &(0x7f000018f000)=0x98)
setsockopt$inet_sctp_SCTP_CONTEXT(r0, 0x84, 0x11, &(0x7f0000571000)={r1, 0xe4}, 0x8)
r2 = fcntl$dupfd(0xffffffffffffff9c, 0x406, 0xffffffffffffff9c)
ioctl$DRM_IOCTL_GET_STATS(r2, 0x80f86406, &(0x7f0000759000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r3 = add_key$keyring(&(0x7f00005fa000-0x8)="6b657972696e6700", &(0x7f000019d000)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, 0xfffffffffffffffa)
getsockopt$SO_PEERCRED(r2, 0x1, 0x11, &(0x7f0000e38000-0xc)={<r4=>0x0, 0x0, 0x0}, 0xc)
ioctl$sock_SIOCSPGRP(r2, 0x8902, &(0x7f00008b4000)=r4)
add_key(&(0x7f0000a06000)="636966000000000000001800", &(0x7f00009f7000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f00001a1000-0x1)="bb", 0x1, r3)
ioctl$sock_inet_SIOCSIFBRDADDR(r0, 0x891a, &(0x7f0000680000)={@common="67726574617030000000000000000000", @ifru_addrs={0x2, 0x3, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
ioctl$EVIOCGEFFECTS(r2, 0x80044584, &(0x7f0000aae000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r5 = add_key$user(&(0x7f0000ef6000)="7573657200", &(0x7f000003a000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000008000)="5b1398071567f4871cab5172863f2149fa579ad03c1b681cbb163b1113f4c4dd9d58c867cee42872720398c3e9f52496eb8f24814d3cc53d791e9065e2db5bac7f4cfb4594ca86ab0114e15e727a4b348f48023c692953b8c0055738d8de23f1e1cc071e6d837ab6e56125a5ec00074bcb25f96ac774740b3ebef932439d8615e8a13286a9eeb12ca0c5fbafa331c36b9edbc286841ada3b95b456c41aa7ff2ab2c7e3fc7dbcc338126c79792d2dd16783f31c7ec019fe5b86bffafa0b2ce104d9", 0xc1, r3)
getsockopt$inet_sctp_SCTP_INITMSG(r2, 0x84, 0x2, &(0x7f0000e78000-0x8)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000b38000-0x4)=0x8)
r6 = add_key$user(&(0x7f0000037000)="7573657200", &(0x7f0000038000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000020000)="f9b0ab", 0x3, 0xfffffffffffffffe)
setsockopt$bt_l2cap_L2CAP_CONNINFO(r2, 0x6, 0x2, &(0x7f0000a3c000)={0x8001, 0x0, 0x82, 0x6}, 0x5)
ioctl$TUNGETVNETHDRSZ(r0, 0x800454d7, &(0x7f0000799000-0x4)=0x0)
keyctl$dh_compute(0x17, &(0x7f000000e000-0xc)={r6, r5, r6}, &(0x7f0000269000-0x20)="0000000000000000000000000000000000000000000000000000000000000000", 0x20, &(0x7f00008eb000-0x38)={&(0x7f000081c000-0x9)="706f6c793133303500", 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_CHECK_EXTENSION(r0, 0xae03, 0x8000)
setsockopt$netlink_NETLINK_NO_ENOBUFS(r2, 0x10e, 0x5, &(0x7f0000e91000)=0x5, 0x4)
socket$inet_sctp(0x2, 0x1, 0x84)
inotify_init()
add_key(&(0x7f000052d000-0x8)="6269675f6b657900", &(0x7f000028a000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f00005e1000)="e19980c14f46df9fc2a279a9eb48bd533134ee7089aa91bcb30c8393d21c207932", 0x21, r3)
2017/11/27 06:13:10 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x966, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$PERF_EVENT_IOC_SET_FILTER(r0, 0x40082406, &(0x7f0000078000)="612a656d31c8d16370757365743a2163707573657400")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet6(0xa, 0x2, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket(0x2, 0x3, 0x22)
socketpair(0x8, 0x80000000000807, 0x3, &(0x7f0000704000-0x8)={<r2=>0x0, <r3=>0x0})
ioctl$sock_inet_tcp_SIOCATMARK(r3, 0x8905, &(0x7f0000698000+0x30b)=0x0)
ioctl$DRM_IOCTL_RES_CTX(r2, 0xc0106426, &(0x7f000087d000-0x10)={0xa, &(0x7f0000056000-0x50)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {<r4=>0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}]})
ioctl$sock_bt_hidp_HIDPGETCONNINFO(r1, 0x800448d3, &(0x7f000052b000)={{0x8001, 0x80000001, 0x9, 0x59d2, 0x7, 0x1}, 0x5, 0x7ff, 0x2, 0x2, 0x6, "f4185e6fa20384aa7ab966c36a10075a686c7f0673bc564d8abb5446d3"})
ioctl$DRM_IOCTL_SET_SAREA_CTX(r2, 0x4010641c, &(0x7f00002af000-0x10)={r4, &(0x7f0000e30000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"})
r5 = socket$netlink(0x10, 0x3, 0x0)
setsockopt$netlink_NETLINK_LISTEN_ALL_NSID(r2, 0x10e, 0x8, &(0x7f0000165000-0x4)=0xfffffffffffffffa, 0x4)
ioctl$DRM_IOCTL_MARK_BUFS(r3, 0x40206417, &(0x7f000046b000-0x20)={0x5, 0x20, 0x201ffe, 0x0, 0x10, 0x7f})
writev(r5, &(0x7f0000b19000)=[{&(0x7f00002bd000)="2900000020001900013d0010000000060200001600000f01000000040d0014000000000000000000088fecf2", 0x2c}], 0x1)
setsockopt$inet6_buf(0xffffffffffffffff, 0x29, 0x22, &(0x7f0000fd2000)="bf00ffff01000000", 0x8)
socket(0x10, 0x803, 0xffffffffffffffff)
r6 = add_key(&(0x7f000064d000)="6465616400", &(0x7f00009d4000)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000ff8000)="561ca9d6473cf7b5df569e214d5ad92d618f74dc20ee848199e90e323a5a6ec6d23f7d857723094d69cb1c1a5946703164", 0x31, 0xfffffffffffffffb)
r7 = request_key(&(0x7f00000ad000)="7573657200", &(0x7f0000024000-0x5)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f0000415000-0x5)="6465616400", r6)
keyctl$search(0xa, r6, &(0x7f00000f8000)="73797a6b616c6c657200", &(0x7f0000dfe000)={0x73, 0x79, 0x7a, 0x2, 0x0}, r7)
ioctl$sock_SIOCDELDLCI(0xffffffffffffffff, 0x8981, &(0x7f0000d1f000-0x12)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, 0xa})
ioctl$SNDRV_SEQ_IOCTL_GET_QUEUE_TIMER(r2, 0xc0605345, &(0x7f0000f5f000-0x5c)={0x0, 0x1, {0xffffffffffffffff, 0x0, 0x8001, 0x2, 0x1}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34500, 0x0, 0xfa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r8 = add_key(&(0x7f000002c000-0x5)="7573657200", &(0x7f000003a000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000455000)="", 0x0, 0xfffffffffffffff8)
r9 = add_key$user(&(0x7f000024a000)="7573657200", &(0x7f000003a000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f00004eb000)="5b", 0x1, r8)
r10 = add_key$user(&(0x7f0000037000)="7573657200", &(0x7f0000038000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000020000)="f9", 0x1, 0xfffffffffffffffe)
add_key$user(&(0x7f0000821000-0x5)="7573657200", &(0x7f00009ae000)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f00006fd000-0xfd)="d4b71444e883a4a119109ac9ed5ad25ce376a28798c90e63505c7cff63bac8773738eab456263bf5dae171dc3292bfff15c27e8221c6d41e8d321d0fbda7f0b446260acc6fdf84e351f1a64e24b0d1b4d2abe87ae60f4c1d69ff66fb1c565d6c3d82c18bd5ccdfc463cb7c04f9010b92b681f8786f60c9231caed5a75fd88e503b19ba033f05cd937d95ca13e896c6c790b70d0d738c1b03683a3596d19d31b09c0d876e59364b153ec55299f971205ce8dc261d80bb2729754ece4106dee0dac61115ec2a787ae10e503ba501e496bcab", 0xd1, r8)
keyctl$dh_compute(0x17, &(0x7f0000967000)={r10, r9, r10}, &(0x7f0000196000-0xd5)="00", 0x1, &(0x7f0000201000-0x38)={&(0x7f0000581000-0x6)="777035313200", &(0x7f00006e1000)="59c03d037b8e3feb0a129a6b9886ebcc59b472c3d435c79d072da042a82a3e806a746bd5", 0x24, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
2017/11/27 06:13:10 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = memfd_create(&(0x7f0000eb0000-0x17)="76626f786e6574302d285ea473656c666d643573756d00", 0x0)
ioctl$KVM_GET_REGS(r0, 0x8090ae81, &(0x7f0000154000)={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0})
r1 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mknod(&(0x7f00008d9000-0x8)="2e2f66696c653000", 0xc001, 0x401)
mkdir(&(0x7f00001cd000-0x8)="2e2f66696c653000", 0x2)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000027000-0x8)="2e2f66696c653000", &(0x7f000000c000)="72616d667300", 0x0, &(0x7f000000a000)="")
pivot_root(&(0x7f0000001000-0x8)="2e2f66696c653000", &(0x7f0000ebc000)="2e2f66696c653000")
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$sock_inet_SIOCGIFPFLAGS(r1, 0x8935, &(0x7f0000e21000)={@generic="8d609d89b118d67a12648ad547fe3aad", @ifru_flags=0x1})
socket$inet_icmp_raw(0x2, 0x3, 0x1)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xebf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
openat$hwrng(0xffffffffffffff9c, &(0x7f0000fd4000-0xb)="2f6465762f6877726e6700", 0x0, 0x0)
pipe(&(0x7f0000f8b000-0x8)={<r2=>0xffffffffffffffff, <r3=>0xffffffffffffffff})
vmsplice(r3, &(0x7f0000ee7000-0x70)=[{&(0x7f0000772000)="db142a2c1c3d8e8dc4f0e4948c24b24734195b79abd6b62322da6c702d2f718b3c93b8cf5910bd63b9fd717b47d0383cdf54a1674e7729681bd4034667b8df64aa9f2a3f8fe2f9eb5705700806e7e6db78", 0x51}], 0x1, 0x0)
r4 = socket$inet(0x2, 0x2, 0x0)
setsockopt$inet_mtu(r4, 0x0, 0xa, &(0x7f0000adb000-0x4)=0x5, 0x4)
setsockopt$inet_opts(r4, 0x0, 0x4, &(0x7f0000338000)="8907040000", 0x5)
sendto$inet(r4, &(0x7f00002e6000)="51918cf29f669c7deb5294775dad77984cac8d8ec96b07bf44f6e534a50979dff39532ce5629eb5a8ce530f4a2aa939b2d024f3afcf558cb118297f99eeebb999643463acfca3ac63911e0d9502b916c4585c5d8d0a155f0b497d1a1aa2fe94c7b7897ff72ee", 0x66, 0x8800, &(0x7f0000654000-0x10)={0x2, 0x3, @rand_addr=0x4, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
splice(r2, 0x0, r4, 0x0, 0x8dc3, 0x2)
fchmod(r0, 0x8)
2017/11/27 06:13:10 executing program 3:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
utimes(&(0x7f0000001000-0x8)="2e2f66696c653000", &(0x7f00007f5000-0x20)={{0x0, 0x2710}, {0x77359400, 0x0}})
mmap(&(0x7f0000000000/0xaff000)=nil, 0xaff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f00006ee000)="2f6465762f6b766d00", 0x1, 0x0)
r1 = ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
r2 = eventfd2(0x0, 0x0)
r3 = eventfd2(0x1fc, 0x0)
ioctl$KVM_CREATE_PIT2(r1, 0x4040ae77, &(0x7f0000afd000-0x40)={0x1fffffffffd, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_CREATE_IRQCHIP(r1, 0xae60)
r4 = ioctl$KVM_CREATE_VCPU(r1, 0xae41, 0x0)
r5 = socket$inet_udp(0x2, 0x2, 0x0)
r6 = openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000a1d000)="2f6465762f7667615f6172626974657200", 0x2002081, 0x0)
mmap(&(0x7f0000aff000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000aff000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$packet_fanout_data(r6, 0x107, 0x16, &(0x7f0000aff000)={0x2, &(0x7f0000aff000)=[{0x3f, 0x21a, 0xe, 0x7fffffff}, {0x51, 0x80, 0x82, 0x9}]}, 0x10)
ioctl$sock_inet_SIOCDELRT(r5, 0xc0045878, &(0x7f0000464000)={0x0, {0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x2, @rand_addr=0xfff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x2, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x8f, 0x1, 0x1f, 0x3c9, 0x9, &(0x7f0000000000)=@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x19bd, 0x7, 0x1})
syz_kvm_setup_cpu$x86(r1, r4, &(0x7f00008ce000/0x18000)=nil, &(0x7f0000221000-0x18)=[@text16={0x10, &(0x7f0000af8000)="ba2000b0f0eeba610066b81d00000066efb800008e0c87e4670f01c800072c0f01b6cba966b8db0000000f06c80f21f866350800d0000f23f83e6567660f38dea419f79758603e3ef2ad", 0x4a}], 0x1, 0x0, &(0x7f0000af9000-0x10)=[], 0x0)
ioctl$KVM_IRQFD(r1, 0x4020ae76, &(0x7f00003b9000)={r2, 0x0, 0x2, r2, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r7 = syz_open_dev$vcsa(&(0x7f0000aff000-0xb)="2f6465762f766373612300", 0x4c52, 0x0)
connect$bt_l2cap(r7, &(0x7f000089e000)={0x1f, 0x6, {0x7, 0x39, 0x28, 0x6, 0xc779, 0x96d}, 0x81, 0xef5}, 0xe)
truncate(&(0x7f0000a95000)="2e2f66696c653000", 0x3)
read$eventfd(r2, &(0x7f0000afd000-0x8)=0x0, 0x8)
ioctl$KVM_IRQFD(r1, 0x4020ae76, &(0x7f0000ae9000)={r3, 0x2, 0x2, r2, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_RUN(r4, 0xae80, 0x0)
2017/11/27 06:13:10 executing program 4:
mmap(&(0x7f0000000000/0xf3d000)=nil, 0xf3d000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
vmsplice(r0, &(0x7f0000081000)=[{&(0x7f000005c000-0xde)="9126b719d09ea83defc098d2baca41a571ae3f4dbe172a29dd8869ba4e156c04af19de16f2cd5405053ff729ab57db8d118b30423af147a4b0096478c4aa3f70c05b1a75288d907bda7f79b0ffab4235813255f263927be82bfa68427a1ba0c53b46c6a73306bbf1cf22da635ef1ca0542f29b6cd73269968985593f727f1c4546d6492af0ac4e7a8aefa31840302f8fcfaab8d478550e228df70426ecf5491639194dc86d7efb82d98014fd908376083fe3148b267a21bfeffb1ad92303c7d5cf2fa2a221a0ca69c295cb6bd4a977e309b61afaca87bca6c26f742bb2f0", 0xde}, {&(0x7f0000357000)="", 0x0}], 0x2, 0x8)
io_setup(0x7fffffff, &(0x7f00007e3000-0x8)=<r1=>0x0)
io_submit(r1, 0x0, &(0x7f0000f3c000-0x18)=[])
eventfd(0x4)
mmap(&(0x7f0000f3d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f00004d5000-0x8)={0x0, 0x0})
socket$alg(0x26, 0x5, 0x0)
mmap(&(0x7f0000f3d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f3d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r2, &(0x7f00009d4000-0x58)={0x26, "6861736800000000000000000000", 0x0, 0x0, "786362632873657270656e7429000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
io_setup(0xa, &(0x7f0000f9b000)=<r3=>0x0)
bind$alg(r2, &(0x7f0000b38000-0x58)={0x26, "6861736800000000000000000000", 0x6, 0x0, "73686132323400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r4, &(0x7f000000a000-0x3d)={0x26, "6861736800000000000000000000", 0x0, 0x0, "63726333326300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
pipe(&(0x7f0000c86000)={<r5=>0x0, <r6=>0x0})
pipe(&(0x7f0000972000-0x8)={0x0, <r7=>0x0})
r8 = eventfd(0x80000001)
r9 = eventfd(0x7)
r10 = eventfd(0x37)
r11 = eventfd(0x80)
io_submit(r3, 0x6, &(0x7f000049c000)=[&(0x7f0000a9e000-0x40)={0x0, 0x0, 0x0, 0xf, 0x7fffffff, r4, &(0x7f000088d000-0xc5)="c270d7dcf826f3375a5eeea84c7ada05f7479185474bb9e933ba058edc6f0d636edd8511c96f5e53f446bfea1a507b3a468b794a54674fd10fbcb927c3e4af9b2aaf7b98942c77bc60394f1530f7117a217f16b3d587d0bb67ebf8cf39ce3d11ce8825bc498f190b487e7da08d4712cca63dbf8ecd4f90be0357fa0f1e9ba16ed9f297bdc283da677bd4c0841775a7a97320ded50ffb7636cbd24d0a8e4c9eacb33ad4887524ec3ffae1caf2b2732db2b2bf188c250f3a62fcc8bd9a8efe3b6cab7dad86c2", 0xc5, 0x3, 0x0, 0x1, r5}, &(0x7f000055e000-0x40)={0x0, 0x0, 0x0, 0x7, 0xffffffff7fffffff, r4, &(0x7f0000564000-0x60)="209993cf2332f363b6e01448b7a2b30ec5dbc04de2649989f0cc441b6ff2e77fc0a7c2a877aeaef6a20bc4c755a3d86a94ffd4b70ee68a8f696d0b69b59bb927fe5c0134fb9d32d15195ee5b7830c63d3dc2f41f75e162a105abd28bdbf02472", 0x60, 0x81, 0x0, 0x1, r7}, &(0x7f0000177000-0x40)={0x0, 0x0, 0x0, 0x8, 0x2, r4, &(0x7f00004c1000-0x62)="87b891455a87857f86fe391412986ea88b78324815104a1ce14722fe0393eeea11ce72676d589d59965dc2dadb2449e459e6c7700ddd14cb6ce324b934735a337d6023e7dd4fde390bd843d0840ef41af51313c97fc92bd10ef406d63769aafddeba", 0x62, 0x1, 0x0, 0x0, r8}, &(0x7f00009da000-0x40)={0x0, 0x0, 0x0, 0x8, 0x8, r2, &(0x7f00007a6000)="6a30f004f35573147cea2fb17ff71224f97622d0c5816f28e6f8d0f3cdad9a10f6d5ebdc2cc77f4840f0251ddbbcc5269e9bf3bb8e21f57201f59d5f29a19dbdb89b83e686b9e1e5b83f9a2b9e0ae63adeccbe66796ab828f5dd997756543a44bfd2bf112a440a99e916b8", 0x6b, 0x8, 0x0, 0x1, r9}, &(0x7f0000ab2000-0x40)={0x0, 0x0, 0x0, 0x0, 0x0, r4, &(0x7f00003ac000)="3e605ed6d38b63a952fdc741a13c95af271e837f246a3e542cd86367fe55efe172aaa3b28784031936d55a320679f14d13fd6f009208e95c95c9d397e0f570d5452ed3dce533dfe0c9b008b25d2e63106c3ccb0b9f2af43fb1a8d65027bd99fddb8b96fe2fc7d7f7dd8b31a887808e2840aed220938f4d8a6472b766ca9e3be16476ac572a358bc4cb5c3125ec21d007b3809a18e5da41b149b8cbc48dcff7e3166a0385d66595246c6186bf34868ab253e9d6b7d5b2a8e14350cb7e764434681e7a6ea8", 0xc4, 0x400, 0x0, 0x1, r10}, &(0x7f0000477000)={0x0, 0x0, 0x0, 0x9, 0x0, r2, &(0x7f00001ec000)="eb1a2d36b3e8decf022995b28a733e92ee6396e1685f82d851122d0e0469eb456355ec56aa0e2cf888e5a37e3ec08fe78bd1c81ab5ba8cf8774c4c12819800b074d5c812e9a72a11511d682dd66fd31ef1ae3b18750afb87f96e2f17a730e80e4e257819e32d3b8806e0ff45ca718afa555800720ef766ba9900837e572f88a9439e783b3630f5704ad56b4ce3c0d433697e732c13ea50dad3fe35aaa020e59109bda72d1531d7f8c3618974bb226b4658987a5a0812f01bbbd7edba1a47b2dae14cae81bb826a9aa77d", 0xca, 0xc0cf, 0x0, 0x0, r11}])
r12 = accept$alg(r6, 0x0, 0x0)
setsockopt$ALG_SET_KEY(r4, 0x117, 0x1, &(0x7f0000ce0000-0x4)="3b692cec", 0x4)
socket$alg(0x26, 0x5, 0x0)
accept$alg(r4, 0x0, 0x0)
recvmsg(r12, &(0x7f00005ee000)={0x0, 0x0, &(0x7f000074c000-0x40)=[{&(0x7f0000ec9000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000da2000-0x6f)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6f}, {&(0x7f00008f9000-0x47)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x47}, {&(0x7f0000242000-0x32)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x32}], 0x4, &(0x7f000066d000-0xbb)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xbb, 0x9}, 0x40)
2017/11/27 06:13:10 executing program 5:
mmap(&(0x7f0000000000/0xa000)=nil, 0xa000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
fcntl$addseals(0xffffffffffffffff, 0x409, 0x8)
mmap(&(0x7f000000a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$unix(0x1, 0x5, 0x0, &(0x7f000000a000)={<r0=>0xffffffffffffffff, <r1=>0xffffffffffffffff})
r2 = memfd_create(&(0x7f0000000000)="64657620", 0x3)
ftruncate(r2, 0x40001)
sendfile(r1, r2, &(0x7f0000001000)=0x0, 0x400000000fee)
recvmsg(r0, &(0x7f0000006000)={&(0x7f0000006000-0x1c)=@in6={0x0, 0x0, 0x0, @loopback={0x0, 0x0}, 0x0}, 0x1c, &(0x7f0000005000)=[{&(0x7f0000005000)="00", 0x1}, {&(0x7f0000007000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x85}], 0x2, &(0x7f0000003000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfa, 0xfff}, 0x0)
mmap(&(0x7f000000a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x4000)=nil, 0x4000, 0x3, 0x12930, r0, 0x0)
sendmsg(r0, &(0x7f0000008000)={0x0, 0x0, &(0x7f0000008000-0x50)=[{&(0x7f0000001000-0x5f)="0a269ca9b4a350d33b29e53e9681acb9d5387ddf3194796f6f81917f37b4678f5174844c5bf38bc93ab7810a2c3558efe5bbddd47bb1d30c737be8d0326d3dd2968a6acec39f56ef43533cfacb43fc4d77ebd7ef3157a7b4a078876ff30f10", 0x5f}, {&(0x7f0000003000)="efabd025225a6783c88665d3c1266b84f79cf4965d8d08c95fbddd51e0", 0x1d}, {&(0x7f000000a000)="720b760c5bab7d6876ac6403ff2acbcd4ac4bccc0bfb69ca0967f89cb190ba33ba76975bcc2dd5dd728fb63c0d4c910000000000000006d06bb3746f84f582ec9c051b4e1a4c8c0102cbf85728fb9a69fe14040142ee3e6e04491f0e0bd1b2a1039d987e98920a8dbeaafe549c96b783f0136de9d13240667373c8ce61caec1521a95fcab52ba23736fc82259c3f59b17aa48ea7698b83bf9353cb88", 0x9c}, {&(0x7f0000005000)="4499b7f402204af49ece5d75b58dd91e9d8a53d96e21e22b31822d872434e15b82c91de1a39f44371d8487088c2a9c20ebf8b5498cc3115489f2c6530a4a46", 0x3f}, {&(0x7f000000a000)="f145da5d39a54a66270b53135cea85254d371043a9298a41323940efa12d5792fe2c1018d0274de1aa7e836e50232f4c4db1cfdb58c5dcf1dd6e02d30bc068d861dedd93302b0e6b75fc1ae434a3499858176c9001718f32f295089e166a9bfc621a937fc82f1a92fde0867f6dd45424e58eb83815279a7a4ec7dae07643c0af20", 0x81}], 0x5, &(0x7f0000002000)=[{0xe0, 0x114, 0x7fff, "385e13d315359395152a7d10f8c473c038c5f8384200048061dcc23c671e358562220d8d7053fb6780987e70d617c64ec88154f21d139b3b7ed12747d38178095ceb0464c8323bcb02bbbb3bdc62e25904ba71345c3dc8e682bc9fd131e70635fe4f5dba2d3cacdcfed849d0374ccb387de78d06d2f8e783b9b585372eef3558d52bd2bdf2a55ab3d48ecadef5b25aa526f6ff86fe06f30645b36a8afe89003bffa6a23af61081016ec7c18d1dfa8f4afe46c630b50e488423a34b93305ce87271350f07962b5b20cd40068e0bcd61"}, {0xb0, 0x116, 0x80000001, "fca372645b20f8e45fa810ca2f9b5292f5792fffa24d056493798bdda4199525a4320fcbab896122df5700eea4de59300f5934129c13adabedca10228225c07de714000406a090a4786ca8c6f5876ce9e1de8a826bc1878fed05e4984f96d17eac8372190505bdcccb740029e54edc826fbfc66c1398971b9603b965c9f24ff3ce2925ae9523bf772e3a02be08b5fba465ff9be612a96c344be0dfca7b068e"}, {0x1010, 0x0, 0xe6d5cdb, "0c67c2fe4f3d2b310f804d73fa3033a73334d171181db763d33dd158792c0e233ad561c77c886ba12845731c2b2a43823b1d2159bf77d7aabea19e87398d83c0588e89c951041421a2c3d0abdb596dbd37af332a2a8cb4580571222669dd690f4d6b7e2acc543671916c38c80cac8abb48b309a3b524c57db172295e2a706b684ba7eda0e50d0b71aa881d924deec275ebbec38ed458f18c2a08a4ae1c7dfd02b78ac4d6e88210631f991f58d392ffa6a67c06d9be36026f1124fa9cb7887f3360297647c26d3392b01f7e1d300887254f5be79e5bb62f043b4cf6aaeeab384dfadf1ccd03c7ed996ecee8b7af703b073f6991bee0cd1dd16c74cc7ac2bc34da32fb9e0ce853f03feea0cf4c03596c2ad38b38ea4622bea43b6c6c52d8c3636e7336ef8cadf58099bdd7f7438cd66ad709bd910098ad6f72d72794d0d75966f05e39f56b2af6c3a2e23b892b8e0c866a4412440f0180f34a7a77efa368cdffc7700b3dfe081f3e0ffd2c6821ad67e45c15921ee9b5cbdd36ac9013db0302bd0bbcb67acb30d31e55c7afb8f08ee07eb3ec6f4a38331569f3e31cbe2c9ae41a1e95b8feca1ddf26526ba749f7d5f89128914029c1795be66c84177d7e01e35d2f41f90efc53ee35a5bd16888e164365244cf54f1a7ad138de1c12415e7430f72b04a98cf6f78fc8cc18e8f7e475ffcdba73bb5c03e204cbf339ff7260245737308fac53739c6a4f8893f303b980a6558370047a4b905b6cf644ac6c9bc103825179b00da8a90d8ed13cd288025592282c61c229beb5d3a416bc7c4f257d8f94728c0561f7003494811c435ce0b1b623e2f6ecb17243a2979bf0da4cc4841da492d20711934c2cb202cbc8ebe9d39b7433fc417d561bbf83124cce84e14ebc8b1e3277599b71216d067c1fad3e054785f829dd103a42087dddf66637f27d11a1d74176389c3c48370cb6b4c7998608a151cdc9e32957d1382bc48dcdb3d53f08de930f6bf616b0cc77d9bce08a2b8b9fa6e24b9cc420196be617e675b3fe81abb1cb3a9634288542e36739a58f4c37a5e2e9c738614fe91cf3d5bd9613617201854438914485f268eb8d595845f324feddad958611a99fda61ac8d90bb42ffdab5ade74b3cb8c3ed1d15c2c99da44828d2ad604e685ed911c91d337d77ae8ddf230b7d8f2d85a36c13e4a434fe96b897d3dc1ec442c51d0500f5e8be1e9ce59156dd95f99ac633e1863bc0274f1df148781d0af157b50ad1ed6f381ac4ac360ae769ebce2a4c9c5840ea441110b7b89395dcc478f248e093442e10f084976c37e3311e483a3105aa60187f91c5fe037ce5e98685391c3093b283a657306685d0125d0ac7eb4896e035572dae7b1bb99c1e70b2f821c1f4e67907ec98e48ce8975b5d5d16cd973f6e3396d0d603947d3498211572ca4a917926ff25663f7367553b9be8925540753c879a1eb56c0cf39b92c66ef90ba06c5fec020bd85a2951543fd7bc91d900df449777351ba6fea82427abfd02c60ef1a2093057203ece9b742c7c395646f727a52ab11518f3767c4853de688171315197a61357055956cde9267f2f9160ac14a698f4f9a23ec5f169025a58e089f6322a2532a85be853a042c1282ab39b6444dc0ec0f73b7056d4636baa93a984fef0b215bd39698f9f4c2b209a3dbb7827dd62af888bf0a13abb4e2ed0e3918cdcc8a19a3b654415e3a3964eecfb19d166cf335f7a6f8f2acbdbb9cc54da60e3aacca92d04dc0efc37a6d8ce95ca4d69422ffa6299b52b9d2b12e0c0396e9858d5151c6599cdc254153554760e59b1af13829d30dac7bfec4814b923047e11ea2678a1011468d18aab14d12fa132640fbb6ce438a9e39503e6c8f7368a7480b2f26bc65b7dede91928a95aef6142322a4b50d40943d5e66d75737e5ef4b49aa630141a7ae848297a6677018d8b6fac0764993c24ff6c9df97d54ab96bc05413a008775522684b4e43e9fa717e9a694994de3503fe8fc45ff317b72f02276931174760efa423e6ee9fe36f86ee93ac02e276a0497b9f23800483620073e5e8080962cde579746aa8d87cb112cc3ca7e57c0be4edc5b63b461062b1bb459dd52cfdb38bca29795333c61d6c323b72205ad7f020d937116ecc6b5ca3bb4920ebc964ad57329738939c30a63f512df82a8c95e7f7535e52a93c158911a3efc9392cee0a63421d631f725721827162dcc6a5a8007aef92ec3e3ec43483342e199532603a2e5ec2541c822eb7d245594a14117f1619e5c2b54f07d975d427b05d40c7cbcc477d42faa1559d4cbaf1a468709db1b6c9bb5999db4366d0109c8fb857b4d74c4853f30d8c6c64ad19482524edf421a441eed88412bb28c62c65314eb6ca38aefed8096083a139ba5a8ef2979bd8a391aa1c00f5a31e5654689d6d66aacf280bf1117efbf4b8fcd315ca037d0bf2c953cc5d25139846f7ef0cd6c84a354748aeae38085b74c070149ed43df0c78b613b8467d9ad3068a11c4416db661a6039d3218cbcddba68c13e0ebd6f24e86e473ac85fbb4642b737e5891c6f5710f8591ff1ab19a29407765eee007391664f99e1306af90655cc3012ce57bf18eaf14272934b3d53dc01b921c17c80c2e039555fe057fa151dff434cc3e5ec32cf9172c0ec7382aeea806b3ebd451d4b78420ff5af5519bee965d6e8defb49958713054bc6eb01d6a27604b3f30abfa609437b958fd2e23c5dbac8f42081ff6d300d2ade0a09cdb715b535ce65228954616b8f45ff831557d75b08719039da3c41fed9e5394890838d4985c67d314468372118cbce311838cb8c9e478c819a6790bc0b30b8feb56051ec30f2508b712193ca157da2acb7dcab77d8374390fba721eed2d21b289bc09bd04c009332aa7778fce6ea1cad2bd06dbeec333e8293572cf1d1151041c425ff1b33f9084549173c9cf43e0db75144e8b47a380a23ae48be540315bb69e44c4a1be99c44f9c9df63b2f1734bda6cac20375e5cdd0a9d7c9c54e6ac9287809da14e9572ade1ee06bf65797a243ac62beb00098cd2ad1e4678664c6347bcb839314097695a41d8003b3f13703b69c7301576ba87e8111454d8798d99f442370ebe7c72ab4979dc038eaf2344c3cccf0cbeff2b19f6158fca2c3d27d6b3428db6bd74a7c36334a25ad9f3a593a092d26bd6e4299662fcf99c1d0e6d512fb13e94a53039a78fb1b6785bb2504d2f9172d81b8aa26d6781ca27ebcc790455bc1d4b7de52232c63638977fd5807cee2c1e3edee234b49df0a94536a108d7fb9b9910895a91f1fd31ffaf49f6559d6235556c6cf6fa40dfc09f8e5e853ba2761602c61568c9190c482475d42f8f878d850714a4eb283da3106fd44fad9622fff8b82704e1756d1a4c3f85ead38fbf0c4dddc354e9242e9f0d48feff18856b154ddd6a33515ef78d563e749602478cde30c31df5615355b1095ac3017da1b6cb68bd9331ce987bf468e4048e2dd97de1ee6744fdf1b9469125acaba4f1700fb8467bb99d1a2de85f0361080c2c22c72bcd01672c945d86bebcda296ddf3f7c8ea26984e1db981ca122a302ef98a3ed3411fd9c5f7e345a397f2ee67576906a56ed48988d5159179fe0e62b936b0278976b03e4a67666c27ca0727a8649bab9c57eafab8854b8a1f5e258e0664f6cc71903d464ad27a21e738799905b45371e8c27a5b758adf95acc40e223586402ee4f3de2be4ded901cba07ef4664a6f1aab01945a2e4f0fbcb704d97e8d12697b2c01bc915e5e114a3efad935c77bbe8aff0d063ccde88e23c73e824858bf35683227682c62ead89692b3b9efcc8a927f2e6b28d0d39eefda85f8ae8ce75f2e0ed913804ddda802b758691d4305974da6c05727c0883837467387f3c6c011e6ba44a8e7256c9a6a700856d59d96e489f6a83d3f632b7b40db7c886bd0558815f6ad645d27efbac63703dc5777b7c7d22a83f6b10ac18d2197dd40582bd95a8cb543725ea0797b86b5f3d1fbb0258bb31b5cb2511c1594e39da071efb5c7e3bed6b5c97ea769fb1fb2baeef8e75eed3a09c8847a87994d6cf21d02a0ff542bb9256b00f0fb131fb0b50ec8678ddefd178589a6c8950a360206652e29f5f1be523dfc6ce58249529a599bc1992de89e9fe835e692c527077d311e5ef5ced52dd495ad5563cd0b3d8c9b1fd0366730ac795dca9354ca82ef7b695a14fa1732c5820b587fdd731f8621ca0c8bf6f287c1c15e0d6495f09cf4fed35b1b617c063e923d6b9d335c0f1b7b21374716e2b84968980e227f8a5a8289e2456c3d1efebb5c56dab46e1fba41b19bec12349be730a381ad393e9143d942867e921ca05a945fb049696a00eadc218aaa380b127af05a873aaa2df8721c590ba529e17b72e8b726d72cc9c4e55b6d4f886d148592bbda86c0db62cdc5227de9c4e51e26e0e92b0d4ae75e3f7e7d93108a10f10757bd315f933f8a78d029b129b41c2b20c48f24a1fb3ae412fd71a229d06c56d2598d6aee95e7679e0894ddb9b7c14fa091df6a1079722cdd97a129656a97f7fb82289ebd5828b0d957ead2395f2ef36bee70da5e50a8bf38a95cf0470ad8096062a1e02e0cecd90cc22e42d8cfe5098404f03dee5fcaf6f34ead3f3dce355129f7c5c8924b71da01459d3e425fb98f6fa2edb19bbf774ee17533181c96ff5b09a8913b8bc1028541bdaa1b36949a9e1cfb163e7c952e861c3a45919af09cea2237a83a1f077029f239222394129dfecb2461aa9f2f22cf9992dc8d62617ac77860fcdf5f631790f4402536e9d7f43d6a0da8b288eb1e0352878c5a80c51b5dd6eeb313ae03fbf21fcca0157051e33bca61e37374d1f2e004f456dea4fbb0cd50ab78aa80534d56f9a7e10e439bc0221db517631fb8138fd099274798a8afa9ae8dcce83395f4fac62b049446680a974c263c4d09be4823c4f908a0e001c7bcd16805f66305183eca6fab63557534cdfa1eb4dfdc9af26f235e5d87dd9a6912f122a4d972d4f2901efbccdf5d9bc3032756cc5a76e7ae3fe63ed2385e139520c01b1c4a7c2f1441d1d0f19c723190178dcf2b9c930a9f75a5c7de7427c28b8d25debc744ce12a1e22103818edb65218f061cae6a6bd3bcd390eb4435adc2880b7148dfab9c1afac2a1b1cbfd3ce9f99c634bd52b914d2364a35f2c123fc0b8f259ab12a5fc129af462bca13d913e2bbb86a4d645d176efcdcfcee2bbfa85cf5b6bbbc6aae1ffeea53204e6284cedc2b3f39639e82ad1c123c54143097b0b046b5d8909d24fa1ae155f316110b7dc6d68a98b9d9331af3337943be141f565912ee0a589ce14949c1f4edaa3155fd2ce780618da7f29ee92b3b3b12d534c2cc06278888a374c4029077b83b163f9fe909a4d18db553e501cf27c024324af593be864ff589b39e978797d1110b988d06010e31f67b9b24ef4cea2ec038a64b3af0792faf59a980e4ab38d30ab7440ccb0f92161baad416d81e6dd04f76e622087c0fb5295c3117973d13d64cf7a2136c9822a4c628ba301090225d343855d22aa941576f4814bc9914f3f5512856bd9a288b3cd92ebf8d4845e98cbc640375fd05f360a56d6cce416136ff1f833d5da7271a17665b9ad0ee987d2faeb1c4fe95558b3c18c302993e1152628bfe078bee1b535d8a188843fd6d68e14d97d626da9cc43dac68dd2f0d130019582f6502922473d17dcd6dd4294db54bcc4f2c05ca7d93f80b0efb3ff4e3d31c4a5571f4e4e9bb3eeca75b8853d2299fffd3beef48989770bac04a47dfc7fb2c556b9a548cdf"}, {0xe8, 0x29, 0xffffffffffff33f6, "6a14275a80b462b9bc969216aedb19350f2e0f8cf49bef0809955be751ad1fbd3236ef8d7fc6a6f61a3ab0ad12aa252fd2dc10a043e0577d7ce50eab0a37332cb43fef4258ce72e26013faa769cd8d181600000000b3323fdcd26a78eae14bc00647b02510eaac6b5622a5aa1b558eee66bd474b2aa79b7a6feb42795f66dd5e3cbc121f1d497d19b499ef817f63975b89488ed2d8d4d089474424aefa131b13b50587eadab2f3449832f426aab9e2920712a1097f4c2be90fee4517d8c2f848df303c2bec6cbf7d6e04ad501d09310ab7f7978ebb175231"}, {0xd8, 0x111, 0x5, "4bdc10a27669a9c540b00a5085c5d330504aeddb3e7a590ab94174c2f4677ae93e5f7f4891bcb6492bd1c7f03a47ca39f7bc19f869e09ef5ce6bc6d97ae140bd97d18350f62b67c045ac9b873ab7c38ebfec42738096ceb73e6cfaa2a569ab7fc865c33fdb68ee4f8df1a7381139425eaaba8b67471b5c10214ca1f2a4d663e827c69d83375f6a12e689ae85b6f1ddd621f2853ce8091a3ca6998ccc23d29ea48f197863c2e5af51bce2e48ccbfe000303d0cc4f2eda9f77e8d24453aa0dd9b3f891"}, {0xa8, 0x10d, 0xffffffff, "3ca64f8f34477723f7ddd15597f89ca8bed6f3ad7f0dd7c1ad61e92f7282747fea125f458cd7fcdb053cac1cb5724eb35fbd46cfba9928f929a493c3e6546df33c8ef74c6465549fe3d28a13d887312b228a10dcb8281ce8527b7363e9a7765418db4c670bcc5372de7202167afecdbab7dac34505b759ec4db3bb3f23dcbbbe649d7fa93f2d0ca4c95507bf186a8ad0d34e334980"}], 0x6, 0x0}, 0x40)
mmap(&(0x7f000000a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_tcp_int(r2, 0x6, 0xd, &(0x7f0000003000-0x4)=0x0, &(0x7f000000a000)=0x4)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x10, r1, 0x2000000000000000)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
fcntl$notify(r2, 0xc, 0x2)
mmap(&(0x7f0000008000/0x3000)=nil, 0x3000, 0x4, 0x32, r2, 0x400000000000000)
mmap(&(0x7f0000007000/0x2000)=nil, 0x2000, 0x3, 0x3e, r2, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, r2, 0x0)
mmap(&(0x7f000000c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000d000/0x1000)=nil, 0x1000, 0x3, 0x32, r0, 0x0)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x8, 0x36, 0xffffffffffffffff, 0x4000)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000010000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000010000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000010000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000011000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvmmsg(r1, &(0x7f000000e000-0x100)=[{{&(0x7f000000e000)=@alg={0x0, "0000000000000000000000000000", 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58, &(0x7f0000005000-0x40)=[{&(0x7f000000e000-0xda)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xda}, {&(0x7f0000002000-0xb)="0000000000000000000000", 0xb}, {&(0x7f0000011000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f000000e000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa0}], 0x4, &(0x7f000000f000-0x3f)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x3f, 0xf66d}, 0x200}, {{&(0x7f000000b000-0x10)=@ax25={0x0, {"00000000000000"}, 0x0}, 0x10, &(0x7f0000010000-0xa0)=[{&(0x7f0000011000-0x80)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x80}, {&(0x7f0000010000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x73}, {&(0x7f0000011000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x9f}, {&(0x7f000000f000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x95}, {&(0x7f000000b000-0xa1)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa1}, {&(0x7f0000010000-0x65)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x65}, {&(0x7f0000004000-0x93)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x93}, {&(0x7f0000010000-0x69)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x69}, {&(0x7f000000e000)="00000000000000000000000000000000000000", 0x13}, {&(0x7f0000002000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x53}], 0xa, &(0x7f0000011000)="000000", 0x3, 0x5}, 0x0}], 0x2, 0x100, 0x0)
mmap(&(0x7f000000e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendfile(r0, r2, &(0x7f000000f000-0x8)=0x0, 0xbd2)
getsockopt$sock_linger(r2, 0x1, 0xd, &(0x7f0000003000-0x8)={0x0, 0x0}, &(0x7f0000002000)=0x8)
[ 1056.681066] QAT: Invalid ioctl
[ 1056.688402] QAT: Invalid ioctl
[ 1056.695774] QAT: Invalid ioctl
[ 1056.720846] QAT: Invalid ioctl
2017/11/27 06:13:10 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = inotify_init()
r1 = dup2(r0, r0)
getsockopt$inet_sctp6_SCTP_GET_PEER_ADDR_INFO(0xffffffffffffff9c, 0x84, 0xf, &(0x7f0000001000-0xa0)={0x0, @in6={{0xa, 0x0, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x9}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x1, 0x4, 0x4, 0x9}, &(0x7f0000000000)=0xa0)
perf_event_open(&(0x7f0000768000)={0x10000000002, 0x78, 0xf34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x40000000, 0x0, 0x0, 0x0, 0x200000000000010, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
modify_ldt$write(0x1, &(0x7f0000fa4000-0x10)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x10)
ioctl$sock_inet_SIOCGARP(0xffffffffffffffff, 0x8954, &(0x7f000064c000)={{0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x0, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, {0x2, 0x0, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @syzn={0x73, 0x79, 0x7a, 0x0, 0x0}})
perf_event_open(&(0x7f00008a8000-0x78)={0x0, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r2 = socket(0xfffffffffffffffc, 0x1, 0x0)
getpgid(0xffffffffffffffff)
ioctl$TIOCGSID(r1, 0x540f, &(0x7f000034a000)=0x0)
fcntl$getownex(r2, 0x10, &(0x7f000088f000-0x8)={0x0, 0x0})
getpgrp(0x0)
r3 = openat$kvm(0xffffffffffffff9c, &(0x7f0000b9a000)="2f6465762f6b766d00", 0x0, 0x0)
r4 = ioctl$KVM_CREATE_VM(r3, 0xae01, 0x0)
setsockopt$inet6_tcp_TCP_CONGESTION(r1, 0x6, 0xd, &(0x7f000096f000)="77657374776f6f6400", 0x9)
bpf$OBJ_PIN_PROG(0x6, &(0x7f000064b000-0xc)={&(0x7f00004ff000-0x8)="2e2f66696c653000", r1}, 0xc)
setsockopt$inet_sctp6_SCTP_ADAPTATION_LAYER(r2, 0x84, 0x7, &(0x7f0000f49000)={0xffff}, 0x4)
r5 = ioctl$KVM_CREATE_VCPU(r4, 0xae41, 0x0)
r6 = inotify_init()
ioctl$SNDRV_TIMER_IOCTL_STATUS(r6, 0x80605414, &(0x7f0000d52000)="00000000")
syz_kvm_setup_cpu$x86(r4, r5, &(0x7f0000354000/0x18000)=nil, &(0x7f0000574000)=[@text32={0x20, &(0x7f00001a0000-0x5f)="0faaf23ab5727a03b16691c10066b8ec0066ef440f20c0350d000000440f22c0c4e2010c28b804e8c78466b82d01c4e16d678a2e00000066bafc0c6471000fc79b09000000ea004000006800b80500a200b9030000000f01c1c4c2dd056ed9", 0x5f}], 0x1, 0x25, &(0x7f00006a9000)=[@efer={0x2, 0x2000}], 0x1)
ioctl$void(r1, 0x2)
bpf$BPF_PROG_TEST_RUN(0xa, &(0x7f00001d1000-0x28)={r1, 0x7, 0xcd, 0x1a, &(0x7f00006b3000)="480e267c9b2bbb1917954e02005de8cecdbe161dc32c80b08370d3174059ca03b0c5be08cace16502a8b0cf50cbd73944694e59cb10c826e829433132fa766ae923c0764c373306a1f28b97c0c24409b9ee8ec09dc03b89d7c8ec4d94f2d65352dcf4131d6770124c7e602c563250a1095acea9bed9b81984d86ad3d25caecb9fdd031dfdf56aeae0b8103fbfd9522ea0887591c1472b36abc5232a7388d6519479008f295d465ebef249bbbecd58fd18fd5d2937560d3a2bdb915f11ff201f7f2d0d40d53d667cedab007a8f9", &(0x7f000009b000)="0000000000000000000000000000000000000000000000000000", 0x5, 0x10000000000009}, 0x28)
ioctl$KVM_SET_CPUID2(r5, 0x4008ae90, &(0x7f0000352000)={0x4, 0x0, [{0xd, 0x9, 0x0, 0x8, 0xffff, 0x1, 0x7, [0x0, 0x0, 0x0]}, {0xc000001f, 0x5, 0x0, 0xf2, 0x7a73, 0x40, 0x4, [0x0, 0x0, 0x0]}, {0xc0000019, 0xffc00, 0x2, 0x4, 0x7a18, 0x550, 0x4, [0x0, 0x0, 0x0]}, {0x2, 0x0, 0x1, 0x6, 0x6, 0x3, 0x80000000, [0x0, 0x0, 0x0]}]})
r7 = add_key(&(0x7f0000e65000-0xa)="73797a6b616c6c657200", &(0x7f0000692000)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, 0x0)
ioctl$KVM_SET_XCRS(r5, 0x4188aea7, &(0x7f0000222000)={0x7, 0x7fffffff, [{0xa7f, 0x0, 0xfffffffffffffffc}, {0x3, 0x0, 0x4b1}, {0x6, 0x0, 0xfffffffffffffffc}, {0x101, 0x0, 0x4}, {0x2, 0x0, 0x6}, {0x8, 0x0, 0x27}, {0x2, 0x0, 0x9}]})
r8 = request_key(&(0x7f000088b000-0x5)="7573657200", &(0x7f00000d0000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000ea0000-0x9)="2f6465762f6b766d00", 0xfffffffffffffffa)
keyctl$reject(0x13, r7, 0x0, 0x0, r8)
ioctl$KVM_RUN(r5, 0xae80, 0x0)
2017/11/27 06:13:10 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6(0xa, 0x2, 0xffffffffffffd095, &(0x7f0000000000)={0xffffffffffffffff, 0xffffffffffffffff})
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdf, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x20, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
write(0xffffffffffffffff, &(0x7f0000ffb000-0x1f)="1f0000000104ff07000000ce072d0000f305f00008000300ffece3db00df0026", 0x20)
rt_sigsuspend(&(0x7f000075c000-0x8)={0x3}, 0x8)
r1 = socket$inet_tcp(0x2, 0x1, 0x0)
socket$inet6_sctp(0xa, 0x7ff, 0x84)
setsockopt$inet_buf(r1, 0x0, 0x29, &(0x7f00008e8000)="ef", 0x1)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket(0x10, 0x2, 0x0)
r3 = inotify_init1(0x0)
socketpair$unix(0x1, 0x6611b2e62b05acf2, 0x0, &(0x7f0000568000)={<r4=>0xffffffffffffffff, 0xffffffffffffffff})
close(r0)
ioctl(r4, 0x862, &(0x7f0000c95000)="13")
r5 = getpgrp(0xffffffffffffffff)
capset(&(0x7f0000c70000)={0x19980230, r5}, &(0x7f0000ec5000)={0x100, 0x0, 0x3, 0x3, 0x10003f, 0x59})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_GEM_OPEN(0xffffffffffffffff, 0xc010640b, &(0x7f0000afb000)={0x0, 0x0, 0x0})
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
inotify_init1(0x0)
r6 = accept4(0xffffffffffffffff, &(0x7f0000f42000-0x8)=@un=@abs={0x0, 0x0, 0x0}, &(0x7f00001f2000-0x4)=0x8, 0x80000)
getsockopt$inet_sctp_SCTP_I_WANT_MAPPED_V4_ADDR(r6, 0x84, 0xc, &(0x7f0000b9d000-0x4)=0x0, &(0x7f000031a000-0x4)=0x4)
r7 = socket$inet6(0xa, 0x3, 0x10000000003)
setsockopt$inet6_IPV6_FLOWLABEL_MGR(r7, 0x29, 0x20, &(0x7f000097e000)={@loopback={0x0, 0x1}, 0x400, 0x0, 0x2, 0x1, 0x0, 0x0, 0x0}, 0x20)
setsockopt$inet6_IPV6_FLOWLABEL_MGR(r7, 0x29, 0x20, &(0x7f0000c66000-0x20)={@loopback={0x0, 0x1}, 0x400, 0x1, 0x2, 0x0, 0x0, 0x0, 0x0}, 0x20)
r8 = dup2(r2, r3)
setns(r8, 0x0)
ioctl$sock_ifreq(r1, 0x89f0, &(0x7f000070e000-0x28)={@common="73697430000000000000000000000000", @ifru_data=&(0x7f00008e8000-0x20)="01012300000000fa0000000000000004e5ff0000ffff000404490001008feb00"})
ioctl$DRM_IOCTL_WAIT_VBLANK(r8, 0xc018643a, &(0x7f0000a19000-0xc)={0x40000000, 0xffffffffffffffff, 0x33})
ioctl$PIO_UNIMAPCLR(r8, 0x4b68, &(0x7f000041f000-0x6)={0x8, 0x400, 0x5})
[ 1056.734413] QAT: Invalid ioctl
[ 1056.740411] QAT: Invalid ioctl
2017/11/27 06:13:10 executing program 6:
r0 = semget$private(0x0, 0x7, 0x160)
semctl$IPC_RMID(r0, 0x0, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat$rtc(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f72746300", 0x404402, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$EVIOCGPHYS(r1, 0x80404507, &(0x7f0000001000-0x4)="00000000")
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
semctl$SEM_STAT(r0, 0x3, 0x12, &(0x7f0000000000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_IPV6_IPSEC_POLICY(r1, 0x29, 0x22, &(0x7f0000002000-0xe8)={{{@in=@local={0x0, 0x0, 0x0, 0x0}, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r2=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@local={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, 0x0, @in=@loopback=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000000000)=0xe8)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getresgid(&(0x7f0000000000)=0x0, &(0x7f0000002000-0x4)=<r3=>0x0, &(0x7f0000001000-0x4)=0x0)
r4 = getuid()
lstat(&(0x7f0000001000)="2e2f66696c653000", &(0x7f0000001000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, <r5=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getxattr(&(0x7f0000004000-0x8)="2e2f66696c653000", &(0x7f0000004000-0x15)=@random={"6f73782e00", "2f6465762f7274633c"}, &(0x7f0000002000)="000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x27)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
semctl$IPC_SET(r0, 0x0, 0x1, &(0x7f0000002000-0x58)={{0x0, r2, r3, r4, r5, 0x108, 0x8, 0x0, 0x0, 0x0}, 0x3, 0x5f2, 0x6, 0x0, 0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r6 = syz_open_dev$mice(&(0x7f0000526000)="2f6465762f696e7075742f6d69636500", 0x0, 0x0)
ioctl$TUNSETVNETHDRSZ(0xffffffffffffffff, 0x400454d8, &(0x7f0000994000)=0x0)
ioctl$TUNSETIFINDEX(r6, 0x400454da, &(0x7f0000ea6000)=0x708ba08c)
ioctl$EVIOCGSND(r1, 0x8040451a, &(0x7f0000f7b000-0x3a)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r7 = memfd_create(&(0x7f00002b7000-0x10)="67726530000000000000000000000000", 0x4)
ioctl$KVM_SET_VAPIC_ADDR(r1, 0x4008ae93, &(0x7f0000391000-0x8)=0x6000)
semget$private(0x0, 0x0, 0x0)
io_setup(0x80, &(0x7f00006d6000-0x8)=<r8=>0x0)
io_submit(r8, 0x1, &(0x7f0000a54000)=[&(0x7f0000f69000)={0x0, 0x0, 0x0, 0x0, 0x0, r7, &(0x7f00000a7000)="", 0x0, 0x1, 0x0, 0x0, 0xffffffffffffffff}])
openat$ptmx(0xffffffffffffff9c, &(0x7f0000ef5000)="2f6465762f70746d7800", 0x400001, 0x0)
ioctl$TIOCGPGRP(r6, 0x540f, &(0x7f000061e000)=<r9=>0x0)
getpgrp(r9)
2017/11/27 06:13:10 executing program 4:
mmap(&(0x7f0000000000/0xfca000)=nil, 0xfca000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fca000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fca000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$vcs(0xffffffffffffff9c, &(0x7f0000fca000)="2f6465762f76637300", 0x4, 0x0)
r1 = dup3(0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$SNDRV_SEQ_IOCTL_GET_NAMED_QUEUE(0xffffffffffffffff, 0xc08c5336, &(0x7f0000002000)={0x0, 0x0, 0xfffffffffffffffd, "71756575653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r2 = creat(&(0x7f0000e2d000)="2e2f66696c653000", 0x0)
mmap(&(0x7f0000fca000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = open(&(0x7f0000fcb000-0x8)="2e2f66696c653000", 0x3, 0x3e)
set_mempolicy(0x0, &(0x7f0000cd7000)=0x0, 0x0)
mmap(&(0x7f0000fca000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_SET_SREGS(r1, 0x4138ae84, &(0x7f0000fca000)={{0xf000, 0x3000, 0xc, 0xffffffffffffffcd, 0x8, 0x0, 0x9, 0x0, 0x8001, 0x401, 0x6, 0x0, 0x0}, {0x0, 0x10001, 0x13, 0x2, 0xc2, 0x7, 0x1, 0x5, 0x40, 0x5, 0x400, 0x7, 0x0}, {0x0, 0xd000, 0x10, 0x0, 0x80000000, 0x8, 0x7ff, 0x1, 0x1, 0x8, 0x411, 0x4, 0x0}, {0x5000, 0x59c218d76347080, 0x14, 0x0, 0x8e, 0x5, 0xfffffffffffeffff, 0x4, 0x4, 0x200, 0x8f, 0x10000, 0x0}, {0x6000, 0x14002, 0x4, 0x7, 0x7, 0x3, 0x8, 0x4, 0xfff, 0xf51, 0x7, 0x0, 0x0}, {0xf000, 0x3001, 0x0, 0x7, 0x1, 0x10001, 0x100000000, 0xbb, 0x7fff, 0x6, 0x3, 0xff, 0x0}, {0xf000, 0x6000, 0x1e, 0x4, 0x5, 0x4, 0x0, 0xfff, 0x6, 0x77c, 0x8, 0x100000000, 0x0}, {0x3000, 0xd000, 0x0, 0x100, 0x401, 0x200, 0x5, 0x5, 0x6, 0x4, 0xc11, 0x652, 0x0}, {0x2, 0x6000, [0x0, 0x0, 0x0]}, {0x5002, 0x5000, [0x0, 0x0, 0x0]}, 0x10000, 0x0, 0x10000, 0x40040, 0xc, 0x2000, 0x3000, [0x3, 0x1f, 0x4, 0x2]})
socket$unix(0x1, 0x0, 0x0)
r4 = userfaultfd(0x0)
ioctl$UFFDIO_API(r4, 0xc018aa3f, &(0x7f0000c20000)={0xaa, 0x0, 0x0})
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvmmsg(r2, &(0x7f0000fcc000-0x78)=[{{&(0x7f0000e5f000)=@generic={0x0, "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x80, &(0x7f0000a1f000)=[{&(0x7f0000fcc000-0x1b)="000000000000000000000000000000000000000000000000000000", 0x1b}, {&(0x7f00004b5000-0x7f)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7f}, {&(0x7f0000fcb000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x3b}, {&(0x7f0000fcb000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6e}, {&(0x7f0000a7e000-0x7e)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7e}, {&(0x7f0000fcb000)="000000000000000000000000000000000000", 0x12}, {&(0x7f0000fcb000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x58}], 0x7, &(0x7f0000fcb000)="00000000000000000000000000000000000000000000000000000000", 0x1c, 0x80}, 0x3}, {{&(0x7f0000c41000-0x10)=@ax25={0x0, {"00000000000000"}, 0x0}, 0x10, &(0x7f0000b76000-0xa0)=[{&(0x7f0000fcc000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000fcc000-0x2b)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x2b}, {&(0x7f0000d0c000-0x9e)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x9e}, {&(0x7f0000e60000-0xf6)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf6}, {&(0x7f0000c9e000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb4}, {&(0x7f00007d0000-0xe1)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe1}, {&(0x7f0000fcb000)="", 0x0}, {&(0x7f0000fcb000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000fcb000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x83}, {&(0x7f0000fcc000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}], 0xa, &(0x7f0000a8e000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000, 0x0}, 0x2}], 0x2, 0x1, &(0x7f0000394000)={0x0, 0x0})
ioctl$UFFDIO_REGISTER(r4, 0xc020aa00, &(0x7f0000c20000)={{&(0x7f0000068000/0x800000)=nil, 0x800000}, 0x1, 0x0})
clock_adjtime(0x0, &(0x7f0000064000)={0xfffffffffffffa65, 0x5, 0x8, 0x8, 0x2, 0x4, 0x5, 0xfff, 0x55c, 0x30e2, 0xffffffff, 0xd7, 0xed6d, 0x5, 0x1db, 0x0, 0x8, 0x1ff, 0x0, 0x7f, 0x4, 0x1, 0x10001, 0x2, 0xfa65, 0x100})
r5 = gettid()
ioctl$int_in(0xffffffffffffffff, 0x0, &(0x7f0000fc3000)=0x0)
getsockopt$SO_TIMESTAMPING(r0, 0x1, 0x25, &(0x7f0000fa4000-0x4)=0x0, &(0x7f0000066000-0x4)=0x4)
process_vm_writev(r5, &(0x7f0000c22000)=[{&(0x7f0000e58000-0x1)="00", 0x1}], 0x1, &(0x7f000023e000)=[], 0x0, 0x0)
ioctl$KVM_SET_VCPU_EVENTS(0xffffffffffffffff, 0x4040aea0, &(0x7f00001ed000-0x1c)={0x1, 0x100, 0x9, 0x0, 0x7, 0x9, 0x4, 0x10000000004, 0x10000, 0x22, 0x81, 0x1, 0x0, 0xb2, 0x6, 0x9, 0x800, 0x8000, 0x4})
tkill(r5, 0x2e)
close(r4)
mmap(&(0x7f0000fcc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_GEM_OPEN(r3, 0xc010640b, &(0x7f0000002000)={0x0, 0x0, 0x180000000000000})
ioctl$DRM_IOCTL_PRIME_FD_TO_HANDLE(r4, 0xc00c642e, &(0x7f0000d7e000)={<r6=>0x0, 0x80000, 0xffffffffffffff9c})
ioctl$DRM_IOCTL_PRIME_FD_TO_HANDLE(r0, 0xc00c642e, &(0x7f0000f9d000)={r6, 0x80000, r0})
2017/11/27 06:13:10 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$alg(0x26, 0x5, 0x0)
socketpair$unix(0x1, 0x2, 0x0, &(0x7f0000013000)={<r0=>0xffffffffffffffff, <r1=>0xffffffffffffffff})
fcntl$lock(r1, 0x3, &(0x7f0000002000)={0x1, 0x0, 0x0, 0xee1, 0x0})
socket$inet_tcp(0x2, 0x1, 0x0)
unshare(0x200000040000)
perf_event_open(&(0x7f000001d000)={0xffffffffffffffff, 0x78, 0xd4e9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x204, 0x0}, 0x0, 0xffffefffffffffff, 0xffffffffffffffff, 0x0)
ioctl$sock_FIOGETOWN(r1, 0x8903, &(0x7f0000b63000-0x4)=<r2=>0x0)
perf_event_open(&(0x7f000002f000-0x78)={0x1, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0xd34, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r2, 0xffffffff, 0xffffffffffffffff, 0x0)
fstat(r0, &(0x7f0000f57000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
pipe2(&(0x7f00000ec000)={<r3=>0xffffffffffffffff, <r4=>0xffffffffffffffff}, 0x800)
openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000e2d000)="2f6465762f7667615f6172626974657200", 0xfffffffffffffffd, 0x0)
symlink(&(0x7f0000b30000)="2e2e", &(0x7f000036a000-0x8)="2e2f66696c653000")
symlink(&(0x7f0000004000)="2e2e", &(0x7f0000fc5000)="2e2f66696c65302f62757300")
r5 = socket$inet6_udp(0xa, 0x2, 0x0)
ioprio_set$pid(0x1, r2, 0x9)
ioctl$TIOCSWINSZ(r3, 0x5414, &(0x7f000061f000-0x8)={0x5, 0xbb8, 0xffffffff, 0x8})
recvmmsg(r5, &(0x7f0000e29000)=[], 0x0, 0x1, 0x0)
r6 = creat(&(0x7f0000e5b000-0x8)="2e2f66696c653000", 0x80)
chmod(&(0x7f0000cb6000)="2e2f66696c65302f62757300", 0xc0)
mount(&(0x7f0000c21000-0x8)="2e2f66696c653000", &(0x7f00000ba000)="2e2e", &(0x7f0000e3b000)="64657670747300", 0x2, 0x0)
ioctl$EVIOCGUNIQ(r6, 0x80404508, &(0x7f0000dff000-0x6f)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$SNDRV_TIMER_IOCTL_STATUS(r4, 0x80605414, &(0x7f0000059000-0xe)="0000000000000000000000000000")
prctl$setfpexc(0xc, 0x80000)
creat(&(0x7f0000506000)="2e2f66696c65302f62757300", 0x0)
setsockopt$inet6_MCAST_MSFILTER(r6, 0x29, 0x30, &(0x7f0000fc3000)={0x2, {{0xa, 0x2, 0x5, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x1}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x1, [{{0xa, 0x1, 0x4, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x9}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, 0x110)
sched_getscheduler(r2)
ioctl$EVIOCGMASK(r6, 0x80104592, &(0x7f0000b99000)={0x4, 0x44, &(0x7f00005f6000-0x44)="5311f4246c02e5bd4978ee9405ac26d5704589e93ab4cda2292163c4b083a4fb44f07e0b53ff8885d60ff0877249b4d7dbd40321b93dca1459761391c0192f61b19aa920"})
mkdir(&(0x7f0000f1b000)="2e2f66696c65302f62757300", 0x40)
ioctl$TIOCSPGRP(r6, 0x540f, &(0x7f0000308000-0x4)=r2)
2017/11/27 06:13:10 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = accept4$ipx(0xffffffffffffff9c, 0x0, &(0x7f00007ee000-0x4)=0x0, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x51, &(0x7f0000001000)={@random="400dab6e519c", @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [], {{0xe0f3, @ipx={0xffff, 0x43, 0x1, 0x4, {@random=0x2, @current=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0xfffffffffffffb21}, {@current=0x0, @current=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x1}, "876fd2db5a0d0fea9790cac41d7e470abcbb259d9192dbc56647f2495762cfb34794f8e756"}}}}, 0x0)
r1 = gettid()
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_extract_tcp_res(&(0x7f0000003000-0x8)={0x42424242, 0x42424242}, 0x2, 0x2)
r2 = perf_event_open(&(0x7f0000001000-0x78)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20000000, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r1, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = semget$private(0x0, 0x4, 0x1)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
semctl$SEM_INFO(r3, 0x3, 0x13, &(0x7f0000000000)="")
perf_event_open(&(0x7f0000000000)={0x0, 0x78, 0x0, 0x0, 0x71, 0x0, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x2)
r4 = openat$ptmx(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f70746d7800", 0x4, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = accept4(r0, 0x0, &(0x7f0000d14000-0x4)=0x0, 0x80800)
getsockopt$inet6_tcp_int(r5, 0x6, 0x14, &(0x7f000019d000-0x4)=0x0, &(0x7f0000da6000-0x4)=0x4)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TCGETS(r2, 0x5401, &(0x7f0000002000-0x24)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000005000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$PIO_FONT(r4, 0x4b61, &(0x7f0000005000-0x6e)="ae3dd02016c48d42c35d2402e491237169c62bbedf25671c01000800852bfe8a54c1f404782283029c11851a72e6a4e351233147fd6fbcc0b5e3000000000000000313a32c24df9f2b4590c88297a906170700000000000000013c54e8496b8838a562a900665e57dff97122ff38")
ioctl$TIOCTTYGSTRUCT(r4, 0x541a, &(0x7f00008ef000-0x1a)="0000000000000000000000000000000000000000000000000000")
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:10 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x968, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = fcntl$getown(r0, 0x9)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0xffff, 0x0, 0x200000000, 0xf9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r1, 0xffffffffffffffff, 0xffffffffffffffff, 0x8)
pipe2(&(0x7f000069f000)={<r2=>0x0, <r3=>0x0}, 0x80800)
unshare(0x20000000)
clone(0x1084000, &(0x7f0000b22000)="ef", &(0x7f0000f13000)=0x0, &(0x7f0000962000-0x4)=0x0, &(0x7f000022a000-0x2)="0531")
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX(r2, 0x84, 0x6e, &(0x7f0000d6d000)=[], 0x0)
getsockopt$inet_sctp6_SCTP_GET_ASSOC_STATS(r3, 0x84, 0x70, &(0x7f0000421000)={<r4=>0x0, @in6={{0xa, 0x2, 0x0, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x1, 0x80, 0x7, 0x200, 0xc00, 0x100000001, 0x2, 0x3, 0x912b22f, 0xa7ea, 0x0, 0x6, 0x0, 0x10001]}, &(0x7f00003bb000)=0x108)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp_SCTP_PR_SUPPORTED(r2, 0x84, 0x71, &(0x7f00007e6000)={r4, 0xd7}, 0x8)
mmap(&(0x7f0000071000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$EVIOCGUNIQ(r3, 0x80404508, &(0x7f0000eed000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
sync()
ioctl$TIOCGSID(r3, 0x540f, &(0x7f000065c000)=0x0)
r5 = getpid()
r6 = gettid()
fcntl$setown(r2, 0x8, r6)
setpriority(0x4000000000000, r5, 0x8000000)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r7 = accept$ipx(r2, &(0x7f0000ff7000)={0x0, 0x0, 0x0, "000000000000", 0x0, 0x0}, &(0x7f0000eff000)=0x10)
ioctl$EVIOCGVERSION(r3, 0x80044501, &(0x7f0000578000-0x3b)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioperm(0x0, 0x1000, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$sndseq(&(0x7f0000001000-0x7)="2f6465762f736e642f73657100", 0x0, 0x40)
fcntl$getflags(r7, 0xf2fa493f2fe8f74c)
ustat(0x1, &(0x7f0000b0f000-0x20)={0x0, 0x0, 0x0, 0x0, 0x0})
clone(0x20003fd, &(0x7f00009d8000-0x3)="22b080", &(0x7f000072a000)=0x0, &(0x7f00004d7000)=0x0, &(0x7f000027b000)="0302")
2017/11/27 06:13:10 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$rfkill(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f72666b696c6c00", 0x0, 0x0)
syz_emit_ethernet(0xbe, &(0x7f0000fe6000)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, [], {{0x800, @ipv4={{0x5, 0x4, 0x0, 0x0, 0xb0, 0x0, 0x0, 0x0, 0x1, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, @local={0xac, 0x14, 0x0, 0xaa}, {[]}}, @icmp=@dest_unreach={0xb, 0x0, 0x0, 0x0, 0x0, 0x0, {0x25, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x11, 0x0, @loopback=0x7f000001, @empty=0x0, {[@end={0x0}, @timestamp={0x44, 0x14, 0x0, 0x0, 0x0, [{[@empty=0x0], 0x0}, {[@rand_addr=0x0], 0x0}]}, @ssrr={0x89, 0x1f, 0x0, [@remote={0xac, 0x14, 0x0, 0xbb}, @rand_addr=0x0, @broadcast=0xffffffff, @remote={0xac, 0x14, 0x0, 0xbb}, @multicast2=0xe0000002, @empty=0x0, @rand_addr=0x0]}, @lsrr={0x83, 0x13, 0x0, [@multicast2=0xe0000002, @rand_addr=0x0, @rand_addr=0x0, @multicast2=0xe0000002]}, @lsrr={0x83, 0x23, 0x0, [@multicast1=0xe0000001, @multicast1=0xe0000001, @multicast1=0xe0000001, @broadcast=0xffffffff, @local={0xac, 0x14, 0x0, 0xaa}, @multicast1=0xe0000001, @rand_addr=0x0, @multicast2=0xe0000002]}, @cipso={0x86, 0x13, 0x0, [{0x0, 0xd, "df21741175882f00000009"}]}]}}, ""}}}}}, 0x0)
getsockopt$inet_tcp_int(r0, 0x6, 0x9, &(0x7f0000416000)=0x0, &(0x7f00002c5000-0x4)=0x4)
2017/11/27 06:13:10 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair(0x7, 0x8a, 0x4d6, &(0x7f0000a63000)={<r0=>0x0, <r1=>0x0})
ioctl$DRM_IOCTL_RM_MAP(r0, 0x4028641b, &(0x7f0000ce0000-0x28)={&(0x7f0000000000/0x1000)=nil, 0x75a, 0x7, 0x8, &(0x7f00000e0000/0x2000)=nil, 0x8001})
r2 = socket$inet_dccp(0x2, 0x6, 0x0)
setsockopt$inet6_IPV6_FLOWLABEL_MGR(r0, 0x29, 0x20, &(0x7f0000670000)={@loopback={0x0, 0x1}, 0xfffffffffffffc01, 0x2, 0xff, 0x2, 0x3, 0x4e3d, 0x6}, 0x20)
r3 = accept4(r2, &(0x7f0000e92000-0x10)=@in={0x0, 0x0, @multicast1=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f000039b000-0x4)=0x10, 0x800)
getsockopt$inet_sctp6_SCTP_AUTH_ACTIVE_KEY(0xffffffffffffff9c, 0x84, 0x18, &(0x7f0000a62000-0x6)={<r4=>0x0, 0x1}, &(0x7f00005d1000)=0x6)
bind$unix(r1, &(0x7f000004a000-0x8)=@abs={0x1, 0x0, 0x1}, 0x8)
getsockopt$inet_sctp6_SCTP_RTOINFO(r3, 0x84, 0x0, &(0x7f0000730000-0x10)={r4, 0x200, 0x8, 0x2}, &(0x7f0000b21000)=0x10)
r5 = accept4$inet(0xffffffffffffffff, &(0x7f0000029000-0x10)={0x0, 0x0, @rand_addr=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f00009ab000)=0x10, 0x80000)
ioctl$DRM_IOCTL_AGP_ENABLE(r0, 0x40086432, &(0x7f00004c2000)=0x1000)
ioctl$sock_inet_SIOCSIFFLAGS(r2, 0x8914, &(0x7f0000002000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_addrs={0x2, 0x0, @rand_addr=0x100000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
getsockopt$inet6_mtu(r0, 0x29, 0x17, &(0x7f0000ef9000-0x4)=0x0, &(0x7f0000054000-0x4)=0x4)
fcntl$setsig(r5, 0xa, 0x7)
socketpair$unix(0x1, 0x1, 0x0, &(0x7f0000042000)={<r6=>0xffffffffffffffff, <r7=>0xffffffffffffffff})
r8 = accept4(r6, &(0x7f0000edf000-0x9)=@rc={0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0}, &(0x7f0000ed7000)=0x9, 0x80000)
recvmsg$kcm(r8, &(0x7f0000172000)={&(0x7f0000fa4000-0xe)=@l2={0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, 0xe, &(0x7f0000232000)=[{&(0x7f0000c33000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf5}, {&(0x7f0000704000-0x4b)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x4b}, {&(0x7f0000b04000-0xe3)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe3}], 0x3, &(0x7f000060c000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd2, 0x2}, 0x2000)
getsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX3(0xffffffffffffffff, 0x84, 0x6f, &(0x7f0000338000)={0x0, 0x7, &(0x7f00000f7000-0xa0)=[@in6={0xa, 0x3, 0x62e7, @loopback={0x0, 0x1}, 0x100000001}, @in6={0xa, 0x1, 0xfffffffffffffffa, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x6}, @in={0x2, 0x3, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0x2, @loopback={0x0, 0x1}, 0x8}, @in6={0xa, 0x0, 0x4, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x5583}, @in={0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, &(0x7f0000a3b000)=0x10)
accept4$ax25(r8, &(0x7f0000cec000-0x10)={0x0, {"00000000000000"}, 0x0}, &(0x7f00001b8000-0x4)=0x10, 0x800)
pipe(&(0x7f0000c5e000-0x8)={<r9=>0xffffffffffffffff, <r10=>0xffffffffffffffff})
writev(r10, &(0x7f000034c000)=[{&(0x7f0000493000)="bd", 0x1}], 0x1)
splice(r7, 0x0, r10, 0x0, 0x58, 0x0)
readv(r9, &(0x7f0000d36000)=[{&(0x7f0000346000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x59}], 0x1)
ioctl$sock_inet6_udp_SIOCINQ(r10, 0x541b, &(0x7f0000499000)=0x0)
pipe(&(0x7f0000d91000-0x8)={0xffffffffffffffff, <r11=>0xffffffffffffffff})
ioctl$sock_SIOCSIFBR(r10, 0x8940, &(0x7f0000afc000)=@generic={0x0, 0x0, 0x0})
splice(r9, 0x0, r11, 0x0, 0x6, 0x6)
writev(r6, &(0x7f0000051000)=[{&(0x7f0000d5c000-0x1001)="251d8fba494bc5cade28ef37d32184d0ab2a2bf47f8c5dbe43434631a81d557fd415044e664c2b76f2a75981118460b4aa786d9e99aae13213eb26de76ad6a0c5c261cdb2bf5a76f5786f83cc6c9e48a1368387f1c8c612f7439c0468f6ef928782fb86fdf06a11dcaa7172bcb4e9eacb2a55f7889aa76aa7ebf7c2d001cf8a0b39930824671e2e77e0880587cace4535369b7071a9fea702cf2d5edf596f25352354c6280c3068f2684dc854448435041e56e7820f9a63b0cf63babd365c7c71899e8b2e63465f5ac729545b8a75012673bac91b9dc96be04d0fc64ed354e89cbf5ae68a81e2818e04a4e902d1c3140158ed1757abcb9cc02d135c964d68fa5cb2d07199f0909f1ad8ac6f0b918fda35eb9b90553e853bfca0e55f0f49ac543ec00fbe7a7a08f3f691d06ff6de685fd59537fb12ae2e1885a5abcf7c4a376bdb1ac2b7a9100c004944f18aedae03b5c9cb75f439980a74dfcb821ac1746979e30e7b53d921c78375149367307816199e1f74c2502358c626faf8b7b10e153cb034a7ee66f47cdb8432dee8c9cd76b60b01ca245e67d9f940c6f7dd20c442e40d4e502d8a2751d4f203baecc69c4266a8b21aca75addc1aaa50d3e094c47d781c39b55cfdf83eceaa8cd3eae7f82621494adcaaa65fde25a7b8e6d4658173625f12defeaec3563df7bd8b41d1f495be90cc948c77fee40e6c50319545b3b5b6959882c3e3905908c7947417515d44df9d30df50b7c28659a32d7227896d624f2ad6a53e3795b210e61fb1cdbec5ecf908dabc0217f10dad4c88e95ec9e7ad8119d16b0fbe6054c867e27132f6600bde50494991245a9e680354d707ec78d7d61792b72a88e5f4a8576eceff4cd9c1642c85bdb34caefdbbc7b987ade905c0036aee546b2722dab7e0ac8319d007196fe4470e91890507ae1a36a0c643a06e3c886ccf7cd3b8eedf61b04ac439bf0cf41a90c641e6503a44c89e1813e3b63ec9e9942918badfcfb8b51bd380957ebf48a262313df7a552e6baa25fa3fca77232cadc430111b47e4eb63fbe7e9f33c6b8a8ea835098ad6a58fd251c6aab4119dad1e592cc98a857e666aa2885d9d9e8b9d4fc7004d38e0409c83b5f314dbdc9b6593bcc0db40e21d110dc71cdb20e6e98c2e5afc0dbf0f1926df5e5f0a103be79b853c13693fa729bb1e161fc208d0bbeda06e8c2bb7a0d24f57b4f07705f6a688130bad381c4f9b930bfc3e2996c531dc1a3330c691e21e1594cbdc000000000000000383d4592f45d98197e8c5165a598a2e97709554b506d8c6bff641772f47ab6feb7a1950550f31bc18e6457662807fe610914ee2dce9ae3cb1c48a328f00295e4af63bdd3bf695bf5489bf9dfcce96e56893c0395e6b3adc3948ebabb7f7d4a5098227470e729898b1961636d8d3484f0a178ebbdcf1d0e0cdf42e217d3f6f9181d87fa725c6cb801e2f6eda7b28cfca0087a74b302473a9abd4a574204f38a497e0d024cae96ac263739653f02f135d6625d9233d98a07a0e74f3560bdaba1d45e84223ef95fe947b7e546c24f465ce0c9358808eefbe386b7afe633a1575cdadc631482d4c969829064b53ef7a9508172a6081eace6a2d75d4ffbbb7df466d16aa21b3f08011b1a7c9425e236daf03e5c294af2df8d36f6d36639d27f7703a2a7d76e1da342debf526f7fe5d33dc44823124ffd18a5da13ae074c2d7dcacf28f9ff0996852d69e317e60a175585b049215e61699b68e109de4e5bfd3abb3dc98dbc16cb869336b7a39ba82a9fb68bebe9ad3a129b2dca5fcec9cf9fe5fa0401d46a57cb1f7f67d2468e5fd63264cd3afe6db23f3aea74cbe59935b79156a6155ae83a2d781e1acb303c099ff47734b831135fe90740e64012eebba7f9ef4436e826dbe84a094886401b15ee19a83f027cfbfe8b3c1e6c43e2f90f11a434e92978f19d7e6f991479608198a0089dd761ae5a672e5b0028aad05e3e7b9823656e4580d7e93f795860995bae948e53a437bd6ba3bd9d0de70bbb8042afaa8a9c36d256abd6b4c0ef23276061e8ac866fd66e11e493032e81e63fb1c9d86703f8a7d9e80c093dc869bcad1a5a69ef110ddb820810eaffc1eb282c0113fa4b81c9e88676e165b733725f963fb3f195dd94b4d2d2f7773902ff362bbb1e9c9556b5338d7eb28b05a6ef58c4262ff797e45b1d16c2982666034a741ae9b74fd8c8596c9eac41619896efcd67df68f290ffbd3f416e7e20d115e1bf59eaf7791d4ed7dceaa594470280dc0fa1764c38dc8eeff5bfd3d49af5580617d92222e9e502b04c8a677e4af7e4204f4ad090c19e90d4f193eda49fb5aa33c1c3b7d39d9382d7456eb0a715b4f7366fd4459d417cce09c7bbd7b4a173471a3fbfcecc6c302037f2bbef9a9d0d86459ef0f24291e6077ae56c5a5f9ac29847a6c30d94033009613c497294b95c7cb1225ae4f0c181c7956b5de1f6a8efe0afb70ca8d5d85e55f2787dad4728ec0adc67bc51f35ad54bc01611c179c0e2fe2a55c5c0022378a9804c9c30e0aaba17c251a59b90e1ca699ed845dd7bcb30dfca8d5000439dc2570d550c10591d53cfe6525a24f11cd599118acb0015dcda79a0ce1bb3dc93bddec93aeb5829f4b417dd854af205872f992ab17a14c83f64dcd0aac971163222e080b45017aee41a5d2a4ca63908655ea23dbeba4ca6b9357cb005d87098222844a62fd9de1b2cadd075640dcd57c814d84b1868cea9ae56ab37594e8fed9720c104f1ee87c00eaabbdd5a5ac5bcd6146f32b4feaa6ac6bb79da28880003e6c6df20e3d6f9c8cf23d701b8286badac91176b1f86a090ffc975178180895088f4e725dafc25cb362248513912bb3d643bf28dafd4115ad426c30697e80ef1add57172927cbda82e91d22141b627b8aeb9d88fee5e70c3e3c94bfe02136f7407f5b30178c041e6a9939a9c67a7ba7a32bec0228f6d2cfb48ef4ee812637e2f4c9e9f81a7f1ac65dd104cd936fdcfb5727152839c1dd2df6307b35e0940698eaadde4ccb8303cafdde6442594c0e968ae168dfd9786f83e04f764c145366d88e13da81edc6afbbe3f50253a17e531733921e573f79e57fefc428f8fcf5ef5366506eca525ce0d05bc3f32aae8cf9ac8ca1600b6b4d5b322b556b0d3a68c7dbf91d8d4bbbd1c6cf562badbb9250928c1a2879bc0c4d18b898e7957a8c5600bf9412f785cc9c03dc645e6ffd4fbd72dcacd46feaed1b2b0c74e7d3c8800f7df176d9473f5498f7ebe586a7c51f78a3aa0e7a54056defccc486ac6e978f44f5a3af8b81b14c960f32a20607a7e58e70420f5df8b2e5f5ac6fac68a335199008d92d898b138a02ca455e743cba6a47456c8f4885eb593797b7d58cb3aa29f06fff32e1c019f2fdcfe7d897ada04f394e15b49147ccd0285ac07d0bda0d185a504872b0513e309b7d00581c4edb72b7a277a5e7a5f22d9dc80c888b8f0e345cbb1d52107fb105f5fb85cb3142014dab1648c65fe61ae2f4a963c6a890fdd7459d5ccfbaaa6c516dc74a74d1280fd89ef84e30e44068365f9b3263adf6ad19195914af9e73dcbaa92fca8376eeecba692b7d41e197a90c58879dc2cf12e49237bc4b4eb8e4be09d6972bf720a5a96d2d6a4a53bdcc728e3e3fa4569c234a4e9f79e1167b6c6342dd8b59b7c41d891a15ffcf6dc00133aab79f1e2e395780c0ed2478d15dcf5661a7525fd1d0edb6c74543de1dedb16510cb187887cba5a538ea37604ae660af1225111aa0f2aec8c68c6bfaead06abfffd9090e246d578dc185308e9410c15e58d546c459b7b5a0879402f4735eb37a34026b328f4c0bd002aa9997418ee0bf72486425de8d59237e115712456839b972e222f2b646662295544301f5a4acad9de5bea6412aebea49e5db283d379a83e4c0f0a799ea1d3d623e7686620b662e2fe51b7f276501972c6d318ca7cdf5b3569f291e8eac6feae1a9bc92ceafabea05ec28e260b5f9c0718ce448edafc4500b6509c381622edf1235086467e0098744550e95cf0358b59ae02c930a903779b15a9624404d3faae01ad493e26545cecfad93047d9e37a63e32c9d04d4148bd728db4c747a5986ec64437bab7642c06fe08b6fdfe2f91c51ddb9445da9fecce9edee998c60f893e0dbb301a856c82b6550e0bab142c153c1c31c840eb8dc3a7540544f32dfcecce31906d2f7dfe723d7dfe47c9a6cb067517481729e0c77939f609ff39b292378313ee108af405812bb642cafb8964e6b55be469f8923d717dd6f7a53bb11c3703459a2d4ed88f75ca1e62c149c3e7c690f405b61b6e08fd94ccf7f2a30bb77436f3e78b849d267efaa85225f44fd0adbc95f8f182f2b1c98ddeae4fef8bf1b2d0050fe8b303971b16bdd3af7d94aa72067e0a833948a8493fe7e0877243c5b172cff4f5db317d6df122e025199a2e39fa130c981574790e5126574b55d38f83c9defa7d1789320051940ab8abe7ec4f069b318e8a7883d7ba453eac0c9a2279df6596bdabc147032eab2a38a15ce498a3530c8b9eda879f2c6ef52d3ae56cacd52940aa9a9dbbe4254ea76416c41ab3b414756f8b1c2f6483089576cf944c703f604ea8610f40768b5f0824a02c615afe107ee9fb5b5ec58005bf51ee69e0f2a83b8c72fe08549cc9521dbbfff266bcbf97488ea1ac8c09a9cd8a945095ceb7c83a8e9df7aa4ec870dc311dd03064daf2474bfad0ecd7dff1ddcb44db3bb6f24310d9f9e7279f5f66739d55911976dcfbb6e13726ea9d1b00d6ae7a4968b2e8d545f491e645aed77925025fafd7445cdddf00809da92730c3914bffb3c509191ba3d09e66c52063143e4f39ab0acd4ff556c2436bc74d820bb69dcd390d15cc613ba495f66b820b1b0f53d47c10f3d714c0912ac83bf8c0b489414e78ee9b8e78be27a06d0320556fda01faaad91c13eb07f311f7dce67856b2036eacbb5d887af84b3026f04935638bbf9275ff26118e1bf5948201fc0e146a49a0eaafb59f68ba40996e68dd151b8f106b651b7e1d0ed904cc5e8bccfbf1ce9710e9fbdf35ee4f05770c9f1fc986a815533a1c9c44cf1151b77dbf2488be7adc6acf6368e8ede057d6efd66d039634a8c7cd40226b4e277ad18c25981c355e18d907ad51792295e42f10b660673a6298f73e312e42dcdbfc1000ee4243a37017a56b664c7a50c56a841ec32822d915b6404f8473c6af13955291178fae42c38d3fc49dbd9e55043e764602e26340df661b62e4801c4a6cbfdede9fb5c1f3fb97c51742c165a708b56d5b45a9eae295ae5be9a72795a284563d15e712727cc62557ce3a5de6f2e5850b9a29dc370c616aae55980a6324ab87d5a9aac7037ba138cc2d9778057625d9a055ca042aba3ea2eafccf4859f27546df73f607098310bc4b50d2c753464f849e69196ff14a9833aed403af934963bf91943c04a2d21c1fe5e8868cdca41eb9b3c7be35afe7c79e7d9631bd67f86cca53314d9bee0855859730ae32caa7da9a78dae0c2626e531a17cc6d6a11116a2485dc9cc00a35c4f6e98c0ce9f77c6b78f4ba4eb6b320d48ee8d6d0403fc29cbf3b71f6a31900a559927c0576b7d7880d7d7a3076f521e0181f583b79b955363c6560e31ee23aee59b08314cc55623ffda5238d762ee7f55b469d5c9f9f45a889521682766c7b2e946120f3c142397223bd03354b27b0cc00d1629c8a523cb528f0d2e7ace8eeaa2ea4bc6b656c9ec8417d412bb6e213ce75b5dc216f8dc6084fa1dc4e8ab9b4fc8d1bd8985dc0171a15b3e3944b77d5", 0x1001}], 0x1)
2017/11/27 06:13:10 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0x10, 0x802, 0x0)
socketpair$ax25(0x3, 0x3, 0xca, &(0x7f000093a000-0x8)={0x0, 0x0})
write(r0, &(0x7f0000840000)="24000000200025d7001c070400ed190e024800000000000000ffffeb080001006c186ba9", 0x24)
2017/11/27 06:13:10 executing program 0:
r0 = syz_open_dev$sg(&(0x7f000005e000-0x9)="2f6465762f73672300", 0x38768d6d, 0x80200)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = gettid()
perf_event_open(&(0x7f00008b3000)={0x2, 0x78, 0x400000000423, 0x40000, 0x0, 0x0, 0x0, 0x4, 0x0, 0xe, 0xffc, 0x4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x4, 0x0, 0x100000008, 0x0, 0x0, 0x80b, 0x0, 0x0, 0x0}, r1, 0xffffffffffffffff, r0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfd4000)=nil, 0xfd4000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
connect$inet6(0xffffffffffffffff, &(0x7f0000fcc000-0x1c)={0xa, 0x0, 0x0, @loopback={0x0, 0x1}, 0xffffffff}, 0x1c)
r2 = accept(r0, &(0x7f0000b49000-0x10)=@ethernet={0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f00000dd000-0x4)=0x10)
r3 = syz_open_dev$sndtimer(&(0x7f0000fd3000-0xf)="2f6465762f736e642f74696d657200", 0x0, 0x0)
r4 = openat$kvm(0xffffffffffffff9c, &(0x7f0000fcc000-0x9)="2f6465762f6b766d00", 0x40400, 0x0)
pipe(&(0x7f0000d08000-0x8)={0x0, 0x0})
r5 = ioctl$KVM_CREATE_VM(r4, 0xae01, 0x0)
ioctl$sock_SIOCSPGRP(0xffffffffffffffff, 0x8902, &(0x7f00004f0000)=r1)
getsockopt$sock_cred(r0, 0x1, 0x11, &(0x7f0000b76000-0xc)={0x0, 0x0, 0x0}, &(0x7f00007cf000)=0xc)
clock_gettime(0x0, &(0x7f0000fce000)={0x0, 0x0})
ioctl$KVM_CREATE_VM(r4, 0xae01, 0x0)
syz_open_dev$evdev(&(0x7f00001c7000-0x12)="2f6465762f696e7075742f6576656e742300", 0x3bf, 0x80c0)
ioctl$KVM_CREATE_IRQCHIP(r5, 0xae60)
r6 = ioctl$KVM_CREATE_VCPU(r5, 0xae41, 0x0)
ioctl$KVM_CREATE_VCPU(r5, 0xae41, 0x1)
ioctl$TCSETS(0xffffffffffffffff, 0x5402, &(0x7f0000743000-0x24)={0x4000000000, 0x9, 0x200, 0x0, 0x0, 0x0, 0x0, 0x4000000, 0x0, 0x0, 0x0, 0x0})
getpgid(0x0)
ioctl$sock_SIOCGPGRP(r2, 0x8904, &(0x7f0000fce000)=0x0)
ioctl$KVM_GET_DEBUGREGS(r6, 0x8080aea1, &(0x7f000064c000-0x80)={[0x0, 0x0, 0x0, 0x0], 0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
readlink(&(0x7f0000d6c000)="2e2f66696c653000", &(0x7f000029f000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd6)
ioctl$KVM_SET_LAPIC(r6, 0x4400ae8f, &(0x7f00001e5000-0x400)={"8a927799b01a029f25061eda96dd379385fc78b28fcbf8eb8455a6fb67a8de46d4d436f5a01a47191dc792f414ac8437036bb34b6632c980073c4cdc084a1966c440f15811d016f5b50e90810603f10a2c83eb8c06219426b1b67e4bb4b3c5199cadd60d3f6fc72a7eb011b622072532229fbc9d9c4d1e045191ee2b0d584c8fd736ee3e7d73d5267b67a69251b1a8647e90692d30ecfb806326f17f0a7a24aa58b111193c88181907d958cb00807d63dfb58775215937ae2b62b46c6d5816f2fc52eeab0000000000000003252929e628ad2c34a0ef717fb2504d9bd66eabce002faf0512145c072f3087a5566c38fda729442c3ebd62e970a9a3eb242747993601a1a186b8376d39c69c4ce503b2638feeae79436a9708b3bb19f38377382ea7b4c9c2d674b80ef220109f8fa8200de4794547b4da6430ac512116d358949a298812c5d54017aa2fc8b814ecf28c41d4c83474ba93a8ad32b16371b42350bf984abb465228cfd848e54abc383d21d0a3315f1b8599efa1bf10bd30a1371757b138ed4a19db7c777995fd42ad446d9d2755f8552563c7639ce00da8ee3ece9ded52625aa3f0a1d7b76b32536d39eeae158271064ea79bddf1032b6e6ac794f37ec9d0c3bc4923cc7b631c6df64f28d75d99443d6653db3c6b7961190e8f82a233000001002ce4f47168ef93f01aef51c60000000000000006af34b21ed8437a371c0b427cd8c94f3952ee752b758eb5bff60a0c4f4793cd6638a2a23d68cb6e86925599fbc1361b8ce27b41d79027894b6c0003cc97a64088edf383a51eef947915369bdd4fc3cded2663d17515838f8fbba284c5b6ffc5251019eaee59d117d34c73e50fbd33ceb4508cfa4eecb7d6bb11fc4a114a13542dee77b2651783f6a5d9260036ccc70d695105d1ddb56f1ac26584547d8d5cecb3c672068cc7ab31ddc5ae0a253b587d712c6113acdf49fa0100de0f7b3717528e35b7e70733538a8eec8fb17616d2198d02ba4e7690fab7933b676deddb27755d6a8f29c643dfff0e4bd7c2b13b7a57a3120cb2cbb70200339dc0862dafad481a63e7f90d14c54803d8b100e0ad5cae9a0a7b2f329c3b0000000000000002f4b2eebf5bcd42688b08ff0a6575a31f81f01c13c7cb674ff41cb3c7f6896d41e86bda845164825e28b9fb719e695a9eb9710f924aefde1c96bebe4274594038347691a088f9bcaeba90315d3b3cfc24388cc15dffeda1bd610582c5b74fa6c6e789ce440f71871a5e8b85000000005806743e8e075b8624686feb21dbdb9afd74dd0067d82a72c099a2d52a599494388cb56cdb5ef9190980f9128e689e07e98b2ed59e1537fc9fe144dc2030374b0f5fcfd8f2ef242803f7bcbc07145f65b8912a4a335b858de8acf080852c49d353a00a5aac3d6a33e0075506a1fd25799f1637b1bafaf09954ef"})
ioctl$KVM_SET_MP_STATE(r6, 0x4004ae99, &(0x7f0000fc2000)=0x80000000008)
ioctl$KVM_UNREGISTER_COALESCED_MMIO(r3, 0x4010ae68, &(0x7f000033a000-0x10)={0x2, 0x100000, 0x0})
ioctl$KVM_RUN(r6, 0xae80, 0x0)
ioctl$KVM_SET_IRQCHIP(r5, 0x8208ae63, &(0x7f0000ae5000)=@ioapic={0x2, 0x0, 0x0, 0x0, 0x0, [{0x0, 0x3, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x100000000, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x1ff, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x3, 0x0, [0x0, 0x0, 0x0, 0x0], 0xffffffffffffffff}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x3, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0xffffffffffff0c27}, {0x0, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0], 0x0}]})
sched_setaffinity(r1, 0x8, &(0x7f00006c6000-0x8)=0x402)
2017/11/27 06:13:10 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000223000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x12, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfbe000)=nil, 0xfbe000, 0x7, 0x31, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x2, 0x0)
setsockopt$inet6_mreq(r0, 0x29, 0x1b, &(0x7f0000def000-0x14)={@remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0}, 0x14)
setsockopt$inet6_mreq(r0, 0x29, 0x1b, &(0x7f0000de6000-0x14)={@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0}, 0x14)
sendmsg$netlink(0xffffffffffffffff, &(0x7f0000013000-0x38)={0x0, 0x0, &(0x7f0000530000-0x30)=[{&(0x7f0000933000-0x153)=[{0x31, 0x2, 0x501, 0x2fc672f7, 0x3f, "91e60089397766c1cef6f8f095d3936687b572c4e8f7ba5e14b6a3078ec3027788"}, {0x89, 0xf4, 0x2, 0x8, 0x0, "ae818885c38112266b048285c6899d9b25568b77a8c8a65a253e33988220bdaeb4c3896aa7f10fce251809623d985702bd769c60abb3481f2dc390c0a43a03c2638d949f1cef869d4022dc930cd4bb67853117c37cb402599855a5569e65cd7ed881b472afabdbe8d6aa76403bf58517d3ea592db3bed9c8a0"}, {0x7a, 0x400, 0x100, 0x46, 0xffffffffffff7fff, "1f938bee48232765bb921780f7b5dbf353944f5b4e47d561df8c1b7cc7305905db8da133aa49eb9fa1991e4488b148e9a5ac28df81295ae4ec6582dad1348a88a31e77f7dacee95d4a0d24ddce15a11a185cad8e51b86021f744bfbfc8e6005d05d636885e966abc2fb2"}, {0x1f, 0x7, 0x8, 0x2, 0xffffffffc554815b, "07995744bfcb4c4435e8e730858b6e"}], 0x153}, {&(0x7f0000508000-0x1241)=[{0xa4, 0x3f, 0x200, 0x1, 0x7, "2809a5c35586ade8d8b1390fbca3d524448f44ab8edc31ee5d3de0da9a2b2618cef643391bc31cc1f56353818f23b8dc4943d4435c18c2c29ec353a24f0af1696789ef081eccf138553866e70c0618d1c9adc6513c925ec7d158950116f63f7b454f104d82bd35c489ef9bd1f167f305cbc0b305fe3b43bf92303c225acced3f353b92e426ad48acef31b6a5cb6329491fafe2e7"}, {0x9b, 0x5, 0x300, 0x4, 0x8, "b8ff2feeaa7a67342b2bb25c4444df888a89eb1751d6f94455c46cfe02cf1f7712177373845e79d1c6fed754383bc06a3421ce01d2c3e128bc290f00a5117cb73a4a676d1a241504dcf30ebc5779cd300ec4e56a60404b82c737b3b08ae2849128cb376aa296db021188af969f92833e100c728bba2b33adb13cef10712410b8088bb276e30062edc0972a"}, {0x1010, 0x6, 0x100, 0x407, 0x5, "0acd864b086a45b21d300a72c9c6875f218967d5b6e41a2f2c33dc618a510055fff5ec5b70758588b4376258d85ce409ea4266db4c6b4fd44b0048aa225f18d37d14c57304e0e7fe42a297b57577886a3e8033051de5747e94047c30923d98c027db5eaa776027432a3a3c2df328e0b853221fc27999c28b5b90e64474c43b94647ddc7f66ad254019b6a4f8197e9750d018f30115b808c3bd66a071727dc371b31dc77a29b2450b83a115758380e2b042c2ee85e511ffe3ee393e1ce03448e3d229dc4118ef9104e2e82ff8704aaa6b9185d00da12af5726ccdb7629e48d94d45c9077612fea807091bdd7f9a173de25617924bce27c02e3905cd128284425845b987e5a1f7e2bd08076c51de0129d740bb10087066743e9eb15814188d1b0e0d0962190ec5a0bd0550786ba636e0dd86ed52293c4a0fb1aecc05589b1277a725ac38ca2ecefb728c274a8c7f65bc319540b288c6a72ff2f0ab0920a57d95545b76d66c6c05f27b9765cd29f6e47a2b1eefacb73f78771e82a67f8c3d40aa9dee17ac0e5e4b8a2a7e615ba7f879c377d8230f0cbc8907f12d58ebdf8bfda545997d0825b7ba846ced07855053596d6363d6f3072a4a42219804be5e08380b9ab071b098ff4c452a0fa0958360bfbdd26cbe402d181133e7c84fe631c890c2bd8305f9556b1afcbc704322f09e5fb20e6f13cada3af4276430191c829016cf782cbd84ac6fe32b9c2248c1248c50b5511c2a24e826ec79a9f5bcb7f734639251a37826b39f4c6886c64e48f8a79bcb2c1b80951c44427351faf460e990b6eee868386436299f37d048d968591669ea2d9099f9a6d54af6e6bb83362b517366c7fe1b8bbbf20c5a4c22fa1ed3e72dddb7dec24c8c5086351fae73c7587bf73979200a4b1c2dc5002c55e4fe58e8224994e054f3f979ad20d52ac70b7d07104c418c9d9614eca4884a93c40e61561367e4c5cd83250b2c3818706938178dec19953ec2816a68518d6d5bd531b187e9f15fbdcf342a32c2d8a0bbf6e509489c542150493ea7db3d514c9e6c47ffb060e092d576070e0e74deba2211b4946d62d0652b368ef48c7fffab05468e9f0273c7113b1b426abe6fc71ad66065a259d433877af96c3cd7b8f05c9125b52842dfce24d77385c7de95bed5547eb0e64080e911f522f6a71bec497d6cd774fb01cd984400fb83325deacd71d616eceadd59c12fe7177f9a9db708feed27d4152d7b4ba7820f24fc22674bf8fe7b0f3660033beac140db5a52f0443a6f26de6d8e5bd4c066733387673c76aff85a3d9a6a5fca6f40181e22c77520acfd74538ae3c342e2813f255dbc1c9678f59ce5b4dfec68c35a9c39ef2afda7cf7e3e932ffc07173884ea7ac1e3e06f1013db616ff23187df776add9276bcec5701179ddd830b132c456056fa31e22e7fa58a4cd3fd56a57910dd9cbec892e0cbc1a76108eedbc5343c1f3eb83fcfa098afc3a597d70e0e7783ecb442b7039ad6bb6be4c56216a7a046bb27844d0a9fb9ab77577db8049c512ad0c9f1e2da522f19766e4e46f38f5925c0fd309b43517a96895a0512d046c50185a8f3168986f0ba983a783b93abde5a0bffa5861761fdbaa51f0978bfcdee1fa9c3c4498aed12474674b6d22b2f566b565d209cc5413e2ed00f6f237c443cf9caa95d269f0dbf8961b45403558c5a083abef46cbe5bdb2f34a0a5fe498a40fe0dfa18691669b973136fcce1bca34785a6288a765f1d564245960e2636813843cf07a786e30cc4f5123349913cc667346a64573f9692171e0d95a4eed04ca0c9db74429fb92cc243b4eba2e7653a6b479303a7eb01ab5135f9bfeef5087003f6be89a60acd3cfc6de0752c80c96dcb47b716e6048fa455cca0752c62b638f7ea846202c29e573e26f37707dd989772c831dfd765c1947440ce0adbb01659bb90b3b589b09bee57c024285d78d9e281e144ef6663dea35c511f3a934d6f1b26d8c747d65d7774f22370cd61e847e4a562a570a15a07604290f82db536bb3d257961fd780ce643ae16a3cc103dbcc045377dfd0647f411e3d5754b92adc584747187d45bac74bc4803044acd214af10d5023091c7fb50e6735824ad0d01da7658761017a7bbb9a8d7d21b3246afaf6e7ac77576fe3fd93051f33ad9da85bab077f538d2ccc5f43908c7298786830b3cedfee39305f3532225f2968ca8f4f28950780832ea593d12a90c829bcf60c40f5ee707f6d8679de50d7cf4f675d08a8e43624498da3f1e7a66d6a7ef93876e27d57407e94e5f11dfdc872c7745e8312a75065f0a76a468d561ca2d6f8b6764b96dace6cf45951339d1b65bc006b8651656d9586a669fdb45ec835e59daaf50f61e1ff4c95e1fd301f6a7aed856585990e762b96537cac3779b8ff4673a8c61562e6769299bc5e61d93770a8dee18382c2cadf711490cee4cb7b10ee872558a4df80712d5b730d7277ee220dc28dee3910b613e852a76dc756aea9381cfcff7412bbe5819e40bdf9c95d8c91d7a1af37efb255d47e0ef0bd1c66d487b1f235b6b4413d47f9ea273b72c42c1896c2f371b2dbda06a347c8efa536cff64a873396ae3c2f0bf98ec2ea147027d74ff2774583c5f5180651923ed3630a18e1a3236fdc4f9a7b8923350806b3020f6dc98416ac58cc831e4e11b361b2b415aeda99ee593b540cdca81698c250dc91cb0127794254647477c1954da17e90913cc9d952981d847b8b360e5381ff3e614754e2ecf9e544010e33383b5613e182cb1efcf861405503fb1411217847c3dbf78a0181a5169b004335aab522fe60ce20b8c4046307ba45d4f2332b35ebb6a43cf6407f7ca7c7488ad3e70095e7bb83f60a72939bb527b5435a07af574edc5e6fd83925ed74b95d8e85836b0f6c299dce9362f46f6cb05c1c7320d49291b266357677aa283b1699f46ea6703e770efa39e1b300c2d5e4f68658562f2427809fc6672f981e0f3daa86b4284f6735234c414ae85ff1fa1c64fb03e4975d0710a8c13c4f2bef2fdcc648e966c694784b7a789e7d53f59a92fce2548034138b1b7fa4fe022ef5dabe82b2707940288b799887d8411c67b3d3d1faf09fe62470cdf7ef4472be89bd67111e7c1db4c0ec7e3799bd375f443a64d8e600513604c8da56e04e30a448c730fc6e42a1673e1a1dbc916ed6985c73839059946948d088ba603aa7092a71f88e61afd2a792f46ad0534e3106a2607cf35c298803076a0fd541e97ba3810ac74c7a31f09281685795500735ed9c0b6407531aede65da38014087f511624bf4eddc4eceb58eb4fa380398c8e1b572a9969710d01e11e5f6185d188271ac4b7d5be379ef31facdece5f9d9bc6dc41540391dceb43aef1adf4c6faedf081d81246cf9b73ecc001fd328ec19bf7f3036c2d77d6b07024d98bc190e23d6b102f2ecfa13544aa43256ae2816506d795b06a25e5b711755a8db15062c98aff1dc5e15dcbd9228d2f73492f89ae9b13b44e0d2339f03554852367c2fbeb011ed3e3b810bd8226f8b4b3e8b8de8930793c8adf9dd30da584da64b81aabe9bdb9e718ecc0e7fa51efe10ac6611af72913faa247f5741998bd25289132cc17a8311d0087a47e029062c45a1b4c91a15fe67305c15fcb478f42120ac82c328ddb09b793b2a6644a88c4a3085b034e35c04355792b7a94b2b620168dd60547bc30cd0d98fff2e1f344f50177061ae47bdcfabbb67adf8a0292a6a377fabb2dcf76d5ebc9b60d6120616fafbe5dd791958e4fe5f045c2a3ec0e93c15392af98c43813a11b3f82c66b4557e163519abccac3f16cd20513c6278e9ada684ceb8248cd3670b3c0a8cf6b6c39c5c1c3d59ca413735f0ec0fec2c7dd07248d7a59d84aebea3ea37eeaea81d99b1a1a9cb33d738a7f71c97d4b0d9fd6a62dc73e0337828733a832649d20867d1ec503ef31b333c1ffd54fccbf92e2eaf1d5067b9459093c9bd2835fae069296b571e514106a65d5df91623aeb7d6403e298c823f6a372ef908abcccf25c398a31aa5024e6e8c4fbb1a113063636bedef10c7491166488dcc96dc772b9db44845db20bf8a75996ed366f6e14f24f0b7c48fc6c86db5bcdf67f7bc57ec65abcf224270cce8f0b34046471f62dbd607b0d47cc523e72df11e6a474a43f238790d7667f10f613e92553536bccb4a8f4d46d267640c4d66b45f1deb524a8c34a651bad46b837ac881d0ea978c4b75285bbaf1a2b72b58ad08995944b7155909936b49d0822bf091a7341dfeeaad0f6c09bf1fe75a5db2d957adf9aae9f991e80514a1acc97a9c0683e5a1ce412574a5531fbd7ac775352fa3e33dfc5b7ad9799b4701a651e360442f41df0eae0a7989e3be71cd9d9a810fb6c84a9c24a72f86ea45db7968080017fd4ec2c1a6a59a0ff01be6595626bd0cfa67de3ca8dd3ee3088adc0fcd2d5ab0d8e9cd76cb4bce6d37302a986443ec4bf01c80b37f71392f5e06e40a318b9187cbbb369853d25490ee9ff042eef38001ce63ebbf7249d9207e940b05027568da79f543b1ea01ed4d53db0eef456163ecf19f361ec6abe969c38c96f9d7c5aa951473fad94300333c5dc0bbe254074647bfff3f9732ed11973e62a5ed88949471f5ed97a859134f97ca8c975f19bd258ce5287e3fa2d2d976206f2d262c64098f7596b4b6db4b25f460eeb248219822c083674cad0a5bb27b6c16ac0996f4cf0f70eb192ee85b56f5e76bb94a7df770e4f2edf5b9469ca911a78d70236758de58486ecf5723f958097444b8a7ed484b8840607945e7f0779277d20846885941e0391a65333964d65d11b7a83c778662eb4492a6e5acc63c3796a29748f9b54a92a94e1596d71e390f7f8c20608c60e5c8b6c4b3e2651308183981aa95453d621c41898dfcffd5ad451e6da4c25e13ebb158369c2029059fa185a9b63f9edfd70d5bd5063cf015d0da21881c6db2458b67747c7bb7312f65defb80033cbf4d07f99806364efa1ec3295802ef6b117fb295805034d1fc4b4bb89540f4986e8aebb7d21a6f2afafd5216bcf2c6812269dabdde937216f1578fdc561bc31ddbac50b4a16e0ed8f88f740e265dc96334efa1c798da2fd0443164fa51214c3b766e99282910dcd06655f8b2c0b774da712a2226063219a950b5e16d1e15e17222895edf7de23eca7b6c95daa2254ccfbbcd88f5c36706b0ae02de71a4135dfa1fd7da923d13a154e026402ff6086024d37ac5016ae3da3a4e069513555b0588789c88d31779865a87ff2308342feb00cc023a5c842fb626da2ec8a5cffa7d71ffa8d4b49b25ad577bf772d6e1a0422a838b2bc729dc9875ae29452ed105924de953dd5712bb14cf9985c0546eebc2f2203f4ed66d83c5a888d34f41bd5317f1e08a4a2c8ad4122ed3e988af93a42049f9c267dd57183935c6e46725a353ecae56dd0eef31d96cc5173493dd9d020e272511e410a3d0f541b61a16a270cc4b51f7d96197b5207278e383d92f86f88065e89beb7e5097408fb33fcc1911fded914e7aa9a7cccaf8e4e486ba525bd06e130a5549d236ca9f49162dd7f1f15e3ed3c47accf9e0ec95ff0c0508c5dd6d6dcbf190bccd8032dcf7e19937f7ad762bc78da1d30d602a4b0e33960019680e02e2d0b414c94390bf7e4b0f919ada3c66635a1de27376e952ef9bb08bda5d7826e4f862942957420b5a1da83f097978e93befde1dc5153f736f93d738c4bb01661ebecf2c841bd69d89e291ae09e61981182f925b905feb70b58e36185daf62256615cc3ba26316f44b24738"}, {0x2a, 0x1, 0x300, 0x0, 0x100000001, "ee3d244736bbd809de48d038f6da03ebd643d0b8c16ea1fff507"}, {0xc8, 0x1000, 0x400, 0x81, 0x4, "0eee0c453cd98cfb24b7d1546891bd88f100b1938783b3ed1fa4c6453006e1efe39bf5b09eb40459387d89a3bfe4fbac173c3663265c400bcda20610f69f72998d43a8ab8d5ee6d13334dea4c08af2240ace1bfd7e94f89c39bb425032e3f4970256c2f9392ab725b2adad0da43c026fc1230e313b5ea8d9a00f27a223fedbb7246bcc304d14cf896fb706dc82501e9adccb6a4df78b8ef79b17638ea8e1fb099eebb379233fda22125890599d229c12a5d1a69eedfb0161"}], 0x1241}, {&(0x7f0000fd4000)=[{0xa9, 0xcf, 0x107, 0xf3a, 0x8, "04ad2f35280c69f8e400d9b02b129672e808d2a23b4d1727b20926efcb313790fdc82a8c29fbaf0c1dd4217d71bd6e9c61a08d6584cded01290c58ab158a1bae5c1f5792fd43ae9dd0886d5ed0a087a4197f3f92ed041e0127c36134ba37bbdbc45874991ef4cacca8b1cb94d250de7964689906df9909652778f81702609196d3eecd6631a035e069cb39f279b5794a4386eb8127e775efe9"}], 0xa9}], 0x3, &(0x7f0000018000)=[], 0x0, 0x0}, 0x3)
r1 = bpf$OBJ_GET_MAP(0x7, &(0x7f000001d000-0xc)={&(0x7f000079f000-0x8)="2e2f66696c653000", 0x0}, 0xc)
r2 = socket(0x40000000015, 0x5, 0x0)
setsockopt$sock_int(r2, 0x1, 0x8, &(0x7f00006dc000-0x4)=0x0, 0x4)
bind$inet(r2, &(0x7f000098a000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
socketpair$inet6_icmp(0xa, 0x2, 0x3a, &(0x7f0000e0d000)={0x0, <r3=>0x0})
sendto$inet(r2, &(0x7f0000ea8000)="a5", 0x1, 0x0, &(0x7f0000dfd000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r4 = socket$inet6_sctp(0xa, 0x5, 0x84)
getsockopt$inet_IP_XFRM_POLICY(r2, 0x0, 0x11, &(0x7f0000cc8000-0xe8)={{{@in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, @in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r5=>0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@loopback={0x0, 0x0}, 0x0, 0x0}, 0x0, @in6=@loopback={0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f000034b000-0x4)=0xe8)
ioctl$sock_inet6_SIOCSIFADDR(r4, 0x8916, &(0x7f0000727000-0x18)={@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x6, r5})
sendto$inet(r2, &(0x7f0000fc3000-0x1000)="ba671368d1434e64c449605bdbbfca6d2b9f8be49e9301442865319997d0efdb2f54b6a10c7327757482bfce945c2a91fb8dfafc1d3f56bc543ab87321e12cca08a744a2d128b00634bc882151d36809229a96bc3437ef159489384ade077ba295eac2882dbfd3781dd4d4e609c42628dbb709b3eb1fa030009045dd98b9e6d77b6cec9ceb685595d43995e0f04c32260943add79831e661c6a351dedc8b9d220fbf9fb6e44fb6a629ce9a82025124fec9f3ee751f7da0cd7e799be88ddbdac20b48e890ff81d7fa28c2d017d7932f2569038740461accd4582f576e4fdbd150a3399f8266bc19eb943648ad1ad81420ed6c382436e474390c8995e829e4f9df43eed85a60b9ee254e31eb62900857fa134e76cc64880334adbff069a2e5e647d2ed36a96b23834b6f6ca6b8113baf4cf30347fbb7ffc30aea99872cc0dba03b07d3347b2d257edbe2733c26b7337a79962d8ce85469e3bcbe0e4a48a6ae69613f2d4b5155b390ef67aa714b82b6313ee277cb8986eca5db2e97cb1ae2243bba80274f614ece521baef443394b4c161cb9ae926e21892578b49cfd6efe1cb1572148c10d92218ed73ec116a18de80ac42d2726a4523a764fc6dc356c5fbbf9d2c947ae3bc9a3dc76099f3257c8d5952876151b0326d8cb1d5683ee4ad5ded9a34c00ac1b03f34627ec18a7c2e92c87b7896549cfab5eb55fa85a970994bd4b22b5f0d045e241256d06f485a47b4a55ed389bc1734541232cd41908b5cfa4b8fcfcafce500a0c7ae99767713a98e7927aa69f6ccd7daea62f19ceb82559f41899c9a9aee99113e7e64b5f8b9824be9fdbfa4dd4995673d882bb4daeb64413b334e114965d2ba3cea8051e692508701b9400cb12eae457f8b8549944091b729160939918d8fcae611a5ded665f770db637487a236da1a58ba7566668651a77171fc4fe506496d19059343dbe4f426625d3f2b705f54581372361770bf5a9098a9fafefaf546426b294239ac33e3186e4d58ad2fa995a6ad4dc074e7cca11aead109563b2076c7c6e9f57ec63df960804e2e7f9d8444de9550cca3df7834d864e9777291c2e1f6205de2e43dc995ab8bb1515a365efc2830fa3e7a1dd137f550d6035212bc1f51c3b4ceea430df49ffc9210084ef156ad7e0d219efd6c116693735b44521d389969a3a65617cd2fd6e14060601cee4cd054cf36fe048b57d1d9ee3cad2a73552449926b4a6b03fbe9c0ec68357e1fbe52ed77b67f5870c0aefb7ee8236747e0d67a26725fb515544cbbe8464da94cfd8c0b94bb4e51a263b1749bd0a7cf651931f806d1b928d1f9994f1ad4d50e6a5cd7a8e4e687f8564fdacc864013d095ba9d5709eced3c28eabda476d177a7836400a01e02beeb5a6636d4064fdda344984ad8682d14b87c71727cb66be27d1d39191f4223c545b62fb4860262ba8076a65dbc194cee1df846c584b7bbe9dce6e6895b2cbbb64b03b55548b845cc3de2f939ef918421af9a5e9157e837651245299c03992d0ddee06bd22a31522aca0f309b1feccebc0b1c0ed9d21c19bfd15cd313ff64394fd6a10904890c9f6d646b026f27253e8f584c3ffd20ad67e8b62ed7676706d40bc5c80e376980b", 0x480, 0x0, &(0x7f000069b000-0x5)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
fsetxattr(r3, &(0x7f000091e000)=@random={"62747266732e00", "00"}, &(0x7f0000b2e000)="657468305d76626f786e6574307d2a40982b2a00", 0x14, 0x1)
recvfrom(r2, &(0x7f0000f6d000-0xa5)="", 0x0, 0x0, 0x0, 0x0)
r6 = bpf$BPF_PROG_GET_FD_BY_ID(0xd, &(0x7f00001ff000)=0xffffffff, 0x4)
setsockopt$sock_attach_bpf(r2, 0x1, 0x32, &(0x7f00003c4000-0x4)=r6, 0x4)
close(r1)
ioctl$sock_inet_SIOCDARP(r2, 0x8953, &(0x7f0000b31000)={{0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x0, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x4, {0x2, 0x3, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @generic="8cef19d21b8d72f729ad8ba59b420d6a"})
socketpair$inet6_udp(0xa, 0x2, 0x0, &(0x7f00001fa000-0x8)={0x0, 0x0})
getsockopt$inet_sctp_SCTP_DEFAULT_PRINFO(r2, 0x84, 0x72, &(0x7f0000c3d000-0xc)={<r7=>0x0, 0xfff, 0x30}, &(0x7f00000ef000)=0xc)
getsockopt$inet_sctp6_SCTP_MAXSEG(r4, 0x84, 0xd, &(0x7f000074e000-0x4)=@assoc_id=r7, &(0x7f0000d50000)=0x4)
getsockopt$inet6_mtu(r2, 0x29, 0x17, &(0x7f0000d73000)=0x0, &(0x7f00001c0000)=0x4)
sendto$inet(r2, &(0x7f0000905000)="", 0x0, 0x0, &(0x7f00002b4000)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
2017/11/27 06:13:10 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x968, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = socket(0x40000000015, 0x5, 0x0)
setsockopt(r0, 0x1000000000007fff, 0x7, &(0x7f0000907000-0x1)="3b", 0x1)
bpf$OBJ_GET_PROG(0x7, &(0x7f0000cfa000)={&(0x7f0000d4c000-0x8)="2e2f66696c653000", 0x0}, 0xc)
r1 = openat$cuse(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f6375736500", 0x1, 0x0)
write$fuse_interrupt(r1, &(0x7f0000003000)={0x10, 0x3, 0x0}, 0x10)
r2 = openat$kvm(0xffffffffffffff9c, &(0x7f0000852000-0x9)="2f6465762f6b766d00", 0x0, 0x0)
r3 = ioctl$KVM_CREATE_VM(r2, 0xae01, 0x0)
r4 = eventfd2(0xffffffffffffffff, 0x0)
eventfd2(0x4000000b, 0x800)
ioctl$TIOCGPGRP(r3, 0x540f, &(0x7f0000fcc000-0x4)=<r5=>0x0)
ioctl$sock_FIOSETOWN(r2, 0x8901, &(0x7f0000848000)=r5)
ioctl$sock_SIOCGIFBR(r0, 0x8940, &(0x7f00009c5000)=@get={0x1, &(0x7f000023b000-0xb5)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x4})
ioctl$KVM_CREATE_PIT2(r3, 0x4040ae77, &(0x7f0000afd000-0x40)={0x7fffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_CREATE_IRQCHIP(r3, 0xae60)
r6 = ioctl$KVM_CREATE_VCPU(r3, 0xae41, 0x0)
syz_kvm_setup_cpu$x86(r3, r6, &(0x7f0000e28000/0x18000)=nil, &(0x7f0000000000)=[@text16={0x10, &(0x7f0000af8000)="ba2000b0f0eeba610066b81d00000042efb800008e0c87e4670f01c800072c0f01b6cba966b8db0000000f06c80f21f866350800d0000f23f83e6567660f38dea419f79758603e3ef2ad", 0x4a}], 0x1, 0x4, &(0x7f0000af9000-0x10)=[], 0x0)
ioctl$KVM_IRQFD(r3, 0x4020ae76, &(0x7f0000ae9000)={r4, 0x0, 0x2, r4, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getpeername(r0, &(0x7f00000f0000-0x10)=@ax25={0x0, {"00000000000000"}, 0x0}, &(0x7f0000a04000)=0x10)
openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000afc000)="2f6465762f7667615f6172626974657200", 0x0, 0x0)
socket$inet6_sctp(0xa, 0x5, 0x84)
[ 1056.992987] sctp: [Deprecated]: syz-executor7 (pid 3410) Use of int in maxseg socket option.
[ 1056.992987] Use struct sctp_assoc_value instead
2017/11/27 06:13:10 executing program 3:
r0 = socket$inet6_udp(0xa, 0x2, 0x0)
r1 = dup2(0xffffffffffffff9c, r0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$LOOP_SET_CAPACITY(r1, 0x4c07)
ioctl$sock_SIOCDELDLCI(r1, 0x8981, &(0x7f0000000000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x4})
r2 = msgget$private(0x0, 0x80)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
msgctl$MSG_INFO(r2, 0xc, &(0x7f0000002000-0x9e)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_emit_ethernet(0x48, &(0x7f0000b5a000-0x48)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x800, @ipv4={{0x5, 0x4, 0x0, 0x0, 0x3a, 0x0, 0x0, 0x0, 0x411, 0x0, @empty=0x0, @rand_addr=0x0, {[]}}, @icmp=@source_quench={0x4, 0x0, 0x0, 0x0, {0x6, 0x4, 0x3ff, 0x100000000, 0x4, 0x1, 0x9, 0x5, 0x11, 0xdc6, @empty=0x0, @empty=0x0, {[@noop={0x1}]}}, "42e9dbde76d8"}}}}}, 0x0)
ioctl$DRM_IOCTL_CONTROL(r1, 0x40086414, &(0x7f0000138000-0x8)={0x2, 0x463a})
prctl$void(0x24)
2017/11/27 06:13:10 executing program 4:
mmap(&(0x7f0000000000/0xf5b000)=nil, 0xf5b000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f5b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f5c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
set_mempolicy(0x4000, &(0x7f0000f5c000)=0x13, 0xff)
r0 = syz_open_dev$usbmon(&(0x7f0000305000)="2f6465762f7573626d6f6e2300", 0xb7b, 0x90100)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x966, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
fcntl$getownex(r1, 0x10, &(0x7f00004fc000)={0x0, <r2=>0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x968, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2000000000000, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1000000000, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
keyctl$dh_compute(0x17, &(0x7f00009ea000)={0x0, 0x0, 0x0}, &(0x7f00008eb000-0xfe)="", 0x0, &(0x7f0000109000)={&(0x7f0000bd3000-0x7)="726d6431363000", &(0x7f00004a7000-0x3c)="", 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r3 = add_key$keyring(&(0x7f00009dc000-0x8)="6b657972696e6700", &(0x7f0000b67000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x0, 0x0, 0xfffffffffffffffe)
keyctl$get_security(0x11, r3, &(0x7f0000f66000-0x52)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x52)
process_vm_readv(r2, &(0x7f0000173000)=[{&(0x7f00003bb000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x50}, {&(0x7f0000d30000-0x9f)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x9f}, {&(0x7f0000555000)="00000000", 0x4}, {&(0x7f0000d90000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc9}], 0x4, &(0x7f0000094000)=[{&(0x7f0000c54000-0x74)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x74}, {&(0x7f000000e000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x3b}, {&(0x7f0000ec2000-0x8f)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x8f}, {&(0x7f0000b0b000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000229000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xaa}, {&(0x7f000003a000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x64}, {&(0x7f0000cf5000-0x28)="00000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x28}, {&(0x7f0000754000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb0}, {&(0x7f00000b8000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x56}], 0x9, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = syz_open_dev$sg(&(0x7f0000000000)="2f6465762f73672300", 0x0, 0x0)
perf_event_open(&(0x7f000002f000-0x78)={0x2, 0x78, 0x43, 0x2, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x1, 0x0, 0x0, 0xd, 0x0, 0x0, 0x0, 0x4000000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000c85000-0x8)=0x75)
bind$unix(0xffffffffffffffff, &(0x7f0000c8c000-0xa)=@file={0x1, "2e2f66696c653000"}, 0xa)
getsockopt$inet6_IPV6_IPSEC_POLICY(r0, 0x29, 0x22, &(0x7f0000f01000)={{{@in6=@loopback={0x0, 0x0}, @in=@multicast1=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@loopback=0x0, 0x0, 0x0}, 0x0, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000213000)=0xe8)
fstat(r4, &(0x7f0000934000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
r5 = getuid()
fchown(r0, r5, 0x0)
ioctl$DRM_IOCTL_MODE_GETCRTC(0xffffffffffffffff, 0xc06864a1, &(0x7f0000fee000-0x68)={&(0x7f0000e61000)=[0x100], 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, {0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, "8cfbc89fefc282b0e9b6d1b29d5500b5ff74b06ccbd9dee8c886586975b5446e"}})
r6 = socket(0x2, 0x80000, 0x189e)
getsockopt(r6, 0x4, 0x53, &(0x7f000000d000)="00000000", &(0x7f0000102000)=0x4)
socket$inet(0x2, 0x4000000805, 0x0)
r7 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000aa0000-0x11)="2f6465762f7161745f6164665f63746c00", 0x0, 0x0)
ioctl$sock_inet_SIOCSARP(r7, 0x40096101, &(0x7f0000021000)={{0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x0, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, {0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @generic="96a8918af8ccae10078acb5cbabb798f"})
shmget(0x2, 0x2000, 0xa00, &(0x7f00008d3000/0x2000)=nil)
2017/11/27 06:13:10 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
open$dir(&(0x7f0000e54000)="2e2f66696c653000", 0x0, 0x0)
r0 = getpgrp(0x0)
r1 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x832, 0x0, 0x40000000000, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r2 = perf_event_open(&(0x7f0000c36000-0x78)={0x7, 0x78, 0x3, 0xffffffffffffff81, 0x1, 0x4, 0x0, 0x1000, 0x0, 0x8, 0x3, 0x4, 0xceb, 0xa, 0x0, 0x80, 0x2, 0xa, 0xfffffffffffff800, 0x20102, 0x3cf, 0x3, 0x3, 0xffffffffffffa936, 0x8, 0x800, 0x0}, r0, 0x9, r1, 0x10)
r3 = epoll_create1(0x0)
socket$netlink(0x10, 0x3, 0xd)
epoll_wait(r3, &(0x7f0000de0000)=[{0x0, 0x0}], 0x1, 0x20000000ff)
ptrace$getenv(0x4201, r0, 0x4cc3aee9, &(0x7f0000dba000)=0x0)
r4 = dup3(r3, r3, 0x80000)
setsockopt$nfc_llcp_NFC_LLCP_RW(r4, 0x118, 0x0, &(0x7f0000766000)=0x1, 0x4)
ioctl$VT_RELDISP(r4, 0x5605)
ioctl$KDDISABIO(r4, 0x4b37)
ioctl$DRM_IOCTL_ADD_MAP(r4, 0xc0186415, &(0x7f0000567000-0x18)={&(0x7f00008ee000/0x1000)=nil, 0x3, 0x1, 0x20, &(0x7f000059d000/0x1000)=nil, 0x9})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getuid()
perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20001000, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r5 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000003000)="2f6465762f73657175656e6365723200", 0x1, 0x0)
ioctl$KDGKBLED(r5, 0x40045108, &(0x7f0000001000-0x1)=0x0)
ioctl$SNDRV_SEQ_IOCTL_CREATE_QUEUE(r5, 0xc08c5332, &(0x7f00007af000-0x8c)={0x7ff, 0x9, 0x9d, "71756575653100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x8, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ptrace$peekuser(0x3, r0, 0xd1)
ioctl$PERF_EVENT_IOC_RESET(r2, 0x2403, 0x20000000000002)
r6 = syz_open_dev$mouse(&(0x7f00000a2000)="2f6465762f696e7075742f6d6f7573652300", 0x1c, 0x40100)
socket$bt_bnep(0x1f, 0x3, 0x4)
keyctl$set_reqkey_keyring(0xe, 0xffffffffffffffff)
connect$netrom(r6, &(0x7f0000d92000-0x48)=@full={{0x3, {"b0b2b2564fe175"}, 0x100000001}, [{"93c7a631a57596"}, {"16cb18514c45d3"}, {"e74485190d9562"}, {"d5cabaf265098b"}, {"8a9356fd654f7a"}, {"59106172355088"}, {"5f6d371c45a872"}, {"2fffd90aec9717"}]}, 0x48)
socketpair(0x8000000000001e, 0x1, 0x0, &(0x7f0000702000)={<r7=>0xffffffffffffffff, <r8=>0xffffffffffffffff})
ioctl$KVM_DEASSIGN_DEV_IRQ(r7, 0x4040ae75, &(0x7f0000479000)={0xb8, 0x800, 0x5, 0x100})
read(r8, &(0x7f0000be0000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000)
write(r7, &(0x7f0000489000)="6983a8572ed5ba7ba73a733f0cd0c82f088f84e9119b8c598422f50e6c5452f8bb44057dae18f04a8534eb78c92913ce3ef2bd4e63391cfa4d81d62f28ff66fb522bb2f0bf02439dd2f7da69f8dbbe0bf148e467fa883fd604a2985c4f680bcee5e05eacc28e8ea247772d7afc82bbdb8b8f89ad0b17f18933787c3a875174f62b3800d9ceacf0c6ea99029feb6a649e26e12c6d3049af22ac6253f841f4e253cc90cd75b37598f961a1375327e3b9bd0a63326b5764647b35472e824b49e0d15f45aaa0841a63369f920c8e123d530771a81bff3f97cf3f8f653702cc2c69dba107000000000000003c", 0xea)
2017/11/27 06:13:10 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet6_int(0xffffffffffffffff, 0x29, 0x16, &(0x7f0000c13000)=0xc, 0x4)
r0 = openat$rfkill(0xffffffffffffff9c, &(0x7f000041d000)="2f6465762f72666b696c6c00", 0x4000, 0x0)
ioctl$TUNSETQUEUE(r0, 0x400454d9, &(0x7f0000000000)={@common="69703667726530000000000000000000", @ifru_names=@common="695a01007674691b0000e2ffffff0000"})
pipe2(&(0x7f0000a87000-0x8)={<r1=>0xffffffffffffffff, <r2=>0xffffffffffffffff}, 0x800)
mremap(&(0x7f0000ce0000/0x6000)=nil, 0x6000, 0x14000, 0x0, &(0x7f00006f3000/0x14000)=nil)
r3 = syz_open_dev$loop(&(0x7f00002a0000)="2f6465762f6c6f6f702300", 0x0, 0x44042)
r4 = memfd_create(&(0x7f000039f000)="69703caa7600000006000003ff2001", 0x1)
pkey_alloc(0x0, 0x3)
pwritev(r4, &(0x7f0000d4a000-0x70)=[{&(0x7f00003ce000)="8927cb911b59897d403cdc823cd5c9e288ff9fe71bb159ccfc1b71c2557db94b03446618780dfd0813916f45a02ff6c05d43d4ef", 0x34}, {&(0x7f0000958000-0x58)="4f7e4d0b48ac8012d266d0166ec9e45bc22b302b8cc87bebc47b287f0904b7f02006479249425d575e4808ff0395cc4bd74f1072df0aafe5b62a696f6da846e129ae8d8836ef832f32f263601f5d73c7297d6af018b73bd8", 0x58}, {&(0x7f0000c09000)="", 0x0}, {&(0x7f0000d7a000-0xf9)="e957cc5291337209d18ebda314d10a79b08ae551066c471c683c25fd508ccb08c2283db0b4da688f576101198d720efcabba8b5b4dee5c540562071558dcee2a5da3cffc44d6e29d2ba8a7539a9b2b59a7f48b8e565fb228c3503161a3131561e65d0d5a4fc423ec1dc74502df03be2503ee7d6195fb94f792c70499306d80451890a00a070e9f80b97cd2a97de9da1f71f9a7d8c4ed93025219667fb605ed569c46eb6fe11facca535ea939d7ded294913a758c4227fcdeb8e994169ab4054b1a749a4fd8980a49fb03122ff9c88692327e9d46e2071fabc3f6d6c21aba7534a554fd3d260ae03cfb4d3a0e706edf7343e870e91c0d74a727", 0xf9}], 0x4, 0x20003)
getsockopt$inet_sctp6_SCTP_GET_ASSOC_NUMBER(r1, 0x84, 0x1c, &(0x7f0000850000-0x4)=0x0, &(0x7f0000ebd000)=0x4)
ioctl$SNDRV_SEQ_IOCTL_GET_CLIENT_POOL(r0, 0xc058534b, &(0x7f0000055000-0x58)={0x8, 0xffffffff00000000, 0x2, 0xb81, 0xbd, 0x1, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
getsockopt$netrom_NETROM_T1(r1, 0x103, 0x1, &(0x7f00000fc000-0x4)=0x0, &(0x7f0000e1b000)=0x4)
bpf$MAP_CREATE(0x0, &(0x7f0000801000)={0xb, 0x800, 0x9, 0xe8, 0x0, r2, 0xfffffffffffffbff}, 0x1c)
r5 = syz_open_dev$loop(&(0x7f0000428000-0xb)="2f6465762f6c6f6f702300", 0x4, 0x3ffd)
getsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r2, 0x84, 0x9, &(0x7f0000ded000)={<r6=>0x0, @in6={{0xa, 0x2, 0x3, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x200}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x6, 0x40, 0x5, 0xb533, 0x20}, &(0x7f0000937000)=0xa0)
getsockopt$inet_sctp6_SCTP_GET_ASSOC_STATS(r1, 0x84, 0x70, &(0x7f00009a2000-0x108)={r6, @in={{0x2, 0x2, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x5, 0xb7, 0x3ff, 0x7, 0x0, 0x100000000, 0x0, 0x9, 0x7, 0x17, 0xfffffffeffffffff, 0x4, 0x5, 0x400, 0x9]}, &(0x7f0000242000-0x4)=0x108)
ioctl$LOOP_CHANGE_FD(r2, 0x4c00, r4)
ioctl$RNDZAPENTCNT(r2, 0x5204, &(0x7f00005b8000)=0x5)
sendfile(r5, r3, &(0x7f0000ae8000-0x8)=0x0, 0x100000003)
ioctl$KDSKBMODE(r1, 0x4b45, &(0x7f000079f000)=0x7fff)
r7 = gettid()
recvfrom(r0, &(0x7f0000a96000-0x38)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x38, 0x1, &(0x7f00004bd000-0x10)=@ipx={0x4, 0x0, 0x81, "d9f6dce42325", 0x8, 0x0}, 0x10)
getpgid(r7)
r8 = openat$sequencer(0xffffffffffffff9c, &(0x7f0000674000-0xf)="2f6465762f73657175656e63657200", 0x800, 0x0)
accept4$ipx(r2, &(0x7f0000d8a000)={0x0, 0x0, 0x0, "000000000000", 0x0, 0x0}, &(0x7f00001b8000-0x4)=0x10, 0x80800)
read(r3, &(0x7f0000911000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x20911046)
ioctl$LOOP_CLR_FD(r3, 0x1265)
ioctl$PIO_UNISCRNMAP(r8, 0x4b6a, &(0x7f000017e000-0x14)="fa23c1074965a4bc588b485ca0c8265dc876b2dd")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:10 executing program 1:
mmap(&(0x7f0000000000/0xfe9000)=nil, 0xfe9000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0x10, 0x2, 0x10)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r2 = syz_open_dev$sndtimer(&(0x7f000066e000)="2f6465762f736e642f74696d657200", 0x0, 0x0)
getsockopt$inet_udp_int(r0, 0x11, 0x1, &(0x7f000029c000-0x4)=0x0, &(0x7f0000b76000-0x4)=0x4)
r3 = socket$unix(0x1, 0x1, 0x0)
bind$bt_sco(r0, &(0x7f0000773000)={0x1f, {0xae, 0x80000000, 0x5, 0xd, 0x7fffffff, 0x19}}, 0x8)
socketpair$unix(0x1, 0x5, 0x0, &(0x7f0000096000)={<r4=>0xffffffffffffffff, <r5=>0xffffffffffffffff})
sendmsg$unix(r4, &(0x7f0000001000-0x38)={&(0x7f0000239000-0x8)=@abs={0x0, 0x0, 0x0}, 0x8, &(0x7f0000008000)=[], 0x0, &(0x7f0000001000-0x10)=[@rights={0x200, 0x1, 0x1, [r3]}], 0x1, 0x0}, 0x0)
ioctl$SNDRV_TIMER_IOCTL_GINFO(r2, 0xc0f85403, &(0x7f0000e26000-0xf8)={{0xffffffffffffffff, 0x3, 0x0, 0x2, 0x8}, 0x2, 0x2, "69643100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "74696d6572300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, 0x7fffffff, 0x0, 0x123, 0x61c, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
recvmsg(r5, &(0x7f000000e000)={0x0, 0x0, &(0x7f000008b000)=[], 0x0, &(0x7f000000c000)="", 0xfc13, 0x0}, 0x0)
ioctl$PERF_EVENT_IOC_PERIOD(r1, 0x40082404, &(0x7f00002b0000-0x8)=0xcd2)
pselect6(0x40, &(0x7f0000cc9000-0x40)={0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000cc9000-0x40)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f00000de000-0x40)={0xffffffffffffffe1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f00004da000)={0x0, 0x989680}, &(0x7f0000205000-0x10)={&(0x7f0000cc9000-0x8)={0x4}, 0x8})
r6 = getpid()
fcntl$getown(r5, 0x9)
io_setup(0x8, &(0x7f0000da4000)=0x0)
getsockopt$bt_BT_CHANNEL_POLICY(r0, 0x112, 0xa, &(0x7f0000ad6000)=0x9, &(0x7f0000645000-0x8)=0x4)
getpgid(r6)
write(r4, &(0x7f0000513000)="24000000200007f7de91031b001d00000100000c090009000000018600000000001eea", 0x23)
2017/11/27 06:13:10 executing program 0:
mmap(&(0x7f0000000000/0x790000)=nil, 0x790000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
unshare(0x400)
r0 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000709000)="2f6465762f6877726e6700", 0x0, 0x0)
getsockopt$inet_sctp6_SCTP_PEER_AUTH_CHUNKS(0xffffffffffffffff, 0x84, 0x1a, &(0x7f0000268000)={<r1=>0x0, 0xe9, "b2a88d9fedffbe3c90a1ef75c65b70855ee19a63a50d68ffb7d3548ca817e092a4f85514ad2a08632af5c619a41eeaad6f1270e76e8c9ba5e745e415ed48b98c7a6b3bbc7e01f25c3752e1216b1f351fb7ff344b810e48bed8c7f94221b0b635533e2377f3d2c18c76897ce972030de451c473eb38e844f8c75c5748036681e085fc70473e7c494565214e8dcb6bf030fca96da14fed1aadcd69a7ae21b354f500e2fa7c173d092c9bf37b1aef92d601ea51379c050f370a4b6e3c455abbb04c5a789e96e004b8b7934e30ea692cbe6e9d443ee3e5099b67c9465e1b5de0c6cbca94e1173021cef2f0"}, &(0x7f0000894000-0x4)=0xf4)
getsockopt$inet_sctp6_SCTP_DEFAULT_PRINFO(r0, 0x84, 0x72, &(0x7f000068a000-0xc)={<r2=>r1, 0x4, 0x30}, &(0x7f0000d40000)=0xc)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = syz_open_dev$sg(&(0x7f000080c000-0x9)="2f6465762f73672300", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x31, 0xffffffffffffffff, 0x0)
r4 = gettid()
perf_event_open(&(0x7f0000547000)={0x6, 0x78, 0xde, 0xfffffffffffffffc, 0xfffffffffffffffe, 0x0, 0x0, 0x1, 0x0, 0x80000000000, 0xfe, 0x0, 0x4e7, 0x0, 0x0, 0x0, 0x0, 0x5, 0x0, 0x0, 0x7ff, 0x3, 0x0, 0x603fd957, 0x55db, 0x200000, 0x0}, r4, 0x9, 0xffffffffffffffff, 0xfd)
ioctl$KVM_NMI(r3, 0xae9a)
getsockopt$inet_IP_XFRM_POLICY(r3, 0x0, 0x11, &(0x7f0000504000)={{{@in=@multicast1=0x0, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@empty=0x0, 0x0, 0x0}, 0x0, @in=@remote={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f00001e9000-0x4)=0xe8)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x200000, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
openat$vcs(0xffffffffffffff9c, &(0x7f0000107000)="2f6465762f76637300", 0x7fd, 0x0)
getsockopt$inet_sctp6_SCTP_GET_LOCAL_ADDRS(r0, 0x84, 0x6d, &(0x7f000094a000)={r2, 0xaf, "52df5df4f3fee6bd803188f78685b7403b8bfe3f7e1b9270a19d443247471d2141c3f33723b68e215deb7007a8fbd62f162df766c4c4ea03cf00f46f62b01b2c747135cbe94ab98ffc082a0957129de987d1ecc7befd736161cc93ace78e0b149d4b5df719261333366e91486aecc1111d19ea3f96a483456d26326b6c2dd987c54c9c77b294c17bb6dff5562d40985cafa655f487cc05d426afade71bf18a8469f62e1caaae553cdf3ab9e7cc076f"}, &(0x7f000015e000-0x4)=0xb7)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = openat$kvm(0xffffffffffffff9c, &(0x7f0000143000)="2f6465762f6b766d00", 0x87ffd, 0x0)
r6 = ioctl$KVM_CREATE_VM(r5, 0xae01, 0x0)
socket$inet6_udp(0xa, 0x2, 0x0)
ioctl$KVM_CREATE_DEVICE(r6, 0xc00caee0, &(0x7f0000ade000)={0x4, <r7=>r6, 0x0})
getsockopt$sock_timeval(0xffffffffffffffff, 0x1, 0x15, &(0x7f0000ae1000)={0x0, 0x0}, &(0x7f00007ba000)=0x10)
ioctl$KVM_SET_DEVICE_ATTR(r7, 0x4018aee1, &(0x7f0000727000+0x52f)={0x0, 0x1000000000000001, 0xa, &(0x7f0000ae1000)=0x0})
socket$unix(0x1, 0x1, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6(0xa, 0x800000000011, 0xa10c, &(0x7f0000001000-0x8)={<r8=>0xffffffffffffffff, 0xffffffffffffffff})
socket$unix(0x1, 0x2040000021, 0x0)
getsockopt$sock_cred(r8, 0x1, 0x11, &(0x7f0000674000)={0x0, 0x0, 0x0}, &(0x7f0000366000+0xec8)=0xc)
socket$inet6_icmp_raw(0xa, 0x3, 0x3a)
mmap(&(0x7f0000000000/0xefd000)=nil, 0xefd000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000efe000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:10 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x10000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$loop(&(0x7f0000002000-0xb)="2f6465762f6c6f6f702300", 0xffffffffffffffff, 0x400)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000001000-0x78)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0xffffffffffffffff, 0x3, 0x20000000, 0x8, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x80000003, 0x32, r0, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, r0, 0x4)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x40014, r0, 0x0)
mmap(&(0x7f000040c000/0x3000)=nil, 0x3000, 0x1000000000000003, 0x13012, r0, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pselect6(0x40, &(0x7f0000000000)={0x7fd8, 0x5, 0x8001, 0x1, 0x100000000000002, 0x7c, 0x3, 0x409}, &(0x7f0000001000-0x40)={0x101, 0x72f8, 0x43, 0x7, 0x10003f, 0x5, 0x29, 0x3}, &(0x7f0000002000-0x40)={0x100002, 0x5, 0xf7ffffffffffffff, 0x4000002, 0xffffffffffffffff, 0x2000000000080, 0x80, 0x1}, &(0x7f0000000000)={0x5, 0x3}, &(0x7f0000002000-0x10)={&(0x7f0000003000-0x8)={0x7fffffff}, 0x8})
socketpair(0x6, 0xb, 0x5, &(0x7f0000001000)={0xffffffffffffffff, <r1=>0xffffffffffffffff})
rt_sigpending(&(0x7f0000467000-0x8)={0x0}, 0x8)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x2b000)=nil, 0x2b000, 0x3, 0x32, r1, 0x0)
mmap(&(0x7f0000025000/0x3000)=nil, 0x3000, 0x1, 0x32, 0xffffffffffffffff, 0xfffffffffffffffe)
mmap(&(0x7f000002b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mount(&(0x7f0000018000)="2e2f66696c653000", &(0x7f000002b000)="2e2f66696c653000", &(0x7f0000019000-0x6)="000000ff731dd1fe", 0x200000, &(0x7f0000000000)="61")
creat(&(0x7f0000016000-0xc)="2e2f66696c653000", 0x0)
lseek(r1, 0x0, 0x400000000000000)
socketpair$inet6_icmp(0xa, 0x2, 0x3a, &(0x7f0000949000)={0x0, 0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x14000)=nil, 0x14000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = userfaultfd(0x0)
ioctl$UFFDIO_API(r2, 0xc018aa3f, &(0x7f0000004000)={0xaa, 0x0, 0x0})
ioctl$UFFDIO_REGISTER(r2, 0xc020aa00, &(0x7f0000009000)={{&(0x7f0000003000/0x3000)=nil, 0x3000}, 0x1, 0x0})
r3 = getpgid(0x0)
timer_create(0x2000000000000000, &(0x7f0000e40000-0x60)={0x0, 0x0, 0x4, @tid=r3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000006000-0x4)=0x0)
pipe(&(0x7f0000005000)={0x0, 0x0})
2017/11/27 06:13:10 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = epoll_create1(0x0)
r1 = socket$inet_udp(0x2, 0x2, 0x0)
mmap(&(0x7f0000001000/0xde7000)=nil, 0xde7000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket$inet6(0xa, 0x1000000000003, 0x2)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_PRIME_FD_TO_HANDLE(0xffffffffffffff9c, 0xc00c642e, &(0x7f0000000000)={0x0, 0x80000, <r3=>r2})
r4 = socket(0x1000000000000, 0x80000, 0xffffbffffffffffd)
ioctl$sock_netrom_SIOCGSTAMP(r4, 0x8906, &(0x7f0000bc7000-0x4)=0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x4000004, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000de8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_inet_tcp_SIOCOUTQ(r4, 0x5411, &(0x7f000087d000-0x4)=0x0)
ioctl$KVM_CREATE_DEVICE(0xffffffffffffff9c, 0xc00caee0, &(0x7f0000095000)={0x1, <r5=>r3, 0x0})
ioctl$EVIOCSKEYCODE(r5, 0x40084504, &(0x7f000075a000)=[0x1, 0x8])
setsockopt$inet_sctp_SCTP_PARTIAL_DELIVERY_POINT(r4, 0x84, 0x13, &(0x7f0000de8000)=0x1f, 0x4)
ioctl$DRM_IOCTL_RM_MAP(r3, 0x4028641b, &(0x7f0000000000)={&(0x7f0000000000/0x1000)=nil, 0x4, 0x6, 0x10, &(0x7f00000d1000/0x1000)=nil, 0x1})
setsockopt$inet6_mreq(r2, 0x29, 0x1b, &(0x7f0000de3000+0xe11)={@remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0}, 0x14)
mmap(&(0x7f0000de8000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000de9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_AGP_ALLOC(r3, 0xc0206434, &(0x7f0000dea000-0x20)={0x8, <r6=>0x0, 0x10000, 0x6})
mmap(&(0x7f0000de9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_AGP_ALLOC(r3, 0xc0206434, &(0x7f0000dea000-0x20)={0x2, r6, 0x2, 0x0})
accept4$unix(r2, &(0x7f0000de8000)=@abs={0x0, 0x0, 0x0}, &(0x7f00007dc000-0x4)=0x8, 0x800)
syz_emit_ethernet(0x66, &(0x7f0000324000)={@remote={[0xbb, 0xbb, 0xbb, 0xbb, 0xbb], 0x0}, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [], {{0x86dd, @ipv6={0x0, 0x6, "43f087", 0x30, 0x3a, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, {[], @icmpv6=@dest_unreach={0x1, 0x0, 0x0, 0x100000, [0x0, 0x0, 0x0], {0x7, 0x6, "1e87ab", 0x0, 0x3a, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, [], ""}}}}}}}, 0x0)
r7 = accept(r1, &(0x7f0000fb1000)=@llc={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f00001b5000)=0x10)
getsockopt$sock_timeval(r3, 0x1, 0x15, &(0x7f0000bd8000-0x10)={0x0, 0x0}, &(0x7f0000881000+0xf4f)=0x10)
epoll_ctl$EPOLL_CTL_ADD(r0, 0x1, r1, &(0x7f0000b33000)={0x0, 0x0})
epoll_ctl$EPOLL_CTL_MOD(r0, 0x3, r1, &(0x7f0000e8c000)={0x4, 0x0})
ioctl$sock_inet_SIOCGIFPFLAGS(r7, 0x8935, &(0x7f000091d000-0x20)={@generic="5061fe692168f7164eafa2bddc0bb820", @ifru_addrs={0x2, 0x2, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
epoll_wait(r0, &(0x7f0000f22000-0x9)=[{0x0, 0x0}], 0x1, 0x50d)
[ 1057.142499] sctp: [Deprecated]: syz-executor7 (pid 3410) Use of int in maxseg socket option.
[ 1057.142499] Use struct sctp_assoc_value instead
[ 1057.177876] QAT: Device 0 not found
2017/11/27 06:13:10 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
socket$inet6_tcp(0xa, 0x1, 0x0)
socket$inet6_tcp(0xa, 0x1, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$sg(&(0x7f0000974000-0x9)="2f6465762f73672300", 0x0, 0x0)
r1 = gettid()
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r2 = shmget$private(0x0, 0x1000, 0x1c01, &(0x7f0000c36000/0x1000)=nil)
shmctl$IPC_RMID(r2, 0x0)
shmctl$IPC_STAT(r2, 0x2, &(0x7f00005d6000-0x66)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$TIOCGSID(r0, 0x540f, &(0x7f0000e50000-0x4)=0x0)
tkill(r1, 0x7e)
perf_event_open(&(0x7f000001d000)={0x0, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1ff, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0}, r1, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = openat$kvm(0xffffffffffffff9c, &(0x7f0000017000)="2f6465762f6b766d00", 0x18001, 0x0)
ioctl$KVM_CREATE_VM(r3, 0xae01, 0x0)
perf_event_open(&(0x7f0000ce9000)={0x2, 0x78, 0xde, 0x800000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = socket$inet(0x2, 0xa, 0x0)
getsockopt$inet_IP_XFRM_POLICY(r4, 0x0, 0x11, &(0x7f0000312000-0xe8)={{{@in=@remote={0x0, 0x0, 0x0, 0x0}, @in=@broadcast=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r5=>0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0}, 0x0, @in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000030000)=0xe8)
setsockopt$inet_mreqn(r4, 0x0, 0x20, &(0x7f0000a03000)={@empty=0x0, @loopback=0x7f000001, r5}, 0xc)
ioctl$DRM_IOCTL_AGP_FREE(r0, 0x40206435, &(0x7f0000f06000-0x20)={0x0, 0x0, 0x0, 0xfffffffffffffffd})
r6 = syz_open_dev$sndseq(&(0x7f0000d6c000-0xd)="2f6465762f736e642f73657100", 0x0, 0x2)
ioctl$SNDRV_SEQ_IOCTL_CREATE_QUEUE(r6, 0xc08c5332, &(0x7f0000b0c000-0x8c)={0x3f, 0x0, 0x0, "71756575653000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
memfd_create(&(0x7f0000d91000-0xd)="2f6465762f736e642f73657100", 0x0)
syz_open_dev$sndseq(&(0x7f0000421000)="2f6465762f736e642f73657100", 0x0, 0x8000000040102)
setsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(r4, 0x84, 0xa, &(0x7f0000b4b000)={0x8, 0x4, 0x0, 0x7, 0x2a65, 0x1, 0xa5, 0x7, 0x0}, 0x20)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:10 executing program 2:
mmap(&(0x7f0000000000/0xf99000)=nil, 0xf99000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mkdir(&(0x7f0000b0c000-0x8)="2e2f66696c653000", 0x0)
mkdir(&(0x7f000002a000-0xa)="2e2f636f6e74726f6c00", 0x0)
mmap(&(0x7f0000f99000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$sock_cred(0xffffffffffffffff, 0x1, 0x11, &(0x7f00001b7000)={<r0=>0x0, 0x0, 0x0}, &(0x7f0000f99000)=0xc)
mmap(&(0x7f0000f99000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ptrace$peek(0x1, r0, &(0x7f0000f9a000-0x8)=0x0)
r1 = inotify_init1(0x0)
readv(r1, &(0x7f0000298000-0x80)=[{&(0x7f0000f99000)="0000000000000000000000000000000000", 0x11}], 0x1)
inotify_add_watch(r1, &(0x7f000001f000-0xa)="2e2f636f6e74726f6c00", 0x100000a)
rmdir(&(0x7f0000d24000-0xa)="2e2f636f6e74726f6c00")
2017/11/27 06:13:11 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = add_key$keyring(&(0x7f0000e67000-0x8)="6b657972696e6700", &(0x7f000012e000)={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x0, 0x0, 0x0)
r1 = add_key$keyring(&(0x7f00005fa000-0x8)="6b657972696e6700", &(0x7f000019d000)={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x0, 0x0, 0xfffffffffffffffa)
r2 = add_key$user(&(0x7f000000b000)="7573657200", &(0x7f000003a000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000008000)="5b", 0x1, r1)
r3 = socket$inet6(0xa, 0x5, 0x100000001)
getsockopt$inet_sctp6_SCTP_MAX_BURST(r3, 0x84, 0x14, &(0x7f0000423000-0x4)=@int=0x0, &(0x7f0000534000-0x4)=0x4)
add_key$user(&(0x7f000007c000-0x5)="7573657200", &(0x7f000026a000-0x5)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000cdc000)="a5082cf2f4ceaca5ca02e3b5edf729b3c7b8d338611b617ba90e8f0cba22b612f53718d5f832c52d71b3c9256c54b0fbad866ca800941353387a1f676b2cb384f47056995b2e21608fe4ce9ea19e2cae1c3b266ce8a2e04540216e404fdcc12f277b065a8fe56f2428680801d1af2dd178f4c8788c2d317d51d9483e881b8007d4e4c5da3c0bd937a2fe4b58ef9ad07e97ab671f2437296c9b1d98ddec002de54ff87ce432415112eb82cfc469f39a2af15edd80bf674fd7fcc0d89a9231d78d", 0xc0, r0)
r4 = add_key$user(&(0x7f0000037000)="7573657200", &(0x7f0000225000)={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000768000)="f9c4ab", 0x3, 0xfffffffffffffffe)
keyctl$dh_compute(0x17, &(0x7f000000e000-0xc)={r4, r2, r4}, &(0x7f0000269000-0x20)="0000000000000000000000000000000000000000000000000000000000000000", 0x20, &(0x7f0000b24000)={&(0x7f0000021000)="637263333200", 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
2017/11/27 06:13:11 executing program 1:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet6_icmp_raw(0xa, 0x3, 0x3a, &(0x7f0000000000)={0xffffffffffffffff, <r0=>0xffffffffffffffff})
mmap(&(0x7f0000000000/0xf9c000)=nil, 0xf9c000, 0x3, 0x20000032, r0, 0x0)
r1 = inotify_init1(0x80800)
getsockopt$sock_cred(r0, 0x1, 0x11, &(0x7f000003d000-0xc)={<r2=>0x0, 0x0, 0x0}, &(0x7f0000048000)=0xc)
fcntl$setown(r1, 0x8, r2)
clock_adjtime(0xa, &(0x7f0000cef000-0xd0)={0xfffffffffffffff7, 0x9, 0x2, 0x1, 0x2, 0x8, 0x2ac67e65, 0x4e60, 0x6, 0x5, 0x0, 0x0, 0x80, 0xbd3, 0xf7, 0x2, 0x400, 0x1, 0x155, 0x8, 0x8, 0x1, 0xfff, 0x0, 0x80, 0x2})
mmap(&(0x7f0000f9c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f9e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000968000-0xb)="2f6465762f6877726e6700", 0x80000, 0x0)
mmap(&(0x7f0000f9d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f9e000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KDGKBDIACR(r3, 0x4b4a, &(0x7f000094e000-0x81)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
mmap(&(0x7f0000f9f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = open(&(0x7f0000fa0000-0x8)="2e2f66696c653000", 0x3c, 0x12)
mmap(&(0x7f0000087000/0x4000)=nil, 0x4000, 0x7, 0x810, r3, 0x0)
mmap(&(0x7f0000f9c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
fcntl$getownex(r1, 0x10, &(0x7f0000f9d000-0x8)={0x0, <r5=>0x0})
pause()
ptrace$setopts(0x4206, r5, 0x0, 0x0)
r6 = dup3(r4, r1, 0x80000)
mmap(&(0x7f0000f9d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f00006a3000/0x800000)=nil, 0x800000, 0x1, 0x32, r3, 0x0)
ioctl$DRM_IOCTL_SET_UNIQUE(r6, 0x40106410, &(0x7f0000ba2000-0x10)={0xa2, &(0x7f0000f9d000)="6b6ec44fcfd4f759941690ace335c951a69f93b23bd4db3b9cc7d3421c157dd0f90acc124487d3f4738c3f94cae9007169cd96b23d1db5da82e34e5d0bdb85ea5f4c6037c18116cd7f175b777a5e30040f58ffc2808611151d699d89373669a163925d4b067dd62201e891c7cf5b544073cb386df34591eee344befb7244793b7e06bd323bda3cab7af59a842347ea69b2f1bf15e1883e0b1c8055017f0170ea5404"})
ptrace(0x4207, r5)
mmap(&(0x7f0000f9d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f9e000/0x1000)=nil, 0x1000, 0x3, 0x35, 0xffffffffffffffff, 0x4)
prctl$getname(0x10, &(0x7f0000f9f000)="")
mmap(&(0x7f000019a000/0x2000)=nil, 0x2000, 0x3, 0x1052, 0xffffffffffffffff, 0x0)
socketpair(0xa, 0x3, 0x3f, &(0x7f0000c06000)={<r7=>0xffffffffffffffff, <r8=>0xffffffffffffffff})
ioctl$PIO_UNISCRNMAP(r8, 0x4b6a, &(0x7f00002c6000-0xce)="6008ba630b1f136f8410378dce3bf239a62059b9dfef862b00ad1e462d87fe6c693cdf5e64ad0691b3b6d6ff336bf7445fb82aad12c82109ba87a723d20be96aaaf508d19e2dff05f89620144bd423fd0d79c3e2cc44f0cfd28b89255c97d9195809df660d4ae123bf149abe1606d57943670013de6a2d69805390c88d327f1c29581ffbe28c150c59e702f1fe936658e5a71bc25201630c32e4decfdb02893574961dec3526a2de3325648be224d23dc9068cbc0b813d25f05ae29a864f9b7b4876fd7e1bcd637c0e954cd3b2ed")
mmap(&(0x7f0000e71000/0x4000)=nil, 0x4000, 0x8, 0x40811, r7, 0x4000000000001)
ptrace$setopts(0x420a, r5, 0x3, 0x1a)
ptrace$getregset(0x4204, r5, 0x2, &(0x7f00006ea000-0x9)={&(0x7f000071e000-0x40)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x40})
mmap(&(0x7f000092b000/0x2000)=nil, 0x2000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
unlink(&(0x7f0000f9f000-0x8)="2e2f66696c653000")
[ 1057.282160] QAT: Device 0 not found
2017/11/27 06:13:11 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = getpgrp(0x0)
perf_event_open(&(0x7f0000c35000-0x78)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x402, 0x0, 0x2001000000000fa, 0x0, 0xfffffffffffffffe, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0}, r0, 0x0, 0xffffffffffffffff, 0x0)
sched_setaffinity(0x0, 0x8, &(0x7f0000976000)=0x79)
r1 = socket$inet6(0xa, 0x800000000003, 0x3)
bind$inet6(r1, &(0x7f0000967000)={0xa, 0x0, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0}, 0x1c)
r2 = syz_open_dev$sg(&(0x7f0000572000-0x9)="2f6465762f73672300", 0x0, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = gettid()
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0}, r3, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = socket(0x11, 0x3, 0x0)
close(r4)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$netlink(0x10, 0x3, 0x6)
r5 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000581000-0xb)="2f6465762f6877726e6700", 0x0, 0x0)
r6 = open(&(0x7f0000cef000-0x8)="2e2f66696c653000", 0x0, 0x0)
r7 = gettid()
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f0000001000-0x78)={0x5, 0x78, 0x0, 0x0, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x666, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20000000, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r7, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r8 = socket$inet6_sctp(0xa, 0x5, 0x84)
ioctl$sock_SIOCINQ(r8, 0x541b, &(0x7f0000000000)=0x0)
ioctl$sock_SIOCOUTQ(r8, 0x5411, &(0x7f0000001000-0x4)=0x0)
setsockopt$inet_MCAST_MSFILTER(0xffffffffffffffff, 0x0, 0x30, &(0x7f00008ac000-0x98)={0x0, {{0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, []}, 0x98)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_GET_ASSOC_NUMBER(r8, 0x84, 0x1c, &(0x7f0000001000+0xde7)=0x0, &(0x7f0000000000)=0x4)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sched_rr_get_interval(r7, &(0x7f0000002000-0x10)={0x0, 0x0})
getsockopt$inet_sctp_SCTP_DEFAULT_SNDINFO(r2, 0x84, 0x22, &(0x7f0000764000)={0x100, 0x0, 0x4, 0x6c, <r9=>0x0}, &(0x7f0000ff6000)=0x10)
getsockopt$inet_sctp6_SCTP_DEFAULT_SNDINFO(r6, 0x84, 0x22, &(0x7f0000c23000-0x10)={0x7ffffffffffff, 0x205, 0xa, 0x801, <r10=>r9}, &(0x7f00007bb000)=0x10)
getsockopt$inet_sctp_SCTP_GET_ASSOC_STATS(r5, 0x84, 0x70, &(0x7f0000890000)={r10, @in={{0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0xb7, 0x44, 0x8, 0x9, 0x9, 0x10001, 0x5, 0xfffffffffffffc00, 0x7, 0xe2a, 0x1000, 0x2, 0x4c, 0xfe8, 0x2]}, &(0x7f0000419000-0x4)=0x108)
2017/11/27 06:13:11 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2000000, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000002f000-0x78)={0x1000001, 0x78, 0x7fff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x20000, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0xfffffffffffffffc, 0x8, 0xfffffffffffffffd, 0x0, 0x100000000, 0x1, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0xa)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet_tcp(0x2, 0x1, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xde, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r1 = syz_open_dev$vcsa(&(0x7f00003a9000-0xb)="2f6465762f766373612300", 0x3ffff, 0x1)
bpf$BPF_GET_MAP_INFO(0xf, &(0x7f00000eb000)={r1, 0x18, &(0x7f000041c000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, 0x10)
r2 = bpf$PROG_LOAD(0x5, &(0x7f0000b4d000-0x30)={0x1, 0x2, &(0x7f0000ef3000)=[@generic={0x8db7, 0x0, 0x0, 0x0}, @generic={0xd395, 0x0, 0x0, 0x0}], &(0x7f0000b4d000)="737973654f00", 0x1, 0x80, &(0x7f000000a000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0, 0x0}, 0x30)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = syz_open_dev$vcsn(&(0x7f0000ef2000-0xa)="2f6465762f7663732300", 0x10000, 0x40000)
r4 = inotify_add_watch(0xffffffffffffffff, &(0x7f00000a3000-0x8)="2e2f66696c653000", 0x100)
ioctl$EVIOCGKEY(r1, 0x80404518, &(0x7f00007be000-0x97)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
inotify_rm_watch(r3, r4)
ioctl$KVM_SET_GUEST_DEBUG(r1, 0x4048ae9b, &(0x7f000047d000)={0x9fffe, 0x0, [0x10001, 0x22d, 0x64, 0xbe27, 0x102, 0x80, 0x6, 0x100000002000005]})
r5 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r6 = socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$SNDRV_SEQ_IOCTL_QUERY_NEXT_CLIENT(r3, 0xc0bc5351, &(0x7f00009bf000)={0x2, 0x5, "636c69656e7431000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x3, "a810c18262a17683", "55e7de8f981d08eee2db3e3a7bb763aebed3ec000000000000003c1741c66efe", 0x9, 0x3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000390000-0x11)="2f6465762f7667615f6172626974657200", 0x2, 0x0)
ioctl$sock_inet_SIOCADDRT(0xffffffffffffffff, 0x890b, &(0x7f0000001000)={0x0, {0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x0, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0})
setsockopt$inet6_tcp_TCP_REPAIR_OPTIONS(0xffffffffffffffff, 0x6, 0x16, &(0x7f0000b99000-0x28)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x2}, {0x0, 0x0}, {0xffffe, 0x0}], 0x5)
setsockopt$inet_int(r6, 0x0, 0x10000000000044, &(0x7f0000001000-0x4)=0x0, 0x4)
get_mempolicy(&(0x7f00006fa000-0x4)=0x0, &(0x7f0000076000-0x8)=0x0, 0xfffd, &(0x7f0000d07000/0xb000)=nil, 0x2)
signalfd4(r2, &(0x7f0000675000)={0x2}, 0x8, 0x80000)
r7 = bpf$MAP_CREATE(0x0, &(0x7f0000000000)={0x3, 0x4, 0x4, 0x5, 0x0, 0x0, 0x0}, 0x1c)
bpf$MAP_UPDATE_ELEM(0x2, &(0x7f00007f3000-0x20)={r7, &(0x7f000082a000-0x1)="", &(0x7f0000571000-0x1)="16", 0x0}, 0x20)
bpf$MAP_LOOKUP_ELEM(0x1, &(0x7f000015a000)={r7, &(0x7f0000dae000)="4e", &(0x7f00003fd000-0xd7)=""}, 0x18)
getsockopt$inet_sctp6_SCTP_ADAPTATION_LAYER(r1, 0x84, 0x7, &(0x7f0000b77000)={0x0}, &(0x7f0000736000-0x4)=0x4)
mmap(&(0x7f0000029000/0x3000)=nil, 0x3000, 0x0, 0x51, r0, 0x0)
ioctl$PERF_EVENT_IOC_SET_OUTPUT(r5, 0x40042409, 0xffffffffffffffff)
2017/11/27 06:13:11 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$TUNSETOFFLOAD(0xffffffffffffffff, 0x400454d0, &(0x7f0000001000)=0x3ff)
syz_open_dev$sg(&(0x7f0000613000-0x9)="2f6465762f73672300", 0x3e5, 0x408000)
accept4$unix(0xffffffffffffffff, 0x0, &(0x7f0000001000-0x4)=0x0, 0x0)
mmap(&(0x7f0000ae3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet(0x2, 0xb, 0x2)
r0 = openat$vga_arbiter(0xffffffffffffff9c, &(0x7f00008ea000)="2f6465762f7667615f6172626974657200", 0x100, 0x0)
getrandom(&(0x7f000001e000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xef, 0x0)
perf_event_open(&(0x7f00006d1000)={0x2, 0x78, 0xc31, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
setsockopt$inet6_MCAST_MSFILTER(r0, 0x29, 0x30, &(0x7f000093f000)={0xd7, {{0xa, 0x2, 0x1, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0xffffffffffffffff}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x2, [{{0xa, 0x1, 0x400, @loopback={0x0, 0x1}, 0x92b}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {{0xa, 0x1, 0x7, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x4}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, 0x190)
set_mempolicy(0x400a, &(0x7f00000b1000)=0x8000000008, 0x1ff)
r1 = perf_event_open(&(0x7f0000271000)={0x2, 0x78, 0x6, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x400, 0x358d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r2 = openat$cuse(0xffffffffffffff9c, &(0x7f0000002000-0xa)="2f6465762f6375736500", 0x84, 0x0)
fchdir(r1)
setsockopt$inet_tcp_TCP_REPAIR_WINDOW(r2, 0x6, 0x1d, &(0x7f000005e000-0x14)={0x7, 0x10000, 0x8, 0x8, 0x9}, 0x14)
write$fuse_notify_store(r2, &(0x7f0000002000)={0x28, 0x6, 0x0, 0x405, 0x0, 0x0}, 0x28)
symlinkat(&(0x7f0000001000-0x8)="2e2f66696c653000", r2, &(0x7f0000000000)="2e2f66696c653000")
set_mempolicy(0x1, &(0x7f0000d52000-0x8)=0x0, 0x7)
r3 = socket$inet_tcp(0x2, 0x1, 0x0)
setsockopt$inet_tcp_int(r3, 0x6, 0x1e, &(0x7f0000c83000-0x4)=0x1, 0x4)
bind$inet(r3, &(0x7f000089c000-0x10)={0x2, 0x0, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
setsockopt$inet_sctp6_SCTP_ADD_STREAMS(r2, 0x84, 0x79, &(0x7f0000b35000)=0x3, 0x4)
listen$netrom(r2, 0x1fd)
connect$inet(r3, &(0x7f00006b3000)={0x2, 0x0, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
close(r3)
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(r0, 0x84, 0xa, &(0x7f0000375000)={0x1, 0x0, 0x8000, 0x9, 0x9, 0x8, 0x16, 0x40, 0x0}, &(0x7f0000164000-0x4)=0x20)
getsockopt$inet_sctp_SCTP_MAXSEG(r0, 0x84, 0xd, &(0x7f0000a3c000-0x8)=@assoc_value={0x0, 0xfffffffffffffff8}, &(0x7f0000d18000)=0x8)
mmap(&(0x7f0000545000/0x4000)=nil, 0x4000, 0x2, 0x10, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:11 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$SNDRV_SEQ_IOCTL_CLIENT_ID(0xffffffffffffffff, 0x80045301, &(0x7f0000002000)=0x0)
pwrite64(0xffffffffffffffff, &(0x7f00009be000-0xae)="", 0x0, 0x0)
r0 = socket$inet(0x2, 0x1, 0x0)
ioctl$KVM_CREATE_DEVICE(0xffffffffffffffff, 0xc00caee0, &(0x7f00009f3000)={0x1, <r1=>0xffffffffffffffff, 0x562c482d56b2c74a})
ioctl$sock_kcm_SIOCKCMCLONE(r1, 0x89e2, &(0x7f0000975000)={r0})
r2 = add_key$user(&(0x7f00009ab000)="7573657200", &(0x7f000008d000-0x5)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000643000)="51b5b37e4cd3332bb31dfecd750c97f58804", 0x12, 0xfffffffffffffffd)
r3 = add_key(&(0x7f00007e8000)="7472757374656400", &(0x7f0000b39000)={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x0, 0x0, 0xfffffffffffffffc)
keyctl$link(0x8, r2, r3)
r4 = syz_open_dev$tun(&(0x7f00009ca000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0xa)
r5 = fcntl$dupfd(r4, 0x0, r4)
getsockopt$netrom_NETROM_T2(r1, 0x103, 0x2, &(0x7f0000ac4000-0x4)=0x852, &(0x7f0000d8c000-0x4)=0x4)
ioctl$TUNSETIFF(r4, 0x400454ca, &(0x7f00006d4000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_data=&(0x7f0000684000-0x20)="31c8bb5696fd144a96cf477c0317f5cfe9aecef7ae7cdce41552808ff35072f2"})
ioctl$sock_inet_SIOCSIFFLAGS(r0, 0x8914, &(0x7f0000630000-0x20)={@common="67726530000000000000000000000000", @ifru_flags=0x301})
r6 = socket$inet6_tcp(0xa, 0x1, 0x0)
setsockopt$inet6_IPV6_FLOWLABEL_MGR(r6, 0x29, 0x1b, &(0x7f000026d000)={@remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x20)
exit(0x1e)
write$tun(r5, &(0x7f0000bad000)=@hdr={0x1, 0x0, 0x0, 0x0, 0x81, 0x0, @ipv6={0x0, 0x6, "ea1c0f", 0xcd, 0x84, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, {[], @tcp={{0x0, 0x0, 0x42424242, 0x42424242, 0x0, 0x0, 0xb, 0x0, 0x4, 0x0, 0x6, {[@mss={0x2, 0x4, 0x3ff}, @generic={0x17, 0x11, "767364944af432fef85785455b8e14"}]}}, {"448be508476aee0a495824e5f088aceda452a586a9a17e7ea4e775adc928f249e77409cf7db180081b9a25922b1088ea272eb40ae9a739869328e94b0169de90f5bfc760877d99a74119c46651a5cf2980b6da67f1678f072011ea72c84681d04125bfe46d341c04867c833f2414aea64352f93166e1c0cfbfdf320e93360003eb552249f4a72a84fea0e91a1d0000010000000000c657a8b1e4f88aad6b08b9de"}}}}}, 0xff)
2017/11/27 06:13:11 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_open_dev$tun(&(0x7f00008ec000)="2f6465762f6e65742f74756e00", 0x0, 0x0)
pipe2(&(0x7f000014a000)={<r0=>0x0, <r1=>0x0}, 0x80000)
getsockopt$inet_sctp6_SCTP_LOCAL_AUTH_CHUNKS(r0, 0x84, 0x1b, &(0x7f0000007000-0xf9)={<r2=>0x0, 0xf1, "db1b9394ee11a78edb2c740d0f9a2f4dace49600f95881dd65dc8ef2ef7969e70f4cd73c600ffeb3a2f1062c8a70081656a46fee644895e1c27d1a19a599b743437a938f3707c17be5104f1a027394b28834c2908265229bab46206a570208f5b57de5862e000f5dec77ebb784dc3956b62856f63865cb514e2730860d330ff9da9e05c46cebb5084bfa104bc8eeb9b0f471195d4621fb13103aff19bc2367eb2608c878b85de83f34743a8fbcb7c84f50cecd848d8abfd4ab537c6deac0be03add5b619a9a26035064bab8dd21d7e14f8a7f79f768468c7bb3a1910c99db8ca06a0c6b606e36666e865ecfff44a7dc909"}, &(0x7f0000001000)=0xf9)
setsockopt$inet_sctp_SCTP_RESET_ASSOC(r1, 0x84, 0x78, &(0x7f0000006000-0x4)=r2, 0x4)
getsockopt$inet_sctp_SCTP_GET_ASSOC_ID_LIST(0xffffffffffffff9c, 0x84, 0x1d, &(0x7f0000005000)={0x8, [0x0, 0x0, <r3=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000005000-0x4)=0x24)
setsockopt$inet_sctp6_SCTP_AUTH_KEY(r1, 0x84, 0x17, &(0x7f0000005000)={r3, 0x7, 0x98, "14b29476535533bfefa4e535d6fca9440e20a89c8d873e746cf91a78ee8d9f1a95a556ad2f2c4ff4898eab6e721d764600c0356862507a2959f01de9ac4441c7e493cad58b33c539535d46179825764e0167beb297e1e5093a190a0711d23164f0544b890621688cf44f3ef78a818cad503fa71704f10dac418d20e152e8348d65caae0a57242943e0a1f239d1042abb15d8f2a2cebf1c52"}, 0xa0)
fanotify_mark(r0, 0x5, 0x8020001, r1, &(0x7f0000007000-0x8)="2e2f66696c653000")
r4 = socket$inet6(0xa, 0x80005, 0x0)
io_setup(0x1, &(0x7f0000008000-0x8)=<r5=>0x0)
io_submit(r5, 0x6, &(0x7f0000000000)=[&(0x7f0000007000)={0x0, 0x0, 0x0, 0x0, 0x2, r4, &(0x7f0000008000-0xde)="9d13a68900261535a46e467ae10bc7842be8da2db71ef4edb4de73ddb1367567771aa6cc2f1b0e1c93f0c175e2be6af91f7a49b959a4364d0567f93c42c4551ffff79af8e34de07493e3cc0fe09753c6debe4c8cdc2ecc157683640b17c3903ad4758c92eaca5142ffbac48e7612c518da545e04ff679cc14e657f88de5e95294815068b301cbbadc78658309061069ff65517d2f38e96e2a467deb04156fbbf40ebfbd48a7f0913b6cce71419af209682fb5b7186f300dbd6df520b70db5a103f1d15c485cf866ed2fbf5d2d8d1d50eb299e76bd4bbb1716b0d68813fcc", 0xde, 0x9, 0x0, 0x0, r0}, &(0x7f0000008000-0x40)={0x0, 0x0, 0x0, 0x6, 0x0, r4, &(0x7f0000004000)="8de2fe9ad77d732b3a19b9a419333b5507f8ed58f0445373392076d03cf9bab4224b6ad7b85713426135241f552537cb0de513d366bedafe8e0e8bf14735d1aa", 0x40, 0x9, 0x0, 0x0, r0}, &(0x7f0000005000)={0x0, 0x0, 0x0, 0xc90bce3e8a5a1c64, 0x9, r0, &(0x7f0000003000)="226e68002839be2173ac486b5ba5547cd1b98c58a8115c1f80e478ebdc50d8133b669258bacb7b2927dc62db181e89602646deeb262555262fdf05819a29431707f77f51b57850c625d9a73999c300f70ef34d265beee61079d2ee10269fce0cbc654c746d853f10d7960a8687", 0x6d, 0x6, 0x0, 0x0, r0}, &(0x7f0000001000)={0x0, 0x0, 0x0, 0xf, 0x4, r0, &(0x7f0000004000)="f94f7814f447e97d00c3051f3b939c53ff422f505680b665de1e39e141fc1f0a01982755fb436a22fa54b93ef1b02a9aae979f252d60969a4e5cacd030c35f3dd2f03d0d320c8eeeacb1e4075e3cbb13e6f4f48ca255b59b2bce46ffc6825142ea7eceddadfe3d41bf740f13dd6c8569346cd4b2b5dea5a398d5df1acf06ed3d82c9db5b1c1a363b3cb3acd3f1cbb6c4b632", 0x92, 0x8, 0x0, 0x1, r0}, &(0x7f0000008000-0x40)={0x0, 0x0, 0x0, 0x0, 0x7fffffff, r0, &(0x7f0000002000-0xb)="3a90761ba7f45e51770ad3", 0xb, 0x80, 0x0, 0x0, r0}, &(0x7f0000005000-0x40)={0x0, 0x0, 0x0, 0x3, 0x9, r4, &(0x7f0000008000-0xeb)="d453dfd90687cc4edbc081fcfc96439ffdbadea1b0ebdc9b1194ed72aa1592d526576600b8c5d71002233400196cd96d142a462958883aecd0d2c8add1dbbc720335bd7d82372afbeea09656911e0c383975a3e5b7507dc6b42e928db6630a591267789b14aafc2d77f33bea80c3292681d68a3d2c330e560960b96b9c847d4085c6cb06ee829432ae308aaea97f24e98f1f1c8d96fcb7db36153fee5c13744dd6c16ef081f4153b41ba5ee313eb95608d9355ff160a827ca68ba07098a7a176b8791b1a265adba50ffb78bcf2b174cf377cf96c57c943985a8e85637ee7d9e2774c48da2330962cb438d6", 0xeb, 0x0, 0x0, 0x1, r1}])
getsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX3(r4, 0x84, 0x6f, &(0x7f0000001000-0x10)={0x0, 0x1, &(0x7f0000001000)=[@in={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}]}, &(0x7f0000001000-0x1)=0x10)
r6 = bpf$OBJ_GET_MAP(0x7, &(0x7f000093a000-0xc)={&(0x7f0000b0b000)="2e2f66696c653000", 0x0}, 0xc)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000004000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
readv(r6, &(0x7f0000002000)=[{&(0x7f0000002000-0x6a)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x90}, {&(0x7f0000002000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000002000-0xa4)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa4}, {&(0x7f0000004000-0xc2)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc2}, {&(0x7f0000004000-0x58)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x58}, {&(0x7f0000000000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x28}, {&(0x7f0000003000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x93}, {&(0x7f0000004000-0xc5)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc5}, {&(0x7f0000002000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x9e}, {&(0x7f0000004000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x2d}], 0xa)
mmap(&(0x7f0000000000/0xffb000)=nil, 0xffb000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ffb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000ffb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
sendmsg$netlink(0xffffffffffffffff, &(0x7f0000333000-0x38)={0x0, 0x0, &(0x7f0000d1a000)=[], 0x0, &(0x7f0000326000)=[], 0x0, 0x0}, 0x0)
syz_open_dev$mice(&(0x7f00007da000)="2f6465762f696e7075742f6d69636500", 0x0, 0x0)
r7 = syz_open_dev$evdev(&(0x7f0000058000-0x12)="2f6465762f696e7075742f6576656e742300", 0xafd, 0x8000040000001)
write$evdev(r7, &(0x7f000004d000)=[{{0x0, 0x0}, 0x2, 0x0, 0x401}, {{0x2, 0x0}, 0x0, 0x0, 0x0}], 0x30)
2017/11/27 06:13:11 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = eventfd2(0x0, 0x0)
r1 = syz_open_dev$random(&(0x7f0000da5000-0xc)="2f6465762f72616e646f6d00", 0x0, 0x200100)
ioctl$RNDADDTOENTCNT(r1, 0x40045201, &(0x7f000070a000-0x2)=0x0)
read$eventfd(r0, &(0x7f000002e000-0x8)=0x0, 0x8)
r2 = open(&(0x7f00009f1000-0x8)="2e2f66696c653000", 0x50002, 0xda)
ioctl$KVM_SET_IRQCHIP(r2, 0x8208ae63, &(0x7f00006fd000)=@pic={0x1, 0xfffffffffffffc01, 0x7, 0x7d3, 0x5, 0xdda6, 0x7a1, 0x4, 0x1, 0x2d9a, 0x101, 0x8, 0x20, 0x0, 0x8, 0x0})
read$eventfd(r0, &(0x7f0000f00000-0x8)=0x0, 0x8)
write$eventfd(r0, &(0x7f000016b000)=0x0, 0x8)
syz_open_dev$sndseq(&(0x7f0000699000-0xd)="2f6465762f736e642f73657100", 0x0, 0x200)
syz_open_dev$usbmon(&(0x7f0000fe8000-0xd)="2f6465762f7573626d6f6e2300", 0x9, 0x10000)
r3 = dup(r0)
readlinkat(r3, &(0x7f0000a2d000)="2e2f66696c653000", &(0x7f00007d9000-0xcf)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xcf)
write$eventfd(r0, &(0x7f0000c02000)=0x401, 0x8)
bind$nfc_llcp(r2, &(0x7f00004a4000)={0x27, 0x40, 0x7, 0x7, 0xfffff00000000000, 0x8, "2277bd3ef0dfcd58cfb430fcbc32be83af9dce7ac810a7ef5e7e13c9329083abbc0d780954b0b9093eec3c2a6c8e0654d1313372c5a3cba3c4b7e085d8b2e9", 0x4}, 0x60)
2017/11/27 06:13:11 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$tun(&(0x7f0000001000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0xaeca354a9644f0c3)
epoll_create1(0x80000)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x100000000, 0xaf, 0x2, 0x0, 0x9, 0x0, 0x8, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = creat(&(0x7f0000b9b000-0x8)="2e2f66696c653000", 0x2)
r2 = syz_open_dev$sg(&(0x7f0000572000-0x9)="2f6465762f73672300", 0x100000000000000, 0x0)
r3 = gettid()
r4 = socket$inet6(0xa, 0x5, 0x0)
r5 = add_key(&(0x7f00002e4000)="7472757374650064", &(0x7f00000b3000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, 0x0, 0x0, 0xfffffffffffffffb)
add_key(&(0x7f000054a000)="6c6f676f6e00", &(0x7f0000aea000)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000e67000-0x21)="418f560800e9436c8d9e1ffe80e10000acc955dca401bb77d70f762cbb2921dd7a", 0x21, r5)
ioctl$sock_SIOCBRADDBR(r1, 0x89a0, &(0x7f0000902000)=@common="697036826e6c300ffffff20000000000")
ioctl$sock_SIOCOUTQ(r1, 0x5411, &(0x7f00009fc000)=0x0)
ioctl$sock_inet6_SIOCDELRT(r4, 0x890c, &(0x7f0000e15000)={@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, @loopback={0x0, 0x1}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
getsockopt$inet_sctp_SCTP_GET_ASSOC_STATS(0xffffffffffffffff, 0x84, 0x70, &(0x7f0000fbe000)={<r6=>0x0, @in6={{0xa, 0x0, 0x200, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0xdb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x4, 0x8000, 0x1, 0xfffffffffffffffa, 0x7, 0x9, 0x1ff, 0x8000424ed70d, 0x1, 0x1, 0xa8, 0x7, 0x3, 0x6, 0x9]}, &(0x7f00002eb000-0x4)=0x108)
ioctl$KVM_ASSIGN_SET_MSIX_ENTRY(r1, 0x4010ae74, &(0x7f0000414000-0xc)={0x0, 0x9, 0x10001})
setsockopt$inet_sctp6_SCTP_RTOINFO(0xffffffffffffffff, 0x84, 0x0, &(0x7f0000efe000)={0x0, 0x0, 0x0, 0x6}, 0x10)
r7 = perf_event_open(&(0x7f000000a000)={0x5, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x668, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x20000000, 0x8, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x0, 0x0}, r3, 0xffffffffffffffff, 0xffffffffffffffff, 0x1)
r8 = socket(0xc0000000015, 0x5, 0x0)
fcntl$getown(r0, 0x9)
openat$kvm(0xffffffffffffff9c, &(0x7f0000a15000-0x9)="2f6465762f6b766d00", 0x0, 0x0)
ioctl$sock_SIOCOUTQ(r2, 0x5411, &(0x7f0000509000)=0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r9 = perf_event_open(&(0x7f0000da9000)={0x2, 0x78, 0xe2, 0x0, 0x3, 0x0, 0x0, 0x5, 0x400, 0x1, 0xfe, 0x0, 0x0, 0x10, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xfffffffffffffffe, r7, 0x0)
ioctl$sock_SIOCGPGRP(0xffffffffffffffff, 0x8904, &(0x7f00001eb000-0x4)=0x0)
symlink(&(0x7f0000ff3000)="2e2f66696c653100", &(0x7f00002bb000)="2e2f66696c653100")
getsockopt$inet_sctp_SCTP_GET_PEER_ADDRS(r2, 0x84, 0x6c, &(0x7f000047a000)={r6, 0x0, ""}, &(0x7f0000890000-0x4)=0x8)
ioctl$PERF_EVENT_IOC_ENABLE(r9, 0x2400, 0x6)
setsockopt$inet_sctp6_SCTP_SOCKOPT_BINDX_ADD(r8, 0x84, 0x64, &(0x7f0000b23000-0xd0)=[@in={0x2, 0x0, @rand_addr=0x800, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x1, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x2, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x7}, @in6={0xa, 0x3, 0x7fffffff, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x100000001}, @in={0x2, 0x2, @rand_addr=0x5, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in={0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x1, 0xffffffffffffffff, @loopback={0x0, 0x1}, 0x1f}, @in6={0xa, 0x0, 0x200, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0}, @in={0x2, 0x1, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}], 0xd0)
setsockopt(r8, 0x114, 0x5, &(0x7f0000000000)="2a8e339cbc4a24aedd2186b32c816dacf2a44428548e0b86dd7b185541ad5b120dcacbb721e03620b6314eb2ee702ec6b4880000017461fb04872af3535d843c235ea45421b652132945730d3204fa6b034efdcddd42499d33e0987627030000000397f244910e1e5a2fc5fdb9a51cdaa3b3b1b7727f72f0d97598a83fa696fec62a8c801297041b8cdad3", 0x8b)
ioctl$sock_inet_udp_SIOCINQ(r1, 0x541b, &(0x7f0000cd7000-0x4)=0x0)
2017/11/27 06:13:11 executing program 5:
mmap(&(0x7f0000000000/0xf79000)=nil, 0xf79000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$vcsa(&(0x7f0000e19000-0xb)="2f6465762f766373612300", 0x4, 0x331400)
mmap(&(0x7f0000f79000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
accept$netrom(r0, &(0x7f00008d5000-0x48)=@full={{0x0, {"00000000000000"}, 0x0}, [{"00000000000000"}, {"00000000000000"}, {"00000000000000"}, {"00000000000000"}, {"00000000000000"}, {"00000000000000"}, {"00000000000000"}, {"00000000000000"}]}, &(0x7f0000f7a000-0x4)=0x48)
r1 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r1, &(0x7f0000591000-0x58)={0x26, "736b636970686572000000000000", 0x0, 0x0, "6362632863616d656c6c69612d61736d290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
setsockopt$ALG_SET_KEY(r1, 0x117, 0x1, &(0x7f00001ec000)="0a0775b0d5e383e5b3b60ced5c54dbb7", 0x10)
open(&(0x7f0000d67000)="2e2f66696c653000", 0x40, 0x8)
r2 = accept$alg(r1, 0x0, 0x0)
sendmsg$alg(r2, &(0x7f0000f75000-0x38)={0x0, 0x0, &(0x7f0000651000)=[{&(0x7f0000000000)="5dfbc33dc19cb870843df30273b381faa8d62a74eac93d925f73147683c80e60337191a58df0c2c6d5b870ca6e04caf4", 0x30}], 0x1, &(0x7f0000f79000-0x18)=[], 0x0, 0x80004}, 0x4041)
recvmsg(r2, &(0x7f00001f5000)={&(0x7f0000a06000)=@alg={0x0, "0000000000000000000000000000", 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58, &(0x7f0000234000-0x30)=[{&(0x7f0000be5000-0x5)="0000000000", 0x5}, {&(0x7f0000f72000-0x3a)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x3a}], 0x2, &(0x7f00008e6000-0x57)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x57, 0x8a}, 0x20)
2017/11/27 06:13:11 executing program 7:
mmap(&(0x7f0000000000/0xf6f000)=nil, 0xf6f000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f70000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f70000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f6f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_extract_tcp_res(&(0x7f0000055000)={<r0=>0x42424242, 0x42424242}, 0x80, 0xfffffffffffffff9)
r1 = socket$inet6_tcp(0xa, 0x1, 0x0)
mmap(&(0x7f0000f6f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f6f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f71000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendto$inet6(r1, &(0x7f0000f6f000)="8d8bb10ea490605cb7a65f5b3e5532ea70336b5f4397b53220ed3ac9a55dd5474274df6940cbd681bef2767e5b701fad57683ca62c0709c85c97c7ac106bc63b49ae363bb1f6bd0ec2e552b4accfce3e8f5f0b3c9e9531a6d6513991e84eaaa05e", 0x61, 0x20000004, &(0x7f0000f71000)={0xa, 0x3, 0x6, @loopback={0x0, 0x1}, 0x6}, 0x1c)
bind$inet6(r1, &(0x7f000022d000)={0xa, 0x1, 0x967, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x4}, 0x1c)
listen(r1, 0x1)
syz_emit_ethernet(0x66, &(0x7f00001c7000-0x66)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x86dd, @ipv6={0x0, 0x6, "a228af", 0x30, 0x6, 0x100000000000000, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, {[], @tcp={{0x0, 0x1, 0x42424242, r0, 0x0, 0x0, 0xc, 0x2, 0x0, 0x0, 0x0, {[@fastopen={0x22, 0xa, "73102cb98ba40149"}, @fastopen={0x22, 0x11, "7bf81dc66b653040e161b90ef19e4e"}]}}, {""}}}}}}}, 0x0)
mmap(&(0x7f0000f6f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f70000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f71000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f72000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = accept$inet6(r1, &(0x7f0000f73000)={0x0, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, &(0x7f0000f74000-0x4)=0x1c)
ioctl$sock_inet_SIOCSIFDSTADDR(r2, 0x8918, &(0x7f0000d3c000)={@common="6c6f00000000000000000000000b0000", @ifru_addrs={0x2, 0x1, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}})
getsockopt$inet_sctp_SCTP_GET_ASSOC_ID_LIST(0xffffffffffffffff, 0x84, 0x1d, &(0x7f0000a75000)={0x2, [<r3=>0x0, 0x0]}, &(0x7f00001c7000-0x4)=0xc)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = accept(r2, &(0x7f0000166000)=@nfc={0x0, 0x0, 0x0, 0x0}, &(0x7f00004bc000)=0x10)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f74000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$bt_BT_RCVMTU(r4, 0x112, 0xd, &(0x7f0000986000-0x2)=0x8000ffffe, &(0x7f0000f75000-0x8)=0x2)
mmap(&(0x7f0000f72000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet6_tcp_buf(r1, 0x6, 0xb, &(0x7f0000f74000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000afe000)=0x1000)
mmap(&(0x7f0000f71000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
accept4(r2, &(0x7f0000a58000-0xe)=@l2={0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, &(0x7f0000f73000)=0xe, 0x807fe)
mmap(&(0x7f0000f75000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f75000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f76000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp6_SCTP_MAXSEG(r2, 0x84, 0xd, &(0x7f00003fa000)=@assoc_id=r3, 0x4)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f75000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f74000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f74000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$sock_int(r1, 0x1, 0xf, &(0x7f0000f74000)=0x7fffffff, 0x4)
mmap(&(0x7f0000f73000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f76000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_extract_tcp_res(&(0x7f0000dd8000-0x8)={<r5=>0x42424242, 0x42424242}, 0x1, 0xffffffff)
syz_emit_ethernet(0x57, &(0x7f0000c37000-0x5f)={@local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, @random="de895db1468d", [], {{0x2000086dd, @ipv6={0x0, 0x6, "f80409", 0x21, 0x6, 0x0, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, {[], @tcp={{0x0, 0x1, 0x42424242, r5, 0x0, 0x0, 0x8, 0x11, 0x0, 0x0, 0x0, {[@timestamp={0x8, 0xa, 0x0, 0x0}, @sack_perm={0x4, 0x2}]}}, {"03"}}}}}}}, 0x0)
mmap(&(0x7f0000f74000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f76000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_SIOCDELDLCI(r1, 0x8981, &(0x7f0000f77000-0x12)={@common="64756d6d793000000000000000000000", 0xffffffffffffffff})
2017/11/27 06:13:11 executing program 2:
r0 = memfd_create(&(0x7f000081e000)="00", 0x2)
r1 = ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
socketpair$inet6_icmp(0xa, 0x2, 0x3a, &(0x7f0000f6d000)={0x0, <r2=>0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = socket(0x2000000014, 0x208000000003, 0x800000008)
recvmsg(r3, &(0x7f0000ddb000)={&(0x7f0000f41000)=@llc={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, 0x10, &(0x7f000062a000)=[{&(0x7f0000a53000-0x49)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x49}, {&(0x7f0000041000-0xac)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xac}, {&(0x7f0000e4e000)="0000000000000000000000000000000000000000000000000000", 0x1a}, {&(0x7f0000063000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd8}, {&(0x7f0000f0a000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}], 0x5, &(0x7f00007f6000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x86, 0x80000001}, 0x2)
getsockopt$SO_BINDTODEVICE(r2, 0x1, 0x19, &(0x7f00009b0000)=@syzn={0x0, 0x0, 0x0, 0x0, 0x0}, 0x10)
ioctl$sock_SIOCGIFINDEX(r3, 0x8933, &(0x7f0000b09000-0x28)={@common="697036746e6c30000000000000000000", <r4=>0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
epoll_wait(r0, &(0x7f0000a20000)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}], 0x7, 0xffff)
getsockname$netlink(r0, &(0x7f0000e3c000)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000188000)=0xc)
getpid()
bind$packet(r3, &(0x7f0000755000)={0x11, 0x0, r4, 0x1, 0x0, 0x6, @random="f16b2aec4798", [0x0, 0x0]}, 0x14)
sync_file_range(r3, 0x0, 0x2, 0x4)
getpeername$ax25(r3, &(0x7f00006ce000)={0x0, {"00000000000000"}, 0x0}, &(0x7f000011f000)=0x10)
syz_extract_tcp_res$synack(&(0x7f00007ab000)={0x0, 0x0}, 0x1, 0x0)
accept$packet(r3, &(0x7f00007ae000+0xf1e)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @empty=[0x0, 0x0, 0x0, 0x0, 0x0, 0x0], [0x0, 0x0]}, &(0x7f0000850000-0x4)=0x14)
ioctl$sock_SIOCGPGRP(r2, 0x8904, &(0x7f0000db3000)=0x0)
bpf$BPF_GET_MAP_INFO(0xf, &(0x7f000034d000)={0xffffffffffffff9c, 0x18, &(0x7f000068c000+0x4f6)={0x0, <r5=>0x0, 0x0, 0x0, 0x0, 0x0}}, 0x10)
bpf$BPF_MAP_GET_FD_BY_ID(0xe, &(0x7f0000e87000)=r5, 0x4)
writev(r3, &(0x7f000096c000)=[{&(0x7f0000ed0000-0xa8)="6a4ba0f24e5ab4fd19e6dd98f1c064511fac71aaad75784135af4c0a2e69c0daced1c2114538edbe4bb79faa5e2b733114e1e40abe4fc72b0000000000000000123e508df6f58368254f765b1cc1d4ad5585f14041b0e59e82744202eb99646bf4e6e1012a610c12d7d404af8040303a8b99fff2f155771e8f5f6f5db6a23e1a3ff58809f3ece0e939d091c5f24f1a4546ea2497a12d972a0bca89dd35eef2fdadc60ed62610596f", 0xa8}, {&(0x7f000016b000+0x609)="e9ecdede0eb0c40df397a3be0178a62903e8c806a5af0d1b43e6fdd6d2f09945", 0x20}, {&(0x7f0000d54000)="3095a43f189ed1975ba066e06f636d460ab0b837cfd743c56438f49562003040c7b2b4c17e299e118de019ae8d60a7ccf6a5e0ae6fd2999f9417dfa350b62a43f16a32b6636d73e64d0f48861a7d09684c470fac68d38ac1efa0b475fb99aa85112d08f456efda854ce1f2c2eb0d1afbd532589c4dbf3c867cd3c5639176f06bf37113643bfdf63f0a654a9515b56806278d91ac256e623fac1cb07ef13c935cb975204d2e48af0457f6dfa9728d627f913462412fc9df8991b8c3014c187fabd9292d22b8538ba691c7ebe7cbdd405d22acb852ce66c761ad7ecfe20e0c8c5d4947da2e657a9ae3c509c3352d963e568c4f9e94370edac621ff144d", 0xfc}], 0x3)
timerfd_gettime(r1, &(0x7f00008b4000+0x6a8)={{0x0, 0x0}, {0x0, 0x0}})
2017/11/27 06:13:11 executing program 3:
epoll_create1(0x80000)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000585000-0x10)="2f6465762f73657175656e6365723200", 0x0, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe12, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x4000000000000000, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x3, 0xffffffffffffffff, 0x0)
name_to_handle_at(r0, &(0x7f000037a000-0x8)="2e2f66696c653000", &(0x7f00004d5000)={0x7d, 0x2, "158a1b5b89aa4d69d0a2d50d38f41739905db7b77bb0a252e1ab671317abbff59f81f0e4cf940e18c3236290b7855a111e2ed702dc5eb3f9563eb4311c915f852c1ea43fed140c5fcecc753e2d8afb4ca05f152fd2d338c7bb4700514cbb7b59978bf06df201003800f49be0da63e45b9f8b15943d"}, &(0x7f0000026000)=0x0, 0x1400)
mkdir(&(0x7f0000b18000-0x8)="2e2f66696c653000", 0x0)
ioctl$TIOCSBRK(r0, 0x5427)
socketpair(0x3, 0x8000b, 0xffffffffffffffff, &(0x7f00005c9000-0x8)={0x0, <r1=>0x0})
exit(0x8)
r2 = syz_fuse_mount(&(0x7f0000d25000-0x8)="2e2f66696c653000", 0x0, 0x0, 0xffffffffffffffff, 0x80000000, 0x2000)
readahead(r2, 0x80, 0x4)
socketpair$unix(0x1, 0x5, 0x0, &(0x7f000006d000-0x8)={<r3=>0xffffffffffffffff, 0xffffffffffffffff})
ioctl$KVM_GET_REGS(0xffffffffffffffff, 0x8090ae81, &(0x7f0000758000-0x90)={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0})
r4 = fcntl$dupfd(0xffffffffffffffff, 0x402, r3)
openat(0xffffffffffffff9c, &(0x7f000060d000-0x8)="2e2f66696c653000", 0x0, 0x0)
fcntl$dupfd(r1, 0x4000000000402, r1)
exit(0xfffffffe)
creat(&(0x7f0000473000)="2e2f66696c65302f66696c653100", 0x0)
execve(&(0x7f0000b16000)="2e2f66696c65302f66696c653100", &(0x7f0000da0000-0x48)=[&(0x7f0000dd2000-0xa)="2876626f786e65743100", &(0x7f00005ee000)="2f6465762f73657175656e6365723200", &(0x7f00006f6000)="5b776c616e317573657200", &(0x7f00006ba000)="2f6465762f73657175656e6365723200", &(0x7f0000dc7000)="00", &(0x7f0000a94000)="2f6465762f73657175656e6365723200", &(0x7f0000126000)="2f6465762f73657175656e6365723200", &(0x7f0000035000)="2f6465762f73657175656e6365723200", &(0x7f000073d000)="2c70707030542400"], &(0x7f00006fa000)=[&(0x7f0000002000)="7573657276626f786e6574306d696d655f7479706500", &(0x7f0000e94000)="2f6465762f73657175656e6365723200", &(0x7f0000df0000)="2f6465762f73657175656e6365723200", &(0x7f0000efb000-0x10)="2f6465762f73657175656e6365723200", &(0x7f00002a3000)="2f6465762f73657175656e6365723200", &(0x7f000058c000-0x2)="2a00", &(0x7f000027b000-0x10)="2f6465762f73657175656e6365723200", &(0x7f0000025000)="5b6e6f646576212b2723232900"])
getsockopt$inet_sctp6_SCTP_GET_ASSOC_ID_LIST(r0, 0x84, 0x1d, &(0x7f0000573000-0x10)={0x3, [0x0, 0x0, 0x0]}, &(0x7f0000e93000)=0x10)
ioctl$TIOCLINUX6(r0, 0x541c, &(0x7f0000d22000)={0x6, 0x451})
writev(r4, &(0x7f00001be000-0x40)=[{&(0x7f0000bcf000)="0ac95b85cd85804731bcbe18d0d4a5cee9614b2c48b1fc9c33f63d9fcca7a8979548226b7203187614566c296bef5bd6376a0d98aafd290db4269bef19bf093ae82de795f1977718022128a3705554c6949de0a3db8596dfc44bf936dc5a70f6991070e8c94aa526210a8ed03ea29b3bc30044875b1dc4", 0x77}, {&(0x7f000087c000-0x92)="e9dea8d2cca0f9e265f6ef09c0200daf1147040fb02a90e70d4b7559d6a7360e519c45988d90e5e8aaee3dcdf0acf179fff4b485b718477e82de0061c0239d17e2e4a0f03b17645da11b0faeab8cc33ac7f3fc4b21cf39b3e745648e1c47482ebe2c1c4f1608e8fa15bbcaa34e89f0b8a93465602561915bd7c7b9bc104907a98f51ff3023d8f362c863609d83599adbdd0d", 0x92}, {&(0x7f0000b09000-0x81)="30d2f2b747022ae7b70bcea09f71835d9a2e35c221ebb9bc347cbc30433e3b789f8c61f57f6a494f0de3e6b1979a83dde1440fc94e27f9f037221e09790dbf2fd5aab8a42c9229c91f1945824f527970ab08b102c2f7651a1de6fbe59c0514be866d128253f82837b0c3b775cd3cdffef38e819ad0817309f213d969a3af35bdaf", 0x81}, {&(0x7f0000ddf000)="e63828990267b303a451baac585d3cc0fb94bb9c8f5e31d3fb2f795eaafcab5c99b8113111417e26cec70cbf0d68702ed0b4218a01590c03d9d2911d5118024742785ebf502264dbddc5e22fb26a87576860d75623c27c8faca92fc3f1686d6fcfbb28918b40914fe913b2e12dda893ca019caf0c81cee3958245f3b6ea4f0dca76b47cdfa04d49ef8c73b1a0462d82794ba921c6121b1d9cc91a4bc0d11bcceb13ed8a774dc31a4dd0ef042daf7c45b7caa4923fc3cf5ec0d53651a5ee8b9313ee4349929d3d4928db556f1ea61ebabfa9ec5e72ee39b7ec222a8a5e4f8009631c1c67e912dbf7186", 0xe9}], 0x4)
mincore(&(0x7f0000b15000/0x1000)=nil, 0x1000, &(0x7f0000cb4000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
ioctl$sock_bt_cmtp_CMTPGETCONNLIST(r1, 0x800443d2, &(0x7f0000429000)={0x3, &(0x7f0000582000-0x3c)=[{{0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0}, {{0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0}, {{0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0}]})
2017/11/27 06:13:11 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x8000000032, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xda, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r1 = socket$bt_rfcomm(0x1f, 0x1, 0x3)
setsockopt$bt_BT_POWER(r1, 0x112, 0x9, &(0x7f0000011000)=0x1, 0x1)
r2 = dup3(r0, r0, 0x7fffe)
recvmsg$kcm(r2, &(0x7f000074a000)={&(0x7f00002f9000)=@rc={0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0}, 0x9, &(0x7f0000a51000)=[{&(0x7f00009d7000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xad}, {&(0x7f0000788000-0xc)="000000000000000000000000", 0xc}, {&(0x7f0000ce7000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x47}, {&(0x7f0000d0f000-0x7d)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x7d}, {&(0x7f000028b000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x87}, {&(0x7f0000f6c000-0xda)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xda}], 0x6, &(0x7f00004ad000-0x56)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x5b, 0xff}, 0x22)
ioctl$KDSIGACCEPT(r2, 0x4b4e, 0x0)
socketpair$unix(0x1, 0x2, 0x0, &(0x7f0000493000)={0xffffffffffffffff, <r3=>0xffffffffffffffff})
ioctl$sock_SIOCETHTOOL(r3, 0x8946, &(0x7f0000370000)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000911000)=@ethtool_channels={0x3c, 0x69296596, 0x3, 0x6, 0x4, 0x3ff, 0xffffffffffffff8d, 0x5, 0x0}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
mmap(&(0x7f0000000000/0xaef000)=nil, 0xaef000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$bt_rfcomm(0x1f, 0x0, 0x3)
r4 = openat$kvm(0xffffffffffffff9c, &(0x7f0000ae9000)="2f6465762f6b766d00", 0x40, 0x0)
r5 = ioctl$KVM_CREATE_VM(r4, 0xae01, 0x0)
ioctl$KVM_CREATE_IRQCHIP(r5, 0xae60)
r6 = ioctl$KVM_CREATE_VCPU(r5, 0xae41, 0x0)
ioctl$KVM_CREATE_PIT2(r5, 0x4040ae77, &(0x7f000057b000-0x40)={0x3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$KVM_CREATE_PIT2(r5, 0x4040ae77, &(0x7f0000ca7000)={0x6, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r7 = fcntl$dupfd(r1, 0x406, r1)
syz_kvm_setup_cpu$x86(r5, r6, &(0x7f0000a23000/0x18000)=nil, &(0x7f0000dd6000-0x18)=[@textreal={0x8, &(0x7f0000554000-0x36)="f0809400486b0fbf49eeb007ee0f0636660f38386501baa100ed6526660ff85d00650f01ca3664f4ba4200b0bdee66b9860400000f32", 0x36}], 0x1, 0x0, &(0x7f0000442000)=[], 0x0)
ioctl$SNDRV_TIMER_IOCTL_TREAD(r2, 0x40045402, &(0x7f000079c000)=0x1)
sendmsg$alg(r2, &(0x7f000072f000-0x38)={0x0, 0x0, &(0x7f00001b6000-0x30)=[{&(0x7f00000f5000)="f2d9b4b9689e31348217aeb18a4679e960a0ef8fb71228c82847403b4b672c8a4df3284e977ea6196d53a665ed6c7cf14071c3b4b725f390813759ad673eeaeddf187e63b38f4ef3d8e0e35541796aeeaa66d09317bd6674c1797760ddad1aac233357a2c248f4bdc030c7feecdbae5aec2e15b990545bc11fe50cfc5a582f457e33", 0x82}, {&(0x7f00004d7000)="d26b5bae0aabafee5a835ef3d5b781cde44b67c61dc8baa6e83d9f5d3c174c01ba375bc1a7cb116f72d57b92", 0x2c}, {&(0x7f0000787000)="c5bbe4b1", 0x4}], 0x3, &(0x7f00009c8000-0x48)=[@op={0x18, 0x117, 0x3, 0x9}, @assoc={0x18, 0x117, 0x4, 0x80000000}, @op={0x18, 0x117, 0x3, 0x8}], 0x48, 0x7ffe}, 0x4000)
ioctl$KVM_SET_PIT(r5, 0x8048ae66, &(0x7f000093a000-0x70)={[{0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5, 0x0, 0x2, 0x0, 0x0, 0x0}, {0x3, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x40000000, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x5, 0x4, 0x0, 0x0, 0x0, 0x0, 0x2000000000000, 0x3, 0x0, 0x0, 0x0}], 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
syz_open_dev$sndseq(&(0x7f0000528000-0xd)="2f6465762f736e642f73657100", 0x0, 0x240003)
syz_extract_tcp_res$synack(&(0x7f0000f0f000-0x8)={0x42424242, 0x42424242}, 0x1, 0x0)
syz_kvm_setup_cpu$x86(r2, r6, &(0x7f0000893000/0x18000)=nil, &(0x7f00003bd000)=[@text16={0x10, &(0x7f00003ec000)="ba420066ed0f01d53e660f3a22050d67670fc75ff60fee58040f01f4660f5c6cd30f23756526360fc71b6766c7442400e67d00006766c74424026cef830b6766c744240600000000670f011c24", 0x4d}], 0x1, 0x18, &(0x7f0000421000)=[], 0x0)
ioctl$KVM_RUN(r7, 0xae80, 0x0)
fcntl$lock(r3, 0x7, &(0x7f0000def000)={0x1, 0x0, 0x0, 0x2, 0x0})
ioctl$KVM_SET_CPUID2(r6, 0x4008ae90, &(0x7f0000728000)={0x0, 0x0, []})
fcntl$lock(r3, 0x7, &(0x7f0000c6c000-0x20)={0x0, 0x0, 0x4000000080000d8, 0x10001, 0x0})
fcntl$lock(r3, 0x7, &(0x7f0000004000-0x20)={0x0, 0x0, 0x0, 0x0, 0x0})
2017/11/27 06:13:11 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$PERF_EVENT_IOC_SET_FILTER(r0, 0x40082406, &(0x7f00002b7000)="5c2b262d7d2d00")
sync_file_range(r0, 0x48e, 0x0, 0x7)
setsockopt$inet6_icmp_ICMP_FILTER(0xffffffffffffffff, 0x1, 0x1, &(0x7f00008fc000)={0x0}, 0x4)
getuid()
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$inet_sctp(0x2, 0x1, 0x84)
ioctl$KVM_CREATE_DEVICE(0xffffffffffffff9c, 0xc00caee0, &(0x7f0000bae000-0xc)={0x4, <r2=>r1, 0x1})
ioctl$DRM_IOCTL_INFO_BUFS(r2, 0xc0106418, &(0x7f0000df2000-0x20)={0x3fffffffc, 0x3ff, 0x800000, 0x800, 0x1b, 0xf897})
syz_open_dev$loop(&(0x7f0000a9a000)="2f6465762f6c6f6f702300", 0x3, 0x2800)
r3 = socket$inet(0x2, 0xb, 0x4000000000000)
dup2(0xffffffffffffffff, r3)
r4 = openat$ptmx(0xffffffffffffff9c, &(0x7f0000a2f000-0xa)="2f6465762f70746d7800", 0x4000000000004000, 0x0)
ioctl$TCXONC(r4, 0x540a, 0x0)
r5 = fcntl$dupfd(r4, 0x0, r4)
write$fuse_init(r5, &(0x7f0000b9f000)={0x50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x50)
r6 = epoll_create1(0x0)
r7 = getpid()
ioctl$int_in(r5, 0x5423, &(0x7f00002a1000)=0x0)
epoll_ctl$EPOLL_CTL_ADD(r6, 0x1, r5, &(0x7f0000d7b000)={0x0, 0x0})
r8 = epoll_create(0x46fa)
epoll_ctl$EPOLL_CTL_ADD(r8, 0x1, r6, &(0x7f0000aaf000)={0x0, 0x0})
socketpair$unix(0x1, 0x1000000805, 0x0, &(0x7f00009c0000)={<r9=>0xffffffffffffffff, <r10=>0xffffffffffffffff})
ioctl$int_in(r9, 0x5452, &(0x7f0000fd8000-0x8)=0x3f)
epoll_ctl$EPOLL_CTL_ADD(r6, 0x1, r10, &(0x7f0000967000-0xc)={0x7ffffffe, 0x0})
fcntl$setsig(r9, 0xa, 0x12)
fcntl$setownex(r9, 0xf, &(0x7f0000672000-0x8)={0x0, r7})
ioctl$DRM_IOCTL_AGP_ACQUIRE(r8, 0x6430)
r11 = dup2(r8, r10)
epoll_ctl$EPOLL_CTL_DEL(r11, 0x2, r1)
2017/11/27 06:13:11 executing program 6:
mmap(&(0x7f0000000000/0xf9f000)=nil, 0xf9f000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet_tcp(0x2, 0x1, 0x0)
setsockopt$inet_tcp_int(r0, 0x6, 0x13, &(0x7f0000f3c000)=0x1, 0x4)
setsockopt$inet_opts(r0, 0x0, 0x4, &(0x7f00007ae000)="8907040000", 0x5)
connect$inet(r0, &(0x7f0000f9f000-0x10)={0x2, 0x0, @rand_addr=0xf84, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
setsockopt$inet_tcp_int(r0, 0x6, 0x14, &(0x7f0000872000)=0xffffffffffffffff, 0x4)
mmap(&(0x7f0000f9f000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_tcp_TCP_REPAIR_WINDOW(r0, 0x6, 0x1d, &(0x7f0000fa0000-0x14)={0x0, 0x20000009a7, 0x9fa, 0x2, 0xffffffffffffffff}, 0x14)
ioctl$sock_kcm_SIOCKCMCLONE(0xffffffffffffffff, 0x89e2, &(0x7f000066d000)={<r1=>r0})
mmap(&(0x7f0000fa0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$netlink_NETLINK_ADD_MEMBERSHIP(r1, 0x10e, 0x1, &(0x7f0000fa1000-0x4)=0x5ebf, 0x4)
close(r0)
mmap(&(0x7f0000fa0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair(0xb, 0x5, 0x9, &(0x7f0000fa1000-0x8)={<r2=>0x0, 0x0})
getsockopt$inet_sctp_SCTP_MAX_BURST(0xffffffffffffff9c, 0x84, 0x14, &(0x7f0000564000-0x8)=@assoc_value={<r3=>0x0, 0x0}, &(0x7f00008fa000)=0x8)
mmap(&(0x7f0000fa0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fa1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket(0x3, 0xb, 0x1)
mmap(&(0x7f0000fa1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_RESET_STREAMS(r2, 0x84, 0x77, &(0x7f0000fa1000)={r3, 0x2}, &(0x7f0000fa1000)=0x8)
mmap(&(0x7f0000fa0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fa1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_inet_SIOCSIFFLAGS(r2, 0x8914, &(0x7f0000fa2000-0x20)={@generic="634c396b6bc0823053c494e37d67ff6c", @ifru_flags=0x7502})
getsockopt$inet_sctp_SCTP_GET_LOCAL_ADDRS(r2, 0x84, 0x6d, &(0x7f0000fa0000)={r3, 0x64, "a250a5641a04025609f956c342c7dd33b0c2067f3ddfd5d49bf9de352d6dfad5283b3922e0f8783d3490d9eae2e145147566bb4b629779dde2a048fd7c2aae1553bc39912de53ee2a335be552892de934d67199699385ab7004f4d9ee21cddf7cd984099"}, &(0x7f0000fa0000)=0x6c)
sendto$inet(r0, &(0x7f0000f99000)="c4", 0x1, 0x0, &(0x7f00004e6000)={0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
ioctl$DRM_IOCTL_GET_MAGIC(r2, 0x80046402, &(0x7f000019b000-0x4)=0x7ff)
2017/11/27 06:13:11 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6_tcp(0xa, 0x1, 0x0)
ioctl$sock_ifreq(r0, 0x8932, &(0x7f0000014000-0x28)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_settings={0x0, 0x0, @fr=&(0x7f0000a9d000-0x18)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}})
r1 = openat$hwrng(0xffffffffffffff9c, &(0x7f0000a66000-0xb)="2f6465762f6877726e6700", 0x3fffffffffe, 0x0)
getsockopt$inet_sctp6_SCTP_PRIMARY_ADDR(r1, 0x84, 0x6, &(0x7f0000fdc000-0x8c)={<r2=>0x0, @in6={{0xa, 0x0, 0x9, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, &(0x7f00002d1000)=0x8c)
setsockopt$inet_sctp_SCTP_AUTH_DELETE_KEY(r1, 0x84, 0x19, &(0x7f000015c000-0x6)={r2, 0x800000001}, 0x6)
ioctl$TCSBRK(r1, 0x5409, 0x204d)
r3 = socket$inet_tcp(0x2, 0x1, 0x0)
socket$netlink(0x10, 0x3, 0x0)
r4 = openat(0xffffffffffffffff, &(0x7f00007e8000-0x8)="2e2f66696c653000", 0x0, 0x0)
perf_event_open(&(0x7f0000940000)={0x2, 0x78, 0x72f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800000000000, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
clone(0x0, &(0x7f00002c3000-0x2)="1433", &(0x7f0000a9e000-0x4)=0x0, &(0x7f0000718000-0x4)=0x0, &(0x7f0000f2b000)="")
symlink(&(0x7f000000d000-0x5)="2e2f636f6e74726f6c00", &(0x7f0000001000-0xa)="2e2f636f6e74726f6c00")
chmod(&(0x7f000000e000)="2e2f636f6e74726f6c00", 0x40f152a1a03d37a7)
getsockopt$inet_pktinfo(r4, 0x0, 0x8, &(0x7f00001e3000)={0x0, @loopback=0x0, @rand_addr=0x0}, &(0x7f00005a7000)=0xc)
fcntl$getown(r1, 0x9)
timer_create(0x7, &(0x7f0000cad000)={0x0, 0xa, 0x1, @thr={&(0x7f0000369000)="2384b435595b46442f30534c8acbfe58efc6c2ff43b3186b9c59bd7f7855f40c0a09f1ae82a82bdff614d4338fd8b3f1f25bd926521551c479b1baefc9b38516174557b1eb8f63e7ebfffff41d319d70d36c873be59f2915d0c597c7513fd0997da1c4b3136e5797feb2e052728c4764ecfff3e180e19cdd6abe0f6ad9496997aebc06ed36bb488e393cf14633b1b24aa91dfbb0f000330862e7cbd7903f16797f110d06688d1724a0b80a6d675971212a29f02061fa6a32739867aa838efe1cdb92bdd62c3e20cb24c641e2b6a51d1ac55deee736b159ed94e545d2b612ed88eccdd1e847f8879ae78db0510db90edcd79db88886aad863bcb79fd8855d1e2dce835b955612c31ed519e60e6b0ca0706d6657755836ac884dcca6a230ef29eb572a0b847e92e7f28be0b4ad31f2f1cd00921f9ac2db55237fe9eff90f2f4eed122bfd01cbb9e0acd7c49536c8e977acd5e33ef0a003513c4bc8490ba952c659735bd6304508a6535dbf961c1ed1e3762b5e8a3de82ba3eea21aaef525b8e61742ddcb9bf965cd49ca48cb9b8c46245c36c201f542666b68e6cde2cd20e1d3c243e1ab9428f6c39add953e12e83212295b3058d5ba417e12d56c0e576d8e3204093315cd6a4c3ec83e482dc380b172c3688b8b4e31654077d75f8aca37fcd2531c762481b15b23dc3e2a27e1a86623cf2c8086c115e3c52738fe653ed5bca2757724115ce69a5f85523440e76f41f091ca3100c7d9274eaa76d2dec7da2c4e6e263d316079af8999fc7765e88147e943652410549891db8e5bc8cabfe3741e410abdd96f5eff3e166582516967373657246232da86747328a23276a8ef30189a308919984be648806c9f15d3d7a8aab51f365b19e35e7443ad1b3e0e7213deed7f1c0c0ce6130b9903764e3dced9a9d9721b041eb04b2947fa8537944f115c3ba18d74ec85a64d5668e5c2fffebe51a72fca1c9133520c935f755d8f52b8cb90ca20e46b4411d97dc4b6bf81e3b5f21f04fc1495af0629a8864db3060ce94820806f79c10a7af47ab3c9a6be7ce9467b7118261482e46486c30902b721bfdfa3e03987ef4e2c0865df436bcc9746decc9e6744725750cdd21db9dec4756d5dcb2387082d06faf27371b7b4946df74713cc14246811d39c1e7f424a1bfb6fcfd510370d584d1f2cc21b0b19d779f150f6dfc34660193763fbcd055ad7c7866504db80f889ed499348418940e1b590a0850088fe71cef86e964d124245c3009301e02bbad9accb51ff2462c8700064e1de7f9eb7cee73b368a82f2705d6d1cc6bb04701ccfd891f8010c90bb007dc6bd321fe07d14f0d6e3981fb1f06b52c517c50305fb6299daa66953f5927b61352ff6ee545dcd97e7007b9773abe439cacc34fccf980efa7d4ff4f051e83f4d30467fe38165bb2775e2da479696c69f4fac895c1dac4f0b467f421c021ceae933e93bd4380f4130cd3fded2ee9ad95bca4be7ffb335afbe95180b1b4b7d5e76e831c656aed639934671cad2fb82eb903f4b648af096d6c335afdb49a624f2811e3efb5697f9223b124665c18049ee931b66c81bf01f2cfa78bcb52f0eecca19b7172f36dc47d1b03bf3091b1f501b0d03ffc7c331e8772158916b0db2fbc38dac44f925f080526a8759adc7ee21abe41fa5ec9c590d16ce25519c0cd35cd895a374eb1d374ba2434bb99a338239ab309560eebb3878c9fa38564f383485c714fc7a37fb5e1fdec10d1d53859104048f3f22af13fb6043e0a28003f2e6b07abee2a33f4f00ee485a24c44a7928e63851aa6be70c586eea6274cc4abf09969484f1f7db5479aee0a217dadfb879926ea3b4c3b35bb8a45353094a0394916f7e8e4ee94fe41448e4b5e83e9f58ce518948be09b236cf6fe1b387c0259378bafed5d6bbbc7cb10419bb28bb73e54b5d45b261c11e35de86484f447826a82d4de13572e705306063777cc84bda6f0dd3613777833ab73e094ecca3ae65c0d0b4be125516cbdce899f94abe7711ad57cef6325d8254313348cd72974a75b8e1c69b9d351684afe2b9274d31211fa167ab235efaa84f6b15c038ecd694fb237363ee3bd11b6176baaa47c169cea3627a7a48c8a8fe5a63b638cbaa130d42b64e020568711ea24dcbca487e172c02f662441d96849ea8af6cd0c7d95225d0da352864ff0fdc8bc88a6c5fc0450debfcb075e8599cb7fae14fdc48ba48812dd54af5f4a3d2abb208b9853b3a5485e2774076a8485a82e61f7c22436104dd2ef1410e9fba8e3eec339c8b9756966108bc293f594e826018d92901105f3a6bd775023547789b9c9557441fb7158e224b144207a8ac8059e7b8650f220c95d36625ec6c494a683ddae88e789c943e6d816142bc45fd5db9a1bb73be5d2efa99c0b7d14a4f147059d9ec2a5584e0b8fc0cf502cf5ab604fd3175cf0fb49f09e7502e8e31c4db752adf2bb3e77173e0e0b01b748f71f13b99df935e31cc9f53d5dc555d3d07f40ca1244be309a25303c0d530d8fae7250e5dbafc5be1986ed0b438d6533ad9c10a6fbcdffa0f131293ec585314e059f960fd97c3415367981695451f817789e4d4d3b259002d9d55d89c06bfda4e8433c681bfad69fc66ddbb5878c827ba348bec9ad2e60ec47c68264e5657d87a604926764a45a286ee0c22e1201152bec44a455db4918709a327391a23500870d8fc3c4ff84efb9873c16092b6dc84c095f696cf3dfb014ac40a4b352c357776b508531a74aa586f2b24556400fa1b40921cb91a3652c08c7986e96d7f0b1517fdb1d68f8eb77373a5c959dfa43943e305cc9e092d91d8468c7ceae3565e01f0693c5eafe21d3501b4142245a080cf32a1c6080675c72d577c8a17648333235370647761d35794b07b3a9e7978b6f673971c3b920d9cb5822eca8fef559f827798d46a5adbd19f33fceaa78e10ccb7021c2a15c273516e8815d067baf7bf9ac94031e22f366991cbd8b1631b5254c1dfb7f65268cf8b77b17b7e09bd4fda0c4451b82994493fb6d59ecf8df7298b7f3c796f25b13ed5b10247341a0eddd1863a186101403f036ed0c4eca967ef6d45fc14aba7ee58b1d436d3c8464209f6532d09f0797ceeb91e45acc8e779276e4416304346404e1035f0c5c2855d20293a748e147cd1f45f53d0ecb4f1c1e381415c8f994e6ce6d3d72a8834eba4f3e740ec90852586c293a0fb53214f510943cb4a3ad17938987095d296f281a3a6e23c1530ff7fa9c2e9868b867724d71c557d7368e1bd504efdac19913436aa6f7a8650299c1a6d08ddac6a2238b1df1de3d147520efe49868eb910a6dcca57a9845b28f357c3f555d2833a2868a6430f55fda1be4cd3077b1a73341fdc71384c2a4ea904c5540c652b6c0f1f4b324294a215e6065c28e673444fcae831bbe54a3d6cd936da6cbd757f28189a5ec9602e5e48101fec34b49a3f310c259d88b026c9bbca30db2c679bc1ae3b148e20be0b31b188b8f68a4c63fc7d9badd3163ed0ffe8a46057ba9085f19624fce8a3a66f72e7febfd47230627c68f6f826cf1412ebf21a58cbe846bbe16c4aebe9c6a28178a8d6e326556281c4dd64059f577c8780b980528decede2f0dfc1f6ec56819ec122ce31e91ab6fb8375001170e5a3e3316c7a243e704c07c17052e2ea13dbe3b25e8b1cc8a647fee12438e60d1c083e1ed33a83b1bde067bc906d24c9216bd879b7fdeffc5e39bd832a00c43fcd297633a86d0635aea65e0fcbef6ebd55e9ef429ee6c53f5861a91bae9bdaae3a88e2161aaeba70b603b713774bb58fbfccb1023f89034c9ce00fe3083ee90118c11fc8288841021c6b1e2c0b09bd89b8db05e8a973c18243fbf212732ab91d4c709918760240e28ad48b1ad21c6a3aca3fca503b62138609f86536f3de5817f78177f6ad005fc114b134d14c2de2a28dbf8157e806c500ba40f88f183f13322cd098d4a5b1c65ca2431b9f09892ded187eeacb97eac498cd3bfe18e1a5847c4976abd836b1e3adba0e154f5462b50331c825248dfb1372aa5720deecf986ce8e07c2249fee10424e69da9fdc7759365f254b09690e0cfcea5551fd8e265fa66dc84d148ee8fd6fa52022440eb077e917e97ef4a6114fc385fca30b295c23a567c4647593c883dfad603e5585d0d38c8e586cb45d6cbcb9ba3d9171231e2880e769510d2a33e0c741f2b2931d30a78f4528161d69e6d51409978592602ae52ec204065491ad39158fa9275f229276ec60e013afff7c5e69c8fe18dae5ba4d2620157c3629713c80447e788e4f8e3c227725dfc006ccec9476aff065dd72ca6b52b4893d2218e2f1685502a7ca2ccd34f13701495c5ea751a90640993bb75c432ce97dd26ff7417e29522d943ddd8e2723b8e993d7f58555de1d8a7d464c88841743b4173ee6c7fcb965398c29d8e24c7010806bfa821465a4d02db804e216b1b2e6a6058abb9bf9eacc4631be8512b6280b8970e3bfd21725a1a4984420215c8dfa1aea6fcb4fc0108cbe145d0b4637804b77c300b0902927ab42628e6cdeef94cc7640eee01e7a9a21f922de48e84aebbfe2080a192f3f01fe75dc93e27074b9bb5bbf8b6f1b84ba67a75081cfe73a18b147a43a57ed917738c4d5fafc41b17442f72d5dbaed146c801190269a490df2d217bcbf2dbdd861536280cc399055e397ed084947ce090095dbfc6e9afb8246579c32b1e39b25ed5a6875d2844a19a48b50774b9d413225342012b5a5f22783f63ab935827d4a768f89207396f485a99aaf969336b79a0612eed7aa28ee1643999b9d1e04e7813db2f551cb3c0b0f1d09e5251dc1dfb7a9c070364231cf2f2f9db13def4e546934e8e527d643025c2dd3e3c021c66c8d263af0f8fbf9235225b21fa8e6833efa17306aaa0ee3d9d53f436f16b211f2de92024b1edae7a23d14e0d6df4efbdd08cfeb1e88483eee551239d470f10788d4602442848d0bcb875d37b002d0da33a1805e72d0ada5754eff7d27db6cbe379af2b68e49a6cd88cf09e0f7549a1a73a752fef235af4e1b317643e041efa0f5ffca13e780b173c9d57dfab457ee1f5bd7a185273c2654c9be864cab2ee0eaf92acf14b98a084870aafab73a4ff4aa070a313e0f05cd03cb123c002d642b7103c2c9ef1ed9afb0b86cab895bb56380cb2e49f777cc49759441caccd7beb500f54fd7405ac07e9870fc461f524284c41388bdea5aabee9f75fb19ad6f213530cc7ebc617d2205656b25151767bab6a71b4baab1b83645837e3b96daca5e8fae80f76050bc9483f1304ae5bfae6a98c67797aec0ba4f00f1995524bbe5609be9f4c8d5161cdd0e5bf516609ca9b730c31fad7604bd87a4ae68598178221fcd209a432e3e73cfdcf3dcf59a7640288cfce75e4634191cb584bd1d9c7f20e535b8940ec94b20d07d979807f0594cea5b1fe0f6fd40f07b6221e88290d9ba40c70aa3163f48d6a80b0d8ee170cef1e685cd7b706393eab38749f9e4edf1e59809e1bf738b42cf36a01710bee554bced92e84a64152b6feb133f059c039991a4fc318acbc325f3e56645f7da9867ff88a25026e3aa3fb52c44c8b2148797969edfc5f739bddefd1050e0c6f9f25467a4a4b37b430d4682f1b8faeb14c0c4adfbf16d42225d9988635f339ac1d53277e862772fbdaa56a288d08e004d53cae5cb2b777e20571ff7fc81d021c8f2d6f8d4aef05229b1bb3ef32110b722ea445ccb7e9d5046e866fcb881c8018e0ba12108a30b1bb27498e982b3b5c91c39098cf2397fdb7a609253", &(0x7f0000fe5000)="fe725f6ee012c163fae8d4690f6bedab40c4ca3df2e4f4401b40c47e862ea846ba41db8b1afbac2374b118834d815c8d5f97a95da4bc686e26f1dd9081101802c5e4457fb27d8911727d777f85bc488701c596ac8e87e71578fcab205edd148397b7f180c358092b51ea61193a2f037e274395df739b7af5f863c9bd74b573acccc2e78b48e7d02878cce3ca131cf303fa20b99216a77545322b2032a17166969d1b79107bbd9b8b1ad465d1d8f375648eadf02ce957c606fd04162020408a476da50c69903e003c0bb1cae59bf7cc3b76"}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f00008b6000)=<r5=>0x0)
timer_settime(r5, 0x0, &(0x7f0000c95000)={{0x0, 0x0}, {0x0, 0x0}}, &(0x7f0000c79000)={{0x0, 0x0}, {0x0, 0x0}})
getsockopt$inet_tcp_buf(r1, 0x6, 0xb, &(0x7f00006c3000-0xfc)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000a6f000)=0xfc)
clock_gettime(0x0, &(0x7f0000632000)={<r6=>0x0, <r7=>0x0})
setsockopt$sock_timeval(r0, 0x1, 0x15, &(0x7f00002b2000-0x10)={r6, r7/1000+30000}, 0x10)
mkdir(&(0x7f0000b2d000-0x8)="2e2f66696c653000", 0x0)
r8 = creat(&(0x7f0000005000-0xe)="2e2f66696c65302f66696c653000", 0x20000000000002)
openat(r4, &(0x7f0000a37000-0xe)="2e2f66696c65302f66696c653000", 0x20080, 0x122)
inotify_add_watch(r8, &(0x7f0000503000)="2e2f66696c653000", 0x80)
clone(0x0, &(0x7f0000c34000)="", &(0x7f000055e000-0x4)=0x0, &(0x7f0000c4b000-0x4)=0x0, &(0x7f00005b1000-0x1)="0d")
getsockname$inet(r3, &(0x7f000051d000)={0x0, 0x0, @multicast2=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f00004c2000)=0x10)
pipe2(&(0x7f0000d91000-0x8)={<r9=>0x0, 0x0}, 0x100804)
setsockopt$netrom_NETROM_N2(r9, 0x103, 0x3, &(0x7f00005d6000)=0x8, 0x4)
link(&(0x7f000095b000-0x8)="2e2f66696c653000", &(0x7f0000166000-0x8)="2e2f66696c653000")
setsockopt$inet_sctp6_SCTP_AUTH_KEY(r8, 0x84, 0x17, &(0x7f00006d1000-0x38)={r2, 0x4, 0x30, "5ad6fe4f59a4ea832eaa0612add1d30d9a63d50aa38322b8b16c69e51383e880488cc06ab284b60386697146fedbf48c"}, 0x38)
2017/11/27 06:13:11 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = syz_open_dev$vcsa(&(0x7f000077d000-0xb)="2f6465762f766373612300", 0x73, 0x3fffff)
ioctl$KDSKBMODE(r0, 0x4b45, &(0x7f0000671000-0x2)=0xffffffff7ffffffb)
mmap(&(0x7f0000000000/0x278000)=nil, 0x278000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$netlink(0x10, 0x3, 0x6)
sendmsg$netlink(r1, &(0x7f0000011000-0x38)={&(0x7f000000f000-0xc)={0xd, 0x0, 0x0, 0x0}, 0xc, &(0x7f0000014000)=[{&(0x7f000001f000)=[{0x11, 0x200000001c, 0x1, 0x100, 0x0, "48"}], 0x11}], 0x1, &(0x7f0000628000)=[], 0x0, 0xfffffffffffffffe}, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp_SCTP_AUTH_CHUNK(0xffffffffffffffff, 0x84, 0x15, &(0x7f000049f000)={0xbfd}, 0x1)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
accept$netrom(0xffffffffffffffff, &(0x7f0000d72000)=@ax25={0x0, {"00000000000000"}, 0x0}, &(0x7f0000a0e000-0x4)=0x10)
fcntl$setstatus(r0, 0x4, 0x44800)
socket$netlink(0x10, 0x3, 0xb)
r2 = socket$inet6_tcp(0xa, 0x1, 0x0)
setsockopt$inet6_buf(r2, 0x29, 0x400000000000003c, &(0x7f0000c91000-0x1)="bc", 0x1)
writev(r1, &(0x7f0000c9d000)=[], 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x0, 0x10, 0xffffffffffffffff, 0x0)
r3 = socket$inet(0x2, 0x8000000000000003, 0x5)
getsockopt(r3, 0xff, 0x2, &(0x7f0000a58000-0xdd)="", &(0x7f0000c1c000-0x4)=0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = syz_open_dev$vcsa(&(0x7f0000000000)="2f6465762f766373612300", 0x7, 0x2000)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
linkat(r4, &(0x7f00002e9000)="2e2f66696c653000", r3, &(0x7f0000000000)="2e2f66696c653000", 0x400)
poll(&(0x7f0000c66000)=[{0xffffffffffffffff, 0x20, 0x0}, {0xffffffffffffffff, 0x0, 0x0}, {0xffffffffffffffff, 0x2, 0x0}], 0x3, 0x0)
r5 = socket(0x10, 0x3, 0x0)
fcntl$getownex(r4, 0x10, &(0x7f00008e7000)={0x0, <r6=>0x0})
fcntl$setown(r5, 0x8, r6)
ioctl$SNDRV_SEQ_IOCTL_SUBSCRIBE_PORT(r4, 0x40505330, &(0x7f0000fcb000-0x50)={{0xdbdb, 0x5}, {0x8, 0x1}, 0x2, 0x4, 0x1, [0x0, 0x0, 0x0], [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
write(r5, &(0x7f0000dd9000-0x25)="2400000052001f0014f9f426000904000a00071008000100010000000000000000000000", 0x24)
ioctl$KVM_SET_GUEST_DEBUG(r0, 0x4048ae9b, &(0x7f0000ba4000-0x48)={0x80002, 0x0, [0x57, 0xfffffffffffffffc, 0xfffffffffffffffc, 0x0, 0x8, 0x0, 0x8001, 0x2]})
2017/11/27 06:13:11 executing program 0:
mkdir(&(0x7f0000000000)="2e2f66696c653000", 0x0)
mkdir(&(0x7f0000092000-0x8)="2e2f66696c653000", 0x8000004)
mount(&(0x7f0000f10000-0x6)="2e2f62757300", &(0x7f000002a000-0xe)="2e2f66696c653000", &(0x7f0000937000)="72616d667300", 0x40, &(0x7f000003f000-0x9d)="")
mmap(&(0x7f0000fcc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mount(&(0x7f0000195000-0x6)="2e2f62757300", &(0x7f0000fcc000)="2e2f66696c653000", &(0x7f000032f000)="6a6666733200", 0xc008, &(0x7f0000f6f000)="")
r0 = open(&(0x7f0000618000)="2e2f62757300", 0x2080, 0x101)
bpf$BPF_PROG_DETACH(0x9, &(0x7f0000adc000)={0x0, r0, 0x1, 0x0, 0x0}, 0xc)
mkdir(&(0x7f000001f000)="2e2f66696c653000", 0x0)
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000015000-0x8)="2e2f66696c653000", &(0x7f0000014000)="70726f6300", 0x0, &(0x7f0000fc9000)="")
r1 = open(&(0x7f0000033000-0x8)="2e2f66696c653000", 0x2000000000000, 0x0)
mkdirat(r0, &(0x7f0000f8b000)="2e2f66696c653000", 0x89)
fallocate(0xffffffffffffffff, 0x2, 0x81, 0x6414)
mmap(&(0x7f0000d6e000/0x2000)=nil, 0x2000, 0x0, 0x11010, r1, 0x0)
mount(&(0x7f00008df000-0x8)="2e2f66696c653000", &(0x7f0000bf7000)="2e2f62757300", &(0x7f0000168000-0x7)="7073746f726500", 0x2000000, &(0x7f0000921000)="8c")
setsockopt$inet6_udp_encap(r0, 0x11, 0x64, &(0x7f0000fcd000-0x4)=0x3, 0x4)
mmap(&(0x7f000051a000/0x3000)=nil, 0x3000, 0x2000006, 0x32, r1, 0x0)
r2 = openat(r1, &(0x7f0000035000)="2e2f6275732f66696c653100", 0x210084, 0x0)
readlinkat(0xffffffffffffffff, &(0x7f0000fca000-0x8)="2e2f62757300", &(0x7f000074e000)="", 0x0)
mmap(&(0x7f0000153000/0x4000)=nil, 0x4000, 0x6, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f00003cd000/0xc00000)=nil, 0xc00000, 0x3, 0x405f, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
symlinkat(&(0x7f0000fce000-0xe)="2e2f62757300", r1, &(0x7f0000fce000-0x6)="2e2f62757300")
unlinkat(r1, &(0x7f0000060000)="2e2f66696c653000", 0x200)
renameat2(r1, &(0x7f000005e000-0xe)="2e2f66696c65302f66696c653000", r1, &(0x7f0000063000)="2e2f66696c65302f66696c653000", 0x4)
mmap(&(0x7f0000f08000/0x4000)=nil, 0x4000, 0x5, 0x8011, r1, 0x0)
mount(&(0x7f0000fc3000)="2e2f6275732f66696c653000", &(0x7f00008c5000-0x8)="2e2f66696c653000", &(0x7f0000fc3000)="2f00000000", 0x2001028, &(0x7f0000fc2000)="")
mount(&(0x7f000000a000)="2e2f66696c653000", &(0x7f0000b31000-0x8)="2e2f66696c653000", &(0x7f0000014000)="72616d667300", 0x0, &(0x7f000002d000)="10")
recvfrom$unix(0xffffffffffffffff, &(0x7f0000b35000-0x1d)="", 0x0, 0x42, &(0x7f0000fcc000-0x8)=@abs={0x0, 0x0, 0x3}, 0x8)
ioctl$KDENABIO(r1, 0x4b36)
mmap(&(0x7f0000fce000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fce000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fcf000/0x1000)=nil, 0x1000, 0x3, 0x32, r2, 0x0)
mmap(&(0x7f0000fd0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
renameat2(r0, &(0x7f0000fd0000)="2e2f62757300", r1, &(0x7f0000fcf000-0x6)="2e2f6275732f66696c653100", 0x1)
2017/11/27 06:13:11 executing program 1:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000000000)="2f6465762f7161745f6164665f63746c00", 0x82800, 0x0)
accept$packet(r0, &(0x7f0000061000)={0x0, 0x0, <r1=>0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f0000e6f000-0x4)=0x14)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$packet_add_memb(r0, 0x107, 0x1, &(0x7f0000209000)={r1, 0x1, 0x6, @random="0b7fd886c2ad", [0x0, 0x0]}, 0x10)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = syz_open_dev$vcsn(&(0x7f0000af4000)="2f6465762f7663732300", 0x7fffffff, 0x109000)
setsockopt$inet_msfilter(r0, 0x0, 0x29, &(0x7f0000323000+0x7c3)={@loopback=0x7f000001, @empty=0x0, 0x0, 0x8, [@local={0xac, 0x14, 0x0, 0xaa}, @rand_addr=0x80, @local={0xac, 0x14, 0x0, 0xaa}, @local={0xac, 0x14, 0x0, 0xaa}, @local={0xac, 0x14, 0x0, 0xaa}, @loopback=0x7f000001, @empty=0x0, @multicast2=0xe0000002]}, 0x30)
eventfd(0x3)
ioctl$KDSKBLED(r2, 0x4b65, 0x100000000)
r3 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r4 = socket$inet(0x2, 0x400000003, 0xff)
sendto$inet(r4, &(0x7f0000005000)="", 0x0, 0x40000, &(0x7f0000004000-0x10)={0x2, 0x3, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
ioctl$sock_inet_SIOCADDRT(r4, 0x890b, &(0x7f00003c9000)={0x5, {0x2, 0x1, @rand_addr=0x3ff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x3, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, {0x2, 0x0, @rand_addr=0x101, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x14, 0x4, 0xf759, 0x4, 0x5, &(0x7f00000c2000)=@common="73697430000000000000000000000000", 0x9d48, 0xfffffffffffffff7, 0x101})
symlinkat(&(0x7f0000cb9000)="2e2f66696c653000", r3, &(0x7f0000c0b000-0x8)="2e2f66696c653000")
stat(&(0x7f0000e9b000)="2e2f66696c653000", &(0x7f0000785000-0x44)={0x0, 0x0, 0x0, 0x0, <r5=>0x0, <r6=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
setgid(r6)
r7 = socket$inet6_sctp(0xa, 0x5, 0x84)
r8 = socket$netlink(0x10, 0x3, 0x4)
pipe2(&(0x7f0000d65000)={0x0, 0x0}, 0x80000)
sendmmsg(r7, &(0x7f0000a4d000-0x78)=[{{0x0, 0x0, &(0x7f0000a42000-0x30)=[{&(0x7f00001f6000)="e79e56d7e01fe989c0c201f7bba7d34eca20848b9fa269edc2792d739b959fbfe378e3cbfb95743448950cd1ffa2c56a671ddaa663b09ce56c90132c2ffcbe874fd329f7a1b091e236528e0d27f2d697d9869cb64589f4b65226cfc9f1c713d47cef66159f434818a669606a03bb9a1213d53f01f7ebb805771316ed62ab7f4b8cfa01bb9bf1781cc8f47b32871dae85c2fbbe727f5ad1746745390d1d08e81ee080e29cc40205ae8f11cd30ef6b47f625a368fcdb2bbf198690307d3a0d1aab7aa86b8d1c3ebf1b1057ec39383929674e6928b5d44c7dfa7fc026f8e836", 0xde}, {&(0x7f0000a8e000)="5aecff9dc1954bf55012160415cb7631fe723354d80f9865ad9ceed16c3b25491c167001877a42b3b4438b55033fc4220457111e5422d5fc18197fdac58a58bea9e803a70699300d140fd0d824307073f2e4cfa8f6422469aa9e056783a91f4106308b0015bb2c593f04d2c86c4f3f90526da2984469942ae6f1c5e412f071a6cc1fd051eed7b6202759a21e5ea59d14e0df4928b160b10cef6d69c2e3ab947853a120d297c0ae0e705b1e", 0xab}, {&(0x7f0000ebd000)="37902b3936802ba775a5246709f62b59a64c3c27a5bcd8aaa85b1497053e9c944453e37df2931a888f86a206e030c5", 0x2f}], 0x3, &(0x7f00009c6000-0x148)=[{0x20, 0x10c, 0x0, "759b60ff53993d82337048"}, {0xf0, 0x84, 0x0, "0ca92de2ca5778afeced8ee105427b45dbec7c91d03f0f2e75bcbb77d186031afd3b6bdd4482d9d43697a07cd3a1439a1bfe2a506a61df6504b8d93f10c9e8eb284809800ce36ccede567fd670f9b3c689daca1091e7b9693482dd33f1ce2f42a694cd0422e3153a364a0d94ead190c50d59ad2737b1b00ba6177171572b59066b8be68dc513ae3374fd466f89bd1468052abbbcf96101d788691076537d70476d830c9132d42901853adc043e053f28d4db3e6d1aa687d5adecd1e7220e6f890f39ce677bbb408f93e29f3041f279cc8ba29c6f6fe913f5a5b23488"}, {0x38, 0x3a, 0x4, "b519b570c66a89bde000fcfd517d6c9d92aef690f4b8fdedb829f4cfcbc49fe2f6"}], 0x3, 0x4000080}, 0xfff}, {{&(0x7f0000c52000)=@nfc_llcp={0x27, 0x6693699d, 0xffffffffffffff18, 0x0, 0x8, 0x2, "f7effc823fc3b3de3ceeb19b865536647ad2af488eb98d25bd0b49a811213040792caefd7939427e74328efebcdaede015a7b32f9a32f41088caddc7a75431", 0x10000}, 0x60, &(0x7f0000239000)=[{&(0x7f0000a1f000)="4cd279c19c387d3af0742eab6e828fab4e2e0383a565678b9d06f21ee64a179057447519398c951d92724a7b4ddf1f49bf95b1172112f8b57e48428b6b670453c16b8113df103587f6c666005a7380667803b4f52a934c8eabb23660026f8130ca30edb2fb3f8ecd8eb10a85917db04d5d", 0x71}, {&(0x7f0000dac000)="0d0560ae2ec3688b5c55a0ae0b6dad9ca39f15a325c785e4362438549b4571e807ebed36b4d4c76037f19567bcbd75dbced127d48ed6db950ed947ec15a2917dedb8f729263477726f21d071ae0b98bc9af37e359f4b394f3f3c424ad80988a7acda40b7ed4333f14c8ae756523e03fa97f1dc9beb071a47c0ef7769ea386bbd2025d529eb55aac5968be4da031331753eb06354d224cf341ed90c67d1a41206995ca0f42d08eb7f4c789777760c04b148d3597c5c71f55743ca56e11f3f2acb744e87c7f527af3fae4e8b662a7e1c43f50ef0b493502056399519cfc52e3b17c2e6939cddd771b29fd96de38e9a83f0a6fac120b0", 0xf5}, {&(0x7f00000a4000)="98cf5ba86ff4a18fa5171a1afbe5fb2194ca58747525c93706e6e80ac7a7919b7d74894adac7422a74c38ff6afa8f2a5ae488d69adeca4487b801953040953b1be2109592de4c4e2c6cc86c25e779232343c71a0edb332076e67f091bd3553701dcec22b78364f49e90e2a58482607683012169da96a9db7356e3211547fcbdb9cfd701974cee3ceeb6e249c9801fb927d8974c51f", 0x95}, {&(0x7f00007f8000-0x6b)="9c843ce2b0a31f3054798d29653b32a31886030c23d07492bd07088cd949a52eaeba2da88b9621a898a74c7ddef7d1d2b69ef06989d1c913bc0c203f72287d21f9e93737098b1633bb5b3bf2d1144a7407f4ceb7c7856793906167b952b25ac1484c5a015eee08706734ff", 0x6b}], 0x4, &(0x7f0000108000-0xa8)=[{0x28, 0x116, 0x5, "3302ef9268fa1a2fbbb645e17a866edb4780"}, {0x80, 0x117, 0x1d, "5a104f38f0dac3ea6a300f6ba9623db8fcf97b50fbb1e01bc385391de1abd40499bbb25393d152183f0ec4ef089d206495fbb893b59c2b591c1a8af41e293b70c81bd564ec0ed5b03c7e4b3fbccc578786b0568aeeea42fa728c71604259bbe5f4429f0aa37944ff32"}], 0x2, 0x4000000}, 0x7ff}], 0x2, 0x4000)
ioctl$sock_inet_tcp_SIOCINQ(r4, 0x541b, &(0x7f0000d9c000)=0x0)
readlinkat(r2, &(0x7f0000277000-0xe)="2e2f66696c65302f66696c653000", &(0x7f0000737000-0xb2)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xb2)
setsockopt$inet6_IPV6_IPSEC_POLICY(r7, 0x29, 0x22, &(0x7f0000367000-0xe8)={{{@in6=@remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, @in=@local={0xac, 0x14, 0x0, 0xaa}, 0x0, 0x7fff, 0x2, 0x1ff, 0x1b, 0x0, 0xa0, 0xc5, r1, r5}, {0x6, 0x1, 0x9, 0x3ff, 0x6, 0x0, 0x100, 0xfffffffffffffe01}, {0x8000, 0xfff, 0x5, 0x80}, 0xfffffffffffffeff, 0x100000000, 0xe9c, 0x1, 0x84, 0x3}, {{@in6=@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x33d, 0x9}, 0x8, @in=@multicast2=0xe0000002, 0xfff, 0x6, 0x3, 0x3ff, 0x101, 0x6, 0x6}}, 0xe8)
sendmsg$netlink(r8, &(0x7f000001a000)={0x0, 0x0, &(0x7f0000008000-0x10)=[{&(0x7f0000002000-0x40)=[{0x11, 0x1d, 0xffffffffffffefff, 0x0, 0x37, "07"}], 0x11}], 0x1, 0x0, 0x0, 0x40}, 0x28080)
connect$nfc_llcp(r2, &(0x7f0000c41000-0x60)={0x27, 0x4000000006, 0x2, 0x7, 0x15, 0xb, "1942dd8345a18640bd280b18aa468a795e53ae41eda2052fa7930868fa725760bc314112a0bc769b27d58962c5f4b63ab9b8ca9605720d67f364910854fdc0", 0x10001}, 0x60)
2017/11/27 06:13:11 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
clock_gettime(0x0, &(0x7f0000a6d000)={0x0, 0x0})
mkdir(&(0x7f0000025000-0xa)="2e2f636f6e74726f6c00", 0x0)
r1 = creat(&(0x7f00009f9000-0x10)="2e2f636f6e74726f6c2f66696c653000", 0x100)
ioctl$KVM_CREATE_DEVICE(r1, 0xc00caee0, &(0x7f000028d000-0xc)={0x7, <r2=>r0, 0x1})
setsockopt$bt_BT_DEFER_SETUP(r2, 0x112, 0x7, &(0x7f00006ab000-0x4)=0x0, 0x4)
r3 = open(&(0x7f0000bfa000-0xa)="2e2f636f6e74726f6c00", 0x40180, 0x110)
mkdirat(r3, &(0x7f000000b000)="2e2f636f6e74726f6c00", 0x8)
setsockopt$inet_MCAST_JOIN_GROUP(r3, 0x0, 0x2a, &(0x7f0000f4b000)={0x2, {{0x2, 0x1, @empty=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, 0x90)
fchmodat(r3, &(0x7f0000ee1000)="2e2f636f6e74726f6c00", 0x20)
mkdirat(r3, &(0x7f0000018000+0x9a2)="2e2f66696c653000", 0x0)
r4 = openat(r3, &(0x7f0000afe000)="2e2f66696c653000", 0x0, 0x0)
msgget$private(0x0, 0x0)
getsockopt$inet_sctp6_SCTP_CONTEXT(r2, 0x84, 0x11, &(0x7f0000642000)={<r5=>0x0, 0x100000001}, &(0x7f0000338000)=0x8)
getsockopt$inet_sctp6_SCTP_PRIMARY_ADDR(r1, 0x84, 0x6, &(0x7f0000a06000)={<r6=>r5, @in={{0x2, 0x2, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, &(0x7f00006bc000)=0x8c)
getsockopt$inet_sctp_SCTP_MAXSEG(r3, 0x84, 0xd, &(0x7f0000b0c000-0x4)=@assoc_id=<r7=>0x0, &(0x7f0000978000-0x4)=0x4)
getsockopt$inet_sctp6_SCTP_STATUS(r4, 0x84, 0xe, &(0x7f0000061000)={r6, 0x1, 0x1, 0x100000001, 0x5, 0x100000000, 0x5, 0x6de, {r7, @in6={{0xa, 0x0, 0x9, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x40000000400}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x200, 0x6, 0x7fffffff, 0x7ff, 0x4}}, &(0x7f0000808000)=0xb8)
mkdirat(r4, &(0x7f0000017000)="2e2f66696c653000", 0x0)
getsockopt$inet_sctp_SCTP_RTOINFO(r3, 0x84, 0x0, &(0x7f0000b8a000)={<r8=>0x0, 0x8, 0x0, 0x7}, &(0x7f000062e000)=0x10)
ioctl$KVM_GET_DEVICE_ATTR(r4, 0x4018aee2, &(0x7f000063f000-0x18)={0x0, 0x8, 0x2, &(0x7f0000988000-0x8)=0x0})
setsockopt$inet_sctp6_SCTP_RTOINFO(r3, 0x84, 0x0, &(0x7f000018a000-0x10)={r8, 0x9, 0x7ddf, 0x7ff}, 0x10)
clock_gettime(0x0, &(0x7f0000b8c000-0x10)={<r9=>0x0, <r10=>0x0})
utimensat(r4, &(0x7f00001bd000-0x8)="2e2f66696c653000", &(0x7f000052d000-0x20)={{0x0, 0x2710}, {r9, r10/1000+10000}}, 0x0)
getdents64(r4, &(0x7f000009c000-0x50)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x50)
renameat2(r3, &(0x7f0000027000-0xa)="2e2f636f6e74726f6c00", r3, &(0x7f0000dec000-0x8)="2e2f66696c653000", 0x2)
ioctl$TCSETSF(r3, 0x5404, &(0x7f0000ab0000-0x24)={0x5, 0x2, 0xe036, 0x3f, 0x1, 0x9, 0x4, 0x10001, 0x8000, 0x8000, 0x0, 0x5})
2017/11/27 06:13:11 executing program 0:
mmap(&(0x7f0000000000/0xfd3000)=nil, 0xfd3000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$ptmx(0xffffffffffffff9c, &(0x7f0000fd4000-0xa)="2f6465762f70746d7800", 0x80, 0x0)
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_dccp_buf(r0, 0x21, 0x2, &(0x7f0000fd5000-0x93)="2effdb36e4f0e913ef04a5ad32cadc4fa43db2b9b79de41b8e4f25577962b88b22e599bf9ef0dee35b745a99342e5c3569174b871475bf1a9dad02291eddc55218ebb57b358d2c859c822a63c0bb9e352111324888f9429189854386b21d1548f2ecf998e880a94e10e60c3453b435374e69de783645d717281c28f53cef4bc745f68cc697237d5e981d9b64ba24bdf8c1374f", 0x93)
ioctl$TCSETS(r0, 0x40045431, &(0x7f00003ba000-0x24)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3})
mmap(&(0x7f0000fd4000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$VT_GETSTATE(r0, 0x5603, &(0x7f0000f1d000-0x6)={0x0, 0x8, 0x5})
r1 = syz_open_pts(r0, 0x0)
ioctl$FIONREAD(r1, 0x541b, &(0x7f0000fd2000)=0x0)
r2 = openat$rtc(0xffffffffffffff9c, &(0x7f0000234000-0x9)="2f6465762f72746300", 0x80000, 0x0)
ioctl$sock_ipx_SIOCAIPXITFCRT(r2, 0x89e0, &(0x7f000022a000-0x4)=0x6)
mmap(&(0x7f0000fd5000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000fd5000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
init_module(&(0x7f0000083000-0x9)="2f6465762f72746300", 0x9, &(0x7f0000c59000+0xac6)="2f6465762f70746d7800")
getsockopt$inet_sctp6_SCTP_EVENTS(r2, 0x84, 0xb, &(0x7f0000fd6000-0xb)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000fd5000)=0xb)
mmap(&(0x7f0000fd5000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TIOCGLCKTRMIOS(r1, 0x5456, &(0x7f0000fd5000)={0x90e, 0x7, 0x9, 0x8, 0x0, 0x7, 0xb4a1, 0xc3e, 0x6, 0x8, 0xfffffffffffffffd, 0xc99})
ioctl$TIOCCONS(r1, 0x541d)
dup2(r1, r0)
2017/11/27 06:13:11 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x1, 0x8010000000000084)
bind$inet6(r0, &(0x7f000020b000-0x1c)={0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
r1 = fcntl$dupfd(r0, 0x0, r0)
ioctl$GIO_FONTX(r1, 0x4b6b, &(0x7f00004d9000)="0000")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket$netlink(0x10, 0x3, 0x100400000000c)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$sock_int(r2, 0x1, 0x8, &(0x7f0000445000)=0x8, 0x4)
unshare(0x8000000)
mq_open(&(0x7f0000000000)="2a47504c5b766d6e65743140766d6e6574317b2d766d6e65744076626f786e6574302176626f786e6574312b4d00", 0x6e93ebbbcc0884ef, 0x0, &(0x7f0000665000-0x40)={0x0, 0x7, 0x2, 0x0, 0x0, 0x0, 0x0, 0x0})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = perf_event_open(&(0x7f000002f000-0x78)={0x2, 0x78, 0x43, 0x2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x200000000, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r4 = dup(r3)
sched_setaffinity(0x0, 0x8, &(0x7f0000bd4000)=0x75)
r5 = perf_event_open(&(0x7f000057a000-0x78)={0x2, 0x78, 0x44, 0x8, 0x0, 0x0, 0x0, 0xfffffffffffffffe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffc, 0x0, 0x2, 0x0, 0x8, 0x0, 0x0, 0x0}, 0x0, 0xffff, 0xffffffffffffffff, 0x0)
ioctl$KVM_GET_DEVICE_ATTR(0xffffffffffffffff, 0x4018aee2, &(0x7f00000ce000-0x18)={0x0, 0x1, 0x0, &(0x7f000024e000-0x8)=0x0})
perf_event_open(&(0x7f0000fb3000-0x78)={0xffffffffffffffff, 0x78, 0x0, 0x0, 0x0, 0x0, 0x0, 0x400, 0x0, 0x1, 0x4000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x100, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0}, 0x0, 0x7, 0xffffffffffffffff, 0x0)
r6 = socket$inet(0x2, 0x1000000000003, 0x9)
setsockopt$SO_BINDTODEVICE(r6, 0x1, 0x19, &(0x7f00006ab000)=@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, 0x10)
fcntl$getownex(r3, 0x10, &(0x7f00005ec000)={0x0, <r7=>0x0})
ioctl$TUNSETQUEUE(r4, 0x400454d9, &(0x7f0000cd0000)={@common="64756d6d793000000000000000000000", @ifru_names=@common="69706464703000000000000000000000"})
getsockopt$inet_pktinfo(r6, 0x0, 0x8, &(0x7f0000b9e000)={0x0, @multicast2=0x0, @broadcast=0x0}, &(0x7f0000cbf000)=0xc)
ptrace$getenv(0x4201, r7, 0x7, &(0x7f0000795000)=0x0)
setsockopt$inet_buf(r6, 0x0, 0x4, &(0x7f00003b0000-0x12)="340e0100000000000000100e0c07e9060068", 0x12)
fsetxattr(r6, &(0x7f0000915000-0x38)=@random={"73656375726974792e00", "2a47504c5b766d6e65743140766d6e6574317b2d766d6e65744076626f786e6574302176626f786e6574312b4d00"}, &(0x7f00000ef000-0x16)="6574683176626f786e6574316d696d655f7479706500", 0x16, 0x3)
sendto$inet(r6, &(0x7f0000004000)="9b411fe87308bda68cf69b00fc456354c7329f7c247c5ae03e1974135e8db80e3a8ad4c76c4f7bd9611378c3b492084207feb8cd52e4aab2e576ffb0dafcf1c7579fcccd74875824b762d27e483eb885e18579131a87c4309c05830e357f575c0a7f7f346d0d61b5459ada9ca0d895d6279639c67a49b5763273aeb5f2a9a47d128b01a19caefd5e8de29ef02bc69f88e990313a5c6ca4d7553293ff5db0766407e37e5746f7a94d3a1ed3f1d9efc93ba833a7ae86b08fec0f30236f17d5ecf9bf6459b385c3079c62aa19450926de608f13b8493004baa0ea070257347a686123aa5e37ea428ab6d90aa0a5aaa0178237d8e1e8e31f920ba1c328085b98598721dec8437363864f82c9594f77be5c44effc3bcbc548045eb63044f435aea680eb14f53fa6156a06068b4ef0eb113753f6b0ba538e9ef2aabb9c92b8ab68304bd61a1330bdfde693aa838cbda772f976db33d1a7f1481af25358350c1513113389a6dc66d074c98d60eb6b70a2a7484596fa666813eb4af421ea906022f10bd0b4683312a5d46ef3d746ee68e67b923c7e663316f74ada47485e0df9d3bb20b0e5a6296fb95f8e787146115709bc8c913d953cf33a6066cb52507627e2cd95be580b756a40ec7f7b5875c41ad1941737c7ff0127c7ecac001c3679105cbf2ea81ed4685194e5d19d46b8fb1add32d3fe0717a555ac5c12aed602a406c9acd2be01b8cf5b180e4da32a34c1b624316da27bd16797fb28665e3b8af33189494bae59477d92d936babbe9f6697bfa9e22bebcc139683c2a00fd59d91034e6ac258b9de2ffb1268815754c1e4faebbf0dd5f30319dbcc077e29ae756744f19e4f495b7fb1c45b0aeefa6e8ef5932527967d965282300e32b5507a7d4ffc9fd5bb583cf6bc1d3b88ec5ac079aad45f32a3412cf6d3685f74f865369d6f7c965d842e9dc4a34a89e4f6e92aa1add55388c4101355fb944f67d902b7ef45547d761199710bcc9a9019b15ab652ced16ff77a4bc5592d1efb3f562b1ef062bb7c4761129c3c9a09ed6c54a3ae3bb26a5d7fc481738500ec5bd38bc27d0d9b758ca5397dbe1856eeb4d55a94cccaaf47df693e87bf2a966550ba7fb5cd44da3d88c112a2d07d584ec5b02c5c90955cffc5767aadac21291ad9693d6a5c2ec4e9ef6630045681bf824aac7e1d908fa7ebbd5fd2f5d637ecae2d1b993b6387527aa471478fe3df974102046c6656341a5eb0d7629e491f2c7e28db50ca5d72de48fe1f9f953ee5a68c9164e325b93f5c5ebdb35aeac338abe5072aa398048995359ae23760a2ce29df382dde331d6f6949e3b5e4e1e1dadf225f0b841c2eadf27f2694abfcaa811c68ab8c00bf017e965f8ee20a6af917725dc944b8f3795f58d0f080a48582588a577c321e939f8de6e113257b38f8ff6df98e9b00d9299f0b4fa60f7ac2dbe62bfc8244cb12d6ee131c01556e5d4701d79a84cb320fb9d43d1d74b8b5141866713a6418a2353d29868756da348f22c09fd4cd80803e1ff82652cbc8610c8ae2b63259368311d5ebd062bd0c961075d0d70a480bd75b7dcac004767a7bc311532d9e2f11f5dbeebfa2c4bdcb5b7f4d0a5916f3886a402ef56722e355924832b0f84a0184870f69b40a8df2e03b7b61428c3a4f3164c8b34a32aac9801c04b8e323ce5d88720859e98480f498b83a73bc99f5d6b6577cb874a46ad8330f4061939f2a3d3df5f2ab144127a6bd02425f3cb12a9b50ec8b2c517b36253a3a3751a534ade6b59f797d2433a803a3d1c18c55b0d9cc64a755310efa7d3ea74408fdac39f7de85842b7ad7646ed86a2f8e28c77a7b646b4782f22c42908212eeef69139c67b44615f85288b5ad04ff048a6d35857c79ca43c1359fd502ceb7ecc0bbbcda7d4112342e69c26273c28049e4918bdf0215e4f9001f71516d07f67a5428dcbf9befa290a4261d12af6da5022afda7c88e58aec7c320c8ed2b85c06e2beca5591ed72fd4fad57bf53ca96df33e795bdbc1b34efee33e2eade9e422e491fd10d4c6d6bd5f05485b35fffaac75e24ca58150e9e", 0x5b5, 0x0, &(0x7f0000895000)={0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
pipe(&(0x7f000056a000-0x8)={0x0, 0x0})
fcntl$lock(r5, 0x7, &(0x7f00006d4000-0x10)={0x0, 0x3, 0x6, 0x4, r7})
syz_open_dev$mice(&(0x7f0000c1a000-0x10)="2f6465762f696e7075742f6d69636500", 0x0, 0x20000)
[ 1057.705942] SELinux: unrecognized netlink message: protocol=4 nlmsg_type=29 sclass=netlink_tcpdiag_socket pig=3554 comm=syz-executor1
2017/11/27 06:13:11 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$kvm(0xffffffffffffff9c, &(0x7f000061d000)="2f6465762f6b766d00", 0x0, 0x0)
getsockopt$inet_sctp6_SCTP_DELAYED_SACK(0xffffffffffffffff, 0x84, 0x10, &(0x7f0000be5000)=@assoc_value={<r1=>0x0, 0x2}, &(0x7f0000af0000)=0x8)
getsockopt$inet_sctp_SCTP_DELAYED_SACK(0xffffffffffffffff, 0x84, 0x10, &(0x7f000070e000)=@sack_info={r1, 0xf08c, 0xec}, &(0x7f0000b73000)=0xc)
bind$bt_sco(0xffffffffffffffff, &(0x7f000092f000-0x8)={0x1f, {0x6615d859, 0x5, 0x1, 0x5, 0x80000001, 0x4}}, 0x8)
chdir(&(0x7f00000f6000-0x8)="2e2f66696c653000")
r2 = ioctl$KVM_CREATE_VM(r0, 0xae01, 0x0)
futex(&(0x7f0000c02000)=0x0, 0x0, 0x0, &(0x7f0000df1000)={0x0, 0x0}, &(0x7f0000824000-0x4)=0x0, 0x0)
clone(0x0, &(0x7f0000606000-0xf1)="", &(0x7f0000648000-0x4)=0x0, &(0x7f000041d000-0x4)=0x0, &(0x7f000009a000-0x60)="")
ioctl$KVM_CREATE_IRQCHIP(r2, 0xae60)
ioctl$sock_SIOCGIFCONF(0xffffffffffffffff, 0x8910, &(0x7f0000928000-0x8)=@req={0x0, 0x0})
getsockopt$inet_pktinfo(0xffffffffffffffff, 0x0, 0x8, &(0x7f000072a000)={<r3=>0x0, @multicast1=0x0, @loopback=0x0}, &(0x7f0000a0f000-0x4)=0xc)
ioctl$sock_inet6_SIOCSIFADDR(0xffffffffffffffff, 0x8916, &(0x7f0000c39000-0x18)={@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x4, r3})
socketpair$inet6_tcp(0xa, 0x1, 0x0, &(0x7f0000014000-0x8)={0x0, 0x0})
ioctl$sock_ifreq(r0, 0x8915, &(0x7f0000fd1000)={@common="62637366300000000000000000000000", @ifru_data=&(0x7f0000dd9000)="6286fdd3069b86588a9e84fdc16a69eec5f7a723bccc20bbb8ac8f563bdc921c"})
r4 = ioctl$KVM_CREATE_VCPU(r2, 0xae41, 0x0)
r5 = syz_open_dev$mouse(&(0x7f0000aea000)="2f6465762f696e7075742f6d6f7573652300", 0x8000, 0x4000)
getsockopt$inet_sctp_SCTP_GET_ASSOC_STATS(0xffffffffffffffff, 0x84, 0x70, &(0x7f0000c75000)={<r6=>0x0, @in6={{0xa, 0x0, 0x155, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x6}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0xfffffffffffffffa, 0x7, 0x0, 0x6b8c, 0xfff, 0x1, 0x3, 0x2, 0x1, 0x4, 0x62db, 0x2, 0x101, 0x6, 0x8001]}, &(0x7f0000182000-0x4)=0x108)
getsockopt$inet_sctp_SCTP_LOCAL_AUTH_CHUNKS(0xffffffffffffffff, 0x84, 0x1b, &(0x7f0000a37000)={r6, 0xde, "2e343ce989f1cd90557f7d4a3ed133b64fe85754fc67f508abafdb67f548814e2e917d36c53cb73b15fbe3132fbb730bc5b5475daa62ad4bd8e383afc87d316e63c4a0f4da0e09eccc2c7e22ff613d1c5359a71b29b3352160d44557f52241aa50c5c2ba53de73732f3d831d69ad4194cafe4b5e37290026bd8f2eba950d2c994fff3c49e4bd277846e0dfdb33754c2cd83c3ca6e83346b3001fcc81720084ee2835d2c66ddbecda7b3d2570358481fe597271fa694b824298b12677d4cd7327dc1d0e4a542ed730b2501388c53a435c47d0aafa42723475e64415f8bebc"}, &(0x7f00005a6000-0x4)=0xe6)
setsockopt$bt_l2cap_L2CAP_CONNINFO(r5, 0x6, 0x2, &(0x7f0000928000-0x5)={0x5, 0x3ffffffffffffc, 0xffffffff00000003, 0x6}, 0x5)
ioctl$KVM_SET_USER_MEMORY_REGION(r2, 0x4020ae46, &(0x7f0000594000)={0x0, 0x0, 0x0, 0x2000, &(0x7f0000926000/0x2000)=nil})
ioctl$KVM_SET_MP_STATE(r4, 0x4004ae99, &(0x7f000054c000)=0x4)
ioctl$KVM_RUN(r4, 0xae80, 0x0)
ioctl$KVM_ASSIGN_DEV_IRQ(r2, 0x4040ae70, &(0x7f0000484000)={0x0, 0x7f1, 0x6, 0x200})
sendmmsg$nfc_llcp(0xffffffffffffffff, &(0x7f0000237000)=[{&(0x7f000088f000-0x60)={0xa, 0x7, 0x949, 0x1, 0x0, 0x0, "0fcca4bb22f2892559edddba1a892f216c6adb6dac3291add84e7dd1b9b1e1043844071c007846f83c7baa707bef6850ccdb39c111743913f1b760121acf03", 0x0}, 0x58, &(0x7f0000bc8000)=[], 0x0, &(0x7f0000634000-0x10)={0x10, 0x100000000000029, 0xb, "20"}, 0x10, 0x800}], 0x1, 0x2)
setsockopt$bt_l2cap_L2CAP_LM(0xffffffffffffffff, 0x6, 0x3, &(0x7f0000b35000-0x4)=0x8, 0x4)
2017/11/27 06:13:11 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = creat(&(0x7f0000000000)="2e2f66696c653000", 0x0)
r1 = getpgrp(0x0)
ioctl$TIOCGPGRP(r0, 0x540f, &(0x7f0000e0d000-0x4)=<r2=>0x0)
kcmp(r1, r2, 0x1, r0, r0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = syz_open_dev$loop(&(0x7f000090a000)="2f6465762f6c6f6f702300", 0xfffffffffffffffc, 0x200000000000000)
ioctl$DRM_IOCTL_AGP_INFO(0xffffffffffffffff, 0x80386433, &(0x7f0000538000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000")
r4 = syz_open_dev$usbmon(&(0x7f0000001000-0xd)="2f6465762f7573626d6f6e2300", 0x0, 0x0)
ioctl$EVIOCGMASK(r4, 0x80104592, &(0x7f0000ccd000-0x10)={0x7f6bd8facea12a47, 0x0, &(0x7f00006c4000)=""})
fstat(r3, &(0x7f00002df000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
getegid()
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfffffffffffffffd, 0x4, 0x0, 0x10, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
getsockopt$sock_cred(r4, 0x1, 0x11, &(0x7f0000538000)={0x0, 0x0, 0x0}, &(0x7f0000122000-0x4)=0xc)
r5 = semget$private(0x0, 0x5, 0x0)
semop(r5, &(0x7f0000860000-0x24)=[{0x5, 0x0, 0x800}, {0x0, 0x0, 0x1000}, {0x2, 0x1f, 0x1000}, {0x3, 0x80000000, 0x800}, {0x0, 0x9, 0x1000}, {0x0, 0x3, 0x1000}], 0x6)
semctl$IPC_RMID(r5, 0x0, 0x0)
ioctl$DRM_IOCTL_AGP_ENABLE(r0, 0x40086432, &(0x7f0000d07000-0x4)=0x5)
2017/11/27 06:13:11 executing program 7:
mmap(&(0x7f0000000000/0x282000)=nil, 0x282000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$alg(0x26, 0x5, 0x0)
bind$alg(r0, &(0x7f0000001000-0x58)={0x26, "736b636970686572000000000000", 0x0, 0x0, "6362632874776f666973682900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
bind$alg(r0, &(0x7f000016e000-0x58)={0x26, "6165616400000000000000000000", 0xfffffffffffffffd, 0x0, "63626328636173743529000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
r1 = accept$alg(r0, 0x0, 0x0)
splice(r1, 0x0, r0, 0x20000000, 0x10001, 0x8)
setsockopt$ALG_SET_KEY(r0, 0x117, 0x1, &(0x7f0000001000)="a23364fd5e580ef24d71a19dd93fc727", 0x10)
mmap(&(0x7f0000282000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000283000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000283000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000283000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
vmsplice(r0, &(0x7f0000068000-0x40)=[{&(0x7f0000284000-0x68)="126f0d1c6dfb9395d821b4d5ed9dc243d0adb0029d304507db3cb1492faabc5408e302af00b4c026d697855a704fea7f0a1e9ffd98041f27f3ffd043a7332e443fdf287f56cc1d66544336d38325c4a37bd686c302a7c3d03a08106eef88d244ffd1a5b523482236", 0x68}, {&(0x7f0000283000)="4eef1641613303620a44520b492e3cd55a853cc15fbdf372bd4e56fb667536deab4afe9d4518f9b518d39d0280734b3bce110000000000000004ceafd8f759beb2", 0x41}, {&(0x7f0000284000-0x52)="9cfda7f13bb7a06fc68633dacee2f8e3fff4f2f22b2f73a290cf640e6953484d2177f3ee2d23ac2b52a8499bc45f77280333cf5ac5adcbc554afe69bd2442169d6e301474066fe86926077cb97a76700019f", 0x52}, {&(0x7f0000283000)="0320eecdae3fd1e024e4520b1b7358344a6e3f", 0x13}], 0x4, 0x4)
setsockopt$ALG_SET_AEAD_AUTHSIZE(r0, 0x117, 0x5, 0x0, 0x7fffffff)
mmap(&(0x7f0000282000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000282000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000284000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
sendmsg$alg(r1, &(0x7f0000166000)={0x0, 0x0, &(0x7f000019f000)=[{&(0x7f0000282000+0x4d9)="3cc4d690e67262c961dfcac5c94da45290d2aed19727bcb638b4b082d3a790401cedd09d342962343f6eea177f93444ff4e1b3ba3f88f9648f1634dee363f1", 0x3f}, {&(0x7f0000282000)="5e2035a29b2973564302672e7e3ed0831421a237a347222365d2fb4530a43e4c0bf8a23627ea0c60e185f15d74ace361312b6e71052a616562707dee85b2e19d0800000092fbf34727e4d97a5117a7e942e90ab751d1312855605a0027bab7f1e348982fcb17cc52d56ac097607b9e78cdcc2e1225ef3be303c76d9d2d4c230b47fa078e23576bc613df1f15489d61fee4b9637c14f2f064c0ef5f8be4d0045fa901c07debb15a1e86c9b4f262d0fc9ea9337326b7fc0a6b3674f9783769d43c09d031a44018ddf61c767ed36d1b4261b13e87a5961a9c99fc16", 0xda}], 0x2, &(0x7f0000284000)=[@op={0x18, 0x117, 0x3, 0x0}, @op={0x18, 0x117, 0x3, 0x0}, @assoc={0x18, 0x117, 0x4, 0x10000}], 0x48, 0x4008000}, 0x44000)
mmap(&(0x7f0000285000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
recvmsg(r1, &(0x7f0000223000-0x38)={&(0x7f0000286000-0x10)=@nfc={0x0, 0x0, 0x0, 0x0}, 0x10, &(0x7f0000281000)=[{&(0x7f0000091000)="00", 0x1}], 0x1, &(0x7f0000206000-0x3c)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x3c, 0xffffffff}, 0x2000)
r2 = socket$alg(0x26, 0x5, 0x0)
mmap(&(0x7f0000283000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000284000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
bind$alg(r1, &(0x7f0000285000-0x58)={0x26, "726e670000000000000000000000", 0x0, 0x0, "647262675f6e6f70725f6374725f6165733132380000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, 0x58)
mmap(&(0x7f0000284000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000284000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_FIOGETOWN(0xffffffffffffff9c, 0x8903, &(0x7f0000040000-0x4)=<r3=>0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
get_robust_list(r3, &(0x7f00009ee000)=&(0x7f0000000000)={&(0x7f0000000000/0x1000)=nil, 0x0, &(0x7f0000000000/0x1000)=nil}, &(0x7f0000000000)=0x18)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = dup2(r2, 0xffffffffffffff9c)
ioctl$UFFDIO_COPY(r4, 0x8010aa02, &(0x7f0000fa5000-0x10)={&(0x7f00001b9000/0x3000)=nil, 0x3000})
2017/11/27 06:13:11 executing program 1:
mmap(&(0x7f0000003000/0xffc000)=nil, 0xffc000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x863000)=nil, 0x863000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x9eb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0xfffffffffffffffd)
mmap(&(0x7f0000000000/0x864000)=nil, 0x864000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
shmget(0x2, 0x2000, 0x1, &(0x7f000099d000/0x2000)=nil)
mmap(&(0x7f00006bd000/0x2000)=nil, 0x2000, 0xc, 0x5010, 0xffffffffffffffff, 0x2c)
mmap(&(0x7f00006be000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0xffffffffffffffff)
r0 = perf_event_open(&(0x7f0000001000-0x78)={0x1, 0x78, 0x5, 0x0, 0x0, 0x0, 0x0, 0xd8, 0x28000, 0x0, 0x400000ac, 0x85, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x4000, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000c28000/0x3000)=nil, 0x3000, 0x0, 0x51, r0, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$int_in(r0, 0x5452, &(0x7f0000003000-0x8)=0x8)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3000000, 0x32, r0, 0xfffffffffffffffc)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
add_key(&(0x7f0000003000-0x12)="2e726571756573745f6b65795f6175746800", &(0x7f0000000000)={0x73, 0x79, 0x7a, 0x1, 0x0}, &(0x7f0000001000)="9c6d3c27266458887db6da854f65ec95fc6c74753d7094468bd27398d13d1845ba6c01d0fd1d78bb15be210bddbaf801951cd7e44d026543b9d92edaceec1b1a0964ed7504589e9003eae7972863c91a959535ef6df37bc914e84d607be21b5da38a675fc39def4881396d", 0x6b, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x6010, r0, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x200000000000000)
mmap(&(0x7f0000000000/0x45000)=nil, 0x45000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000097c000/0x2000)=nil, 0x2000, 0x1, 0x32, r0, 0x4)
r1 = perf_event_open(&(0x7f0000045000+0x147)={0x2, 0x78, 0x82, 0x303, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x9bb0af8aaa049dec, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x0, 0x1, 0x0, 0x2c9, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
mlock2(&(0x7f0000478000/0x4000)=nil, 0x4000, 0x1)
mmap(&(0x7f0000007000/0x2000)=nil, 0x2000, 0x1, 0x11, r1, 0x0)
mmap(&(0x7f0000046000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair(0x19, 0xb, 0x4, &(0x7f0000ef9000-0x8)={<r2=>0x0, 0x0})
getsockopt$inet_sctp_SCTP_PEER_ADDR_PARAMS(0xffffffffffffffff, 0x84, 0x9, &(0x7f0000e86000)={<r3=>0x0, @in6={{0xa, 0x2, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x8}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x80000000, 0x1, 0x1, 0xab, 0x8}, &(0x7f0000a25000-0x4)=0xa0)
setsockopt$inet_sctp6_SCTP_PEER_ADDR_PARAMS(r2, 0x84, 0x9, &(0x7f0000140000-0xa0)={r3, @in={{0x2, 0x2, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xc342, 0x9, 0x7ff, 0x2, 0x0}, 0xa0)
mmap(&(0x7f0000047000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000030000/0x3000)=nil, 0x3000, 0x0, 0x32, r1, 0x0)
r4 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x7fb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9bb0af8aaa049dec, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, r1, 0x3)
mmap(&(0x7f0000006000/0x2000)=nil, 0x2000, 0x80000000000003, 0x11, r4, 0x0)
mmap(&(0x7f0000007000/0x3000)=nil, 0x3000, 0x3, 0x32, r1, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0x9eb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:11 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
syz_open_dev$sg(&(0x7f0000572000-0x9)="2f6465762f73672300", 0x3, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r0 = getpid()
setsockopt$inet_tcp_buf(0xffffffffffffffff, 0x6, 0x1a, &(0x7f0000bcf000)="1ab3041a1b362ab1c74080596dead2fadca26331d63e10193c111d7f1f62ada44c3f974533872c5e29318f6281f2ca26ed3dd11472f3ae9b5ffdd9da3642f5b7b5cbec588fbe20e727abfeded5f41eb4ac89f5a7894530ef27112e9be7ab04a3d17ba4163a6b4cf038c7dd93a4b3f4cf3ca52dc51f05581d551bcc3f1ebcdb707349fcc6404acbb322b633fbf0ba88999cb4e1016e5d25a3932c9f5cf882833197b4c801de2351cf8de9e67fb1433ba3edee1ba9a213f61a2faa7457a3b04e56d7d62957b7b65637deaf22d55c2e40bbf448a369c94f6d95356109bad88f9bce0233c6e34a08898919ccce7ff22e9d7f6593f1186a8b5e83", 0xf8)
r1 = socket(0xa, 0x2, 0x0)
connect$inet6(r1, &(0x7f0000375000-0x1c)={0xa, 0x0, 0x0, @remote={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xbb}, 0x4}, 0x1c)
socket$netlink(0x10, 0x3, 0x10)
r2 = openat$sequencer(0xffffffffffffff9c, &(0x7f0000e4e000-0xf)="2f6465762f73657175656e63657200", 0xa202, 0x0)
signalfd(r2, &(0x7f0000a7a000)={0x1}, 0x8)
r3 = openat$sequencer2(0xffffffffffffff9c, &(0x7f00005a8000)="2f6465762f73657175656e6365723200", 0x8002, 0x0)
ioctl$SNDRV_SEQ_IOCTL_GET_QUEUE_STATUS(r3, 0xc05c5340, &(0x7f0000fa2000)={0x5, 0xfffffffffffffffd, 0x8, {0x0, 0x0}, 0x5, 0x3f, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
keyctl$session_to_parent(0x12)
bind$nfc_llcp(r2, &(0x7f0000a7c000-0x60)={0x27, 0x1, 0x100000000000, 0x7, 0xff, 0x1, "f770f7faf9cb81a3128fb746b3daf388ceaa3430f7c0f413d87f76860bd8e7e888e3f97467321fc363941940b03197ca8bafb45928ab94bb65bab8d5dd54f4", 0x6}, 0x60)
r4 = epoll_create1(0x80000)
userfaultfd(0x802)
r5 = openat$sequencer2(0xffffffffffffff9c, &(0x7f0000ee2000)="2f6465762f73657175656e6365723200", 0x120000, 0x0)
epoll_ctl$EPOLL_CTL_ADD(r4, 0x1, r2, &(0x7f000001a000-0xc)={0x40000002, 0x0})
ioctl$TCSETAF(r5, 0x5404, &(0x7f00009da000-0x14)={0x400, 0x0, 0x401, 0x0, 0x0, 0x1000000000000, 0x0, 0x0, 0x0, 0x0})
write$sndseq(r2, &(0x7f00009ab000)=[{0x3c, 0x9, 0x1, 0x9, @time={0x77359400, 0x0}, {0x0, 0xd2f}, {0xfffffffffffffffc, 0x3}, @raw32={[0x6, 0x100, 0x9]}}, {0x8, 0x4, 0x3f, 0x4, @time={0x77359400, 0x0}, {0x84, 0xffff}, {0x0, 0x1}, @control={0x432a, 0x38, 0xffffffff}}, {0xfff, 0x40, 0xfffffffffffffbff, 0x8005, @tick=0x3, {0x4, 0xf2}, {0x3fc, 0x8002}, @raw8={"7a88d654f95067fe68d2359f"}}], 0x90)
ioctl$TCSETA(r3, 0x5402, &(0x7f000032d000-0x14)={0x0, 0x0, 0x0, 0x0, 0x20000000400002, 0x0, 0x0, 0xd03, 0x0, 0x0})
ioctl$TCSETSW(r5, 0x5402, &(0x7f0000fcb000-0x24)={0x5c97, 0x6, 0x267, 0x5, 0xfffffffffffff93c, 0x5, 0x0, 0x4, 0x8, 0x0, 0xcd5, 0x4})
clock_gettime(0x4, &(0x7f0000ef1000-0x10)={<r6=>0x0, <r7=>0x0})
write$sndseq(r3, &(0x7f000000a000)=[{0x40081, 0x3, 0x200000000000000, 0x80000000000, @tick=0x800, {0x9, 0x1}, {0x0, 0x0}, @time=@time={r6, r7+10000000}}], 0x30)
ioctl$TCSETAF(r3, 0x5404, &(0x7f0000a79000)={0x6, 0x9013, 0x2, 0x91a3, 0x1, 0x9, 0x4, 0x50, 0xfff, 0x7})
clock_gettime(0x0, &(0x7f0000a67000-0x10)={0x0, 0x0})
ioctl$KVM_SET_CPUID2(r5, 0x4008ae90, &(0x7f0000b84000)={0x5, 0x0, [{0x40000001, 0x0, 0x0, 0x7, 0x0, 0x5, 0x6c85, [0x0, 0x0, 0x0]}, {0x80000000, 0x1000, 0x1, 0x1f, 0x94a8, 0x56fc, 0xfff, [0x0, 0x0, 0x0]}, {0xc000001b, 0x2a6007a1, 0x1, 0x0, 0x6, 0x0, 0x2, [0x0, 0x0, 0x0]}, {0x4, 0x800, 0x4, 0x4, 0x44826b83, 0x3, 0x200, [0x0, 0x0, 0x0]}, {0xc000000f, 0x3, 0x7, 0x20, 0x100000000, 0x7fffffff, 0xf6a, [0x0, 0x0, 0x0]}]})
clock_gettime(0x2, &(0x7f000077f000-0x10)={0x0, 0x0})
process_vm_readv(r0, &(0x7f000052c000-0xa0)=[{&(0x7f0000b80000-0x63)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x63}, {&(0x7f0000f65000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x39}, {&(0x7f0000ec7000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000a25000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xc5}, {&(0x7f0000afa000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xfc}, {&(0x7f0000601000-0xe3)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe3}, {&(0x7f00003e4000-0xf8)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf8}, {&(0x7f0000562000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x60}, {&(0x7f0000a44000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xca}, {&(0x7f000090a000-0xae)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xae}], 0xa, &(0x7f00009b8000-0x70)=[{&(0x7f0000dc0000-0xe1)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xe1}, {&(0x7f000016b000-0x22)="00000000000000000000000000000000000000000000000000000000000000000000", 0x22}, {&(0x7f00002df000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f00004f2000-0x6b)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x6b}, {&(0x7f000030f000-0xdd)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xdd}, {&(0x7f00002b3000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xda}, {&(0x7f0000a01000-0xea)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xea}], 0x7, 0x0)
[ 1057.778303] SELinux: unrecognized netlink message: protocol=4 nlmsg_type=29 sclass=netlink_tcpdiag_socket pig=3567 comm=syz-executor1
2017/11/27 06:13:11 executing program 6:
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = accept4(0xffffffffffffffff, &(0x7f0000002000-0x10)=@ax25={0x0, {"00000000000000"}, 0x0}, &(0x7f0000000000)=0x10, 0x80000)
setsockopt$bt_hci_HCI_FILTER(r0, 0x0, 0x2, &(0x7f0000021000)={0x0, 0x400, 0x8001, 0x7f}, 0x10)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = socket$inet6(0xa, 0x1, 0x8010000000000084)
getsockopt$inet_sctp6_SCTP_SOCKOPT_CONNECTX3(r1, 0x84, 0x6f, &(0x7f0000727000-0x10)={<r2=>0x0, 0x2, &(0x7f0000110000)=[@in={0x2, 0x1, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x3, 0xcf64, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x400}]}, &(0x7f00001cc000-0x4)=0x10)
getsockopt$inet_sctp6_SCTP_DELAYED_SACK(r1, 0x84, 0x10, &(0x7f00001b3000)=@assoc_value={r2, 0x4}, &(0x7f00008b0000-0x4)=0x8)
getsockopt$inet_sctp6_SCTP_GET_LOCAL_ADDRS(r1, 0x84, 0x6d, &(0x7f00003aa000-0xb4)={<r3=>0x0, 0xac, "990d30c9a7e6bd045c85a6aecfb2f3a8b0469bf51d73008539f501497115bc163a80ac359631730431be3c0604f1153131636a92e74666ae1efe2e2bbd3ac77182a16c1837cd9b1615e34c4bf27401283606cae7b71e7589c39c18a9bec82f9af3a0634cd093093648ece36678ee910b4a6199e9e5bbad2893e5ccc7def15e40d2645c846c84f8d2e7d935a785ccbc09061a274a21c5258fe156d6b92723f14abec773296fdbb08de8769373"}, &(0x7f0000cb3000-0x4)=0xb4)
getsockopt$inet6_tcp_TCP_REPAIR_WINDOW(r1, 0x6, 0x1d, &(0x7f00001ef000)={0x0, 0x0, 0x0, 0x0, 0x0}, &(0x7f0000a90000-0x4)=0x14)
getsockopt$inet_sctp6_SCTP_PARTIAL_DELIVERY_POINT(r1, 0x84, 0x13, &(0x7f0000d9a000)={r3, 0xfd}, &(0x7f00007fe000)=0x8)
setsockopt$inet_sctp6_SCTP_DEFAULT_PRINFO(r1, 0x84, 0x72, &(0x7f0000c99000-0xc)={r2, 0x477254b1, 0x30}, 0xc)
getsockopt$inet_sctp_SCTP_RTOINFO(0xffffffffffffffff, 0x84, 0x0, &(0x7f0000d70000)={<r4=>0x0, 0x20, 0x6295993f, 0x208}, &(0x7f000011a000)=0x10)
setsockopt$inet_sctp6_SCTP_DELAYED_SACK(r1, 0x84, 0x10, &(0x7f0000544000-0xc)=@assoc_value={r4, 0x100000000455}, 0x8)
setsockopt$sock_int(r1, 0x1, 0x6, &(0x7f0000001000)=0x0, 0x4)
getsockopt$inet_sctp6_SCTP_MAXSEG(r1, 0x84, 0xd, &(0x7f0000d9d000)=@assoc_value={r4, 0x6}, &(0x7f00000c6000-0x4)=0x8)
bind$inet6(r1, &(0x7f0000710000-0x1d)={0xa, 0x0, 0x0, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
r5 = socket$inet_dccp(0x2, 0x6, 0x0)
setsockopt$inet_tcp_int(r1, 0x6, 0x13, &(0x7f0000cb9000-0x4)=0x81, 0x4)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r6 = socket(0x10, 0x4, 0x100000000000003)
setsockopt$inet_msfilter(r6, 0x0, 0x29, &(0x7f0000784000)={@multicast2=0xe0000002, @rand_addr=0x10c, 0x1, 0x2, [@local={0xac, 0x14, 0x0, 0xaa}, @local={0xac, 0x14, 0x0, 0xaa}]}, 0x18)
r7 = epoll_create1(0x0)
epoll_ctl$EPOLL_CTL_ADD(r7, 0x1, r5, &(0x7f0000010000)={0xffffffff80000004, 0x0})
sendmsg(r1, &(0x7f000051a000-0x38)={&(0x7f0000420000)=@rc={0x1f, {0x7, 0x3, 0x1, 0x6, 0xe3, 0x81}, 0x1}, 0x9, &(0x7f00002e3000-0x30)=[{&(0x7f0000c52000)="245957175acf34941f7f8d1579f06b511296ffdcab1db17c2ff83a39065286ffe921915129692d9af723a9dedeec89ece2197281dde8e652c6cc51fa020fa9dfad057d3635c94899bff77c8c1e24b28baa05e5c3c5d551e7d32287725f7bc92d486c320db4d85d5adc391bc55ab3fe99ca859cd9514f988e0009240b124daf7caac907a96e787f1c5ed88ab0037cbaf0d8e99b109072c8e89725aec011a335abfb495540b0d73b13c4100234bb8f378dc1c2257c9e7254f0c7c80c36e0b989a51176d48807bf696410bfa129345aafb749ee0dfc30929b1e639ff7d8cda007c604d0530150005f290b4b0e86a578c0d3ac57efe860ad243cf227", 0xfa}, {&(0x7f000075f000-0x85)="672ad4c6488216717f50ad9f0d53db7319ff87a90aa4f1d22fbf664df71ca1bf9601d5e8f975ce7233ce9c766663081a431ff3b16741d0a12083d212ab19320b465d8b51667bd6234b98fd21d5c4c0a482402b92dcf57f796c493b8c0744afc935e0b9ee2a032381674a67e0f05441dcaea1ed9f0ed405df88984bf834c72f8848cc5b3652", 0x85}, {&(0x7f00001a9000)="fcae0a6b6ce9c1354f87", 0xa}], 0x3, &(0x7f0000fe8000-0x38)=[{0x10, 0x117, 0x8, ""}, {0xc8, 0x10e, 0x711, "282b0dde91cf7197f70cfa3c5760b3115f9aecd5dfa6a17ecccf459b4db6f195d9d78093b536b149b5dccb1c6b7ac19513217f460d4914b8e28649c4bda3f2a68a2af9e83074311fe692cf625c8a84d55406640f19286e39ec4b0d6a483c2b58c15f6be48084705a9c54318aeb542e1c6f31b14a7274d6f1dc2f978126ae9dc1bb68a5e346d00e75566409d30998d8c8ff743173a34e3b936f1ef15410a4f7f7b2f14617898e2df2e937c41f0cd4bbc8dc9843ed"}, {0xf0, 0x113, 0xffffffff00000001, "959a48b5a0b05f84a0e742db41c6d0323ec97802a0d7ab4129d621511c6a623fdd133a79db887aad05febeb34a1aef3f6c84500d7f67725eb8d6ee491f711b8cb8c8b91ab7856032605ecafd4b25215b39c2b6ee2a4ed112d155f055f97d97fc733e257735a187f0da58e8fc329b5fe080ee0c34520f21408dce99266b9a7eaf3210b8d531acdd91475a68f34eeef0e06aa9bf6c88f52fe9c68af294184598798302816d183501f982ee24d2e13dcf96e872a4eae8811a3e7d65e49b0c770a7d2de2dc0d933a91d40764222e75a2910f6af5e4a5f91ac065ebaf4cca6b851f"}, {0x18, 0x10a, 0x9, "00f3"}], 0x4, 0x7ffd}, 0x1)
r8 = epoll_create1(0x0)
epoll_ctl$EPOLL_CTL_ADD(r7, 0x1, r7, &(0x7f0000e4d000)={0x8, 0x0})
epoll_ctl$EPOLL_CTL_ADD(r7, 0x1, r8, &(0x7f0000447000-0xc)={0x10, 0x0})
connect$unix(r6, &(0x7f0000227000-0xa)=@file={0x1, "2e2f66696c653000"}, 0xa)
getsockopt$inet_sctp6_SCTP_GET_LOCAL_ADDRS(r1, 0x84, 0x6d, &(0x7f0000822000-0x14)={r3, 0x9, "2aff3c3400553b0200"}, &(0x7f0000a7a000-0x4)=0x11)
2017/11/27 06:13:11 executing program 5:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
gettid()
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xdd, 0x0, 0x8000000000, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x800001, 0x0, 0x0, 0x0, 0x2, 0x0, 0x0, 0x0}, 0x0, 0x0, 0xffffffffffffffff, 0x0)
r0 = memfd_create(&(0x7f0000839000-0x8)="65746831656d3000", 0xfffffffff7fffffd)
mmap(&(0x7f0000000000/0xfeb000)=nil, 0xfeb000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xa000)=nil, 0xa000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp6_SCTP_PRIMARY_ADDR(r0, 0x84, 0x6, &(0x7f00006d5000)={<r1=>0x0, @in6={{0xa, 0x1, 0xffffffffffffff7a, @loopback={0x0, 0x1}, 0x100000001}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}}, &(0x7f0000ab1000-0x4)=0x8c)
getsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX3(r0, 0x84, 0x6f, &(0x7f0000075000)={<r2=>r1, 0x4, &(0x7f00005f7000)=[@in6={0xa, 0x2, 0x4, @loopback={0x0, 0x1}, 0x1}, @in6={0xa, 0x1, 0x4, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x1}, @in={0x2, 0x1, @rand_addr=0x3, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, @in6={0xa, 0x0, 0x80000000, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x3}]}, &(0x7f0000892000)=0x10)
getsockopt$inet_sctp_SCTP_GET_LOCAL_ADDRS(r0, 0x84, 0x6d, &(0x7f0000a63000)={<r3=>r2, 0x6c, "98643afb89b0169bcb852e8accbe3973d11c6cd2f0a393e0112e18d6fc90fb2906c93c11a1ea7fe3c9c8afa172d592fe2bd7dfd75349ea4a534be44cd19b4246ca382a57357d3c9c6f81c575825456327635c27865251c3339257cf2c668c30a90904dd24018445c872744f9"}, &(0x7f0000663000)=0x74)
getsockopt$inet_sctp6_SCTP_GET_LOCAL_ADDRS(0xffffffffffffffff, 0x84, 0x6d, &(0x7f00004a2000-0x50)={r3, 0x48, "b8e8fceb6582d66960c694fb8ff04771fd4f71bee63325b29ec313598cec2ae4091b1c14ca2b27bf1e6027923d91b4e3fb21e16f2c21f0f25d47077b87398b104a85fb4c556bbe58"}, &(0x7f00008f8000)=0x50)
r4 = socket$inet6_sctp(0xa, 0x3, 0x84)
sendmsg$inet_sctp(r4, &(0x7f0000001000)={&(0x7f0000002000-0x1c)=@in6={0xa, 0x0, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x80000001}, 0x1c, &(0x7f0000003000)=[{&(0x7f0000007000)="dd", 0x1}], 0x1, &(0x7f0000002000-0x60)=[@init={0x18, 0x84, 0x0, {0x4, 0x0, 0x1002, 0xa5}}, @sndinfo={0x20, 0x84, 0x2, {0x8, 0x820b, 0x0, 0x0, 0x0}}], 0x2, 0x0}, 0x0)
socket$inet6_tcp(0xa, 0x1, 0x0)
mmap(&(0x7f0000feb000/0x1000)=nil, 0x1000, 0x3, 0x10, 0xffffffffffffffff, 0x2)
mmap(&(0x7f0000feb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000feb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = socket$inet_dccp(0x2, 0x6, 0x0)
r6 = dup(r5)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x40000003, 0x8010, r6, 0x0)
setsockopt$netrom_NETROM_IDLE(r0, 0x103, 0x7, &(0x7f0000231000-0x4)=0x108, 0x4)
mmap(&(0x7f0000d7d000/0x2000)=nil, 0x2000, 0x0, 0x50, r5, 0x3)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x5, 0x32, r6, 0x0)
setsockopt$netrom_NETROM_T1(r6, 0x103, 0x1, &(0x7f00004dd000-0x4)=0xfffffffffffff437, 0x4)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet_sctp6_SCTP_HMAC_IDENT(r6, 0x84, 0x16, &(0x7f0000c2b000)={0x9, [0x3ff, 0x8, 0x1, 0x1, 0x0, 0x3f, 0x5, 0x10000, 0x101]}, 0x18)
mmap(&(0x7f0000d14000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000088000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt(r6, 0xf65, 0x3, &(0x7f000064e000)="0000fffbffdeffff28", 0x9)
2017/11/27 06:13:11 executing program 4:
mmap(&(0x7f0000000000/0xfee000)=nil, 0xfee000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
openat$rfkill(0xffffffffffffff9c, &(0x7f0000d20000-0xc)="2f6465762f72666b696c6c00", 0x0, 0x0)
mmap(&(0x7f0000000000/0xf69000)=nil, 0xf69000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$inet6(0xa, 0x2, 0x0)
bind$inet6(r0, &(0x7f00006c0000)={0xa, 0x0, 0x45, @empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0}, 0x1c)
socket$inet6(0xa, 0x20000000000002, 0x0)
syz_open_dev$sg(&(0x7f000005e000-0x9)="2f6465762f73672300", 0x0, 0x2)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = gettid()
perf_event_open(&(0x7f00008b3000)={0x2, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x4, 0x0, 0x4, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9, 0x0, 0x0, 0x100000001, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, r1, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket(0x2, 0x2, 0x0)
setsockopt$sock_int(r2, 0x1, 0x22, &(0x7f0000570000)=0xa4, 0x4)
bind$inet(r2, &(0x7f00002dc000-0x10)={0x2, 0x0, @broadcast=0xffffffff, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r3 = socket$inet_udp(0x2, 0x2, 0x0)
bind$inet(r3, &(0x7f00006d7000-0x10)={0x2, 0x0, @multicast1=0xe0000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r4 = socket$inet(0x2, 0x1, 0x0)
r5 = socket$packet(0x11, 0x2, 0x300)
getsockopt$inet6_IPV6_IPSEC_POLICY(r5, 0x29, 0x22, &(0x7f0000d7a000-0xe8)={{{@in=@broadcast=0x0, @in6=@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r6=>0x0, 0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@remote={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, 0x0, @in=@loopback=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f000026c000)=0xe8)
getsockopt$inet6_IPV6_IPSEC_POLICY(0xffffffffffffffff, 0x29, 0x22, &(0x7f00000b8000-0xe8)={{{@in6=@loopback={0x0, 0x0}, @in=@multicast2=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r7=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0}, 0x0, @in6=@loopback={0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f000028f000-0x4)=0xe8)
setsockopt$inet_IP_IPSEC_POLICY(r4, 0x0, 0x10, &(0x7f0000d40000-0xe8)={{{@in6=@loopback={0x0, 0x1}, @in6=@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0, 0x8, 0x1, 0x100, 0x1f, 0xa0, 0x80, 0x6, r6, r7}, {0x4, 0x6a, 0xfb, 0x7fff, 0x1f, 0x68a4, 0x7fff, 0x0}, {0xfffffffffffffffe, 0x7, 0x6, 0x0}, 0xffffffffffffffe1, 0x8, 0x8, 0x0, 0x4, 0x3}, {{@in=@multicast2=0xe0000002, 0x73d3, 0xad8e}, 0x13, @in6=@loopback={0x0, 0x1}, 0x4, 0x7, 0x1, 0x5, 0x7, 0x80000000, 0xc4}}, 0xe8)
r8 = syz_open_dev$tun(&(0x7f0000520000-0xd)="2f6465762f6e65742f74756e00", 0x0, 0xa)
setsockopt$inet_udp_encap(r3, 0x11, 0x64, &(0x7f0000d64000-0x4)=0x10000000000012, 0x4)
r9 = fcntl$dupfd(r8, 0x0, r8)
r10 = request_key(&(0x7f0000e13000-0x8)="7472757374656400", &(0x7f000075b000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000cea000-0xc)="2f6465762f72666b696c6c00", 0xfffffffffffffffa)
keyctl$restrict_keyring(0x1d, r10, &(0x7f0000435000-0xa)="626c61636b6c69737400", &(0x7f0000a20000)="2f6465762f73672300")
ioctl$TUNSETIFF(r8, 0x400454ca, &(0x7f0000a5b000-0x28)={@common="67726530000000000000000000000000", @ifru_names=@generic="4f54000cc0a1ed4f3a0a1fdc222073b5"})
ioctl$sock_inet_SIOCSIFFLAGS(r4, 0x8914, &(0x7f0000630000-0x20)={@common="67726530000000000000000000000000", @ifru_flags=0x301})
write$tun(r9, &(0x7f00003f1000)=@hdr={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, @ipv4={{0x5, 0x4, 0x0, 0x0, 0x28, 0x0, 0x0, 0x0, 0x11, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, @multicast1=0xe0000001, {[]}}, @udp={0x0, 0x0, 0x14, 0x0, "70a94ca257db570a1fc23706"}}}, 0x32)
sendto$inet(r2, &(0x7f00001cb000)="", 0x0, 0x0, &(0x7f0000a60000-0x10)={0x2, 0x0, @loopback=0x7f000001, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
2017/11/27 06:13:11 executing program 0:
mmap(&(0x7f0000000000/0xa000)=nil, 0xa000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = openat$rfkill(0xffffffffffffff9c, &(0x7f000000a000-0xc)="2f6465762f72666b696c6c00", 0x1, 0x0)
mmap(&(0x7f000000a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000000a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_XEN_HVM_CONFIG(r0, 0x4038ae7a, &(0x7f000000b000-0x38)={0x7, 0x7fff, &(0x7f000000b000-0x1000)="fe4d1a89619657a6a0c906a0a628442be2281d5f6e99754a55edbec0cd89ef04877e5381c78e61cc5f93a9f12063e6a96f9ccb847f8993187e649e869c3410f7c6adbeef00c0fe851a6426cad2c2c2135ec99297a92b0cf9fce3ca4f660f2a4f29b8696b86a94dbfbaeb24535f53cfd2a96c5baafbe939f25d767f3ee65bf5df2fd3f2490d0592a81e789b8ee14085f47eec94eb0ee99d96609783bc3a546a5bdef8c8fc73cb76e81b8fa7a62508218b5489a4748a12b535f0016d870caf00896d69e81b9ea9f2812ffc0e7baead93aaf0a77199669cde27eff2c4dec4cf8290507b2325521f4219d693c8303f4e0738fa175e6a27a8f7a47a61c563eae561e828b3ac8105a7483926fa2a50b1582d1e1347879d729817cb912c29a041307fd81e0fa339d35eafd8e7d0adb1170aff69a0b022195c107564e3bc709decac8c75c72119cdfd4f1886f392e4be8e4f89272bfd4031fdf1bcdd56eda24631a5064fb7e6d4632246116986578bfee1fc77d8fdcd60ab7fb2a334afda70bf4b5873da67cf7473dac9bcc7490de37c2239ccf0c6779f4c7e3b8dd73cc623dfbeb95194507527c9582e1a209c1b9fddd6dd604afa34f9014dda3855392727510b895df9ff540c341675a671127506b4158023f5142800c8139c66964f78dcf5132bf9b1df34684974310b81051b8489ae4edfa8cb4eba2609b3e46486e1b2813b1edd41500c3042bfb8e015dfde954cba4e5674cee9488c0110a0eb42fc0a7eafab85995d1d28f95abc47cdd2c7a67cef262fbecda81567b72fa66f6dfcb556f09d52ccf210c028194f0dfdb13dcffdee3e252f169ce6c17ed37c7e4a341810e509ff88744586a1c755975ca75c8e496e75d0e877d54543fc9790675644185888d001ff56514f273ae07e03c758cc91223202e2773354f3fc6ee23a2be79480b03330929d8566a00d7dc0a83b6390f5a280ccaf5de20dd0f465281603676b05ed002d8903639f80ab9b99f3405e7a87a5db5b07655bff071d4f6704e891b3ed100b6052c807720ecea644850eeb06be35981f779d731f763311c76b1888d8bedd19aabda1944b2ef27f9bfff42d87d7895ca931caf580bb5575eed0164d66a2fbbbd8c3ddb604e735f392d0e75078b82b42557540cfb78f9638e436bf96a66b4b71b77f3af0ce6887f9487d03362df5a4f7d64de3507be7d110f4885f76a1bae250274ee3c21eec69c70ca3797585c968122712cffbe3f93adf202889d0fdcf7aed4eeff81b0e19a1ab70783704f62f62873aa1af796aab38af4562bf37f5b83dafa7ca049001514315f4d5cd10a522cf3a5a5b90ddb66491ca5b1695dea9c29aa8d084963145301706ceae6e8f664d0264d82a57630f1f324ed048cdb11dc6df18b5c3d6daced9d1d917b011cc0ed626dcfb27c96854f0495b7e814b32cac577872c6fedc53d77a54e326487b866ae9c3e64a4f29b9599092ad5d4271c7f9361e756a986d6299730fce600451d017c231fb0ececde7e17839c8ae148c4458be425f435a9a9182bc0a1baea52432055ba2a1a83cef417d71c6b5ece5eb5b769138238275914933aa0b126d467f5c25b0939c4f5372b4f1ffc09b24f9f83f33475eeac8530f8f53db681adf2f02f4cecf6a9ac1b980e83c648481bdd74ec5ae6cdb5542db270a283fb46adf6a08f34e4f763dfbe67eb527f25c0933f0ae5208b2bcfc2cea1167f7eb928260273232717386b90485adc7542c7a86d25f387e8ee1e03632f7ba68b4affb15297a1994240f9e2fb2cf72bcdcb48b3144398a54cbe0a576e98ac3008616d0903bae4dc276c4643368952fa9531ddce6536ccf3bd53afc9c76708911b4035a21e1533a2a3256ebdefbb0485de47e79800cf92f90b1187837179f35eec4cbec72199cc4f827b24039c92a9c91f4c3d880dd3722b02fe6e64e8bc171a230957b76b52fce68d41c6bdb4021cd9cfe8af8e823d21cd97be17e1fca2ab3b1385138fd99a9f183c1f77cb64ed54e7878b769ab76c89969b985eae29e60b66760abf90c61f13a2e1ffdea302377d2d587394efcf0c6c414917341eb1c28185d7bb4732630db490af899e53e191ca8510b95dda51afd270f3a105865a886469f517ed3720a42aeab64b7659a512a8e652c4f9441411cf96527fefa1adffbdf87d11e03d88e1533ec71cf864b3fe7662959a2bc82099988d9ec21517c8cdbb982bad38ac7cd3c53341bfb787f41fcb17b04d8f05ebebc65068833d2481c595d25faf20fe49129ba0d032ed82aa3be1474e35a83c496dcb9714f90250738a57e641c59a6fed958bd8da9f3cd308da57adb32c342d8c936e7c7aef291c663ad9467000e4968fc85b2249baddc7cde8812a5396219d70225ee5a420446b000e966d13472d30840ab0aaec55c27931f8db223e93761e5f25d4cb0bf48116cb5b4b1167f824bbc436012e9d5250f913e8eed1a5d4c5f9810390a8c424774bd81289bfc3c63b0bcc41df1e5de94bb2a1f296e72f3d600915959184d08300ca8657834a6a4e0ba73ab4a1047b4ae2cf5f14ea0f78a2d1747c93c773caf3ebbb335515f5e14fc252ca94bdc0a5d62da55f23a930daf255a5d2705bad225fc21ab670c65661b0ffe19d8d8509906266385078f0639da8623541e1b7e85fda8a5c1a566ceaa9bb3fabf62d49f3045b3d39dac685ed181e93ffa6b988482c8968043a116c72eee9cf5242bf3511a1e8ac18d76bc0b88d5799e46622c16734d13e4f40c1476e77115e43363c71e060c824e1feaad7b5b951d03a03f735b3a85bb9ab354913fe2c964ae2705b0c620dd2b23619e7351bf91787a6f9e50499ecb4334d9cbf240156b8639e93211bcdc83cefdb382cfa114a3961f27856d87ab6bb977599ad580df2efce262829387384ae2702020484dbbefe3edab3a7f5ea1caf689491e199c2cabfd53481312376fd6946cd4cfdda26af3f2914029c04b062aa5c872ec48c9e47c82a764afc5a11f898b8672d5f56191b5bf513f36d23d888800313380d716e747ee5eb17951f7f04583f3e5b90b90284d58460448fbae7b519720606955eb09a50ca10d36becca07e3105c2305281dc07deeba3e090f9e95df0d2dde6d3e2067ae56e2f601c292992153e88b220995a31f4ea7b002d486da6218976c5591187b53c1bdcf8ed00f52e42ec2858df7c72b60c3d675dfd8865136ee1870f32da61cdeae176e54084e54ca7b01351dea78987856d3c1f206bfed0ca8f0e9ce9a0e58776ae6fd2800c4cf7934c96e74d097a1690d2e4cfdf4436806c5f25e4e15ecd3e2ba0211b4d5923d6ca97c7c80b23f968fb9563712dae89b74b41edfd6bc9eecea4af656e1bb6199ad5dfe7ac5acbcdca7d2400bdb812b95f9633fbfb0aac067260230c794719f226b4f6327231de91046f2627fde09ea73f013729370869a5147274ef4014f5fbde3bfd229afc639a3f0f69c802e190f29cafec7cdea5c8acdc05f8c47c312a000fb175da6cfd1dcc8cae398c4aeea226d247e6d3ff70cb351e3cb45d4f9f5d8e1189bf35df142a9360e53677658d7fc99bbe968d3f2ffe5b0fab30596aaf1796ffd4fc68431abbafeb5c3143930bb3c1f9219bcc37c8c628af7bb8d1032d3668711eea69ac084535f29b26dde33dca91f892569128273fc2deb4b7e8a585f01161a3cdfda936a0f045b89b3e7164dc24671b9463ca18109f7f92e4d7753dfa2248a50ec4bdae707d74eddc24c2e5c721d3123f6abd3d39eababcefb69434e05dabcfc6643438b68bfa500b6d7bd7f8d4f8bffe144c1e5e7a9e57a7393a2550653b9bd606f6e9636d97b5b2aebf9b2b10a1a6bee96b54e0e02cd664099da4012a7e2322c27230378e6c2d453f96b9c9b21040e506b173d465aadb5fa2de42eee7aac62d9fef9fa9188d54310d58fe1abf2531ea188bca1ddfa011e26d36322dee0aa180d6efc0fc0629fb4f10fa54886587c2b2d34c25112685498ba16fcc3555e737ba4decc123082d89e6c8fe4b9adc9a0a95afb2cd9ffa721e682fcae432f8e4e4baaf709499e5df0c2c15d62deb1380433add2073986edb272f807ef64a28cc272ef6426191a814ecdef3f7e12ccafcc7b3abbe5e8407f4135dbeb4df32cec51fa926b7c6a7408b9d91af85d87b60c9faf5ab458305f4b79a7116bad4fbdfaf8077c61f7007b77633cb2866e8bf07b07d89d372c0c83212471b10ca75b4c5f6819e5b442712bb5d40d721c1a06d50b0b21f1dcd1e46a9ee9f39ce76b0abe077167367388014e8c4d0f35d937cea1de8d1ff54a84934bd8b024381224ef9f8eb12547514ff644cdf19e9e55ed724ca9de71e5f7cb86dd81c22bfcb52246498170dad1fc059f19dd4ced5d69001e3179dce1ba9ceb7f63134d1e736685bd9ac56493074c3ed50f0dfa885ddad3abdcea77b71e9df7eff99811f6586b4edc4eae87cab7de7dc2373cb0c7ac29c32c8434a67e356cf088a3113ddbde2212e49ade9e7216fb3f39486932af130ec7f713b611bb0d14df78976053376373585f9dd1487f89ed1f6734bbd42c8f27b96f962eb33f441ee300f875a6b0b4056510af7bcbf424771f34e4d2ffe6bee06819787d835fc4b887e01dd684cf77b56b20e092077164356839a30f9e9fca5967f959490752acf85870ab3406c1a3d82f3d215b9cee8f64e0bb6dc734da1031c4d6f9b9f99fbcfda05df9123431377995ff1a2fdb0b9908fa436da05515256851be674d8fc045e93a4bf9c692471a4197ef98dddbb6dfb3967d0839575ef3034730afeee3061cc4ed1cd0102c205cc1fdb28b860284261aacb751994d0206feb4d435cadab5fe7a2f902b8cd56bdea8ec198af7af4a5d027e200a7cb0aa6ac2dbc0ae3b87f86e42d43fe06950b4acc251f7856201bbb2175d7ed688221494c5520998a204f5529127a655e72ecc347f8c5bfc58a0a3a36a37fd82464396f0321732c07cf706af0a6060b42507dad10bd49505c97816ca4122fce8d6af9fc8d53d222c80416226bd65c8851db7b00b77a924f3525184b4a3f9d4e80e70b84711631fb828343925bc7064dc9238e6e6b78c103662d2df53fe6fcb13cd20a64e527f6a0b2650cde86aed65e25693f2fc90730fc5d8b4c633ceea88d847d6c820520f39ce26fdd1006447e255b85d8f7118f2e6bf61142b586bba32e9c1afca7649344a5b6af8e77cf1a1893913c54ab82845fd56a5a4abb20419496d777932d4dec61d9267d869e64982e234589a2310f080768512cf8e45ad18e44ddbf1ad8f806d2ee1fd192059a9065717e77f7b80e3a1a0b81f6cbbd4d0535fe306aedaf5f8ab118fa2d6d60f93f3db0fc02221b80216b1115eee0d02ef43a8c9e6d51be99902e84b1685862aaababa5d3c0d13122134dbf375ffcb4f45249a83594a46d8c4e73f52a79195a298a4f1498fbf24bdac22129b841d58b144f05537db78f6c74fd1058ebac19797dbdf8ca2979d975cba725ffc1398b50251a4917581f65d4b648acc59cd2b60be8c3e96bddf0879a04f8f31956a148c35e11fb5a98a936ec136eeeca0b900d028f9c9b3441ef3e6440b494e79377591f077350f298f29eab309e6ac4ae666ea94ec50130f00be94746bce5ffb6e1db81d7dc68a1b8bb68d27572030646919eb5232c9e9f579fc4e6e8c32f9b5e4813f3b056158f165ea867a34b8d66b92d56b3604607eecb8718d83e21136093eed34d98eb4fe57bf6a8de494c3c5ed98575d4fd62f24111a9a81de3b90884a4dd2389d882890438051a2d8642acc7df86a515d77eb", &(0x7f0000004000-0x7f)="c5651fe498f34b3500da9526388c25af57d5dfe28e928bcc6211a4a47b3fb54a029ce5d7cf06d08cd8bad8c7635236666c9adc9ee03e75be72681929ae2c3101d5f5887e1fab51df04b76026a42e984f8b036f485ac9a33a48a645fb47e1717a254e46254e729854ce98c4dc8165c44238c3755575ca055efcdddc1766bc81", 0x1000, 0x7f, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r1 = syz_open_dev$evdev(&(0x7f0000003000-0x12)="2f6465762f696e7075742f6576656e742300", 0x202, 0x0)
mmap(&(0x7f0000000000/0x22000)=nil, 0x22000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = userfaultfd(0x0)
r3 = fcntl$getown(r0, 0x9)
mmap(&(0x7f0000022000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ptrace$setregset(0x4205, r3, 0x201, &(0x7f0000023000-0x10)={&(0x7f0000013000-0x27)="67092d8201fbe4e543cd49b3e301a074dead24944280b4f4051ba85dd6f07f7342286a9c57efe6", 0x27})
ioctl$UFFDIO_API(r2, 0xc018aa3f, &(0x7f0000020000)={0xaa, 0x0, 0x0})
r4 = userfaultfd(0x0)
ioctl$UFFDIO_API(r4, 0xc018aa3f, &(0x7f0000005000-0x18)={0xaa, 0x0, 0x0})
mmap(&(0x7f0000022000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$UFFDIO_REGISTER(r4, 0xc020aa00, &(0x7f0000022000)={{&(0x7f0000007000/0x2000)=nil, 0x2000}, 0x1, 0x0})
accept$llc(r0, 0x0, &(0x7f000001e000)=0x0)
mmap(&(0x7f0000023000/0x1000)=nil, 0x1000, 0x3000008, 0x32, r1, 0x0)
epoll_ctl$EPOLL_CTL_DEL(r0, 0x2, r4)
mmap(&(0x7f0000024000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r5 = add_key(&(0x7f0000024000)="6465616400", &(0x7f0000017000-0x5)={0x73, 0x79, 0x7a, 0x3, 0x0}, &(0x7f0000020000-0x5d)="ef9920a6be4aafbc861244343f3e5fcdc45c672ffe725a22796a2d9562276ed73777368b7529a75e5f2e21bcaf04418551aa132b8f664297727ae4fdd7fc22aa9585a338b10b1bf94dd076c1440c39d224b9610ef7c5dac408776a3c2e", 0x5d, 0xffffffffffffffff)
mmap(&(0x7f0000024000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000024000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000024000/0x1000)=nil, 0x1000, 0x3, 0x10, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000001c000/0x3000)=nil, 0x3000, 0x3, 0x30, r2, 0x0)
r6 = request_key(&(0x7f0000025000-0x8)="6269675f6b657900", &(0x7f0000024000)={0x73, 0x79, 0x7a, 0x2, 0x0}, &(0x7f0000025000-0x12)="2f6465762f696e7075742f6576656e742300", 0xffffffffffffffff)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
keyctl$search(0xa, r5, &(0x7f0000025000-0xa)="656e6372797074656400", &(0x7f0000015000-0x5)={0x73, 0x79, 0x7a, 0x2, 0x0}, r6)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$UFFDIO_REGISTER(r4, 0xc020aa00, &(0x7f000001d000)={{&(0x7f0000001000/0x4000)=nil, 0x4000}, 0x1, 0x0})
ioctl$UFFDIO_REGISTER(r2, 0xc020aa00, &(0x7f0000001000-0x20)={{&(0x7f0000005000/0x2000)=nil, 0x2000}, 0x1, 0x0})
ioctl$EVIOCGKEYCODE(r1, 0x80084504, &(0x7f0000003000)="")
2017/11/27 06:13:11 executing program 3:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket$netlink(0x10, 0x3, 0x10)
bind$netlink(r0, &(0x7f00008e0000)={0x10, 0x0, 0x4, 0x70a0}, 0xc)
r1 = dup(r0)
r2 = socket(0x11, 0x0, 0x3)
getsockopt$inet_sctp6_SCTP_NODELAY(r2, 0x84, 0x3, &(0x7f0000279000-0x4)=0x0, &(0x7f0000edf000-0x1)=0x4)
r3 = dup3(r2, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_GET_PEER_ADDR_INFO(r1, 0x84, 0xf, &(0x7f0000008000)={<r4=>0x0, @in={{0x2, 0x1, @multicast2=0xe0000002, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x9c, 0x5b, 0x1ff, 0x7, 0x7fff}, &(0x7f0000185000)=0xa0)
setsockopt$inet_sctp6_SCTP_DELAYED_SACK(0xffffffffffffffff, 0x84, 0x10, &(0x7f0000905000)=@assoc_value={r4, 0x2000000000000002}, 0x8)
getsockopt$inet_sctp6_SCTP_AUTH_ACTIVE_KEY(r1, 0x84, 0x18, &(0x7f00006a8000-0x6)={<r5=>r4, 0x3fe}, &(0x7f0000825000-0x4)=0x6)
recvfrom$ipx(r1, &(0x7f0000b26000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000, 0x10140, &(0x7f000095b000)={0x4, 0x5, 0x7, "49fca0b9260a", 0x6, 0x0}, 0x10)
getsockopt$inet_sctp_SCTP_PR_SUPPORTED(r3, 0x84, 0x71, &(0x7f0000641000)={r5, 0x8}, &(0x7f0000de7000)=0x8)
connect$netrom(r3, &(0x7f0000381000)=@ax25={0x3, {"f0a0cba8217260"}, 0x81}, 0x10)
getsockopt$inet_sctp6_SCTP_ADAPTATION_LAYER(0xffffffffffffffff, 0x84, 0x7, &(0x7f000071a000-0x4)={0x0}, &(0x7f00009de000-0x4)=0x4)
sendmmsg(r0, &(0x7f0000400000-0x180)=[{{&(0x7f0000f98000)=@nfc={0x27, 0xfffffffffffffffb, 0xfffffffffffffff7, 0x6}, 0x10, &(0x7f0000f2c000-0x30)=[{&(0x7f00003e7000-0x81)="b1df990886bd855f0f34012813fb05d8b2509a40302b86790dc8d8998f8f884d6a8c7f8c5ae6767c320cb6b3bbd50304aa23b033cfbe7d2fe1291600b290594b9f6043b07d96ef012a37a1598c7e992d392c3aa835f9ebcbd9f542b6628f063d508a0e91ecbbc1057a75f81357e1a2eaafefe02f069ce395285f859321009142e5", 0x81}, {&(0x7f0000a83000)="8641825dcbc531f7e445672922c2c5685fa9fed653c43833e9cba8a77b7afd4da21b74d316e348d01b482342130d5da4fcd8b62521ea7f1a29308cd23ef53f031c6b1065a0b36fd2fe4b528aa438480c93a8", 0x52}, {&(0x7f0000103000-0x6a)="74d5ebd1755f8bf3617450aecab8825798c4ff14c8aeb1b19ba20d8b5735b41c4e2dd5b336a3f8bd846a3f81f179c31f71236622e4cb5858ed59ac5eb9fb0371952ac10dbc346c064a2187b1a51363061b484c118028907ef97b134ef2b19bce87a0d7ca15bdc3539ad2", 0x6a}], 0x3, &(0x7f0000354000-0x408)=[{0x80, 0x1ff, 0xffffffff, "ae38fa5654db6e8d4d41afc7c31957196396167936eb917ea1a50c2c103cd865c0004368cdacee6b7036de7e0fadb71be59c34a4f9edc18567e728c70042a0abef6202c8edcc5293a29ee41c2a975614b20c0098232d1b8173fdc45705697b1be04d9367fdd1d3cdfd68f4dc"}, {0xb0, 0x10f, 0x1, "b66b4a007e549b0fdaabe69463bae6d9c32e1f591a0ae8676d4c6a9fee5bd770b1ba487a365515c523847530cb22fd88a9bbc782154a279005164b8de326d7fbdf51079b8a484eea85bac5426dd8f3b8dcdc93edc0211a15513b7e2f6a0b8aaf26e249456162b7331647132f032cb189082701a7de6f5039bafb522f81e23a127b8a150be18df1a63173db159925702bafb03fb0c5565b9fe406ef6826dccd"}, {0xa8, 0x84, 0x100000001, "eff0fcefb31e9d345561e23015e6fb15f4d001e6fd8e178270e96fd75a4c175f9619cb94fb17f927c173a6602e7bcce59897fbb4b8a547d65801732367e7e12243f9bc5a28a7917a8755a5faef196bfb0f532f0593fa3352908af56e5331868a5aa5783034ca21133710327538e17603cea85acb1a8fd79982e3924df3b30f15c7e49c3bfdf3e485d12bc307705ee86598828d701fd63fcf"}, {0x68, 0x108, 0x0, "41cde743420c45f1ba0a5c47993c105ffd8a796b9c839ac5f15835f706e6c79a0923cc80da5df09bcc9df926b748def6c5e19ecfbe14605db6c42d9d25edf19e4aed054c7a946c03d82b52b157c9163f346d877f1d"}, {0x110, 0x1ff, 0x5, "549add7a4ad65a975d9565c1806ef56bc76d90e6f0306ad1ecb111d3b7249bb8c49c2b7b02586429341fa63b352ae70fa92e96f112f693f59b2a05dfeeecd72346f388851fc58c7b814b7739bd30a7eba7483787b365e2d255d96c3f7821dc39ff6a69310e99a3256f1723bffe9f65f2ba31093bff107416e4d1d9069796271dae31767d9f0d2aa408661c166008ca577f66e24929302d838c3e36f9ff805f43ecd3a7c3bac34e9d302a69ad32ef5686f9ae5646700ea66c214523a5c2b771532ecba2f4dffc409c655251668865fa3c3195a56bd221b3bf4a3cbd0fc2e8de27797adbe27201ebbea33c397e8271c4012ccb9c088e21793c37118e59ac0c"}, {0xb8, 0x11f, 0x7fff, "67f91f2537e422dbac8e8daea4a994c5ac207f73ef6f37c46080a48be80341549a5fae344fb1365c904a0b5ba8fbbcd55b9a12be596d46b6695233d9a2196d05cbb9c05aacda59c56fd6115f193b6835ade3c689db9e9869e37ac9ce6bce3d405e1e6a5182db53a1e5f4ef3cceae3d8b939a7debe2f27de15f3ff0e3c96970024b4fcc65848a77f1c27412852baa15d2ba3171e8f9ee38ef232046ee884e89294a1459763f"}], 0x6, 0x20040000}, 0x25}, {{&(0x7f0000165000-0x10)=@llc={0x1a, 0x1b, 0xffffffffffffa811, 0x1, 0x7, 0x40000000, @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [0x0, 0x0]}, 0x10, &(0x7f000018f000-0xa0)=[{&(0x7f0000252000-0xa8)="afd4409c3207b56648588de4a27643dc7b917a4b69b5070d72bd5613ea68137947708be32577fdc3f5bf0eaea15c42579af235f372e7d47d15d2b0bfd5d345d58c9b6e75637bdf93d34c25fcf2fea5917c864e2e5ae6d942a1528a61af41a1d472e72f295cdab79c2705b06812eb6fe07add75dc76c90e5b3726252f1f0733a6c4dbbbd62b18ab3319c18fc9d3b5677adf3e8561db17e3077cfdddac060f280fe309e46872a244ac", 0xa8}, {&(0x7f000003f000-0x1000)="da1be8a9585cd96e95bfed0aaa3c7e3ef55dfd6467467aa6d8ba1f80a29dd1f576205bc7c6ab058313c3e07171cb5c4d8697477b83ae8c54de52b148e578eefb2b59bc2bab6226ab8032a045ed93b1d1f85ac8917a3ecd1ae25403ff90025c5c1f50dea9d4c1fc76f4880e0c1251323fa76d4529c469a1f0aeb664b92d65b95789589ded33435578a5c866e99e0bee3ec195a9007a9aedae18692381a4d273941d81939c5d56548bf4596fb5be27e7b1a1e2cafb09bff35c13a4dea9e0abdbec79b363cb933c8b9b35b1b97d7116a482bec70b4b83dcd696ee453f5a02d2beacb5d84f59a067f7aa8c9aa25086f04977404f7d21931fc08a4c32b8b35a6df6116ad10ba0de3f0284609e19c88a6fc6a92e7d3555af23169ac9429a47cf19138f9d0f996599142a402fb358b8ea86189ac4e1ee980725ca70d4969f341257bf4c8a5446840617490940c0452e2a45b7dedef5c32d2df7b1f31004bc1836b008c3562304de63356f3e03dc423befb322a34ba79f68d21ed555ed34ec40c53a68b26262f2544f278ec298bb9ccb3212ad423aae6c69ecc11656a36d16ec70cbfbe2eb3cafdf033efddbcfcfd0f4b07d64843ccd56d4388f5e09f23db2fd9a609d2b8d1c7444477375fa6a856135bccb13ee66c123efafb9b3885f2b70c82b1372e7da58b9403ff5c4aa130418f01ad7a504824273bece04e3d63e5fe6c84d79eeef09bdd6cb4fee0699cced8443150aaf97e6dcb93bca3b19ba2088a3ca319c5a3589a95aaa3225ed25f50169bf76ee20463562ea543bc52dd5744875e782bd3b8014a42074fae33cad7751937ce01866e85b6d5e2aec79b98db6c2944aa29f9a92fac79f1b8a066647b3fe0f6755b5eefe2154886b25dedb47f9235ce4d9c0a898c3a66f6513d8a2e919cda55e0b2188ee4aaade7603db7c6c154a048244200ed99bf6da18cc136c968844b30380229df33cb4cd2a1dd058e02fd3ce60f60cd983d51b762a95350552920149c44ecc9f4499d24638aee86324b0cf3e8f9b76229d4703ae573304325951c5150fd31952347c835833da2da4dc143685bcc38d6cc38516ded015238fd830ad15a5ef342a8fd1d4b8df8b424b193eab9765eef0f6284a4aa74d7755d64f6cda0515e0d51f18fc94f5de8709bcdc6b355c6b91359bd61f85bc8bbc336fb96f1699fcd7cb357bcf91c5b394ba6d89e03004eeead62ad1b9670e3d69effe1a2bcf8b1eb96849c90f2f1d4e3fa0a130894d45de8068448c0ebab921804f1f0afb51dc476af25b6d7ab23f768ade48767fb802b7b5ca6e1243902fe58d4ce5bc2d5a782ec7fbffedcf5f23070f7e077d9a455deab489e5f4174093315f8c0f5cbc710fbe1319af252b748348486b8bf2867e410fffb67f02a78c2795603cabfcdf4c9b71a149b85c4bb46d9a18495ad6c767b286dbcefc3d702c635c71d80874abe52b363a2812a890dcea1760732c8215e2aaaf068d60b7ac4519ff52003cb69fa0e1543102df5ce96e3957062bde367adda2302853bcfa70b6d534d34bb3cfe18326764236391e1893438b8fa009ad1956dfe675c6bb3f38a55d14a29b543a76657319f8996e11ad72a2d87882aa1fa2cf9abcbb149ed2736ada50742dc69632f20cbccda1af7aeff80ff4e6ae24935370395e05a6726f119a27395ac78bc0c81335e2d01cb2ca80a1ba1c5e47d99b7fc1a51bce628ef9b46e7bad0e76c5ba7caaacb29fa28707489facb80f3ad4087f1956e97ebcb173cc9ad99720ea55a5c02cdc4c3087a5c9ad86032a71dca9c046e3cedf92b022545325cc39ae85dfe31a7a6b33a878c238f13e56802dcab837477a45214214ace7c30706804c66c6be835ea7f97ca6d2f98af27ec7e8b624ed86de2f7cca539f266098c56d5b39852ffc8fec754a7a87397ec9e9af617728c806663fe904affabf35f66359ae1f78395b2efcce1b9f558c13f185e857edb593e60eca6209eec2b95b55c0192d4fd216f9a7e47b92db2c9b6668486159300931cc8e5e9df16977cfffab84cc28566794aaec6c112a3b214101d64dbbf4c8506cf0cc021fb9fbed6c318ede240b5c61056b0be05f83172b9d29d1bcba4eafa64f08c2882d1be32f95c201c12d072e45cf5a5c60c1dbd9292b260b1164756961d55ec3e492179f9ae85adc6b91765699d71bbf1296db919ef1b3772ddcb7b5027a2977641fbc8e6dd979846fb50d3c2774a95738593af239d75b474f4febd7584d3dc46da6b0fba87a86b188de0493b2043a214fd1c683b0ebdacd33deb6b50f4c97af16c84446b8f865e1255b8869ecd4ad319c7a1116578a9b1f0ec4ccdba18d1b06de025c7b5701d22cf0d8e994a45433c762fb64e84bac2795acc6450b854cf49bd70dce4ed59d513b9d1cad0dffeab4f205a1d42b8890624336136c310480eb89d2e2d7e57a5ae75feaf0574903c7d164e5fab9280c9bdfd36657a7b67c03d406c79c7322e99f07032131e81446d842147e56ceca5e1e8ed1f6a8db2cc2984093ba65674e493ac64d456c2c012929e893a5b5aec9691a8a15f8cad850f21899c0dae0f8698b53602f253b527d707e24d52904c24495b579263c7ff0e245a78d0040b716ec66057135de703a417d197919119e2e55c4560089dcf9bbae54f9e80901e182e8d70410a706e163969929c702e2be40067fa936bb62532640a1334ef353df8ebdfd1b91a2a05a2a939a25ecc2ff5aa82e75e2f451f4d98e0e812a3363442d4f030fab44ed020800ca3a82dce1112287558853663bebfe93d5d50651f4dc0950ceeabd86c59ce532e46a5fafe758ed822c718d4b6d4742dd0cdce9d59cc6efe97ce167f19fed94a679cc75aab9815977a0bd50084f657b61f1451366a0b270bf46995dc9129e1efe43c16c84aca4e4a089904a11140939357d6d1af6eab35fb09c359aa86939042639565e23791f5ef72407b4251cea73ebf8cd7841ad0345e8f1da57b73a5444ae36b19f03eec11c9140188c10839a53d99c16dbdc5eab283ec83e1f326b1a535054856fb8fa9fdd7320da8b7b3e83be976510c2a12c229f4daee0f82ea6716f8f4eb54b8b874c8ed2c7945963e1f28b3283e0d7ea5a69af5551a8fb947c30f96c4113bb4b83340ab000eee97878ccb8bd0f17d131f2a95568404eed358c97746880a98338ee6eed1fa85985dc948a69c0d47286668deab469d92e44ba3c4531d6816110b138982bd8342909fc9d66339f2cc5c11182c650a84d3d0f8ca56b128861dcfa066c41869b48d6fba100260a4f03c4acf5578f7cc91ae378aafc04608338453e7edce56d87bc37146e0fc0e0baa23c2a64eb169381e1c30eb8474dd28831d10f8dbf03d20f460f6829ade2307170cff233be53296bda7bded956efc75403c6ff6e82135af2a7e2c8342a35f2a4426d1e2f93da9846ff733abaa079d53c08e43597cb30e5e3e263591f6a256252d5f5424bcc3f637a38cc068f41522dcdaf9d5af0fbf997051aa7a9857075eba7c13afbc44d65b6f38804ff907f592f4e5639ded414b1ea5ce7e984a997dfbeb40ab4f8768bcefcab1cc4eb287cefb4fd5af95f4965e793e3debb2396ae15d44058ab9473f665e72fe7e06ef7fea566fddaaea2a222a44ea531a0a34a78a4ffe85d672eeee275915486055dc13ee558efba6273944e4411a93ba82fe5f13ee26c5f221bdb45cbceea692428b45ca366598718e7e4e6458d333e31cc5e1dc2afc4ce4438af3f30c318a9a4d97bc7cce17332dc549fd7a3f4b2fb258cf2e3902444c21dbcea22e2c3f628428b316d2f5c2cfaa191984ff2d2bd4db49857a51464ce098025e29b1018d6bd3a1a9473afd3990474f9300de9d0a393c5dd8a29952cc9e38a79b89c24375f4339da15a0c4c5402d30f3f6642ad8d7cd14803d143ef1955f19da0af7b3fe983ce0172a1b076f0c69563f80c319a0c3407627cd1a082237de31e3b9b2153ce48cda4f9fc6a882155313f718a70016e81ed159e6c3b7637515acdf954b780d8ef41fd530e2ec0d7f92e09f1d5dd09439ae0ce2f24ba7a52c6240c9007e03aeead880626b2a231464ce6fd4537370a403137221c61a8f42931f48296aaa36eeda704ebe71ca304a10a0c84ba4f0c5cc0beea445daa1d21be437ded2ab2e546d0e9674cf88f743135d89019c98cf8f69802d3cb09af14ee9ff6925057dafe373b3815c6cdfa4779d96a0180de5e66d1f5ee62664c876a3204368f6a7b7843754aa1f719f347af0e92f90e3f9fccbf616df420b6d044b936808ad4c6086d1fc70d84a07cf21b7ea7bf97a94b0a53adc97e1fc960082507d594401aca20bbf2694d9904705681f48d6d1d53822dfb34a1a578c3660c015b24f434f4fd8457d5ef49fed1e62d940f206baaef380f44636d5f57878c86d0fa0a017338b572beb597bb1fd99345fe100a40026c1892fe811e68ca6fb161181fe636c0f63e3cab95ba08ce48269206c808d1d41c2ea4c0ff9dc1f7b14993615ca19a878cfb72d19821a53114c6683bffac2d647ab7320f03ffda8b7c559c1c6d9b0737fa4dce2649e79d2a456f00c3e58a870185109ebc23c16b1e54dba8aa1543b6bdbd8c84d16aa85c902c0a12c9458175220bc957f5a78e950d0ab6482c49f35ac4d4dcd1bde8fec3e21ce3ddb33a8bf63a93ee4b078a4b9be8ce35e74351cb9847aa0774cb653b3551b172a733123165db9faddb0f58fca279e6ed12efd4b11b95c4ef1bf03ebaa5e90664b0084daf27d7442453d6f5635c1b36d5c7718318865d389fd78a745ce11d68fa3e3747eac0a6d730b1a458c1dbb2725664f6803388232097b3c4425f67367f69adcb90414b680077b8bcbcf43be5e3d682dd7cff5a2c9215736c51c87d03f51447b22224aab8918ec14fdaebcc85ff33eb22b6526241710acf2239e2ad5291a3184e4db3d7ee353f84f5309a18d45c51d0b9c81ebc8b841bbb422b1178700a3be84baec64dc34267db912e3b6746e489b43feb03c4f31f267c3d3c88780c49f345cc6d7fcbfadeae69daa480f1a7bd1692e291da72888afbb9493eb573a1af8c203ebd2b3599d88855eb9d5b19a7b80dfa01752677f5360b261e74a3ae9993da24b1fe77ba29c554bbdb51acaec69fe6b9693ede39fc9d5c9173ae02e80c9838f1361932b02fa842e38543f26cba7d612f361cdc3aeb60f7fca40d966ae032c8d85973ed50dbb54e92f865f7c82a9c7b7b08e09476305594cf9e9bf6f30dcc017a91fde8aa4954a159e6d9a12ff4907be531bc33a7d36e043d86e795fba6193521fb3cf664de6a13f94040a2bd0d03f2cb28348484de2c61eb1aaf395860faee6898b299e2d8aa38ecaadfed1939c99d9d44fd494dcabeb54963b2d36c7c0d4cc5b3dc18684faa4135802d1703e451e61fb35774a7c6489cd4b3b241bb3716cdea787d18dc07a929b7ed0aa9d3c88d5836457273e8f3265d59c093f9fb45b1dac74f92ea4873be9e00cdad19a0a95fec066ea5593c9ef6a702a4ca259ebbaa6d99e3e52508cdeae8541bbf49fbb6328f8c4301a17a5a271d0e48b089442e2d14a4317782b7ca894bf745a0b01051dd45b8bd1a9f8315cac14ed1a31bd0de8f4c73b8a8187bca64b97bc4f1f81229e38372fdaa7435e2d93c2bde33cace88feceb33d2c8cda8f142fa89658c3586dfc7e3ba23eb52985761dd84b9fa7d92c76b1ce6b697fec9555d51e981eeb1f3c478dbbd5981cc684ee1da54e734ce10e5e014fcf6997f1df598005244f8f595bbfe87f7c064e59d95a79736f62ca69a5976a2", 0x1000}, {&(0x7f0000cfe000-0xd0)="5cd92054ddb260798e777b28729945023546bd30e8329de0465a3e51bc0372b5af1fe77fbfb30dfdf661ab24367ed67aa3acb4d461515faac95a863ee71440b4d6071b725bbdd5bd23d502bce67bd83b9a42192d122fb9b4262be497e374b52d28d08aba3da210c2c17262967ef77fdd5af5a7be95f59a43bf207a724d4b9486a76aca08e41d270b538b5a286e2050916f62d19c7e9f4aa62d4c99c205aa3ee35ccc17fc090753bfa1e04d00957684b8700d3b62cb3a38b26c4d7af8f8f80ded409064e4367c27597e1babf0fefb0422", 0xd0}, {&(0x7f00004b2000-0x1f)="8eb4db21fb9ce42562b2647f47eefa341818a33430bf3117b6fe38706ecba4", 0x1f}, {&(0x7f00002a2000-0x3a)="c727b1cc3ed53b9b4121fd77da8529258e1fc0d8f3ee0e8313e963c10f5f1803a5c7a024e99000f3bc017cce36ba1aa912e699af5d0a465b14b6", 0x3a}, {&(0x7f0000e25000-0x27)="6cabba787b8dfbaf8545a0977e0bc58ffd886378ca812143408d0f2f419ccb5cd449a6f56ad71913c4cb4fb78f378b830bd572a61b02c4d9c959f2fd2e6e356b913a063268bd67d078599f8a9803260bcf06173bfff7d1b66d61d0d8cee4f2c9ad79fbffff17b11dc53c3903729ef27cb4daab4cafb441581f914ce9250ae5f7c62c111e1978e5674664d0570d0df81f24f02a55ba012dab95a143651c21", 0x9e}, {&(0x7f000003e000-0xb9)="5ea65a2a13bec6ec0afca3df4252f6742163839ae2c40404d607f88dd908f8f8c2d6fa002a911f0dc842251abf082d1c59f595bfb4c5e2f76be0bd8de8153545d89072c5dd273aeb1d7184712fee05c3e4e8288a1261af4bb6114291048e475d5c8b530a4b427268c1120252484f2012c4f2dc2be0fa0d20529c03f3b634d5a3a17520f2ee89beb917f4cf6e8fa82bb19449fcf66830fde975dc400f4728563aea44997c66f0f48f195aa10f1181d614713c31c9b94a54f38a", 0xb9}, {&(0x7f0000a47000-0x11)="061344122a368dfca3e7aeb02951369942", 0x11}, {&(0x7f0000223000-0xed)="299e828a60288fd874803efc96c2a20eab986d7b76bdabef790e1fa4fc3bfe13172e886b6d6f85b1fd25cb358fb3c94eb8a77ce3144dc84d11b28bfb25f974baec1385cd024d1d26afc28b1e6d8aeea265e451d79d6e129179053324a13539ddfe6c87c13a1e27ac49be803e2b12e60e44fea25cdeb8910bb88c7f8181915491035ce7b955a9d3e152850bd3e25da32a05e47b7642594802c7b8cb27300561755091a38839b41e87255bad0614daa3ba7f3746e0bbc3ccaa22e427b55f84b4fde8d6bcbcbb6f9278392ca5504b78c59fea189288c3d9bfa5329d95fefa20f048ba452e86055c888c0fd2c4f782", 0xed}, {&(0x7f0000fb8000-0x83)="88ed575d114d334a53d2225a782ac800bcf7561fbc0eb255f4aa80ac8425b5228e60d3cfabda3959085688bfd17de003feb67df013ace1df98fd9cc697173e3a587184ab85a9cfdc38975f8c9733ab702a5c0f4cc764c3d050375ffce758de9039a8ad9acddaf01babb0b97414ad4bdc1703af8d2b0a5e6d7a89728c47eaf68cabb265", 0x83}], 0xa, &(0x7f0000425000-0x11a8)=[{0x28, 0x3a, 0x71b, "32d9ab944f1b7d0e588a9998fcca5674e98f6ec421a7"}, {0xa0, 0x10f, 0x0, "c6285a97808218d3c8a2f8bd4ca37e5143c5c89f86b1eb17036da4d901effb74997b3caceee80648402deb5e983c1e14cedb5dda74eaa029d519c76807038f29e908466363b17b5731d84eaca89ed3c4a02362cc6e58a8b5867ca48b32b5eea86b46c0ab183241bcd02a87ff4a6ea2fc52eb13b0aa6e9b91629da8fc26e5c47df385bd79b360973ba50dc7fec628"}, {0xd0, 0x11e, 0x4000000000000000, "13ee63ceed883b1b592053ad46e60a95a201452d4d2686db69f06237860e4e19edb16d52c81fac1ac653d5af9e063a29026ab58886a4757361f91b3816710778acf9c9a9bd30a9ace1b91d9be76b94501258d3204e3b2e03db5bd8b7beab8ce292561a5d67878c81b388e117addb462dae30fb613795ed0ada0ee7caa4060b24bc7d56abd6e3845447f6bbffaf928d6f7cf52bcfcdb04ad0c09eea01cdb11d48f2f62b7e88df5965176b2e62c930bfcfb659ef6abbb3f4540491e5f7"}, {0x1010, 0x0, 0xfffffffffffffffc, "a69f89714a484eae17dda408f0fabe94efeffd7840bd00387613f347cbb0b29bc20123543c5c4d2fc47bc37814760533f98e1d400295530d98ec15a0e3c2ef3e340e2a908499ca9df0d610e511bd4617513bd75177726a5498608a4c81f2b272dba869c9c431e26048a821433a2d234600b0187dd0c5c34ae719c100077b1f9de2b0cbd37dc7bdbf40e4b143595540f1db1ad63dc969634b2e65a14ab7d008a71abe3d84097284989ca78e43108e7115d26999b7376f42b739b4a737a288a8228c79b68c735bad527d743a9ceccdae06e229241b9015e174a8c049288a7bea4bbea35a5936e6cb232507d760bb4d26b7ba44d91b8890a2c3b94e95deb486ea3eccc81da789a343795055909fa11a4ccf38bda3f615244a3da98b7620449ce9a69a372f2b639e553c578be1cea4a5259d3cebd63d1ca46350beed65ccbe77d9b7af51bff68eae3df2e15d8c3803b03148e7ea94a63410cc808c994157a6bcd679590d0b02d876bdd8f794b2755f329c200d6d0a0671c057c825c69ba600b3e084dd3b552644ce8ceb69052a23b8ee96ab3f85dd078ccd85497c54d2151247de7c0c353b29eb104f6de1d066e77704f68e8283af9fbb8f81d3b18959fb96d8ad1d2f99bc6e66d6757de13c1e5dbf282c1e95ee72d2c489ccb5ca296e0346a9fe58b3c3e341b6778076c5bb181c48d9b7194f9aff3210f5925806b85df2bd22d4b2386ecdbb32366ce9f1687f9040eb1cd748a6d605722ea94e9d0dd2e64b78fed02380b45ff6c4b6d7ac2581a2ef124c33775bd5192d3050738549810d4d2d847e035357059fe5d4231f744754367a2bce0cb4e2a5ed6480413fbb3607fe20fcd7e7705bdeef82bee35d30a131516451c56856854cbfd8af34eceadc7d2612cd5e2131c24663beef1b44e93eaf1c05e7da13fb7c58bb98dc25d87ea60ee6a72dcbb96a1562a1566a751f8c39e4d3595e2fb7e487b39c5664e8cd6b1de7d92976d236eb4d73d09ef0c97bd3cd9328ba1fadcd48168d3429205d97a33d25d9dfc60ece61c1f09982490d997c6dc758879ad9738901acaa19c3aedb6605d0ed5080d2d78c1e08a5958e2f0094fc6e802f37a71cd125052a75eda59d999f2118e90ea951fe334960208026c3d8aabeb3fa7ee0fa479b4574d8395e98f64d0b1eda5d0bd7d1b40c00f954767a5daa3c5b73e43fc2dc6fdf9542a98e72b553fbdb21b8f896295b6c4831ded097cf5ad7214bf035958b67710239c0676fd450e5ce3a0becfd9882e9ea151507bfceb980224bb00949f76edeeac60fae09a9b5fd27f6bd962bd3f20b06f98abd8265b7a9be18ef14b54e104a736ed6f60f61e3e0a0a9d2b73cc3e6602a592f5c7d7fe17d1a754a843f40f1be33286715901679cd46093efce9236e5a5cc0158a63c2c6f5146f8a0693ac694dbe1ecbc5616c917f0f3603a70faeb3edbcfa86a57f414d7dd4e3df0255872bda98266840b9599092462e4c6740d8408cdba0f2cfe2bbf75f4a4508a497c4d0f8d32dd54b5031dbf068b25232a4dd8952bcf54eff1ab11296e4d5f3ada5d704c50292515b2fd84f675f30261dad9097a215012b9af6f14594e7f7f9009f6c2ece9af27f7bdd69b5a64f1f1b14b64aea5d36b8116d8df07640f81b6e8247d2b1b01a3b889b5040db06aea6c9b35da1fd0dc3bfea2f2350fdec7752c4c94a0d79df6f873bc978b86cb6cabbf0d784112d00cd31513327b1933544f26f3a0ec20fa639d98e1b4659fc0790e7d36cb50287557d2344abfecec695d32de352f8657b2af238e5ed0809d0ad9c413b4470a90f0aa42894eb529b5064d86d65bb8b96624f4421e354119c2927a74bb615eea2fafb7988efe41386ecb84c66dc1aaf576674b6fcfe8a721fe1d03f1153d70558b46a7a1c3a6fc7bef93477038cc5bba689336b80a329651f8100e764a7cb39c4dfa95b90c251ef2b46d09697d742efd395c11703a7c83496135e7ef5a04affd2b68fee1b194354872869a0ceff155c518f5f356f17a963dbfb941a56264654fbdfb2a96eb103f8fa7d377a92e58c8fcc81924f6c4d5ce4774bd80d304b5bf2a67ac2104e57d299d3908d01baf18663eb8230398d99c0077797617050de6cd291abfabc4ee04de900da1f5340f11d6424e0721c8cd14d54b4cced8b90c40f25ea7182247df66852c0b38fc58c56f09281f382787b1fa44c367bf10eab25a27e72f68ca9737d61d3f219439cf1d0f656e0612e24e09d7ffa8d5333c28a62c53d1eb1c234cb86614c3914f640c917e7846ea6738945e29bdb593e086b7aab9b746f94452ef225236bb39d56e4c667fd52649e77cfc4d17bab7fbd8dfee3fe181b2f5f71620ad38a842bf55ea38799380fd0cb89bcc3676a752f77911bf200a4f3e5a44c54846f325b7671df6a0e03cc1d58c1e145fac9e0db4762dc67a0b0931c276e96947b07444e290b32d00631eac8217414b490ca343c4e79e0ad1ccea7d04d49b8e84afb27b07eb88f7dded2253f8441c53544e9318ec50688c61cf34ebe6131a43106bbf59e52a0444050590e1c9ecae1095f476f21bf767e4bb564da01bf81c0b4caaf4755e06bc0e37de534658e192f66378fc4bad0faa92b6f5e86f8dd35de52688c9c4ec1222760a6dd5b2bb948a4fb1ab98f6b1de6b1377b0e889093784a9c1e3134362cbe1776d1363632d6bfd867124637bf94da44a19adb55a04d6017ffbfa8e501973809f3dafdae6f81a3156d609445a966fc346ff75e9e90c43b45a6f6332f286f64ef95a7b8bc4a7c190fccf8aed552dd76594411da3c90fc011c72074cb90b2117f9733ee29f66b2e8869a3c433cda61888a28715130bd7eb06230cdd41ebb64b81aafad322bf95fad7f2800f45f02ac13d2e5a42426211e36ea34e747e22b0bfc801baba8821b40f481117f639f6cea2bae748bab4cb49660db2f6131e042b24d77383c3bc8c684efba4e4e8bb7bfed42db10c1e9b8c61189d57e468579c495ef4de91c8dc2aad84f516a24b6e1511baeaeb824b502469c3c6c22f1830c4f1facab3e8e6ca0098416f1c6bbc37d6ab21dccc29c74b4a92863684ce4731a29d9d8773672903235017b84f89d3fa37255cafa9456a03bcc2143d8e1f4c1e17fbe5c3cfe87dee20c3737c58b88920e886778cf6a40432d2bdec24702f21b1988ef335a1fab0f2da02f74d1e14482f738c9ae16dc7257fdcec5244b916dc6c867d0bf2c11c1a9600189086d269738494d33f6d30daf5125109dab010397334fd5748b7de1e870427fe2007ce5fec822298ee86421cb3fc5a98ad788fc18c3b1c9781dfcb5a676746e28ab156cf9956d2fbc92fa9407e30b150f3dd80549763b35777cbfbae3e7293d08d7bf1a6878133ecb1eb66add6b4c23dc7c815826195433f15feeff1133d1a1107e46cc6960a4cbc59df760a3686e5f8b44cbbc7503195ed5720149a8d1d943c358c9a0dba82eea248303e794f8880f6adfceed853a8e64957d2ba071b1ccf415c63ef39b832dfe657094b80c106f768582d3e3bcbcc93b467eeea0a0777504ebb629594929dbae6333d5f5fb00af7b014774918929848f71d2a1f1da21c67e72db91ab26b3702e64052f236f603a253cceae6359c661b8b2228b7bc56c9ba229ad78fab16c852c4ccdd08ebc24013e81ff738332b7d34441875ca3046ba578921171c540549d135102456d06d634f31e8bdce3401751d2e7d741a8c732dc6bc38e65d9f9a979e7484a6263df09084774f30ba6614aa31f3b4c3961125f878c175d8d00bbc6853f5f9fd47aab5ee76802ebada7fd4aa357193dd6349b6b2ff24f46931a472cc206a0b183c3336197eacc98d70f26546dc3da726d1f7456a3615fbc4af2a4668baa124435505574f7693182e82f76a7d34caa10af2224ad19f38c77488fa73a267b5812418b1455209e6753030ecd6353b486db6a47852d36b1f7864012d12d9bda5a6c67f89215eee8c24bbd866d07322e8aa103b702526d715c015937f6684fc830818dccbff3987a6571af6b15caf5745fa7ed7b9de9c531b352e0b70629f09cf35864cefa01396b9cdda2df8c08bc6dd27e13071767d8bdfb8bb1731b896585c8bbe4f1f9ed437917c492fd0c497eee73c52b4ad42188ea48f0d8096e847432079f6d05a0d8091163a059a6c36d8ffd5c5b547af01fcc10141758a63d6b7a60e914d1dd18a7813e2f274bdd90836239825f6b66aa5c9e9fc28bb240883a9338e290dc4a8bc07a7fdde014710bf99a7d0901434783271507e7774e52901b7399eaa271528a920ca5385733bd92c098fcee5a5cea5cee98e4f730f4deb7fb4e783889c2fe400e3da091c574c54c5f913057850dd8a95f0a03ae003e58099a06979f1e5910c771c8f2f32fe516f3bfa395471f222d4334f783318ecbf995f17959a8359ce97c4d64c77827e46ae08ab9616f95493ff0c180ac472e89c992fc36217202a18368528c148baaef0a3a7c4217a85436a95e958f6c2690bf436a9175cbbb4354e86fd65f09e9bb730ac142c9b6b96342717046519c23d56599fb6180e1ffa2c95b512412eb9bf0fa98bd8e3d61372abc9910f41244cd95004586096bab83e4c34a70b2a41292cd32148a2b59cf841bf2efaa124d91dc6be0cf379038f91cde7beea56b9018f3941f4c9d33728cd6c0d60dbeb9855cebcb717aea54c638ad721d8f4bf4d8647cce401a3324bf29eaa6a93655e36f9c5cdbb7182bd809a4748cd6634da1c83c869730b500dce7b0a84e417ebee165546a3cbe8c501a3bfca889aa368264d35ed7349d985de9a6ff34127c2217b2fe5c4db839b5977b6413cdd78ddc54dea943f704b5f6d1c52bc1c276b9a3d6d5c4e816e5e1e672894572983520f69df60ff5ddd6fbd50e6006d572a9bff2d13507135cca727934b1dfbc0e1e323d73aab1ee7ac6b4f2a2b8cf535f13a9e0c32ae20e774d6416212214061c1b1cb586536e2a095f930d8f05f7de71af2f986bf99dec026bd7a199ff5e616ff22193c7b424b0323612a43cc68e945571596c0e727ca42f4b3b5cb717945ca0a89eeeb440f8b58337a902fe4c8d489819d8c7ece9949af02f0ec855c75ca1bac6f035f7cf624d7c714cc211c65513a5b8d3598a62a9b0b4d4e9c1d17476d15319a1cc11cb869dac9df9504ce8172a56047307251b48cb8fcb135493ab61de89f711bc3054538f21c17d861528acbb99daaf363b5fe25743365dbe91d75dcae01c8780159ec8b818fcfbd5a6151e8d91bb62632b947a4184a8cf91c687b9ae0b0f923b3f36fc803b41345204ee124f51585d22fef457f81d038f47eed9d9425501971132503e6db867579e926339bc5a53c57a4b16c095bac8a3fd9e05d0b322c5979e6ecb0387a7767699e362b518c5b26391d91951478598d00d06bda88d361eccab91205d18952ae4f8ebf478cb875d41aee3c785c64b847d2f0b69f7112d5c63497a90fc2768224499f4ae96e1bdadb59b4745613fb85d40835349c071f221a779c51b7a9c45d32087f544014c922a266086972772691e18e4a41321c59c7394befbfd80c59acfe6467853d54b84332d669f9ff1b06ad8d9a95e1fcd21486f3efcd7039c68ee74eb5e9b78870619219b45617af332f4d6894bf0e111c7163cf2e5c7fef3517521412c7a6c87eec08731a9ee3d924a3874f6cbce6801e026de34b200a7374efdd2f9600d1a9a9cb90fa46de7f73955539a4dca28d8d6d2f17b4a62715b0b9d6cb69eb15da4da435ce2b769d476de5f5119f0aa4ac21fc336f7efd73c8b07"}], 0x4, 0x4040}, 0x8}, {{&(0x7f0000c16000)=@ipx={0x4, 0xfffffffffffffffa, 0x2, "12c80252f18f", 0x82d9, 0x0}, 0x10, &(0x7f0000df4000)=[{&(0x7f0000a58000-0x42)="177cff9240c3dd98521006d3de407d506cf69375cb027d4ae1de15e24c8eb5eb41c0aae88030d79e89a0a2f53019dba17e4caaa912201630325bb9de753b80a89098", 0x42}, {&(0x7f0000182000)="d5f48f127568253602ec6e21b7", 0xd}, {&(0x7f0000dcb000)="73da1bc9c85f80b4503cd836bcd2114adb1fbbeeac10e8189fd0ee26d534080c68cb8a43170010c9821d8875d5d8dc4b11e5d2", 0x33}], 0x3, &(0x7f00009d1000)=[{0x28, 0x11f, 0x6, "6f12e3ff7b845a908a376ae57bb84190ba0bafaf51"}, {0xf0, 0x107, 0x1, "75f7ec9c8f463c4764391753e552ef1df7a0d1f619a0856cf4985d11701b941aeecb938424cf9d81784b9f18660939f232e014e1e83cbd99d36955bc56e9ac1e5edec2e8ab58c8db301105b66a2e58fb639a459e237509daa7404e6ad5b837701a96a1b47c2b45d8083af36f1533aff71fd6495955d5cc781ccc175527ff36defda22644982e27422c802843891542bfb510a4b7019339428beaa4b6b13cc711b06a9741a5cb623bef352f25259481958ee3da1df9245d602b01d45edc05461b7444385a82bee9d2cbe855cda9dc60493f1580d5645104cfee28ad28d044"}], 0x2, 0xfffffffffffffffe}, 0x7fff}, {{&(0x7f00004eb000-0x10)=@nfc={0x27, 0x8001, 0x6, 0x2}, 0x10, &(0x7f0000f59000)=[{&(0x7f00004d2000-0x53)="87f134fee1a328db9a61d5f20e7ba47f3aa673ea3e12b18769c2d0c005136d83990c34331b2f8e97513a5d9a3e384f50461b9502e181f6c9fd8e93e63bd175ada6d929196a35828987c1ac4028add1330f8fb9", 0x53}, {&(0x7f00008e1000)="39d4ec48134ce6c1d0d979a5f03d66b3246a5f12a1cda80eaca69d6dc1b6b6b89ede4bfb11f5333fcd93051ebf4f16d2941cc8ad3ccb12fee15093b66a76c034762fc89103e60a1101cd8ca44a425717dbdefbaa89907d45611d602bb770cedf86d013450872223680cfa38506795535feb5a176530d1e21bdf291e20494df0002fd440fac1f17e0f1cfaef1ca0de940ddc31d3c3a46ad386fe6ed5d14ef28d1d00d5e347789d4c2326d27ff88c7262d8b3e4e9b90ba8b0098d94d9eb2914fb0cf69e25ada06e8973bb73d6c5b9a265c429e1cd2ebe6b2e4974e01e727e689a345b58236fa0e64bf59fe957d66db875435f97861f4130567b288d86abc84f37d670811a8b502b0a8067b5679a691a95ab35027d29b036add62a1d0934676a95b4c827cd02e35e896d93f2ac23d5f382e033df7b1044ae7651fe175ed5a7ce8ea3ce9d91e96e8ea70dda3383f0f3352f0457ce633c05be26eac476cb01a531cfe582948d163c00097db03d1dc57fc48d71979402879b869420cc929f95ad3f27202160ac9768aec1bc4e43729112bd70b802b40ce25eedecdf19687af85044f742b817acf7902575da306289229762a1706003284c9f81e63a60d8b2123e627512e5f9c2ba0d6d6ff44d034cf5d9b631a9925368b363a4f27acbc8ca1be60691585efc6ec16fe1e96e5864138740d46e3cf0752f041f3e05133074a836dd794b358f56a77fe479af79cb16a7c92971f545259168d4c353c571cf0b9682a2dfb6b2b74563b401f9c771295bd0022dec7e4b9e7c0b41f7e7c032cdc21abb8065dc7c2e979c927b2f1c18e384caa70e404aa967c1187f0caf77a2ac7038ea105ae8bc532c4fa80a71db24826ec5cee80074169b73be99e0bcfac3e797193930db4e7b66475511eacf737d612e7e84971a5868fcbc346958888cd6c589aa29fd25f4d3b49bd43b43000df9a7d3ad2f2dc1b2b53262c035ff647b97a0432df02f755b1e819453bf6ec2f9f324a93929b791b2606d0d6ef38bff893f2d5b338643c9c6618de34e3aa4e1a40f75aad57afa7a046d8a22c0132c3378d7dd2e455279dde16f02d3bc97916b613bf5b06d24b930520f2a690fa318a4832d1e9501c0de148eebe34b4f09335cc770e5a5d1502518a3d0a48464121f20434c6137de4e6ab810d993c1dbac2843ed502c1598887405a92c03a4b6ddc2d19a44967a3082e63616bb2a724c789a072fef68040aa204a6061dbec0460fdeb857f5418b933d298dc54c3e588691f86a2a9eb683baef2cb3cb825ad16799c061117184bff4264325be27068e9592f7ff96671a497a9d6f2c2a5ca217c7e9f969ead27062e54260fdb73559cf790c45f8e22bd4ce189dc4bcf6f2b2842bef3602e3b685b44ed658deb1e3c11994c7a24dbbc772afec4643b471c9258ac5ad2891b0bd77f0a325bfe1cccc85371a6038a21db94a5650dcc52b5e51723b204c298795c214b7c2ab872e533808ed230d1078a8c0205b9adb871fce214f4c0ea2be25c79339bfc1c766c660f2dd0345d3f4088e9bb074bf1f22c8e5114ec2c5faea3d671dd4c45c65f1cf4b3872bb14ab47624b655b4e3369f4db8b4c5c93571fdc6f88fefb0e86bd81bb68cd63228447f9a6297141118db119a7c953b839aa8e89b8ace850d13f4b44f92fea19e763d2b8dc79f5064f5702668dcf15f81efda2327f9232d743339af847d87d78f1cfd25bc49e6d313631dd52d50442b9186969c940ccc9c2edf7497913385d4a07a606aea97044e50448d5f0b147ae9ff572ed402f2471411cc9e96c48983654f9c618ad268b6891252fc0f762a6ff2f556d09c4a449cdfc784670521049dfe5c5ea9f0f137aca7b4dd17a3d498eb03567e0bf0ca9a7c62b53e1eea54d714c048d86a38462354d3e1f2abc417b33fb159d1672177ce05bc9f5d738fd0437f7f50b6a67565b796cce41e905a643ce65a1725e3d4fca9f6a0a6d1f017e73c76e879b9c8a6ca3e06e94cc5ebbc6259c0d41d73493783ce28aa92f6ff8793a816d1593e5c2d26718c8fde959b340fe15338ec0b536a45311007f36d24d488d48e998349797a9625efa36e1f538410e65974dcef1ae8aa3b9dff8d4736b5b181142ab3fba51c3e3df834d8ddd140d3495833eb1916667c02b0504e93a9bfbaed85e2d35887aecd6963ecacbba291596953a5e2cd3cf8298090bcb867780ceaea7f0bea851b302b6d02e8c15161b3d5912fc6411b51091f2d9f08eba242a58ef3d5fd9da2f830cb8711a6617aa2593271696c6da3aaf35451fbd4dd144daae0e37c9222ffd5f2425263ab21ad29c644b55aa23154783eefc2d8e1480ed7033f98bc742c48f7ea5e89acfc5a54896213ca506ba964e4ab034372a1e5693c5823728691097ab38abf6d8a30f684e82b16e4bd03feb8ec0003974ed9d4a5f5b729c3697eea37c0c98ffb87c4ea2a0c728c3c9a57cff546407325149f8cd9f76e3a9dbc8b9c216eb44b4250af186958d13147bd98c45be341a70cc20548cc9221d3d1ebf6a92845a42d1c521545beb9119bac4c07d2ad7caea7f196d81fe56b270ee041e2c1dff3f8420f54a420d53ca65d2f1511918021b03cf70a31c836e8f2e65a66d041a1863ca1247bf04c78014eba09dcd455cc77fb22139b2373ff1167e2b5d7b909cf2e7d5c0adb0d26da23c4d450d671e9f39c2037df322a2f89b34bcae2b4b700da456a759b698cbf60b2ac9c2a9c13f33838c185dbeb613a783ede3a288a9943149d2acf58165494902d530c6323e063719b2a58c529298d6913b96f95630db9a42e52b79a6333f864ff59f40f1d81a4cd0bbd73859c2d96db41f4ae03251411989c107e790f6165789559c8fb71daffe658f28373ece3a517f0ec79481816d6218909b2349ba09ae301a103270ad802fd938ad53e2346826a9242e62a46d0504b2813d3979504f772697b0d68551dd1dbc89e34e00fe1eb568bee287159c80c379d5fed342ce20e9a76bb3b3e8d51e95708023e5274c983f538bc3b3fecaf2ddc7a456485ff48df16906ad0365aba8745c757fdecc794749ee60dae545cc0f70523c78d39c8f37b913d88dcfaa9f5d251e4649715a3542e0206419f712839b5ec68044897824cdcddd17050a494f83cee08f17cca2cf368e13b0e3788f546e03863de7dbb704bd7b62f576fca37956232e21d148f7cac42cf683ef2b1844ac99bb86a471f81f682203d55bffe6fce79f6439f54f11bf5caa1d0b9cb4e8c7b54b270185f0da3e2678d4306d0374b17cec3218ca1010d70468f9b2a656ca5f40fc2c622865d030d708fdc1f7e818215c6968b9b38e83622ddeee1a419caf4f13e409013e0858f274a4427bd35e5091e24ef78446caf3a75afa0bb4a8d2735377a2efc361e9167ba873d07d4698846be5daa8b2136fb5d1e2e4a3d9f4b12181c9a7a3e09675190e76ab144433dc365ee4019b55fbf986a902a648323e343caea97588e85881305efcd3050c14a7b457d052ce78a17e4baf54ced45b425285d9ec76b6b64fc58d752cd8ba60f5e0dfadf397c589abeafe6a0d48a01fa3a2382386fa79c57b87d1b3b0df47b04698ec47782015d3e453281bc6ec0fe777d4998b2e2162113f86a45b086f8f5dc1cef2eefecf0ddc9de8837304c7a46b29c344405bbfc15d827053405d445e98f3a82ed4ac21a803aa8228b99e9b2848a22a49693ad62a70a1548499c9a7347a99f8aa4f3d897321486cd68343e3b30a1054efbe03fadf92a780750d458b042be7197ff37340db9d17441d7ea241a7feeffaf59970a85bd5fb9cbff549197c64a08a12feaf8621972e976337c3ef59f6cb4978c7125dd79a294eb7a782ba01fbf627194b342a05bccd7fddc89e506ec8c00362b735a7f714c10162d990bdd5815ea80e2e4e38ec26951c3ec4cf1b4995463bbcdf1e45d44e6d486a362311212ddf4e319558a540c336d5cd24a3d14361b7591c87963ea05a6d5c77f5d9a3f304f1b1242d5a1ea089edd245ead92c1062d6512360f284fcf5a844ed40ee77cd2b57dd4c9a7379d1a2967a3b276d53d83db40beccb7e67b85c75929180db92608438991720f8af102fbfb313d143e6a2d13f82b05f9a648af91212ab0d0c2824200d85165caa3603a9a2b86779664f4dba72b168c0efafb2f3f2e784f487a0039fe6f81c5202d9620f647efeddd43733cdf14fc926e2a8875f9f8799e7ec065b2d552bdb5b1619e21e552ce602919e6eaace698a90ee23ed6795e3fb764c7ecda551547f5881de5a1a8476e355be4497da428039d7c5f22982abae2ab56fd36f7d617c9a90e0a9abd037e3f17cdc6b536f620becdb1ae18da9547724ca07a8ed58096bb0ecda64b751c8b8fbdcb4bdff4567779b009400c4f04f6b5772c3838d0643a5ff16f8b80ea8d096befa998e8760cd9ff0c394ed3f5d3a783debf6a5141ec6a04354fb943b9cafadae686cdb89e858d21445525ab04fb6640e1c30c33474902271bf2e983118d1a585bfc4a0834de351d5621c7b938619f608c4cdb4e84152919614f297b36d861ba1238faff8b5ba205157283d5a0363e918c88518a1ddb6ab9f06a065d9cfcc661addcb9f006b8234d9df45f5ac99aeca2a3b9da5ba55c44e5d0dd1c9c104aba352adc7e46dad9046edeff0edb445b7447c3c6f3ab93854558ee95de789582a1ee5ee94c9ca2ab6da43bcfeb833d51eff9b8426ee5749967b5720f5109e5b19223fc31a6671ad6b7c22f684d18978633b829c8a9a4f5dfd6595e94980375a1c8e30169e0d28c34200851d6cdd067bf13adcd21bbabc66beff354978d5b07623079ce1cd3a16cb77d327e9939beea8e92793881c6fe07ba98cff7e53f2e4ae220c5ee73841360ad5b38364341b8dd96dcee6642791dbeb2b2fec48dbee1e3a00551d662895e2ac4d3f6d047caae428f027ac7cb5e024314ed15159f6486d19c677ca6caf37e9e150770b296b3b5efbe2776316f5ffbf1df09891841549af5f521643907aeb602d173d0f3cad94cdb3fc3097ea4ddb8454a5bca8e0c962fd18b4b622406392f8aa881d8c6181e54728dfb3f6c1f4ffe71f46923559c6d0d688f1f5022d12959925a3110c4554e278243f14a88c31e80bc2f1dac4b4c4defc0dff468130e1226481de373d6bdb6302d3083743afe9fd8a9a4fdc9165c708ad4e5fe2a7a93d6f1a2e729bda403af68f04ed57c1949aba82103728c0024e5afdb751e4f458460bb547f3349d937f28f32419898f227ab55789b0d4ca8c2c32c45e701cc97ff2bef2a97b2bf381361b4b58a23e41141b4ca4b94c90945898b83793d6ae8009484fd88d036316a3a4b698138dd483fb2fe3ac7a03c22629b19c443091782737c7893da26fc5faadffb8dfc9555aeb0145632cb2cebd41f1d460f243df9d54278a36813e850703c11e23665101dd7ea7591560bf5617143cd76bb5039efa91c250f56b795420717b5f736a85532c20afd2cceb5d63f01eee0f15e723d791b27070af95ac19efcac5928924a3426b72e07b9a6ab8e75d109b5364bb3ce1ee25d869b42841649399801e0addbc3dfb76de8794b8a099c9ccdf60c951a8372d2aebfb0c57fd9c6a1f54e3c7d350f2e4818ef28569a2bd992de713b6730fb249901d3f9388998a35e2376922beb5994cfee52abf15b198a0756c56e6917e503f201e5e22181c9c748a37f4875120bb7a369c7938cb821a02d17aa68964ba1fecbbbc3c65ee822d97265a454f75b20f87dc5ec9936468d24c1ed69c1de2d01e72b103a7380f79f22bb1b", 0x1000}, {&(0x7f000008e000)="b7c0a1a17be77d00fd6510a097b3d3cc8cc3a1ddf32f6c12651308f683657978b020197b2100", 0x26}, {&(0x7f0000bf1000)="6c4fed2bc9b96bcab8b32fa028a733ccc82ccd9d3547f7c004bf4f44b58b2d094289f91d95964bbe6837444e2d663ce92709a9d9ae0d8b01ad850d37ed3a9ed5060f493dfb14028896", 0x49}, {&(0x7f000087a000-0x15)="61f11b1d8ed90bcefa95cd406df59c8611ee433dfd5c2a774256", 0x1a}, {&(0x7f0000c19000-0x50)="95a26898b46f5f98a1aba2dd8761babb93006610ea830e63c5444dd885d72f0a062d5fb8ec611d3bac8e0424f456c76d882e24eb315afc27ca82e70bec6a7a65093a9bd7e339f0f267193efaf56f8234", 0x50}, {&(0x7f0000309000)="907df0dcc3cef84c5cd44e1d766851e5f86dc404bf15c1a96845a76e45c60a0fb855259e04b7b33268a05c0919ecb014cb769f18bbd0a835c8af22bbc66f90fa239d910ffc26321fc93a44fa4b8280786a7f20eb7f5b8bfcc75112d7500a960b8970646cd3379426c83feb79ee0a3a6d81c04fbf423ab09faa0960e35ae2c8572ab111033da37af55154cc3cb79f6fbd1effb565f7e3e4bd0841e37a90cc5227f5029fc79b2f9399326b16d5883183e2a64910d0c100e94ea86586e15537b797cde634e32fb926c0fabc9b41dc2aefa1f0f7dc10cf567521a425169c47e32abe10dceb710dddeb964b15aa06", 0xec}, {&(0x7f00008b2000)="50201d12e47e48eba0716a97fc7d3ac4eca0a2d69e5392f8c754bcf2732cdbe328e137dd58ffa32243b7355c6b44e6de4fe58688dd094ce78e1c80517dad797fe8b1562558e1491209f255baea7cd08f3cfe00deaa1b9b6c031a16e7670ec01036c855894bf30c33fc22284d69ac88a4f3a1e21e7e4718b11d9b7777c256ac2aec4be9d435fa3769d69f4cbb96fe0e5eb47e2b559fc4a7a08cc55cd293e971a5d21139fdc2d53fbea3ba678158da88d7b3e5051f8a188ad06eb017c6134ae7f9c1ef0b51bac0a275f510f31ec8cea00f80541fef672538d06e30ba044542987a6c411b1df3c59600cbe47fd7", 0xec}, {&(0x7f0000c0e000)="e9b58b70d613c043a57553b12554dd1d5967a963fc858e53a7628fab5bd09d01c2949ab294cede8d09091f075b16dc6f8e7e2a38580e26f92e", 0x39}], 0x9, &(0x7f0000a7f000)=[{0x60, 0x111, 0x7, "a37021be887f926c540a7bdea477d516b308b1ac7ad54302cfbd438fd247534da5ca39f4db6f38a87af9f54d2c50c53d9df974d3f88cb0ecfa964ed5a8c85b51738a793262194da9b2b7a3c8e68dbf20"}, {0xb0, 0x10d, 0xff, "069d9a9373f08bfdd06274ae776f4ed48a6873ca5c5335edcdb78602b4ce386b1d8c1083b9ee3ce8f9c35aa9c23240911c51699da8bebbaed19cba4b659427a07783ff8deee31a2e8b4a8fefcec38ed08e112f98b3c912835c6ff3a97ea9e495134519633c8383ee955ef1e0ec30cc9a487918f63ad371c77aa727f4a4b988fb4396689b64dbd9e67151a5e06ec3c27de95af955bfe341c0b6d4424bbf"}, {0xe8, 0x29, 0x2, "585549677a6cb0f6cc30de59ad204698869ae0ce656b047931f5112aba21dc7be6222b1f6625641fe2a1c1d8bee7c4b73cc6b72f9f5bd94b509749e0251719fa906da1afdbb49224d8ef4e79cb0c1386cff6bd19406933303b94ad14cd1bdca0b5df2efffa94831f155b7e50b0a486c8aa7679a0f2b0ad774df8ef25d577e4733a9dfc8dc7bdcb0a57845f2abf0ca5e13ca69482684d4ba551bfd8340387391f367d057dc6a6964f685c9aafecd62d3b9eb02c9aa9436dfa182e9436b1bc5e109ca66ccd15c6bbb7a6a76a5204bc1da404dcc91d35"}, {0x68, 0x10b, 0x20, "99841161a0e9e3b00a42bbe50c5dac57faa2b4116126358db229a3212a688579e786034e4fae8cdbbd3c6a8132e08ee7ac984774eeb35566813d07f11af1c5bbeb38c035ac83c46c2395f296b80ec93e0a92"}, {0xe0, 0x10d, 0xfffffffffffffffd, "d64322ce0b0fea577588f057071e457fa206ef314f032a4de18d7758231baf83a88d7f3dacadbd3eab193925eae4cee452615a0342fd644062a52ec5a3fd4951029e51e8d99b2aa66d9b2540ea1214dde70e95883eb4b761582d2d28851080305b6e09aecf1100024919a566f323ea9ba0bcf8b14f8f9699ec6ffa35425fc7b8396f13a04820b3bccea29707010d0f93fe6a5df2d0c995f422c4337bd5bdab598dfea023c6f8d706836ca81c70f14562006a21ccad067d0b5082c6bb73fa41c68685ec44002fe9c45d413ad2bade"}], 0x5, 0x40}, 0x1000}, {{&(0x7f000099e000-0x10)=@ipx={0x4, 0xc, 0x7000000000000000, "e854c4378366", 0xbc1b, 0x0}, 0x10, &(0x7f0000fcd000)=[{&(0x7f000038f000-0xa2)="257be423db2b2ca975a3ef2fe5752f328f8d186419cbaf32fb61bb050170f39ed5eb6e6a9d00f9f77dbfe7257969b4351e895ce4a8b126ef34bd43f446c65fb5067e81c129a71d47e1247decad68b58517b9cef144b2e67b3db67c4a57040da44a88bd703dd1d99050a7a7f83499974f2619884a1803423b97f72e7381cfc49f7bcfbbf245d2afacf56bbfabdac928712fb30f0550f69801b5bec86c7fe5804930fa", 0xa2}], 0x1, &(0x7f000064e000)=[{0xd8, 0x11f, 0xfffffffffffffffd, "5ca0aca3aa117be005e7e7734355e668eb31b292a036e077b21f96876e2901f2f178ec8e19eece3e69110bbdb484fe18db238640011468ef9f5f2cdd1acd3478b49e00a590a65dbb95c77fd10d01468f234c38b8de74e345d98d454910b9dfd319c51a976bef17b992db6713a6a66c6e66e2eee59058a0361c605d1ef3667b3484b102163f259f6ddfbe09686c1d49842654fc0210056a4884793e29109fd7dc17b434399f368cc83a88d9002e095c042e0e84699d84afab3ab90c73681eba1ec8ffca14e3"}, {0x68, 0x118, 0x100, "d01c195750b41701d6d3fef0aa121251243063a9231a2b10819be9a17b9c059ddafeb37e93c36858c68336d968fc2d1ba6aa730407acfa560ad050197114e7416ac294d08e46b137d8b637770add41556221741259"}, {0x110, 0x196, 0x1, "9daded389b5ce1d552a9a7c24c56f943ec5ba1678fc22524b52051a021d10ff2ebf3a6c8dc6275864f1952c855debf33faa5fa69321e8e7533d416200deb80f8c903ec5bb089d4356b18163ef0e9c75d49a32ee12c55b43802156746eba49956db76a8064cc7e85aa4b884afb1818719ecb32be62ca8556a56ba157bcb469aaa68d2c519e19ea1a4af6105bebf3310f45d3b599b19a5570c6d5f9c7906ee7934c8183bc93a8affe61dc475ab99c563dfb706ba968397fca50df1f436ce10decb5ea932e5de72e09b88f6dabc192555b78c370ef01537c008b2f84dd4c29ede0d9b57d313df54e9545badabde70de4463942ec180f3cbfc0926b6"}, {0x60, 0x11b, 0x0, "3de0b66cf6785f7be7dee730c00c7ca93f2229b03fde75e2d45cc3e8973437c2dde5ae41cd74b90366d3acb0c4d5b8db35813df908716069da1cad89c8a6fc9f34c70899fa7a99e79742566cbc4789"}, {0x88, 0x0, 0x1, "b292ce405933cf06378e1be4eb492afd38313ecdcc99f65beb48a8fce93a668ed0f8057371f26623358d2e41e5dd0599808b58f548b2484a1cd06ba0ad18a04dfd7275fb76c34b73e994212a0804b85967851a8843f36b0467499c0096c773e5214e3f0fc2c10d45e4cd0ceb02497e02ea71"}, {0x18, 0x0, 0x2, "ca9d8ef33b3be349"}, {0xc8, 0x116, 0x10000000, "c129db35796a144cbe9549027cfa89369517ac309854f2bba61c3907f6dd78b71e5866dc09be48311ffb55dabab41f750c22e33fa46b679a7478d65bc8d42443e521dd2a669439b1a54caa1f4f70d59e03ffb49eac62e73cdf951d8be45f6e1bcbb9d929a700f27fe12797d8510213f41846d4d0deb24d919932612c7d495bba1624131a2291667de8ef58d8b0edf3dd341da4000ea04252e90faeb49d86bb1c340b89392b2301e7253a39569b1ac1dea709"}, {0xd0, 0x10b, 0x80000000, "55670b62447cdf9fcbb0afc661db2f80c5c45edf2e026dd2e1709d97248917fa1e87b0b32610087be7642c17c75a60995385acb250c804520b0f5c226faaa3ba3bda92ec2f95d6fcee012f1888c3e61d034dc07ad964a46f0469fa69830bf59c415d69ed9bd242b32f5097c8981170d507bc4415c88a4cbb7b9ee4ba16d611f4e00ad6014431d355db2c6f4c6dc5ab1d67b231df3df5f00abb7d8d0c53f7888f2eb5393331c13592775ff0639568caa0f25aab579742fc8938a451cf1e074d44"}, {0xe0, 0xa1aead6f846c8661, 0x1, "3bd9558addbd27d19deb81d702b9c59e40c6d406197e61ade19bf150b1d375fb2e1f90ebada6f81b860f2836c2f4c9fe86590242ef95945bc63e4cdb47f8295337879153bd377f307d15d74a20f8ff7fb6fdeff6146c0fee5c1860403b9e7b67f9836d3113e358ed3e831f157bedd9cb4f4d5588a17f318b4632dc21f99bbd57a73f3f164368547bdfeaa10ad273b14ca2011de4112508051ae25f7f2cb3f7d5fed1cda7f53209d14e0fea115275f15dddad661d5bd8513a470039f7b973eead899f11dfdc916ffd12"}], 0x9, 0x800}, 0x7}, {{&(0x7f00001a5000)=@generic={0x11, "1e073c235656748319644a50df6159898433050c9c9c5ea819aa7904bd734cbbd16ac34d24f9c20163bc8795523fc9276839344212341d5e02000df37a16e86c3c6a6beaeae62477ee1c65ac95399db2980f54914baa754a1cc1c3d56039cf36b473aa261d315444028aaca29a0f2a8e948ac38598b30e9c18f29655912f"}, 0x80, &(0x7f0000f18000)=[], 0x0, &(0x7f000069c000-0x108)=[{0x108, 0x1ff, 0x7fffffff, "6476a7370ab8ce008df8c7bc4a397dd4fe0689a3f1a3625dd894cc0d1803c318dab7089a006bab73b7c05cc941d6822277ad7d319daad584e8331c5032619d518ffa87e8c7c67ce3bcf75f1765f9b7a20825370dff70e185048b0f048c02c8d0111d3442cb1bb6245b2ca71323697fa79edd59a0a1dfcc6a954dc05fe272c41871bf2f4cf2b6e08251e523221589da1cfc9e1e0c7266645ec0418e0a2fc85ab524d92336eda20c3abecbc62695a454d886a108be51851134df4ae86a20a3eaca77bee27376522c284f976ecbcc15118972eaf9154b68a5c7185b185cc208da0543c92d6b769cc075f9acc75710c94e5ec6"}], 0x1, 0x4}, 0x8}], 0x6, 0x20004044)
getsockopt$inet_sctp6_SCTP_RTOINFO(0xffffffffffffffff, 0x84, 0x0, &(0x7f00001bc000-0x10)={<r6=>0x0, 0x8, 0xfd, 0x20}, &(0x7f0000d36000-0x4)=0x10)
setsockopt$inet_sctp6_SCTP_DEFAULT_SNDINFO(0xffffffffffffffff, 0x84, 0x22, &(0x7f000049f000)={0x800000080000003, 0x200, 0x1000, 0x3, r6}, 0x10)
mremap(&(0x7f0000138000/0x3000)=nil, 0x3000, 0x4000, 0x0, &(0x7f00000d5000/0x4000)=nil)
setsockopt$inet_sctp_SCTP_AUTH_ACTIVE_KEY(r3, 0x84, 0x18, &(0x7f000088a000)={r6, 0x9}, 0x6)
getsockopt$netlink(r0, 0x10e, 0x9, &(0x7f00001bb000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", &(0x7f0000015000-0x4)=0xfe)
fremovexattr(r0, &(0x7f000015d000-0xb)=@random={"73656375726974792e00", "00"})
getpeername(r2, &(0x7f0000adf000)=@ipx={0x0, 0x0, 0x0, "000000000000", 0x0, 0x0}, &(0x7f000085d000-0x4)=0x10)
getsockopt$netlink(r1, 0x10e, 0x9, &(0x7f00005c6000)="000000000000", &(0x7f00001bb000)=0x6)
ioctl$TIOCGSID(r3, 0x540f, &(0x7f000076d000-0x4)=0x0)
mkdir(&(0x7f0000b18000-0x8)="2e2f66696c653000", 0x0)
r7 = openat(0xffffffffffffff9c, &(0x7f000060d000-0x8)="2e2f66696c653000", 0x41e102, 0x0)
getsockopt$SO_TIMESTAMPING(r7, 0x1, 0x25, &(0x7f0000503000)=0x0, &(0x7f00000f1000)=0x4)
ioctl$SNDRV_TIMER_IOCTL_PVERSION(r7, 0x80045400, &(0x7f0000a32000-0x4)=0x0)
2017/11/27 06:13:11 executing program 2:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mlockall(0x1)
r0 = socket$inet_icmp_raw(0x2, 0x3, 0x1)
sendto$inet(r0, &(0x7f0000ffd000)="59a9a3837f46941af0f7848f885736af74a649d2c0f24af12b6f0357b1758ce1", 0x20, 0x8000, &(0x7f0000635000-0x10)={0x2, 0x0, @remote={0xac, 0x14, 0x0, 0xbb}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
r1 = open(&(0x7f0000bff000-0x8)="2e2f66696c653000", 0x3, 0x0)
ioctl$SNDRV_TIMER_IOCTL_GSTATUS(0xffffffffffffffff, 0xc0505405, &(0x7f000060e000-0x50)={{0xffffffffffffffff, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x200000, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
r2 = perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xd4e7, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
r3 = socket(0x10, 0x2, 0x0)
write(r3, &(0x7f0000269000)="220000001a0029100b0100047f000005020000fb000000000000000004000000be7e", 0x22)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r4 = socket(0x11, 0x80003, 0x0)
getpeername$inet6(r4, &(0x7f0000b8e000)={0x0, 0x0, 0x0, @remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0}, &(0x7f00005f5000)=0x1c)
setsockopt$packet_int(r4, 0x107, 0xa, &(0x7f0000d2a000)=0x2, 0x4)
getsockopt$packet_buf(r4, 0x107, 0x6, &(0x7f0000435000-0x6)="", &(0x7f00008ad000)=0x0)
sigaltstack(&(0x7f0000693000/0x1000)=nil, 0x0)
r5 = socket(0x10, 0x2, 0x10)
write(r2, &(0x7f0000284000-0x24)="2400000e1d0000000d00fa0800000004033900041000010004000100010000ffffffffe1", 0x24)
connect$inet6(0xffffffffffffffff, &(0x7f00006da000-0x1c)={0xa, 0x0, 0x0, @local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x0}, 0x1c)
getsockopt$sock_buf(0xffffffffffffffff, 0x1, 0x0, &(0x7f0000a0a000)="", &(0x7f00005c5000-0x4)=0x0)
getsockopt$llc_int(0xffffffffffffffff, 0x10c, 0x9, &(0x7f0000698000-0x4)=0x0, &(0x7f0000503000-0x4)=0x4)
fcntl$setflags(r1, 0x2, 0x1)
ioctl$sock_SIOCETHTOOL(r5, 0x8946, &(0x7f00007d5000)={@generic="ccb9aff86878b0aae2e988b1870d86d7", &(0x7f0000a97000-0x2c)=@ethtool_cmd={0x30, 0x5, 0x101, 0xa4, 0x6, 0x20, 0x8001, 0x8001, 0x0, 0x100000000, 0x5, 0x2, 0xc8f6, 0xa0, 0xb6b0, 0x5, [0x3, 0x0]}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
ioctl$sock_kcm_SIOCKCMATTACH(r4, 0x89e0, &(0x7f0000b40000)={r0, r1})
select(0x40, &(0x7f0000697000+0x76b)={0x3, 0x196e1789, 0x800, 0x800, 0x0, 0x8001, 0x101, 0x6}, &(0x7f0000852000-0x40)={0x80000001, 0x2, 0x7ff, 0x0, 0x4, 0x6, 0x7, 0x8}, &(0x7f000022f000-0x40)={0x8, 0x8001, 0xfffffffffffffffe, 0x7fff, 0x9, 0x43b3, 0x5bdf7688, 0xf71}, &(0x7f0000342000-0x10)={0x0, 0x0})
getsockopt$inet_sctp_SCTP_DISABLE_FRAGMENTS(r4, 0x84, 0x8, &(0x7f00004af000)=0x0, &(0x7f0000a9e000-0x4)=0x4)
ioctl$sock_SIOCETHTOOL(r4, 0x8946, &(0x7f0000c75000-0x28)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, &(0x7f0000031000)=@ethtool_rx_ntuple={0x35, {0xe, @hdata="80357fb6339a740261efe99682999aee2b64c05481baa45cb7c4c656acd8e7b537ebf7b41e46997cdde1063eec8e7276a82729c4322645fa7e1b4992bfd16f5052b70b0b2c169ff9", @udp_ip4_spec={@rand_addr=0x1800, @multicast2=0xe0000002, 0x2, 0x3, 0x39}, 0x35, 0x5, 0x60, 0x8000, 0xffffffffffffffff}}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
setsockopt$inet6_IPV6_FLOWLABEL_MGR(r4, 0x29, 0x20, &(0x7f0000c67000)={@empty={[0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0xa5, 0x10000000000, 0xff, 0x1, 0x6, 0x1, 0x5d}, 0x20)
setsockopt$inet_dccp_buf(r3, 0x21, 0xd, &(0x7f0000057000-0x4b)="15981395a72e0db3928f72f215cb5fc9ccddbdaab640be9d5dff4a612061b957600890f63a8f9c8b4c6ce36aecc56c9f17684260244c0c5961103df803ff96b43393ea9e6e24fd24a0f2af", 0x4b)
socket(0x19, 0x1, 0x6)
ioctl$TIOCMBIC(0xffffffffffffffff, 0x5417, &(0x7f000029d000)=0x0)
2017/11/27 06:13:11 executing program 7:
r0 = socket$inet6_udp(0xa, 0x2, 0x0)
setsockopt$sock_void(r0, 0x29, 0x1b, 0x0, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
accept$packet(0xffffffffffffff9c, &(0x7f0000000000)={0x0, 0x0, <r1=>0x0, 0x0, 0x0, 0x0, @remote={[0x0, 0x0, 0x0, 0x0, 0x0], 0x0}, [0x0, 0x0]}, &(0x7f0000eae000-0x4)=0x14)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_inet6_SIOCSIFADDR(r0, 0x8916, &(0x7f0000001000-0x18)={@local={0xfe, 0x80, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0xaa}, 0x8e, r1})
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet(0x2, 0x80000, 0x5, &(0x7f0000000000)={<r2=>0x0, <r3=>0x0})
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_DEFAULT_PRINFO(0xffffffffffffffff, 0x84, 0x72, &(0x7f0000000000)={<r4=>0x0, 0x3, 0x30}, &(0x7f0000e86000)=0xc)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_kcm_SIOCKCMCLONE(0xffffffffffffff9c, 0x89e2, &(0x7f0000002000-0x4)={<r5=>r2})
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000003000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$netrom_NETROM_N2(r5, 0x103, 0x3, &(0x7f0000002000-0x4)=0x100000000, &(0x7f0000003000)=0x4)
getsockopt$inet_sctp_SCTP_CONTEXT(r3, 0x84, 0x11, &(0x7f0000000000)={r4, 0x7}, &(0x7f00000b9000)=0x8)
setsockopt(r0, 0x9, 0x61, &(0x7f0000b7c000)="e5b90887ee47cff876e777bc3b8897d0d6043c2c3b90181a342401569f1d9aa9fae28d6db13996288d0fa6bef97494721bb326345710e29634abecd78ec3bd4812cbe85d353957d288e623d9161d917cad9a9baf3d1f877a2ace1d284099069eb96ce021acc053cfd320eb4682eb780d8dfbb19264090dedb08bf795e581af2377c277c6261f7fdd9e5fe1ffb5cf889a39b5ea3741d02349d868746be70b72497570effc10fd5f299a77dbf4a95bc25faa327cd9e1d44521073b8e844f587584cfd0", 0xc2)
setsockopt$inet6_buf(r0, 0x29, 0x2e, &(0x7f00002a4000)="72ca7e41113fbbb02b0da88bfe5d030ec325c55654971b55904d8c69d3773e361a95b76776712e41bca11ce7a88dba9cb121305e673f9b8d4acf1ae26bda075b3d279fa82ccb41d9af479e33f11d2246a826f85c7b9c6cf8b88fdf07780a1a5d5bfc134cb0294bcc871de8989d2a68b1a67ae0c58ab4c91570d89a40309184a704f6660229c6d982d87f980cb4e224ff506f25c8371728999eac0b6f69a7c9b42ce30dde2aaad17b4f5cfb0b35ec44b689302e858884d4ccc984ef5724e6c104e410be67a3719b", 0xc7)
ioctl$sock_SIOCGIFCONF(r0, 0x8910, &(0x7f00004e0000)=@req={0x0, 0x0})
mmap(&(0x7f0000000000/0x12000)=nil, 0x12000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket$inet_tcp(0x2, 0x1, 0x0)
mmap(&(0x7f0000012000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000013000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair(0x40000001, 0x0, 0xfffffffffffffffa, &(0x7f000000a000)={<r6=>0x0, 0x0})
mmap(&(0x7f0000013000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r7 = bpf$MAP_CREATE(0x0, &(0x7f0000014000-0x1c)={0x5, 0x7, 0x8c, 0x4, 0x0, r6, 0x0}, 0x1c)
bpf$MAP_UPDATE_ELEM(0x2, &(0x7f0000008000)={r7, &(0x7f000000e000-0x1000)="", &(0x7f0000009000)="63d9df0dcdf29699dbb8182455b10e52241b6f5a5026ceac91d356108b9b5465ca62a4e567d9a586f309f00d6491ba35c56f0d5db4b7de3f9af9efb7daad47da1919c21ac8404ebcb14961994569b757f4d85531668bf79b4cea3f690c4939", 0x1}, 0x20)
mmap(&(0x7f0000013000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socketpair$inet_sctp(0x2, 0x1, 0x84, &(0x7f0000006000)={0xffffffffffffffff, 0xffffffffffffffff})
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:11 executing program 1:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = getpgrp(0x0)
setpriority(0x0, r0, 0x85)
r1 = openat$kvm(0xffffffffffffff9c, &(0x7f0000c2c000-0x9)="2f6465762f6b766d00", 0x401, 0x0)
r2 = ioctl$KVM_CREATE_VM(r1, 0xae01, 0x0)
ioctl$KVM_CREATE_IRQCHIP(r2, 0xae60)
r3 = ioctl$KVM_CREATE_VM(r1, 0xae01, 0x0)
r4 = ioctl$KVM_CREATE_VCPU(r3, 0xae41, 0x0)
ioctl$KVM_GET_MP_STATE(r4, 0x8004ae98, &(0x7f0000834000-0x4)=0x0)
syz_kvm_setup_cpu$x86(r3, r4, &(0x7f0000960000/0x18000)=nil, &(0x7f0000239000-0x18)=[@textreal={0x8, &(0x7f000066a000-0x69)="2e64650fc78f6a2f0f008c09802e660f127d4666b95908000066b86048000066ba000000000f30baf80c66b8c07d0a8766efbafc0c66ed0fae2e76d6baf80c66b8ec880e8766efbafc0cb8f3fbef0f0926260f01cb66b92c08000066b80078000066ba000000000f30", 0x69}], 0x1, 0x4, &(0x7f0000158000)=[@dstype3={0x7, 0x1}, @cr4={0x1, 0x2000}], 0x2)
r5 = openat$vcs(0xffffffffffffff9c, &(0x7f0000691000-0x9)="2f6465762f76637300", 0x0, 0x0)
getsockopt$packet_buf(r5, 0x107, 0x6, &(0x7f0000bee000)="", &(0x7f000055e000)=0x0)
syz_kvm_setup_cpu$x86(r3, r4, &(0x7f0000c36000/0x18000)=nil, &(0x7f0000574000)=[@text16={0x10, &(0x7f0000a03000-0x34)="66b80500000066b94a3000000f01c167880a26990f22420f38f19bff27ba210066edf264360f22172e0f350f01cbba4300b000ee", 0x34}], 0x1, 0xffffffffffffffff, &(0x7f0000dfd000)=[], 0x0)
fcntl$setflags(r1, 0x2, 0x1)
ioctl$KVM_CREATE_VCPU(r3, 0xae41, 0x2)
r6 = accept$inet(r1, &(0x7f000023d000)={0x0, 0x0, @broadcast=0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, &(0x7f0000676000+0x96e)=0x10)
ioctl$KVM_SET_REGS(r4, 0x4090ae82, &(0x7f0000af6000-0x90)={[0x0, 0x7, 0x800, 0x2, 0x4, 0x800, 0x6, 0x8001, 0x401, 0x2, 0x9, 0x7e, 0x9, 0x7fff, 0x9, 0x10000], 0x0, 0x200000})
ioctl$KVM_SET_CPUID2(r4, 0x4008ae90, &(0x7f00008e5000)={0x5, 0x0, [{0xc0000009, 0xc0f6, 0x2, 0x8, 0x9, 0x4ab2, 0x6eccdb90, [0x0, 0x0, 0x0]}, {0x7, 0xff, 0x1, 0x2, 0x7, 0x1, 0xffffffff, [0x0, 0x0, 0x0]}, {0x1, 0xbc, 0x2, 0xff, 0x5, 0x0, 0x3e3, [0x0, 0x0, 0x0]}, {0x40000001, 0x5, 0x4, 0x9, 0x800, 0x6, 0x3ff, [0x0, 0x0, 0x0]}, {0x1, 0xf0a, 0x6, 0x3, 0x4, 0x2, 0x1, [0x0, 0x0, 0x0]}]})
ioctl$KVM_SET_MSRS(r4, 0x4008ae89, &(0x7f0000bc7000)={0x3, 0x0, [{0x2ff, 0x0, 0x800}, {0xb35, 0x0, 0x8}, {0xb20, 0x0, 0x6}]})
syz_kvm_setup_cpu$x86(r3, r4, &(0x7f0000585000/0x18000)=nil, &(0x7f0000b6e000)=[@text64={0x40, &(0x7f0000479000)="8fe9d89971f14e0f064a0f05b9ad0a0000b80b1b0000ba000000000f3066b893000f00d0b9540800000f32c4c201b76569b96b0300000f3266b86e000f00d84e0f01ca", 0x43}], 0x1, 0x2, &(0x7f0000296000)=[@flags={0x3, 0x80000}], 0x1)
r7 = dup(r6)
ioctl$KDSKBSENT(r7, 0x4b49, &(0x7f0000e95000-0x1000)="ff5446ceb82cb0fe75bd42ed3939958b450ad81451b4933239ca0e65925f2b8fc09e3c2a61a25193c248eef6ab7665660b14ca46b70c11720d31bd41ce0049048ce5e6ee30352195269bc33887a5b5598724b80be02abbee87f45a51aaaba53eb81165bca1a17c2f0ea9e31a24d374d3da8ff4fb6fe3a897034a779ab14898dc1bc2cb3c1ffd85225d0d9ba4a06f534af8586e0a57df51f3dacbb3ea8444c9c8c1f4db6ee3db2dd949f75e634cbce73310292e94b6bc9cea8c1748c6a6eacc23de1f2ad6acced41830605463055b259f16d89783e54fcf57fc6f813a0d86658fd3041c36f7f0e9db33b1b8ce6024cda73027ad8b0775dd73c9c846e83f0e01d68daad9e0d3cc8ba4e3fe52d5adfb6fff0740721470008db5f3bcc21ef07efd983f9aac3b1c7b9d06d996bf5c0cfb2707738eeb805114f8ea04f08c287a462aadde185c491ca476ff793a355aaa2cce099de02a2f410cbfec7d4ba6251d3234481f2d5b675c0e608fb54027e4de18df53130538342425b4476e62d812845013e2039bc228ea0f79b01f7b35f2cb781eea42119a9a9fb5acdefb17400db202b7e392a712c760cc6161c175bb57d02d43ef43cb7251a29ccfa1793d3df55f8ecff4efbe2e445b2977bcb2ffdaf63f9cceaaa506f8d7670307701461546869c059af5cd8b2ee5489f94674a48013f7435fff9fc921a3370ee0f5a66b7637ad17e87ce72cf0a9cdd5a397428866e35020b5daa0e1bb54cf4a4900000000000000075a9913e2a56e819cc4a2f5796013089a09159fc61940e928002113ce34c0d6ba223d7bf0e43d047b10ab266ce39263e052f5257b7471fda2c2bc1c96475807ce5ee4aee35cf20b35aac038df5eb2be7a53f741ad1cf0419a59c4a6b9430aa89ff14f2f9ad776b9778f5d588489e9b71ef7cee17934fb8187e1e96149363bd00504d03142cfbc35dc48a1339ee6c20b8adb9c9e873c824e5456bb121f66fc0ee65455006c13cdd2ab78859462116932695ee9eb2e12edf32dc1334db1228f1bb79175e125f55d8961150bb801c4bcb4b8b11d663092404864c5fa5f29c4ddbf0553db0eacfcd01057d75309b7321ee02712aa7ce2ac46b761e5e0092e50af74fed405778e8929e77aa97c25c4326ecc9368f21df83275c67d0c45dc0200c5a3db9f254b97b6021b1ddab9f073f2026806e1cfc98365c1b1ce435794667be568f18a2bd6f947ff16e0a01591ca91b6570e0ed0f81ee4eaa7fef16cdf285e5c4bfe1500335d28b9f71a311820b2b56b111b2dddd081aecf61bd671c85d2cab39796375318fe1eabfafbc117440c7604456ee52f00724f8fa8b227eec751d11b0b2ab73703fb969d1104947d9ff138464f21ec8d892592c815410d519718b2244c36042011d53d8c9d1f4d3d693f7d9bae06faa3107cc4ab09685c2c4cc5b4c673984b58302e905ea1a9253ab5b6f9f220ae491f4d5f4f999fb2d11591fe17c0edd517d1d9c13ed6bd7413e5baff6eec7e1ea4dbfe4ff58d30588f0ad18effffc77cef41a40b4dbc6f0cf2b1c5f0fa4425a37b6846efcec5e310c3452f272009eae5ee0dbf72503b8f4810cbbd78b79c9a43916ce72ac992493ea260ebdaf70e47b2a822b39e8d65866ba1e7e6403c66f75413b4c64c9e11e2f83c44e755738c253459a9cdb5bfb24a71698e8969652e94e98b5dce8c6f1b2fbdb7ddad8b647dd3a45294135c645ac4527360ce250390955f22f9e420ebd7376bc83b36e3fce0e541711c27609b4c3fa59e65d5200269434305e59a46d0bf137f08ae869f7b4ea0b3d62be5e038fa87520990ca3288bf504f34e9e06cb0dfb3f864375a1cb308d97503498b602d214418376577a2684a294cbe02ffebae32047fa76196dd8f89a310948500f3ac7fee4563480c954ae2ab799a5671364b9520340652da8acdb94a797e891543bfdf1dba64ccfd62450131fd8f6af06cb8089c752819fa0e282b9a6f4909fb7053b00cf2bbc8241d48c4a1afa4c51be61453e393b17eeae706df42967a5e4c7d4fb92fbcb12cb8da57dc920703222c337770808ec9fef4ed4ece1f1f156257168c85fcedd348a73f41bc8ce2744ab2f7460c59b6bd52892c824f8eaa5f55570ddae2f26984e9edec4f0dfb131e429ed630fc09a6c12437a0d49aff7b961de3b8f1cbbad4964cbafda4c1bc86e3d79d346fe1acaf40d0e19c4d93ea088638e47709c2e34775042992620329c5038d6e1e2842635169ce7e29c7b4802d6dcfd83d774c5151bc11a014793d909db3a402c59fb6e74a71b00ec05cbd7bf7d1ca840195ed3f456fbb08d47cee689398cbe964dc5f92eed0f5cb142333d648ce692b2f43767cb05ae31968fba7493f4a4758f0fd84089cfd8c565310104091f048d169a3835fd644766fe42b2b83bdfec14e1b4232c9f202e154d8e342c18015c3957d6e06b890598776aba1e911b18cfc8d20a8d5c39f4dbe239f4e896e350528e9405dcd77fa9ea692c59379a3a15f26a2f51fbcdb2fad6b3e6178744255bcebf75d887a6e72344a8e9cce68848bd865aa52d33f8971b144d71f7a77650e1af633028f343420100ef6e52ce3f30c026b58d04f412dab82ace7257348449ae22bee0a6a68e801b63fef81930bf786130716a9fc8acb5aff42b01c6219f166c999843bbf2608f0db3ce39680ad0cafe1b23735e148e5a37dcad8bcdc56646cdc242c17862077c9534798345e4c80944bce54da6147f52411f1c0a8f29eb7dec54b3b056fecc96ce40921a036bc89dae8627f1cffc3b866281e013c9d75a5014713040dfb60ed2dbfff439ada153f51eb05304e850b7be1aa54959fd63c595bba876de0d0b5c87e6772dc6c63f03812fa200ffd9341602879888d98a5d50f1e00aca3f2ae4e788c5b6545953d0b7c4577e91e6ece09093770294fdd6bed889aed2f7b36d8d02c5cba598419db075ada59cdee7a0ee8ebf373993b7834ba8d5262597832b341aab195709837336e5b62dd80011f07740ea926eedfc31b92878ea4f6c00774b65e62a7ba3f54dd1e9fd43d66cdf41c6cd649c1bcd8302a6ab593e7c62940f7c4905aa8a75d3abf051c68fa4a43555ae971e198d27160e8df7aee64230bcc26b398b135b2053ae6823c6b82c710dabc56363b1df3ca7e5db1b35ba56d64150a3e09282231f37e2b06083dcc3178e16d8d4ebe238b1366cdb05d0eba173574c402bbd6c4c3bc9046207ba3a312776b65d952c50bbdc6ec7ca382295bcc8ab281f317a49fe86cb9c428920ee04ec7e62578407a6eb03e29d7ff8b91090c668d75879a62bee7d5f1c67d9e14967a50240b9c6f7a1bdef8d3a3493c5f02420d4c4786e3899a055fcef1d85ced78054f97ee8e70581dd3d110ab75c4184ed4de899a76e743f4b48aae2b9f1d5ff34e499446fe2810a77fdabacc422cbaca71695d29508ce658b7a105141d77b7ff40967882247013068fccd08303a0fe93e855aebd42eb27208753046ce0658df67acc0756f20e98f4e5ce6853d7e905040702cf01c547127800894a2b6a60940ddca2455defe187f3faedcfd49072e562f948fe01e457a205bcbf71b34e45a8dc0ff197bbb926cdc7856caf2ffefe40eede18e7572e4636cf2d5dfca8067e6a8bdae889763a5940c3a0250a2e6929da21e45cc24613a60079b14a193e175077973a5bec98f16844b75486ac2d1fd8599b045b20d9d41bd6edf84a5cc3dc5c36801140a08da8ae5c12279e04cd01f65c991cf8fee6671bccbe63690f1b28bb3b026d42ac92a3ad576c4491f69bb4390b8f6e842164735be26a2b99b5c1261c8687b9eb77451544ff7f9330d5bfa170d91178724aba2dd605839fc7003fdf667d7f94075c22ccec1115004b6e97f36e0984b68241beb555b553343aac86f3ab276cd2fc1f3cd70e08ce5131b4b4e0fe475a371d9909ee4a892e5035add5f0f86c30a54ea3e773c5f074771ca7502e3caacbe8db184b546b5c80ccbf52316c698107ffb9d43e8e6a632a99abbbad5c6124d8eff0f2c77f637b71b61e511137a7f60b99c6c95094d1ca8b8d1818ca9c250a8eccae1fee54c72d0774e4cdcca8c37b6b1370c0fa2c992693b4e5c7004505b7020ac3c293a54d4e457fe0632c360fd6ab60021d7626e2897cfd8c410fa7b9c44868fab8342c066c3f413558733ac8d086df9390bdd3ee77c063fe3cfffd851fc9950532fe289ede05de6122ae1b8ee8df601061d92b85f4d955b0727503f7b5525d1ea1d2090fe1c6a0ae760eb5536157cd4bc93fe6c6fc342def06efb3ae7698d52f266fc8be66c0705645d12c98fd88f1b09fbe7a015119fb20b8b176ef8b5585540be6d39ae67706000000b6bb322597f0320a59ed5f414f35132a1b726e890acfba9985a0e264b3e3d6260ef16f007a344de2a90756755f86f3e1831d0aef5497c7aea737d7864afecc660f44021a806469d915228eb3732313cccbe8b25a84fac7ef41636853f1b08ecd7fb09192eb933afdede510ef6a890fcd561031bb082348311d265c3bc616cb585f1f51ffa35593a99d71bdc1c6ed62784b9361d5e1006d64d9aadc6f0bbfc2185b340531093592dbac85b106a4e30423a4782805d75ef6c9f4f844574365cb9b303ffa22950ab14480617b2558964a2a48c0e3d0dcefaf3c9bc93028cde3b02c0b3a352f844d5a3bb4c83efaf04615e74105aa76fa3c6bcd957f84f0e0fb609817f46e205de276d7d2e4b0e60836137cf6bf3fe9a7d9aee85f0f41947cfbbb07d542de4186290b92a88e6f33956798b725564ca61e143e3c2c3335a6ab0c5be3daf04daf3ef77f3b7497ac4ea3f24ffaa3ba10eaf598afbe4471a25b72c65580354df0b1135838565aa58d02ffad5dea2fa3888182de5bb9606857c70dbc9b47754c1bca81d273dd02e7b2e954dee0677e6aad1dadc343e770ca7931a594ba0b3bc7ff7645a2fb99feff3e9054d2bf071e123710f5ccc93828fbca30e6070f3b327b238807f5d51cab7d7541e385747354f588621d4d3fde4beda1bd5bb00984f31946c2636dad832b138a942709e2aeb22b03ca35b74b9eda93cd1c5b12f431762ae50a865c1596528959daa05370648fcc46cc3effb480e7b3ab51943944c8cf58170d34701895ae5b446e8382ea6fb54cdbb470ac99d4500f4fdf89db39c44f23de3d57bdd3b83d7e4d30c764bdd1d26646d2044ade52d55a0f74ca2c7a05b6d5dfa8da27a209aba4b3f19086f071f2a4d7fa81cdf1bef63d0940e6d5d46bdb9fa302b6d0c004c0b6deb64e019e1f647f3c706249801b14d96efce72045f0ac80842e82179c5909fe7ded55b96086f3ed2184710d923cfc66532f40e3a03eb8afa423a32fc9b61e38ea35baf5d5664b63362cac4f26f34307b83b57aeddd392a5f52cb8b0f6dc4f08ae67abbe28551856ee28c3d1d1862d08839554e9223de3b85c0d00c892f8238b997100603699a99e2fbd697c25098f96e09d3f6cefa1a38aefdbd7f04435e263d904e8de640488b228f3fce3adb45edf84115234aff6a9ea7c6002e6e74d9c8e0940269fc37bcafa99d879c28b6838c26e2e2b28fcd5c64186a3b47b22b0378640d2aadda970c4f6be868189100218ec382fed4c8dc6b3d0e55d248c609a4d65709fa87f8cf9c12745c117f50ced38f65d89c3a9e5780fb12f7b68e284f5b2c12711ee371be8aabc6b7ac631d5e0caab5af0b3aa3996d4e39f34dcaa63ede2896952dd9ecdd0e240312601fee82a1f7600f8f1553c4ab3672eb8fe9f2c29daf5f10d1a38165c3e40c3c2")
ioctl$KVM_RUN(r4, 0xae80, 0x0)
getsockopt$inet_sctp6_SCTP_RESET_STREAMS(r7, 0x84, 0x77, &(0x7f0000452000-0x8)={<r8=>0x0, 0x0}, &(0x7f0000f14000-0x4)=0x8)
setsockopt$inet_sctp_SCTP_CONTEXT(r7, 0x84, 0x11, &(0x7f0000699000)={r8, 0xfffffffffffffffd}, 0x8)
ioctl$KVM_RUN(r4, 0xae80, 0x0)
2017/11/27 06:13:11 executing program 0:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
syz_extract_tcp_res(&(0x7f0000001000-0x8)={0x0, 0x0}, 0x3, 0x142)
setsockopt$inet_sctp_SCTP_I_WANT_MAPPED_V4_ADDR(0xffffffffffffffff, 0x84, 0xc, &(0x7f0000000000)=0x1, 0x4)
setrlimit(0x402, &(0x7f000014f000-0x10)={0xffffffffffffffff, 0x4})
r0 = openat$vcs(0xffffffffffffff9c, &(0x7f0000dc6000-0x9)="2f6465762f76637300", 0x480000, 0x0)
r1 = memfd_create(&(0x7f000023f000-0x26)="76626f786e6574305c2c2347504c25626465766d643573756d23262724736563757269747900", 0x2)
epoll_pwait(r1, &(0x7f00005de000-0x60)=[{0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}, {0x0, 0x0}], 0x8, 0x0, &(0x7f000029d000)={0x9}, 0x8)
getsockopt$inet6_IPV6_XFRM_POLICY(r1, 0x29, 0x23, &(0x7f0000502000-0xe8)={{{@in=@local={0x0, 0x0, 0x0, 0x0}, @in=@local={0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r2=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@multicast2=0x0, 0x0, 0x0}, 0x0, @in=@empty=0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000101000-0x4)=0xe8)
quotactl(0x35, &(0x7f000050a000-0x8)="2e2f66696c653000", r2, &(0x7f00009f2000-0x4)="5a3b5d25")
r3 = dup(r0)
ioctl$DRM_IOCTL_AGP_ALLOC(r0, 0xc0206434, &(0x7f0000293000)={0x1, 0x0, 0x1, 0x7})
ioctl$DRM_IOCTL_AGP_ALLOC(r3, 0xc0206434, &(0x7f0000346000+0x31b)={0x3f, <r4=>0x0, 0x2, 0x8})
ioctl$DRM_IOCTL_AGP_ALLOC(r0, 0xc0206434, &(0x7f0000fc2000-0x20)={0x8000001c, <r5=>r4, 0x10003, 0xffffffff})
ioctl$DRM_IOCTL_AGP_UNBIND(r0, 0x40106437, &(0x7f0000862000)={r5, 0x9})
r6 = syz_open_dev$sg(&(0x7f0000572000-0x9)="2f6465762f73672300", 0x80000000000000, 0x800)
ioctl$void(r1, 0x5451)
ioctl(r1, 0x9, &(0x7f0000b93000)="9509")
ioctl$PERF_EVENT_IOC_SET_OUTPUT(r6, 0x2405, r3)
getsockopt$inet_sctp_SCTP_RTOINFO(r0, 0x84, 0x0, &(0x7f00000d4000-0x10)={<r7=>0x0, 0x7f, 0x2, 0x200}, &(0x7f0000d09000-0x4)=0x10)
ioctl$KVM_DEASSIGN_DEV_IRQ(r6, 0x4040ae75, &(0x7f00000ae000)={0x4, 0x7ffd, 0x9, 0x5})
getsockopt$inet_sctp_SCTP_PEER_ADDR_PARAMS(r0, 0x84, 0x9, &(0x7f0000bd9000-0xa0)={r7, @in6={{0xa, 0x2, 0x2, @loopback={0x0, 0x1}, 0x1000}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x80, 0x3, 0x80, 0x5, 0x41}, &(0x7f00005a9000-0x4)=0xa0)
r8 = dup3(0xffffffffffffffff, r0, 0x0)
epoll_ctl$EPOLL_CTL_ADD(r0, 0x1, r8, &(0x7f0000258000)={0x20000006, 0x0})
ioctl$DRM_IOCTL_GET_CAP(r1, 0xc010640c, &(0x7f000047e000-0x10)={0xa1cd, 0x1000000000000006})
bpf$BPF_PROG_DETACH(0x9, &(0x7f0000916000)={0x0, 0xffffffffffffffff, 0x3, 0x1, 0x0}, 0x14)
syz_emit_ethernet(0x12, &(0x7f00009b5000-0xce)={@random="9f024a6bf122", @local={[0xaa, 0xaa, 0xaa, 0xaa, 0xaa], 0x0}, [], {{0x400004, @x25={0x5347d1768d122c42, 0x42, 0x3, "91"}}}}, 0x0)
ioctl$sock_inet_udp_SIOCOUTQ(r1, 0x5411, &(0x7f00001e7000-0x4)=0x0)
getsockopt$inet_sctp6_SCTP_RESET_STREAMS(r0, 0x84, 0x77, &(0x7f00000e8000-0x8)={<r9=>0x0, 0x100000000}, &(0x7f0000ce5000)=0x8)
getsockopt$inet_sctp6_SCTP_DELAYED_SACK(0xffffffffffffffff, 0x84, 0x10, &(0x7f0000913000)=@sack_info={r9, 0x100000001, 0x5}, &(0x7f0000a24000)=0xc)
setsockopt$sock_int(r3, 0x1, 0x80000024, &(0x7f000081a000-0x4)=0x6, 0x4)
r10 = socket$inet_tcp(0x2, 0x1, 0x0)
ioctl$sock_ifreq(r10, 0x89f0, &(0x7f0000378000-0x28)={@syzn={0x73, 0x79, 0x7a, 0x0, 0x0}, @ifru_data=&(0x7f00008cf000-0x20)="1200000000000000db0001ee000874000000000000000000207fe6000d77aa32"})
[ 1057.986680] sctp: [Deprecated]: syz-executor6 (pid 3614) Use of struct sctp_assoc_value in delayed_ack socket option.
[ 1057.986680] Use struct sctp_sack_info instead
[ 1058.014268] sctp: [Deprecated]: syz-executor6 (pid 3614) Use of struct sctp_assoc_value in delayed_ack socket option.
[ 1058.014268] Use struct sctp_sack_info instead
[ 1058.018772] device gre0 entered promiscuous mode
2017/11/27 06:13:11 executing program 2:
r0 = socket$inet_tcp(0x2, 0x1, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
readv(r0, &(0x7f0000000000)=[{&(0x7f0000729000-0xa9)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xa9}, {&(0x7f0000e01000-0xd8)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xd8}, {&(0x7f0000dfe000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}, {&(0x7f0000b7a000)="000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x72}], 0x4)
mmap(&(0x7f0000000000/0xf14000)=nil, 0xf14000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = dup3(r0, r0, 0x80000)
ioctl$VT_RESIZE(r1, 0x5609, &(0x7f0000001000-0x6)={0x2, 0x7, 0x8001})
r2 = socket$inet_tcp(0x2, 0x1, 0x0)
setsockopt$inet_mreqn(r2, 0x0, 0x27, &(0x7f000000c000)={@multicast2=0xe0000002, @local={0xac, 0x14, 0x0, 0xaa}, 0x0}, 0xc)
setsockopt$inet_mreqsrc(r2, 0x0, 0x28, &(0x7f0000013000)={@multicast2=0xe0000002, @local={0xac, 0x14, 0x0, 0xaa}, @empty=0x0}, 0xc)
mmap(&(0x7f0000f14000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$bt_l2cap_L2CAP_CONNINFO(r2, 0x6, 0x2, &(0x7f0000f15000-0x6)={0x0, 0x0, 0x0, 0x0}, &(0x7f0000f15000-0x4)=0x6)
mmap(&(0x7f0000f15000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f16000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getpeername(r0, &(0x7f0000f16000)=@l2={0x0, 0x0, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0x0}, &(0x7f00005c8000-0x4)=0xe)
mmap(&(0x7f0000000000/0xdc0000)=nil, 0xdc0000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r3 = socket(0x10, 0x2, 0x6)
mmap(&(0x7f0000dc0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
io_setup(0x2, &(0x7f0000f17000)=<r4=>0x0)
mmap(&(0x7f0000dc1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$sock_int(r3, 0x1, 0x2d, &(0x7f00001c2000-0x4)=0x0, 0x4)
mmap(&(0x7f0000dc1000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
io_getevents(r4, 0x7, 0x5, &(0x7f0000dc1000)=[{0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}], &(0x7f0000dc1000)={0x77359400, 0x0})
mmap(&(0x7f0000f17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000f17000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$inet_sctp_SCTP_AUTO_ASCONF(r2, 0x84, 0x1e, &(0x7f0000f17000)=0x0, &(0x7f0000f18000-0x4)=0x4)
mmap(&(0x7f0000dc0000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000dc2000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000dc3000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
getsockopt$SO_PEERCRED(r3, 0x1, 0x11, &(0x7f0000dc4000-0xc)={<r5=>0x0, 0x0, 0x0}, 0xc)
fcntl$setown(r3, 0x8, r5)
sendmsg$netlink(r3, &(0x7f0000dbf000-0x38)={0x0, 0x0, &(0x7f0000dbb000-0x10)=[{&(0x7f0000001000)=[{0x28, 0x12, 0x1, 0x0, 0x0, "cdbcca00580f00000000000000090000639ebef7ffffff8b"}], 0x28}], 0x1, &(0x7f0000dc2000)=[], 0x0, 0x0}, 0x0)
2017/11/27 06:13:11 executing program 4:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x237000)=nil, 0x237000, 0x1, 0x32, 0xffffffffffffffff, 0x0)
r0 = socket(0xa, 0x3, 0x9)
mmap(&(0x7f0000238000/0x1000)=nil, 0x1000, 0x4, 0x32, 0xffffffffffffffff, 0x0)
r1 = syz_open_dev$sg(&(0x7f0000e64000-0x9)="2f6465762f73672300", 0x4dc6, 0x4981)
ioctl$TIOCGWINSZ(r1, 0x5413, &(0x7f0000a3b000-0x8)={0x0, 0x0, 0x0, 0x0})
fcntl$setownex(r0, 0xf, &(0x7f0000d48000-0x8)={0x2, 0x0})
recvmsg(r0, &(0x7f000023a000)={0x0, 0x0, &(0x7f000023a000)=[], 0x0, &(0x7f0000ac5000)="", 0x0, 0x0}, 0x40000102)
ioctl$sock_SIOCBRADDBR(r0, 0x89a0, &(0x7f0000578000-0x10)=@common="6970365f767469300000000000000000")
r2 = syz_open_dev$mouse(&(0x7f0000878000)="2f6465762f696e7075742f6d6f7573652300", 0x3bc8, 0x101200)
ioctl$KVM_DEASSIGN_PCI_DEVICE(r2, 0x4040ae72, &(0x7f0000b5f000)={0xc6c, 0x1000, 0x2, 0x3, 0x9})
lstat(&(0x7f0000f21000-0x8)="2e2f66696c653000", &(0x7f0000ad1000-0x44)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
sendmmsg$nfc_llcp(r0, &(0x7f0000237000)=[{&(0x7f0000003000-0x60)={0x27, 0x0, 0x0, 0x0, 0x0, 0x0, "0fcca4bb22f2892559edddba1a892f216c6adb6dac3291add84e7dd1b9b1e1043844071c4d783ef83c7baa707bef6850ccd339c111743913f1b7601256cf03", 0x0}, 0x60, &(0x7f0000006000)=[], 0x0, &(0x7f0000239000-0x1010)={0x10, 0x0, 0x0, ""}, 0x10, 0x0}], 0x1, 0x0)
ioctl$TIOCGPGRP(r1, 0x540f, &(0x7f0000567000)=<r3=>0x0)
getsockopt$inet_IP_XFRM_POLICY(r0, 0x0, 0x11, &(0x7f000058d000-0xe8)={{{@in6=@remote={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, @in6=@local={0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0], 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, <r4=>0x0}, {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {0x0, 0x0, 0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, {{@in=@rand_addr=0x0, 0x0, 0x0}, 0x0, @in6=@loopback={0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, &(0x7f0000a2b000)=0xe8)
getsockopt$sock_cred(r1, 0x1, 0x11, &(0x7f00003aa000-0xc)={0x0, 0x0, <r5=>0x0}, &(0x7f0000e7a000-0x4)=0xc)
getsockopt$sock_cred(r0, 0x1, 0x11, &(0x7f00000b2000-0xc)={<r6=>0x0, 0x0, 0x0}, &(0x7f0000a69000)=0xc)
ioctl$sock_inet_SIOCSIFFLAGS(r1, 0x8914, &(0x7f0000790000-0x20)={@common="62637368300000000000000000000000", @ifru_flags=0x1001})
lstat(&(0x7f0000d70000-0x8)="2e2f66696c653000", &(0x7f000076b000-0x44)={0x0, 0x0, 0x0, 0x0, <r7=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
fstat(r0, &(0x7f0000bb8000-0x44)={0x0, 0x0, 0x0, 0x0, <r8=>0x0, <r9=>0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
r10 = socket$packet(0x11, 0x0, 0x300)
ioctl$sock_SIOCGPGRP(r0, 0x8904, &(0x7f00004f5000-0x4)=<r11=>0x0)
flistxattr(r0, &(0x7f00007f3000)="0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x68)
mknodat(r10, &(0x7f0000d6d000-0x8)="2e2f66696c653000", 0x40, 0x6)
getresuid(&(0x7f0000e76000)=0x0, &(0x7f0000c1d000-0x4)=<r12=>0x0, &(0x7f0000713000-0x4)=0x0)
r13 = getgid()
sendmsg$unix(r0, &(0x7f0000719000)={&(0x7f000002d000-0x8)=@abs={0x1, 0x0, 0x3}, 0x8, &(0x7f0000ccc000)=[{&(0x7f0000583000)="ee25f14782105c139851b88d40f3c936f979f7235b31a3d7104848de6c8553440baa369f8c0179a57704acbd59e686cd6f755958263ba869582fe5cf478a891499959e06e882d012203e09b3db12e9d43ec3394c1630a4e6854e0eb80d0a39b990750f4d", 0x64}, {&(0x7f000077c000)="8505812a11368b07a6dc00de9e4abaa89a2415a10425248f777a58588d4c86d98739eefcc04bf9dd394e9063cb08164a30e9960871a8ea1cd8b048ad918a8ae473b3afb5b45219983d4b71391c59a646c0437df545f61be29f6d264018dabd372b764783d0fbf3ed70544807911e839cd6992b6301368c1dd2cbf7e694d8afa5568367d4725f683ff8350e8cb8b04282888b4700fb5bc581c7348e478e84999218e1b9a598a5b1", 0xa7}, {&(0x7f0000ff3000-0x1c)="09bbde8cd149880e2ce9c05bac244e4e6b4f646545fdaa687329f9cb", 0x1c}, {&(0x7f00004f3000)="4feff17d2190ae43964b51b54641cee121185444d8fb7af434e57617883062bcac63c1238bb9353d711af9db087303", 0x2f}, {&(0x7f0000b31000-0x8e)="d313d9ed77178199b9fe9544b44783787d4354220d05401ec271e1e9debc060631eb8544f276599bb3ffe1582deb6c275d3e540038b4b6b72896c5560ad7c4c475eee3600b1e4cc0dcc40a50a55da904b3fb297e13bb9c6d5fdaf88949a803560ef6cd3075c0201ea49ce8b0718332336315752526268d45886f98bde442881636f901d6a5babc1d0e206dd19c93", 0x8e}], 0x5, &(0x7f0000a0d000-0x130)=[@cred={0x20, 0x1, 0x2, r3, r4, r5}, @rights={0x28, 0x1, 0x1, [r0, r0, r0, r0, r0, r0]}, @rights={0x20, 0x1, 0x1, [r0, r0, r0]}, @rights={0x18, 0x1, 0x1, [r0]}, @cred={0x20, 0x1, 0x2, r6, r7, r9}, @rights={0x30, 0x1, 0x1, [r0, r10, r0, r0, r0, r0, r0]}, @cred={0x20, 0x1, 0x2, r11, r12, r13}, @rights={0x28, 0x1, 0x1, [r0, r0, r0, r0, r0]}, @rights={0x18, 0x1, 0x1, [r0]}], 0x9, 0x40000}, 0x0)
clock_nanosleep(0x3, 0x1, &(0x7f000036b000-0x10)={0x77359400, 0x0}, &(0x7f0000cd6000-0x10)={0x0, 0x0})
readv(r0, &(0x7f0000a92000-0x20)=[{&(0x7f0000d0b000)="00", 0x1}], 0x1)
setuid(r8)
2017/11/27 06:13:11 executing program 0:
mmap(&(0x7f0000000000/0x49000)=nil, 0x49000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = memfd_create(&(0x7f0000002000-0x4)="2d40da00", 0x0)
r1 = syz_open_dev$sndseq(&(0x7f0000042000)="2f6465762f736e642f73657100", 0x0, 0x8000000000105)
r2 = dup2(r1, r0)
ioctl$LOOP_GET_STATUS(0xffffffffffffffff, 0x4c03, &(0x7f0000044000-0x98)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", [0x0, 0x0], 0x0})
mmap(&(0x7f0000049000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000004a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000004a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
set_tid_address(&(0x7f000004a000)=0x0)
ioctl$SNDRV_SEQ_IOCTL_CREATE_QUEUE(r2, 0xc08c5332, &(0x7f000002b000)={0x0, 0x0, 0x0, "9ede7a8c5ae95ec8672c93340f643a664f13eeab65c0322901dc6bd36cde2c51f01b7f0b014f9f91eeb7c37c7240f476c8d753d000aa8faf8fb574dbcfa6dc4d", 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
mmap(&(0x7f000004b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$SNDRV_SEQ_IOCTL_GET_QUEUE_TEMPO(r2, 0xc02c5341, &(0x7f000004c000-0x68)={0x0, 0x0, 0x0, {<r3=>0x0, 0x0}, 0x0, 0x0, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
write$sndseq(r0, &(0x7f0000045000-0x30)=[{0x0, 0x3, 0x0, 0x0, @time={r3, 0x0}, {0x1, 0x0}, {0x0, 0x0}, @addr={0x0, 0x9}}], 0x30)
mmap(&(0x7f000004a000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$sock_FIOGETOWN(r0, 0x8903, &(0x7f000004b000-0x4)=<r4=>0x0)
mmap(&(0x7f000004b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000004b000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000004c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000004c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000004c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000004c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TUNGETFEATURES(r2, 0x800454cf, &(0x7f000004c000)=0x0)
mmap(&(0x7f000004d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f000004d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
wait4(r4, &(0x7f000004d000)=0x0, 0xa, &(0x7f000004d000)={{<r5=>0x0, 0x0}, {0x0, 0x0}, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
write$sndseq(r2, &(0x7f0000049000-0x1c)=[{0x200000004, 0x1ff, 0xfffffffffffffff9, 0x0, @time={r5, 0x0}, {0x0, 0x1}, {0x0, 0x0}, @control={0x0, 0x7, 0xffff}}], 0x30)
mmap(&(0x7f000004d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$SNDRV_SEQ_IOCTL_SET_CLIENT_INFO(r0, 0x40bc5311, &(0x7f000004d000)={0x80, 0x1, "636c69656e7431000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x5, "7fd82d5e02ca39be", "a6e7edc21ca06fef1dae9615f6c6bed56991b6042e58959baa11b5dda319d901", 0x5, 0x2, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]})
setsockopt$inet_sctp6_SCTP_ADAPTATION_LAYER(r2, 0x84, 0x7, &(0x7f0000035000)={0x8024}, 0x4)
mmap(&(0x7f000004c000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TIOCCONS(r2, 0x541d)
clock_gettime(0x0, &(0x7f000004c000)={0x0, 0x0})
mmap(&(0x7f000004d000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$TUNGETFEATURES(r2, 0x800454cf, &(0x7f000002b000)=0x0)
write$sndseq(r0, &(0x7f0000043000-0x90)=[{0x4, 0x3, 0x80000000, 0x0, @time={0x77359400, 0x0}, {0x55, 0x8}, {0x6, 0x7a52}, @addr={0x800, 0x200}}, {0x400000ab, 0x7, 0xff, 0x80000001, @tick=0x0, {0x6, 0x8}, {0x6, 0x7fffffff}, @raw32={[0x5, 0x6, 0xff]}}, {0x5, 0x3fd, 0x5, 0x100000000000000, @tick=0xe28, {0x6, 0x3ed}, {0x7, 0x5}, @addr={0x4, 0x6}}], 0x90)
ioctl$KDENABIO(r0, 0x4b36)
splice(r1, 0x28, r2, 0x40000400001, 0x7ff, 0x0)
[ 1058.084781] sctp: [Deprecated]: syz-executor6 (pid 3631) Use of struct sctp_assoc_value in delayed_ack socket option.
[ 1058.084781] Use struct sctp_sack_info instead
[ 1058.107676] sctp: [Deprecated]: syz-executor6 (pid 3631) Use of struct sctp_assoc_value in delayed_ack socket option.
[ 1058.107676] Use struct sctp_sack_info instead
2017/11/27 06:13:11 executing program 7:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = epoll_create(0x6)
r1 = socket(0x8, 0x5, 0x0)
set_mempolicy(0x3, &(0x7f000000d000)=0xa, 0xa0)
unshare(0x400000008000)
r2 = mq_open(&(0x7f000004b000)="2f246367726f75706c6f00", 0x42, 0x8, &(0x7f000004b000)={0x3, 0x7, 0x3, 0x0, 0x0, 0x0, 0x0, 0x0})
r3 = fcntl$getown(r0, 0x9)
migrate_pages(r3, 0x100000000, &(0x7f0000aeb000-0x8)=0x8, &(0x7f0000aea000)=0x18)
mq_timedsend(r2, &(0x7f0000012000)="", 0x0, 0x0, &(0x7f0000036000)={0x0, 0x0})
pread64(r1, &(0x7f0000acf000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0xf7, 0x4)
ppoll(&(0x7f0000a3d000-0x8)=[{r2, 0x2, 0x0}], 0x1, &(0x7f00004de000-0x10)={0x0, 0x1c9c380}, &(0x7f0000992000)={0xfffffffffffffffd}, 0x8)
mq_timedsend(r2, &(0x7f0000359000)="f2", 0x1, 0x6, 0x0)
writev(r2, &(0x7f0000407000)=[{&(0x7f00004ed000)="175886fc26c1e3455034a71dbac1899b40690ef864c64466ba676e69efdf2dec09c6473df81735cad04f182a5cef97856a4d523f7163e185b8e1bf19775e32e4582a1b0d325448a0da321bca89f7299bd319df4dadc61533cc72227f9c1f2f9e9d6321ef1dc162f4d7f1bf23c927552c8c8388384e04db1bbae2c35e25969b090631347592edeff95528dcdb63f21d71c4cce0ff9fe090db4e858e1729ff0c4debc22489eb341297eedb127667e2f9c435cbe7cd124f94b7450c64fa2cbb6f28a327e37bf2180ffa69ae9398bef3b0c183ab852fae721e", 0xd7}], 0x1)
epoll_ctl$EPOLL_CTL_ADD(r0, 0x1, r2, &(0x7f0000410000)={0x40000001, 0x0})
r4 = syz_open_dev$loop(&(0x7f000030d000-0xb)="2f6465762f6c6f6f702300", 0x7d, 0x1)
r5 = memfd_create(&(0x7f0000000000)="fff8", 0x0)
pwritev(r5, &(0x7f0000624000-0x10)=[{&(0x7f0000608000-0xf3)="986d63dabffabefe3d9f28e45b6d37b8651a1c5b3846e86b513f3de60ee87fc128aa9298b0ed6b5737b9a82e219f270000000195503ad0f5a0c85887ae58001856563e5099b22ceaca56d2ffbb1b4016fea257fd", 0x54}], 0x1, 0x7fffc)
getsockname$unix(r5, &(0x7f0000fd8000)=@file={0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f0000e7b000-0x4)=0x1002)
sendfile(r4, r5, &(0x7f00000de000-0x8)=0x0, 0x100000001)
ioctl$TCGETA(r5, 0x5405, &(0x7f0000e9e000-0x14)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0})
ioctl$VT_RESIZEX(r5, 0x560a, &(0x7f0000de7000)={0x7ff, 0x1318, 0xae6, 0x0, 0x100000000, 0x4})
ioctl$KDSETLED(0xffffffffffffffff, 0x4b32, 0x8000)
pipe2(&(0x7f0000c32000)={0xffffffffffffffff, 0xffffffffffffffff}, 0x80800)
syz_open_dev$loop(&(0x7f000073b000)="2f6465762f6c6f6f702300", 0x4, 0x80080)
ioctl$LOOP_CHANGE_FD(r5, 0x4c00, r2)
fdatasync(r4)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:11 executing program 6:
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r0 = perf_event_open(&(0x7f0000c16000)={0x2, 0x78, 0xd4e8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2001000000000fa, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7fff, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
ioctl$KVM_SET_CPUID2(0xffffffffffffffff, 0x4008ae90, &(0x7f0000f28000-0x198)={0x7, 0x0, [{0x4, 0x0, 0xfffffffffffffffe, 0x3, 0x758f7d07, 0x2, 0x8, [0x0, 0x0, 0x0]}, {0x0, 0x0, 0x0, 0x0, 0xb0, 0x3, 0x360, [0x0, 0x0, 0x0]}, {0x80000001, 0x101, 0x4, 0x10000, 0x0, 0x230b, 0x0, [0x0, 0x0, 0x0]}, {0x8000001d, 0x100000000, 0x0, 0xfffffffffffffffe, 0x8001, 0x5, 0x200, [0x0, 0x0, 0x0]}, {0x0, 0x7, 0x3, 0x0, 0x0, 0x8, 0x29, [0x0, 0x0, 0x0]}, {0x8000000f, 0x0, 0x2, 0x0, 0x0, 0x800, 0x0, [0x0, 0x0, 0x0]}, {0xa, 0x1f, 0x0, 0xd43f, 0xfff, 0x1f, 0x0, [0x0, 0x0, 0x0]}]})
pipe2(&(0x7f000091a000)={0x0, 0x0}, 0x0)
dup3(r0, r0, 0x80000)
r1 = openat$rtc(0xffffffffffffff9c, &(0x7f00002e4000)="2f6465762f72746300", 0x200, 0x0)
bpf$BPF_GET_MAP_INFO(0xf, &(0x7f00001ea000-0x10)={r1, 0x18, &(0x7f0000092000)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0}}, 0x10)
bpf$BPF_GET_MAP_INFO(0xf, &(0x7f000012c000)={0xffffffffffffff9c, 0x18, &(0x7f0000c49000-0x18)={0x0, <r2=>0x0, 0x0, 0x0, 0x0, 0x0}}, 0x10)
r3 = bpf$BPF_MAP_GET_FD_BY_ID(0xe, &(0x7f0000abe000)=r2, 0x4)
bpf$MAP_CREATE(0x0, &(0x7f0000b44000)={0x2, 0x3, 0xdfc6, 0x5, 0x3, r3, 0x0}, 0x1c)
r4 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000829000-0x11)="2f6465762f7161745f6164665f63746c00", 0x400, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f000001d000)={0x2, 0x78, 0xe3, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80000040fe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
openat$rfkill(0xffffffffffffff9c, &(0x7f000044b000)="2f6465762f72666b696c6c00", 0x0, 0x0)
r5 = socket$inet6(0xa, 0x80003, 0xff)
r6 = socket$inet6(0xa, 0x80003, 0xff)
r7 = dup2(r5, r6)
ioctl$VT_RELDISP(r4, 0x5605)
mmap(&(0x7f0000002000/0xffd000)=nil, 0xffd000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r8 = socket(0x1e, 0x3, 0x3)
bind(r7, &(0x7f0000d81000-0x80)=@llc={0x1a, 0x1b, 0x8, 0x9, 0x2, 0x1004, @random="504295d8e3a0", [0x0, 0x0]}, 0x10)
r9 = gettid()
ioctl$sock_FIOSETOWN(r5, 0x8901, &(0x7f00005ed000+0x308)=r9)
gettid()
listen(r8, 0x0)
setsockopt$sock_int(r8, 0x1, 0x7, &(0x7f00005fd000)=0x0, 0x4)
r10 = epoll_create(0x9)
epoll_ctl$EPOLL_CTL_ADD(r10, 0x1, r8, &(0x7f000010b000)={0x400000000000, 0x0})
r11 = socket(0x1e, 0x1, 0x10001)
openat$vga_arbiter(0xffffffffffffff9c, &(0x7f0000cfa000-0x11)="2f6465762f7667615f6172626974657200", 0x80042, 0x0)
getpeername(r4, &(0x7f000090b000-0x9)=@alg={0x0, "0000000000000000000000000000", 0x0, 0x0, "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"}, &(0x7f0000c7d000)=0x58)
socket(0xa, 0x6, 0x20)
sendmsg(r11, &(0x7f0000030000)={&(0x7f00004ae000+0xb5c)=@un=@abs={0x0, 0x0, 0x2}, 0x8, &(0x7f00005fc000)=[], 0x0, &(0x7f00002d4000)=[], 0x0, 0x4000}, 0x0)
getgid()
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
2017/11/27 06:13:11 executing program 2:
rename(&(0x7f0000000000)="2e2f66696c653000", &(0x7f0000a61000-0x8)="2e2f66696c653000")
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
perf_event_open(&(0x7f00008a8000-0x78)={0x4000000002, 0x78, 0xdc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfc, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x8)
openat$ptmx(0xffffffffffffff9c, &(0x7f0000f6e000)="2f6465762f70746d7800", 0x2000, 0x0)
r0 = perf_event_open(&(0x7f0000949000)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = perf_event_open(&(0x7f000084f000-0x78)={0x2, 0x78, 0xdb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0x0, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, 0x0, 0xffffffffffffffff, 0xffffffffffffffff, 0x0)
clone(0x0, &(0x7f00009f4000)="", &(0x7f0000a26000-0x4)=0x0, &(0x7f000039f000)=0x0, &(0x7f0000544000-0x1c)="")
ioctl$sock_FIOGETOWN(r1, 0x8903, &(0x7f00008af000-0x4)=0x0)
mmap(&(0x7f0000000000/0xfff000)=nil, 0xfff000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r2 = socket$inet_sctp(0x2, 0x800000000001, 0x84)
connect$inet(r2, &(0x7f0000000000)={0x2, 0x0, @local={0xac, 0x14, 0x0, 0xaa}, [0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0]}, 0x10)
getsockopt$inet_sctp_SCTP_I_WANT_MAPPED_V4_ADDR(r2, 0x84, 0xc, &(0x7f000083a000-0x4)=0x0, &(0x7f0000334000-0x4)=0x4)
fcntl$setstatus(r2, 0x4, 0x2000)
fcntl$setpipe(r2, 0x407, 0x100008000)
ioctl$KVM_ASSIGN_PCI_DEVICE(r1, 0x8040ae69, &(0x7f0000d48000)={0x81, 0x5, 0x0, 0x2, 0x1})
listen(r2, 0x41)
r3 = accept4(r2, &(0x7f000089b000-0x60)=@nfc_llcp={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x0}, &(0x7f0000542000)=0x60, 0x800)
getsockopt$inet_sctp6_SCTP_ADAPTATION_LAYER(r3, 0x84, 0x7, &(0x7f0000a6c000)={0x0}, &(0x7f0000d19000)=0x4)
getsockopt$inet_sctp_SCTP_SOCKOPT_CONNECTX3(r2, 0x84, 0x6f, &(0x7f0000140000-0x10)={<r4=>0x0, 0x0, &(0x7f0000e8d000-0x1c)=[]}, &(0x7f0000a46000-0x4)=0x10)
setsockopt$inet_sctp_SCTP_CONTEXT(r3, 0x84, 0x11, &(0x7f00002a9000)={r4, 0x1ff}, 0x8)
getsockopt$inet_sctp_SCTP_CONTEXT(r2, 0x84, 0x11, &(0x7f0000fe5000)={<r5=>0x0, 0x1}, &(0x7f00006f2000-0x4)=0x8)
getsockopt$inet_sctp_SCTP_PEER_AUTH_CHUNKS(r3, 0x84, 0x1a, &(0x7f00001a8000-0x104)={r5, 0xfc, "e992be94889aae7cbd5c1351a25b97e429dd74bf1fd505ac77255cad8d9f2e89ea4250166cfbeba59b6f37974bfe91c595f8a90388d5346401616e958b93e921c145c269a0fdfbdb3191f6c694327a94ef32c5c8b3db2e98331c0dfb1c911fe4cc38fa3f28e846ac7c37751b51e67c5f67ae7648edec592800ce0572c4477357e1dc9392e62e2221cf00000000377f99ac6009d8066b21c34c312f04731cbaf09fd3515b949e23dd8233d36ed14f7363e21241b5fdf5457b09fdd3d371201f2fa33809dd764b07b7c5a720b98d44ad76fed9cc1efed7651a86250294889153c67de2d983baf8d36618c6f333dad7c6effacb9f181322eb6dfb1efc04"}, &(0x7f000070c000-0x4)=0x104)
setsockopt$inet_sctp6_SCTP_EVENTS(r3, 0x84, 0xb, &(0x7f000010c000-0xb)={0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7, 0x0}, 0xb)
setsockopt$inet_sctp6_SCTP_EVENTS(r3, 0x84, 0xb, &(0x7f00004f7000-0xb)={0x0, 0x0, 0x5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xff, 0x0}, 0xb)
close(r3)
setsockopt$inet_sctp6_SCTP_RECVNXTINFO(r3, 0x84, 0x21, &(0x7f000082e000)=0xaa8, 0x4)
setsockopt$inet_sctp6_SCTP_RESET_STREAMS(r0, 0x84, 0x77, &(0x7f0000500000)={r5, 0x0}, 0x8)
readv(r2, &(0x7f0000688000)=[{&(0x7f0000448000-0x49)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x49}, {&(0x7f0000ab4000-0x1000)="00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", 0x1000}], 0x2)
[ 1058.185724] QAT: Invalid ioctl
2017/11/27 06:13:11 executing program 0:
r0 = socket$inet6(0xa, 0x0, 0x6)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000001000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat(0xffffffffffffff9c, &(0x7f0000001000)="2e2f66696c653000", 0x24a000, 0x1a8)
getsockopt$inet_sctp_SCTP_DEFAULT_SEND_PARAM(r1, 0x84, 0xa, &(0x7f0000000000)={0xfffffffffffffff7, 0xc5b, 0x2, 0xffffffff80000000, 0x100000000, 0xfffffffffffffe00, 0x3, 0xfffffffffffffffe, <r2=>0x0}, &(0x7f0000d6c000)=0x20)
mmap(&(0x7f0000002000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$DRM_IOCTL_MODESET_CTL(r1, 0x40086408, &(0x7f0000002000)={0x5, 0xffffffffffff0001})
setsockopt$inet_sctp6_SCTP_RTOINFO(r0, 0x84, 0x0, &(0x7f0000dfe000-0x10)={r2, 0x5cd1, 0xfffffffffffffffc, 0x0}, 0x10)
bpf$PROG_LOAD(0x5, &(0x7f0000e59000+0x1a1)={0x0, 0x1, &(0x7f0000000000)=[@generic={0x3, 0x0, 0xffffffffffff8000, 0x0}], &(0x7f0000e1f000)="2b00", 0x0, 0x0, &(0x7f0000001000-0x31)="", 0x0, 0x0}, 0x30)
r3 = socket(0x11, 0x802, 0x300)
setsockopt(r3, 0x107, 0x12, &(0x7f0000000000)="", 0x4)
r4 = socket(0x2, 0x3, 0xff)
mmap(&(0x7f000000b000/0x1000)=nil, 0x1000, 0x4, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$bt_hci_HCI_TIME_STAMP(r4, 0x0, 0x3, &(0x7f000000b000)=0x80000000, 0x4)
sendto(r4, &(0x7f000000c000)="da000000000000c67412a1000000000000002087ef6c6411f2c1275b1db8e916af92edeaea876801", 0x28, 0x0, &(0x7f000000b000)=@ax25={0x6, {"38dd6c381b2962"}, 0x0}, 0x10)
2017/11/27 06:13:12 executing program 3:
r0 = socket$inet6_udp(0xa, 0x2, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$inet6_buf(r0, 0x29, 0x42, &(0x7f0000000000)="", 0x0)
mmap(&(0x7f000001b000/0x2000)=nil, 0x2000, 0x1000000, 0x40000032, r0, 0xfffffffffffffffc)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0xaf9000)=nil, 0xaf9000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000af9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
r1 = openat$kvm(0xffffffffffffff9c, &(0x7f0000afa000-0x9)="2f6465762f6b766d00", 0xa000400, 0x0)
r2 = ioctl$KVM_CREATE_VM(r1, 0xae01, 0x0)
ioctl$KVM_CREATE_IRQCHIP(r2, 0xae60)
mmap(&(0x7f0000af9000/0x1000)=nil, 0x1000, 0x2, 0x40050, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000afa000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_SET_TSS_ADDR(r2, 0xae47, 0xd000)
r3 = openat$qat_adf_ctl(0xffffffffffffff9c, &(0x7f0000011000+0x6e8)="2f6465762f7161745f6164665f63746c00", 0x8045, 0x0)
mmap(&(0x7f0000af9000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000000000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
pipe(&(0x7f0000000000)={0x0, <r4=>0x0})
r5 = ioctl$KVM_CREATE_VCPU(r2, 0xae41, 0x0)
mmap(&(0x7f0000afa000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f00006c2000/0x2000)=nil, 0x2000, 0x2, 0x10, r5, 0x0)
mmap(&(0x7f0000afb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000afc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
socket(0x19, 0x80000, 0x6)
mmap(&(0x7f0000236000/0x4000)=nil, 0x4000, 0x2000010, 0x32, 0xffffffffffffff9c, 0x0)
mmap(&(0x7f0000afd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000afe000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
setsockopt$netlink_NETLINK_ADD_MEMBERSHIP(r3, 0x10e, 0x1, &(0x7f0000afe000)=0x10001, 0x4)
ioctl$KVM_SET_GUEST_DEBUG(r5, 0x4048ae9b, &(0x7f0000018000-0x48)={0x3ffff, 0x0, [0x9, 0x0, 0x7, 0x8, 0x7, 0x8000000000001ff, 0x0, 0xffffffff7ffffdff]})
mmap(&(0x7f0000afb000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000afc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000afd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_SET_CPUID(r5, 0x4008ae8a, &(0x7f0000afd000)={0x8, 0x0, [{0x8000000a, 0xc, 0x3, 0xffff, 0xd25, 0x0}, {0xc0000009, 0x3bc389aa, 0x2be6, 0x800, 0x200, 0x0}, {0x1, 0xbfc, 0x0, 0x9, 0x2, 0x0}, {0x80000001, 0x2, 0x2000000007, 0xfffffffffffffff8, 0x8, 0x0}, {0xc0000001, 0x10000, 0x1004, 0x7fff, 0x2003ff, 0x0}, {0x0, 0x6, 0x1f, 0x9, 0x3, 0x0}, {0x80000001, 0x8001, 0xfffffffffffffff8, 0x6, 0x7fffffff, 0x0}, {0xc0000005, 0x0, 0x100000001, 0x7ff, 0x80000003, 0x0}]})
ioctl$KVM_TRANSLATE(r5, 0xc018ae85, &(0x7f000028f000-0x18)={0x100000, 0x4004, 0x7, 0x3, 0x8})
ioctl$KVM_GET_NR_MMU_PAGES(r4, 0xae45, 0x2)
ioctl$KVM_CHECK_EXTENSION(r1, 0xae03, 0x6)
ioctl$KVM_IRQ_LINE(r2, 0x4008ae61, &(0x7f0000af9000)={0x20, 0x0})
mmap(&(0x7f0000afc000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
mmap(&(0x7f0000afd000/0x1000)=nil, 0x1000, 0x3, 0x32, 0xffffffffffffffff, 0x0)
ioctl$KVM_SET_MSRS(r5, 0xc008ae88, &(0x7f00005af000)={0x3, 0x0, [{0xc0010141, 0x0, 0xfffffffffffffffe}, {0x0, 0x0, 0x205}, {0xbdd, 0x0, 0x9}]})
[ 1058.296239] QAT: Invalid ioctl
[ 1058.321324] ==================================================================
[ 1058.328769] BUG: KASAN: stack-out-of-bounds in csum_and_copy_from_iter_full+0xb61/0xf30
[ 1058.336898] Read of size 4 at addr ffff880187a67a98 by task syz-executor0/3674
[ 1058.344235] 
[ 1058.345843] CPU: 0 PID: 3674 Comm: syz-executor0 Not tainted 4.14.0-mm1+ #25
[ 1058.352998] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01/2011
[ 1058.362328] Call Trace:
[ 1058.364891]  dump_stack+0x194/0x257
[ 1058.368497]  ? arch_local_irq_restore+0x53/0x53
[ 1058.373138]  ? show_regs_print_info+0x65/0x65
[ 1058.377611]  ? __kmalloc_node_track_caller+0x33/0x70
[ 1058.382690]  ? csum_and_copy_from_iter_full+0xb61/0xf30
[ 1058.388030]  print_address_description+0x73/0x250
[ 1058.392843]  ? csum_and_copy_from_iter_full+0xb61/0xf30
[ 1058.398182]  kasan_report+0x25b/0x340
[ 1058.401963]  __asan_report_load4_noabort+0x14/0x20
[ 1058.406864]  csum_and_copy_from_iter_full+0xb61/0xf30
[ 1058.412026]  ? __kmalloc_node_track_caller+0x47/0x70
[ 1058.417117]  ? _copy_from_iter_full_nocache+0xb90/0xb90
[ 1058.422457]  ? skb_copy_and_csum_dev+0x360/0x360
[ 1058.427191]  ? refcount_add_not_zero+0x133/0x200
[ 1058.431923]  ? refcount_dec_if_one+0x20/0x20
[ 1058.436328]  ip_generic_getfrag+0x169/0x260
[ 1058.440627]  ? ip_reply_glue_bits+0xb0/0xb0
[ 1058.444923]  ? sock_wmalloc+0x15d/0x1d0
[ 1058.448875]  raw_getfrag+0x139/0x210
[ 1058.452572]  __ip_append_data.isra.46+0x1779/0x2550
[ 1058.457576]  ? raw_destroy+0x30/0x30
[ 1058.461275]  ? ip_generic_getfrag+0x260/0x260
[ 1058.465752]  ? find_held_lock+0x39/0x1d0
[ 1058.469785]  ? ipv4_mtu+0x28c/0x3d0
[ 1058.473385]  ? rt_cpu_seq_show+0x2c0/0x2c0
[ 1058.477604]  ? lock_acquire+0x1d5/0x580
[ 1058.481550]  ? raw_sendmsg+0x16a9/0x3920
[ 1058.485594]  ip_append_data.part.48+0xde/0x150
[ 1058.490152]  ? raw_destroy+0x30/0x30
[ 1058.493838]  ? raw_destroy+0x30/0x30
[ 1058.497526]  ip_append_data+0x5a/0x80
[ 1058.501309]  raw_sendmsg+0x1704/0x3920
[ 1058.505193]  ? raw_setsockopt+0xd0/0xd0
[ 1058.509137]  ? vmacache_update+0xfe/0x130
[ 1058.513266]  ? up_read+0x1a/0x40
[ 1058.516611]  ? __do_page_fault+0x3d6/0xc90
[ 1058.520829]  ? mm_fault_error+0x2c0/0x2c0
[ 1058.524954]  ? __fget+0x362/0x580
[ 1058.528396]  ? __do_page_fault+0xc90/0xc90
[ 1058.532605]  ? find_held_lock+0x39/0x1d0
[ 1058.536664]  ? sock_has_perm+0x29c/0x400
[ 1058.540701]  ? selinux_secmark_relabel_packet+0xc0/0xc0
[ 1058.546204]  ? retint_kernel+0x10/0x10
[ 1058.550068]  inet_sendmsg+0x11f/0x5e0
[ 1058.553843]  ? inet_recvmsg+0x5f0/0x5f0
[ 1058.557795]  ? selinux_socket_sendmsg+0x36/0x40
[ 1058.562449]  ? security_socket_sendmsg+0x89/0xb0
[ 1058.567178]  ? inet_recvmsg+0x5f0/0x5f0
[ 1058.571127]  sock_sendmsg+0xca/0x110
[ 1058.574814]  SYSC_sendto+0x358/0x5a0
[ 1058.578512]  ? SYSC_connect+0x480/0x480
[ 1058.582458]  ? security_mmap_file+0x143/0x180
[ 1058.586933]  ? vm_mmap_pgoff+0x1fc/0x280
[ 1058.590967]  ? vm_mmap_pgoff+0x13b/0x280
[ 1058.595049]  ? do_futex+0x2280/0x2280
[ 1058.598823]  ? entry_SYSCALL_64_fastpath+0x5/0x96
[ 1058.603639]  ? trace_hardirqs_on_caller+0x421/0x5c0
[ 1058.608629]  SyS_sendto+0x40/0x50
[ 1058.612059]  entry_SYSCALL_64_fastpath+0x1f/0x96
[ 1058.616784] RIP: 0033:0x452879
[ 1058.619946] RSP: 002b:00007f3b55cdebe8 EFLAGS: 00000212 ORIG_RAX: 000000000000002c
[ 1058.627625] RAX: ffffffffffffffda RBX: 00000000007580d8 RCX: 0000000000452879
[ 1058.634864] RDX: 0000000000000028 RSI: 000000002000c000 RDI: 0000000000000016
[ 1058.642103] RBP: 0000000000000086 R08: 000000002000b000 R09: 0000000000000010
[ 1058.649341] R10: 0000000000000000 R11: 0000000000000212 R12: 0000000000000000
[ 1058.656582] R13: 0000000000a6f7ff R14: 00007f3b55cdf9c0 R15: 0000000000000001
[ 1058.663849] 
[ 1058.665448] The buggy address belongs to the page:
[ 1058.670346] page:ffffea00061e99c0 count:0 mapcount:0 mapping:          (null) index:0x0
[ 1058.678458] flags: 0x2fffc0000000000()
[ 1058.682320] raw: 02fffc0000000000 0000000000000000 0000000000000000 00000000ffffffff
[ 1058.690172] raw: 0000000000000000 0000000100000001 ffff8801db217180 0000000000000000
[ 1058.698022] page dumped because: kasan: bad access detected
[ 1058.703698] 
[ 1058.705293] Memory state around the buggy address:
[ 1058.710189]  ffff880187a67980: f2 f2 f2 f2 00 f2 f2 f2 f2 f2 f2 f2 00 00 00 f2
[ 1058.717517]  ffff880187a67a00: f2 f2 f2 f2 00 00 00 00 f2 f2 f2 f2 00 00 00 00
[ 1058.724848] >ffff880187a67a80: 00 00 f2 f2 f2 f2 f2 f2 00 00 00 00 00 00 00 f2
[ 1058.732178]                             ^
[ 1058.736295]  ffff880187a67b00: f2 f2 f2 f2 00 00 00 00 00 00 00 00 00 f2 f2 f2
[ 1058.743625]  ffff880187a67b80: f3 f3 f3 f3 00 00 00 00 00 00 00 00 00 00 f1 f1
[ 1058.750954] ==================================================================
[ 1058.758279] Disabling lock debugging due to kernel taint
[ 1058.763829] Kernel panic - not syncing: panic_on_warn set ...
[ 1058.763829] 
[ 1058.771174] CPU: 0 PID: 3674 Comm: syz-executor0 Tainted: G    B            4.14.0-mm1+ #25
[ 1058.779730] Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01/2011
[ 1058.789055] Call Trace:
[ 1058.791616]  dump_stack+0x194/0x257
[ 1058.795221]  ? arch_local_irq_restore+0x53/0x53
[ 1058.799865]  ? trace_hardirqs_on_thunk+0x1a/0x1c
[ 1058.804593]  ? vsnprintf+0x1ed/0x1900
[ 1058.808369]  ? csum_and_copy_from_iter_full+0xa80/0xf30
[ 1058.813706]  panic+0x1e4/0x41c
[ 1058.816870]  ? refcount_error_report+0x214/0x214
[ 1058.821602]  ? add_taint+0x1c/0x50
[ 1058.825116]  ? add_taint+0x1c/0x50
[ 1058.828633]  ? csum_and_copy_from_iter_full+0xb61/0xf30
[ 1058.833968]  kasan_end_report+0x50/0x50
[ 1058.837913]  kasan_report+0x144/0x340
[ 1058.841693]  __asan_report_load4_noabort+0x14/0x20
[ 1058.846593]  csum_and_copy_from_iter_full+0xb61/0xf30
[ 1058.851751]  ? __kmalloc_node_track_caller+0x47/0x70
[ 1058.856846]  ? _copy_from_iter_full_nocache+0xb90/0xb90
[ 1058.862185]  ? skb_copy_and_csum_dev+0x360/0x360
[ 1058.866921]  ? refcount_add_not_zero+0x133/0x200
[ 1058.871650]  ? refcount_dec_if_one+0x20/0x20
[ 1058.876047]  ip_generic_getfrag+0x169/0x260
[ 1058.880459]  ? ip_reply_glue_bits+0xb0/0xb0
[ 1058.884779]  ? sock_wmalloc+0x15d/0x1d0
[ 1058.888736]  raw_getfrag+0x139/0x210
[ 1058.892436]  __ip_append_data.isra.46+0x1779/0x2550
[ 1058.897450]  ? raw_destroy+0x30/0x30
[ 1058.901149]  ? ip_generic_getfrag+0x260/0x260
[ 1058.905628]  ? find_held_lock+0x39/0x1d0
[ 1058.909661]  ? ipv4_mtu+0x28c/0x3d0
[ 1058.913261]  ? rt_cpu_seq_show+0x2c0/0x2c0
[ 1058.917481]  ? lock_acquire+0x1d5/0x580
[ 1058.921425]  ? raw_sendmsg+0x16a9/0x3920
[ 1058.925473]  ip_append_data.part.48+0xde/0x150
[ 1058.930032]  ? raw_destroy+0x30/0x30
[ 1058.933718]  ? raw_destroy+0x30/0x30
[ 1058.937405]  ip_append_data+0x5a/0x80
[ 1058.941191]  raw_sendmsg+0x1704/0x3920
[ 1058.945080]  ? raw_setsockopt+0xd0/0xd0
[ 1058.949029]  ? vmacache_update+0xfe/0x130
[ 1058.953156]  ? up_read+0x1a/0x40
[ 1058.956498]  ? __do_page_fault+0x3d6/0xc90
[ 1058.960717]  ? mm_fault_error+0x2c0/0x2c0
[ 1058.964843]  ? __fget+0x362/0x580
[ 1058.968288]  ? __do_page_fault+0xc90/0xc90
[ 1058.972492]  ? find_held_lock+0x39/0x1d0
[ 1058.976556]  ? sock_has_perm+0x29c/0x400
[ 1058.980592]  ? selinux_secmark_relabel_packet+0xc0/0xc0
[ 1058.985936]  ? retint_kernel+0x10/0x10
[ 1058.989802]  inet_sendmsg+0x11f/0x5e0
[ 1058.993581]  ? inet_recvmsg+0x5f0/0x5f0
[ 1058.997529]  ? selinux_socket_sendmsg+0x36/0x40
[ 1059.002169]  ? security_socket_sendmsg+0x89/0xb0
[ 1059.006894]  ? inet_recvmsg+0x5f0/0x5f0
[ 1059.010842]  sock_sendmsg+0xca/0x110
[ 1059.014530]  SYSC_sendto+0x358/0x5a0
[ 1059.018222]  ? SYSC_connect+0x480/0x480
[ 1059.022169]  ? security_mmap_file+0x143/0x180
[ 1059.026646]  ? vm_mmap_pgoff+0x1fc/0x280
[ 1059.030677]  ? vm_mmap_pgoff+0x13b/0x280
[ 1059.034758]  ? do_futex+0x2280/0x2280
[ 1059.038531]  ? entry_SYSCALL_64_fastpath+0x5/0x96
[ 1059.043349]  ? trace_hardirqs_on_caller+0x421/0x5c0
[ 1059.048342]  SyS_sendto+0x40/0x50
[ 1059.051775]  entry_SYSCALL_64_fastpath+0x1f/0x96
[ 1059.056499] RIP: 0033:0x452879
[ 1059.059659] RSP: 002b:00007f3b55cdebe8 EFLAGS: 00000212 ORIG_RAX: 000000000000002c
[ 1059.067339] RAX: ffffffffffffffda RBX: 00000000007580d8 RCX: 0000000000452879
[ 1059.074756] RDX: 0000000000000028 RSI: 000000002000c000 RDI: 0000000000000016
[ 1059.081997] RBP: 0000000000000086 R08: 000000002000b000 R09: 0000000000000010
[ 1059.089251] R10: 0000000000000000 R11: 0000000000000212 R12: 0000000000000000
[ 1059.096492] R13: 0000000000a6f7ff R14: 00007f3b55cdf9c0 R15: 0000000000000001
[ 1059.104170] Dumping ftrace buffer:
[ 1059.107684]    (ftrace buffer empty)
[ 1059.111361] Kernel Offset: disabled
[ 1059.114962] Rebooting in 86400 seconds..

^ permalink raw reply

* Re: KASAN: stack-out-of-bounds Read in xfrm_state_find (3)
From: Dmitry Vyukov @ 2017-12-01  8:15 UTC (permalink / raw)
  To: Steffen Klassert
  Cc: syzbot, David Miller, Herbert Xu, LKML, netdev, syzkaller-bugs
In-Reply-To: <20171201072743.47ztbmrql7ub327u@gauss3.secunet.de>

On Fri, Dec 1, 2017 at 8:27 AM, Steffen Klassert
<steffen.klassert@secunet.com> wrote:
> On Wed, Nov 22, 2017 at 08:05:00AM -0800, syzbot wrote:
>> syzkaller has found reproducer for the following crash on
>> 0c86a6bd85ff0629cd2c5141027fc1c8bb6cde9c
>> git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git/master
>> compiler: gcc (GCC) 7.1.1 20170620
>> .config is attached
>> Raw console output is attached.
>> C reproducer is attached
>> syzkaller reproducer is attached. See https://goo.gl/kgGztJ
>> for information about syzkaller reproducers
>>
>>
>> BUG: KASAN: stack-out-of-bounds in xfrm_state_find+0x30fc/0x3230
>> net/xfrm/xfrm_state.c:1051
>> Read of size 4 at addr ffff8801ccaa7af8 by task syzkaller231684/3045
>
> The patch below should fix this. I plan to apply it to the ipsec tree
> after some advanced testing.


Please also follow this part:

> Once a fix for this bug is committed, please reply to this email with:
> #syz fix: exact-commit-title
> Note: all commands must start from beginning of the line in the email body.

This will greatly help keep the process running.

Thanks


> Subject: [PATCH RFC] xfrm: Fix stack-out-of-bounds with misconfigured transport
>  mode policies.
>
> On policies with a transport mode template, we pass the addresses
> from the flowi to xfrm_state_find(), assuming that the IP addresses
> (and address family) don't change during transformation.
>
> Unfortunately our policy template validation is not strict enough.
> It is possible to configure policies with transport mode template
> where the address family of the template does not match the selectors
> address family. This lead to stack-out-of-bound reads because
> we compare arddesses of the wrong family. Fix this by refusing
> such a configuration, address family can not change on transport
> mode.
>
> We use the assumption that, on transport mode, the first templates
> address family must match the address family of the policy selector.
> Subsequent transport mode templates must mach the address family of
> the previous template.
>
> Reported-by: syzbot <syzkaller@googlegroups.com>
> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
> ---
>  net/xfrm/xfrm_user.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
>
> diff --git a/net/xfrm/xfrm_user.c b/net/xfrm/xfrm_user.c
> index 983b0233767b..57ad016ae675 100644
> --- a/net/xfrm/xfrm_user.c
> +++ b/net/xfrm/xfrm_user.c
> @@ -1419,11 +1419,14 @@ static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
>
>  static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
>  {
> +       u16 prev_family;
>         int i;
>
>         if (nr > XFRM_MAX_DEPTH)
>                 return -EINVAL;
>
> +       prev_family = family;
> +
>         for (i = 0; i < nr; i++) {
>                 /* We never validated the ut->family value, so many
>                  * applications simply leave it at zero.  The check was
> @@ -1435,6 +1438,12 @@ static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
>                 if (!ut[i].family)
>                         ut[i].family = family;
>
> +               if ((ut[i].mode == XFRM_MODE_TRANSPORT) &&
> +                   (ut[i].family != prev_family))
> +                       return -EINVAL;
> +
> +               prev_family = ut[i].family;
> +
>                 switch (ut[i].family) {
>                 case AF_INET:
>                         break;
> --
> 2.14.1
>
> --
> You received this message because you are subscribed to the Google Groups "syzkaller-bugs" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to syzkaller-bugs+unsubscribe@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/syzkaller-bugs/20171201072743.47ztbmrql7ub327u%40gauss3.secunet.de.
> For more options, visit https://groups.google.com/d/optout.

^ permalink raw reply

* [PATCH net-next] ipvlan: Add new func ipvlan_is_valid_dev instead of duplicated codes
From: gfree.wind @ 2017-12-01  8:33 UTC (permalink / raw)
  To: davem, maheshb, netdev; +Cc: Gao Feng

From: Gao Feng <gfree.wind@vip.163.com>

There are multiple duplicated condition checks in the current codes, so
I add the new func ipvlan_is_valid_dev instead of the duplicated codes to
check if the netdev is real ipvlan dev.

Signed-off-by: Gao Feng <gfree.wind@vip.163.com>
---
 drivers/net/ipvlan/ipvlan_main.c | 33 +++++++++++++++++----------------
 1 file changed, 17 insertions(+), 16 deletions(-)

diff --git a/drivers/net/ipvlan/ipvlan_main.c b/drivers/net/ipvlan/ipvlan_main.c
index 30cb803..2469df1 100644
--- a/drivers/net/ipvlan/ipvlan_main.c
+++ b/drivers/net/ipvlan/ipvlan_main.c
@@ -850,6 +850,19 @@ static void ipvlan_del_addr6(struct ipvl_dev *ipvlan, struct in6_addr *ip6_addr)
 	return ipvlan_del_addr(ipvlan, ip6_addr, true);
 }
 
+static bool ipvlan_is_valid_dev(const struct net_device *dev)
+{
+	struct ipvl_dev *ipvlan = netdev_priv(dev);
+
+	if (!netif_is_ipvlan(dev))
+		return false;
+
+	if (!ipvlan || !ipvlan->port)
+		return false;
+
+	return true;
+}
+
 static int ipvlan_addr6_event(struct notifier_block *unused,
 			      unsigned long event, void *ptr)
 {
@@ -857,10 +870,7 @@ static int ipvlan_addr6_event(struct notifier_block *unused,
 	struct net_device *dev = (struct net_device *)if6->idev->dev;
 	struct ipvl_dev *ipvlan = netdev_priv(dev);
 
-	if (!netif_is_ipvlan(dev))
-		return NOTIFY_DONE;
-
-	if (!ipvlan || !ipvlan->port)
+	if (!ipvlan_is_valid_dev(dev))
 		return NOTIFY_DONE;
 
 	switch (event) {
@@ -888,10 +898,7 @@ static int ipvlan_addr6_validator_event(struct notifier_block *unused,
 	if (in_softirq())
 		return NOTIFY_DONE;
 
-	if (!netif_is_ipvlan(dev))
-		return NOTIFY_DONE;
-
-	if (!ipvlan || !ipvlan->port)
+	if (!ipvlan_is_valid_dev(dev))
 		return NOTIFY_DONE;
 
 	switch (event) {
@@ -932,10 +939,7 @@ static int ipvlan_addr4_event(struct notifier_block *unused,
 	struct ipvl_dev *ipvlan = netdev_priv(dev);
 	struct in_addr ip4_addr;
 
-	if (!netif_is_ipvlan(dev))
-		return NOTIFY_DONE;
-
-	if (!ipvlan || !ipvlan->port)
+	if (!ipvlan_is_valid_dev(dev))
 		return NOTIFY_DONE;
 
 	switch (event) {
@@ -961,10 +965,7 @@ static int ipvlan_addr4_validator_event(struct notifier_block *unused,
 	struct net_device *dev = (struct net_device *)ivi->ivi_dev->dev;
 	struct ipvl_dev *ipvlan = netdev_priv(dev);
 
-	if (!netif_is_ipvlan(dev))
-		return NOTIFY_DONE;
-
-	if (!ipvlan || !ipvlan->port)
+	if (!ipvlan_is_valid_dev(dev))
 		return NOTIFY_DONE;
 
 	switch (event) {
-- 
1.9.1

^ permalink raw reply related

* Re: [PATCH 1/3] dt-bindings: net: Add DT bindings for Socionext Netsec
From: Ard Biesheuvel @ 2017-12-01  9:12 UTC (permalink / raw)
  To: Jassi Brar
  Cc: <netdev@vger.kernel.org>, devicetree@vger.kernel.org,
	David S. Miller, Arnd Bergmann, Rob Herring, Mark Rutland,
	Jassi Brar
In-Reply-To: <1512058351-15851-1-git-send-email-jassisinghbrar@gmail.com>

Hi Jassi,

On 30 November 2017 at 16:12,  <jassisinghbrar@gmail.com> wrote:
> From: Jassi Brar <jassisinghbrar@gmail.com>
>
> This patch adds documentation for Device-Tree bindings for the
> Socionext NetSec Controller driver.
>
> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

No need to keep my signoff here: if you are posting the patch, your
signoff should come last. (Authorship is no factor here, only the path
taken by the patch from the author/copyright holder to the sender of
the email)

> ---
>  .../devicetree/bindings/net/socionext-netsec.txt   | 43 ++++++++++++++++++++++
>  1 file changed, 43 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/net/socionext-netsec.txt
>
> diff --git a/Documentation/devicetree/bindings/net/socionext-netsec.txt b/Documentation/devicetree/bindings/net/socionext-netsec.txt
> new file mode 100644
> index 0000000..4695969
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/net/socionext-netsec.txt
> @@ -0,0 +1,43 @@
> +* Socionext NetSec Ethernet Controller IP
> +
> +Required properties:
> +- compatible: Should be "socionext,synquacer-netsec"
> +- reg: Address and length of the control register area, followed by the
> +       address and length of the EEPROM holding the MAC address and
> +       microengine firmware
> +- interrupts: Should contain ethernet controller interrupt
> +- clocks: phandle to the PHY reference clock, and any other clocks to be
> +          switched by runtime_pm
> +- clock-names: Required only if more than a single clock is listed in 'clocks'.
> +               The PHY reference clock must be named 'phy_refclk'
> +- phy-mode: See ethernet.txt file in the same directory
> +- phy-handle: phandle to select child phy
> +

We should add the following property here:

- dma-coherent: Boolean property, must only be present if memory
accesses performed by the device are cache coherent

(I only added support for this in our platform earlier this week)

> +Optional properties: (See ethernet.txt file in the same directory)
> +- local-mac-address
> +- mac-address
> +- max-speed
> +- max-frame-size
> +
> +Required properties for the child phy:
> +- reg: phy address
> +
> +Example:
> +       eth0: netsec@522D0000 {
> +               compatible = "socionext,synquacer-netsec";
> +               reg = <0 0x522D0000 0x0 0x10000>, <0 0x10000000 0x0 0x10000>;
> +               interrupts = <GIC_SPI 176 IRQ_TYPE_LEVEL_HIGH>;
> +               clocks = <&clk_netsec>;
> +               phy-mode = "rgmii";
> +               max-speed = <1000>;
> +               max-frame-size = <9000>;
> +               phy-handle = <&ethphy0>;
> +
> +               #address-cells = <1>;
> +               #size-cells = <0>;
> +
> +               ethphy0: ethernet-phy@1 {
> +                       compatible = "ethernet-phy-ieee802.3-c22";
> +                       reg = <1>;
> +               };
> +       };
> --
> 2.7.4
>

^ permalink raw reply

* Re: [PATCH 3/3] MAINTAINERS: Add entry for Socionext ethernet driver
From: Ard Biesheuvel @ 2017-12-01  9:14 UTC (permalink / raw)
  To: Jassi Brar
  Cc: <netdev@vger.kernel.org>, devicetree@vger.kernel.org,
	David S. Miller, Arnd Bergmann, Rob Herring, Mark Rutland,
	Jassi Brar
In-Reply-To: <1512058416-15968-1-git-send-email-jassisinghbrar@gmail.com>

On 30 November 2017 at 16:13,  <jassisinghbrar@gmail.com> wrote:
> From: Jassi Brar <jaswinder.singh@linaro.org>
>
> Add entry for the Socionext Netsec controller driver and DT bindings.
>
> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>

Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

(with Joe's comment addressed)

> ---
>  MAINTAINERS | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index aa71ab52f..aed9d32 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -12617,6 +12617,14 @@ F:     drivers/md/raid*
>  F:     include/linux/raid/
>  F:     include/uapi/linux/raid/
>
> +SOCIONEXT (SNI) NETSEC NETWORK DRIVER
> +M:     Jassi Brar <jaswinder.singh@linaro.org>
> +L:     netdev@vger.kernel.org
> +S:     Supported
> +S:     Maintained
> +F:     drivers/net/ethernet/socionext/netsec.c
> +F:     Documentation/devicetree/bindings/net/socionext-netsec.txt
> +
>  SONIC NETWORK DRIVER
>  M:     Thomas Bogendoerfer <tsbogend@alpha.franken.de>
>  L:     netdev@vger.kernel.org
> --
> 2.7.4
>

^ permalink raw reply

* [PATCH net 0/3] s390/qeth: fixes 2017-12-01
From: Julian Wiedmann @ 2017-12-01  9:14 UTC (permalink / raw)
  To: David Miller
  Cc: netdev, linux-s390, Martin Schwidefsky, Heiko Carstens,
	Stefan Raspl, Ursula Braun, Julian Wiedmann

Hi Dave,

please apply the following three fixes for 4.15. These should also go
back to stable.

Thanks,
Julian


Julian Wiedmann (3):
  s390/qeth: fix thinko in IPv4 multicast address tracking
  s390/qeth: fix GSO throughput regression
  s390/qeth: build max size GSO skbs on L2 devices

 drivers/s390/net/qeth_core.h      |  3 +++
 drivers/s390/net/qeth_core_main.c | 31 +++++++++++++++++++++++++++++++
 drivers/s390/net/qeth_l2_main.c   |  4 ++--
 drivers/s390/net/qeth_l3_main.c   |  7 +++++--
 4 files changed, 41 insertions(+), 4 deletions(-)

-- 
2.13.5

^ permalink raw reply

* [PATCH net 1/3] s390/qeth: fix thinko in IPv4 multicast address tracking
From: Julian Wiedmann @ 2017-12-01  9:14 UTC (permalink / raw)
  To: David Miller
  Cc: netdev, linux-s390, Martin Schwidefsky, Heiko Carstens,
	Stefan Raspl, Ursula Braun, Julian Wiedmann
In-Reply-To: <20171201091451.52270-1-jwi@linux.vnet.ibm.com>

Commit 5f78e29ceebf ("qeth: optimize IP handling in rx_mode callback")
reworked how secondary addresses are managed for qeth devices.
Instead of dropping & subsequently re-adding all addresses on every
ndo_set_rx_mode() call, qeth now keeps track of the addresses that are
currently registered with the HW.
On a ndo_set_rx_mode(), we thus only need to do (de-)registration
requests for the addresses that have actually changed.

On L3 devices, the lookup for IPv4 Multicast addresses checks the wrong
hashtable - and thus never finds a match. As a result, we first delete
*all* such addresses, and then re-add them again. So each set_rx_mode()
causes a short period where the IPv4 Multicast addresses are not
registered, and the card stops forwarding inbound traffic for them.

Fix this by setting the ->is_multicast flag on the lookup object, thus
enabling qeth_l3_ip_from_hash() to search the correct hashtable and
find a match there.

Fixes: 5f78e29ceebf ("qeth: optimize IP handling in rx_mode callback")
Signed-off-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
---
 drivers/s390/net/qeth_l3_main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c
index aadd384316a3..e79936b50698 100644
--- a/drivers/s390/net/qeth_l3_main.c
+++ b/drivers/s390/net/qeth_l3_main.c
@@ -1376,6 +1376,7 @@ qeth_l3_add_mc_to_hash(struct qeth_card *card, struct in_device *in4_dev)
 
 		tmp->u.a4.addr = be32_to_cpu(im4->multiaddr);
 		memcpy(tmp->mac, buf, sizeof(tmp->mac));
+		tmp->is_multicast = 1;
 
 		ipm = qeth_l3_ip_from_hash(card, tmp);
 		if (ipm) {
-- 
2.13.5

^ permalink raw reply related

* [PATCH net 2/3] s390/qeth: fix GSO throughput regression
From: Julian Wiedmann @ 2017-12-01  9:14 UTC (permalink / raw)
  To: David Miller
  Cc: netdev, linux-s390, Martin Schwidefsky, Heiko Carstens,
	Stefan Raspl, Ursula Braun, Julian Wiedmann
In-Reply-To: <20171201091451.52270-1-jwi@linux.vnet.ibm.com>

Using GSO with small MTUs currently results in a substantial throughput
regression - which is caused by how qeth needs to map non-linear skbs
into its IO buffer elements:
compared to a linear skb, each GSO-segmented skb effectively consumes
twice as many buffer elements (ie two instead of one) due to the
additional header-only part. This causes the Output Queue to be
congested with low-utilized IO buffers.

Fix this as follows:
If the MSS is low enough so that a non-SG GSO segmentation produces
order-0 skbs (currently ~3500 byte), opt out from NETIF_F_SG. This is
where we anticipate the biggest savings, since an SG-enabled
GSO segmentation produces skbs that always consume at least two
buffer elements.

Larger MSS values continue to get a SG-enabled GSO segmentation, since
1) the relative overhead of the additional header-only buffer element
becomes less noticeable, and
2) the linearization overhead increases.

With the throughput regression fixed, re-enable NETIF_F_SG by default to
reap the significant CPU savings of GSO.

Fixes: 5722963a8e83 ("qeth: do not turn on SG per default")
Reported-by: Nils Hoppmann <niho@de.ibm.com>
Signed-off-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
---
 drivers/s390/net/qeth_core.h      |  3 +++
 drivers/s390/net/qeth_core_main.c | 31 +++++++++++++++++++++++++++++++
 drivers/s390/net/qeth_l2_main.c   |  2 ++
 drivers/s390/net/qeth_l3_main.c   |  2 ++
 4 files changed, 38 insertions(+)

diff --git a/drivers/s390/net/qeth_core.h b/drivers/s390/net/qeth_core.h
index 9cd569ef43ec..15015a24f8ad 100644
--- a/drivers/s390/net/qeth_core.h
+++ b/drivers/s390/net/qeth_core.h
@@ -987,6 +987,9 @@ struct qeth_cmd_buffer *qeth_get_setassparms_cmd(struct qeth_card *,
 int qeth_set_features(struct net_device *, netdev_features_t);
 void qeth_recover_features(struct net_device *dev);
 netdev_features_t qeth_fix_features(struct net_device *, netdev_features_t);
+netdev_features_t qeth_features_check(struct sk_buff *skb,
+				      struct net_device *dev,
+				      netdev_features_t features);
 int qeth_vm_request_mac(struct qeth_card *card);
 int qeth_push_hdr(struct sk_buff *skb, struct qeth_hdr **hdr, unsigned int len);
 
diff --git a/drivers/s390/net/qeth_core_main.c b/drivers/s390/net/qeth_core_main.c
index 49b9efeba1bd..d9b0e07d4fa7 100644
--- a/drivers/s390/net/qeth_core_main.c
+++ b/drivers/s390/net/qeth_core_main.c
@@ -19,6 +19,11 @@
 #include <linux/mii.h>
 #include <linux/kthread.h>
 #include <linux/slab.h>
+#include <linux/if_vlan.h>
+#include <linux/netdevice.h>
+#include <linux/netdev_features.h>
+#include <linux/skbuff.h>
+
 #include <net/iucv/af_iucv.h>
 #include <net/dsfield.h>
 
@@ -6438,6 +6443,32 @@ netdev_features_t qeth_fix_features(struct net_device *dev,
 }
 EXPORT_SYMBOL_GPL(qeth_fix_features);
 
+netdev_features_t qeth_features_check(struct sk_buff *skb,
+				      struct net_device *dev,
+				      netdev_features_t features)
+{
+	/* GSO segmentation builds skbs with
+	 *	a (small) linear part for the headers, and
+	 *	page frags for the data.
+	 * Compared to a linear skb, the header-only part consumes an
+	 * additional buffer element. This reduces buffer utilization, and
+	 * hurts throughput. So compress small segments into one element.
+	 */
+	if (netif_needs_gso(skb, features)) {
+		/* match skb_segment(): */
+		unsigned int doffset = skb->data - skb_mac_header(skb);
+		unsigned int hsize = skb_shinfo(skb)->gso_size;
+		unsigned int hroom = skb_headroom(skb);
+
+		/* linearize only if resulting skb allocations are order-0: */
+		if (SKB_DATA_ALIGN(hroom + doffset + hsize) <= SKB_MAX_HEAD(0))
+			features &= ~NETIF_F_SG;
+	}
+
+	return vlan_features_check(skb, features);
+}
+EXPORT_SYMBOL_GPL(qeth_features_check);
+
 static int __init qeth_core_init(void)
 {
 	int rc;
diff --git a/drivers/s390/net/qeth_l2_main.c b/drivers/s390/net/qeth_l2_main.c
index d2537c09126d..85162712d207 100644
--- a/drivers/s390/net/qeth_l2_main.c
+++ b/drivers/s390/net/qeth_l2_main.c
@@ -960,6 +960,7 @@ static const struct net_device_ops qeth_l2_netdev_ops = {
 	.ndo_stop		= qeth_l2_stop,
 	.ndo_get_stats		= qeth_get_stats,
 	.ndo_start_xmit		= qeth_l2_hard_start_xmit,
+	.ndo_features_check	= qeth_features_check,
 	.ndo_validate_addr	= eth_validate_addr,
 	.ndo_set_rx_mode	= qeth_l2_set_rx_mode,
 	.ndo_do_ioctl		= qeth_do_ioctl,
@@ -1010,6 +1011,7 @@ static int qeth_l2_setup_netdev(struct qeth_card *card)
 	if (card->info.type == QETH_CARD_TYPE_OSD && !card->info.guestlan) {
 		card->dev->hw_features = NETIF_F_SG;
 		card->dev->vlan_features = NETIF_F_SG;
+		card->dev->features |= NETIF_F_SG;
 		/* OSA 3S and earlier has no RX/TX support */
 		if (qeth_is_supported(card, IPA_OUTBOUND_CHECKSUM)) {
 			card->dev->hw_features |= NETIF_F_IP_CSUM;
diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c
index e79936b50698..46a841258fc8 100644
--- a/drivers/s390/net/qeth_l3_main.c
+++ b/drivers/s390/net/qeth_l3_main.c
@@ -2918,6 +2918,7 @@ static const struct net_device_ops qeth_l3_osa_netdev_ops = {
 	.ndo_stop		= qeth_l3_stop,
 	.ndo_get_stats		= qeth_get_stats,
 	.ndo_start_xmit		= qeth_l3_hard_start_xmit,
+	.ndo_features_check	= qeth_features_check,
 	.ndo_validate_addr	= eth_validate_addr,
 	.ndo_set_rx_mode	= qeth_l3_set_multicast_list,
 	.ndo_do_ioctl		= qeth_do_ioctl,
@@ -2958,6 +2959,7 @@ static int qeth_l3_setup_netdev(struct qeth_card *card)
 				card->dev->vlan_features = NETIF_F_SG |
 					NETIF_F_RXCSUM | NETIF_F_IP_CSUM |
 					NETIF_F_TSO;
+				card->dev->features |= NETIF_F_SG;
 			}
 		}
 	} else if (card->info.type == QETH_CARD_TYPE_IQD) {
-- 
2.13.5

^ permalink raw reply related

* [PATCH net 3/3] s390/qeth: build max size GSO skbs on L2 devices
From: Julian Wiedmann @ 2017-12-01  9:14 UTC (permalink / raw)
  To: David Miller
  Cc: netdev, linux-s390, Martin Schwidefsky, Heiko Carstens,
	Stefan Raspl, Ursula Braun, Julian Wiedmann
In-Reply-To: <20171201091451.52270-1-jwi@linux.vnet.ibm.com>

The current GSO skb size limit was copy&pasted over from the L3 path,
where it is needed due to a TSO limitation.
As L2 devices don't offer TSO support (and thus all GSO skbs are
segmented before they reach the driver), there's no reason to restrict
the stack in how large it may build the GSO skbs.

Fixes: d52aec97e5bc ("qeth: enable scatter/gather in layer 2 mode")
Signed-off-by: Julian Wiedmann <jwi@linux.vnet.ibm.com>
---
 drivers/s390/net/qeth_l2_main.c | 2 --
 drivers/s390/net/qeth_l3_main.c | 4 ++--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/s390/net/qeth_l2_main.c b/drivers/s390/net/qeth_l2_main.c
index 85162712d207..f21c94810373 100644
--- a/drivers/s390/net/qeth_l2_main.c
+++ b/drivers/s390/net/qeth_l2_main.c
@@ -1030,8 +1030,6 @@ static int qeth_l2_setup_netdev(struct qeth_card *card)
 
 	card->info.broadcast_capable = 1;
 	qeth_l2_request_initial_mac(card);
-	card->dev->gso_max_size = (QETH_MAX_BUFFER_ELEMENTS(card) - 1) *
-				  PAGE_SIZE;
 	SET_NETDEV_DEV(card->dev, &card->gdev->dev);
 	netif_napi_add(card->dev, &card->napi, qeth_poll, QETH_NAPI_WEIGHT);
 	netif_carrier_off(card->dev);
diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c
index 46a841258fc8..2a25f20566d8 100644
--- a/drivers/s390/net/qeth_l3_main.c
+++ b/drivers/s390/net/qeth_l3_main.c
@@ -2987,8 +2987,8 @@ static int qeth_l3_setup_netdev(struct qeth_card *card)
 				NETIF_F_HW_VLAN_CTAG_RX |
 				NETIF_F_HW_VLAN_CTAG_FILTER;
 	netif_keep_dst(card->dev);
-	card->dev->gso_max_size = (QETH_MAX_BUFFER_ELEMENTS(card) - 1) *
-				  PAGE_SIZE;
+	netif_set_gso_max_size(card->dev, (QETH_MAX_BUFFER_ELEMENTS(card) - 1) *
+					  PAGE_SIZE);
 
 	SET_NETDEV_DEV(card->dev, &card->gdev->dev);
 	netif_napi_add(card->dev, &card->napi, qeth_poll, QETH_NAPI_WEIGHT);
-- 
2.13.5

^ permalink raw reply related

* [stable] s390/qeth: stable candidates
From: Julian Wiedmann @ 2017-12-01  9:22 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Ursula Braun

(+cc netdev)

Hi Dave,

I scanned over some recent qeth fixes (see below), could you please
pass these on to stable?

Much obliged,
Julian



83cf79a2fec3 s390/qeth: fix early exit from error path
    Fixes:  5f78e29ceebf ("qeth: optimize IP handling in rx_mode callback")
    For     4.8+

2aa4867198c2 s390/qeth: translate SETVLAN/DELVLAN errors
    For     3.19+

4b764d1de395 s390/qeth: don't convert return code twice
    Fixes:  efbbc1d56774 ("qeth: clean up error handling")
    For     3.19+

ec2c6726322f s390/qeth: fix L3 next-hop in xmit qeth hdr
    Fixes:  87e7597b5a3f ("qeth: Move away from using neighbour entries in qeth_l3_fill_header()")
    For     3.4+

c7258d8637be qeth: fix rx checksum offload handling
    Fixes:  c8f44affb724 ("net: introduce and use netdev_features_t for device features sets")
    For     3.3+

903e48531e8b qeth: check not more than 16 SBALEs on the completion queue
    Fixes:  0da9581ddb0f ("qeth: exploit asynchronous delivery of storage blocks")
    For     3.2+

acd9776b5c45 s390/qeth: no ETH header for outbound AF_IUCV
    Fixes:  b333293058aa ("qeth: add support for af_iucv HiperSockets transport)
    For     3.2+
dadc08c7e019 s390/qeth: Allow reading hsuid in state DOWN
    Fixes:  b333293058aa ("qeth: add support for af_iucv HiperSockets transport)
    For     3.2+

^ permalink raw reply

* Re: [PATCH 1/3] socketpair(): allocate descriptors first
From: Eric Dumazet @ 2017-12-01  9:28 UTC (permalink / raw)
  To: Al Viro, netdev
In-Reply-To: <20171201002203.GJ21978@ZenIV.linux.org.uk>

On Fri, 2017-12-01 at 00:22 +0000, Al Viro wrote:
> simplifies failure exits considerably...
> 
> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
> ---

Reviewed-by: Eric Dumazet <edumazet@google.com>

^ 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