Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1679938 > unrolled thread

[PATCH 0/2] Fixes for errors reported by 0day on net-next tree

Started byElena Reshetova <elena.reshetova@intel.com>
First post2017-07-03 14:00 +0200
Last post2017-07-03 15:00 +0200
Articles 3 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/2] Fixes for errors reported by 0day on net-next tree Elena Reshetova <elena.reshetova@intel.com> - 2017-07-03 14:00 +0200
    [PATCH 1/2] net, iucv: fixing error from refcount conversion Elena Reshetova <elena.reshetova@intel.com> - 2017-07-03 14:00 +0200
    Re: [PATCH 0/2] Fixes for errors reported by 0day on net-next tree David Miller <davem@davemloft.net> - 2017-07-03 15:00 +0200

#1679938 — [PATCH 0/2] Fixes for errors reported by 0day on net-next tree

FromElena Reshetova <elena.reshetova@intel.com>
Date2017-07-03 14:00 +0200
Subject[PATCH 0/2] Fixes for errors reported by 0day on net-next tree
Message-ID<tZ8bf-R2-7@gated-at.bofh.it>
Despite the fact that we have automatic testing enabled
on all our branches, there s390-config related errors got through.
I will investigate separately why it happened.
Sorry for the inconvince and please pull.

Elena Reshetova (2):
  net, iucv: fixing error from refcount conversion
  drivers, s390: fix errors resulting from refcount conversions

 drivers/s390/net/ctcm_fsms.c | 12 ++++++------
 net/iucv/af_iucv.c           |  2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

-- 
2.7.4

[toc] | [next] | [standalone]


#1679939 — [PATCH 1/2] net, iucv: fixing error from refcount conversion

FromElena Reshetova <elena.reshetova@intel.com>
Date2017-07-03 14:00 +0200
Subject[PATCH 1/2] net, iucv: fixing error from refcount conversion
Message-ID<tZ8bg-R2-19@gated-at.bofh.it>
In reply to#1679938
Fixing "net/iucv/af_iucv.c:405:22: error: passing
argument 1 of 'atomic_read' from incompatible pointer type"
---
 net/iucv/af_iucv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c
index ac033e4..1485331 100644
--- a/net/iucv/af_iucv.c
+++ b/net/iucv/af_iucv.c
@@ -402,7 +402,7 @@ static void iucv_sock_destruct(struct sock *sk)
 	}
 
 	WARN_ON(atomic_read(&sk->sk_rmem_alloc));
-	WARN_ON(atomic_read(&sk->sk_wmem_alloc));
+	WARN_ON(refcount_read(&sk->sk_wmem_alloc));
 	WARN_ON(sk->sk_wmem_queued);
 	WARN_ON(sk->sk_forward_alloc);
 }
-- 
2.7.4

[toc] | [prev] | [next] | [standalone]


#1679984

FromDavid Miller <davem@davemloft.net>
Date2017-07-03 15:00 +0200
Message-ID<tZ97k-1Az-29@gated-at.bofh.it>
In reply to#1679938
From: Elena Reshetova <elena.reshetova@intel.com>
Date: Mon,  3 Jul 2017 14:50:26 +0300

> Despite the fact that we have automatic testing enabled
> on all our branches, there s390-config related errors got through.
> I will investigate separately why it happened.
> Sorry for the inconvince and please pull.

Update your net-next tree I already fixed this stuff.

Thanks.

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web