Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1271456
| Path | csiph.com!eternal-september.org!feeder.eternal-september.org!aioe.org!bofh.it!news.nic.it!robomod |
|---|---|
| From | Eric Dumazet <eric.dumazet@gmail.com> |
| Newsgroups | linux.kernel |
| Subject | Re: next build: 235 warnings 3 failures (next/next-20151117) |
| Date | Tue, 17 Nov 2015 18:10:01 +0100 |
| Message-ID | <qvRVv-7TO-3@gated-at.bofh.it> (permalink) |
| References | <qvKhk-2Hb-21@gated-at.bofh.it> <qvKhk-2Hb-19@gated-at.bofh.it> <qvRC9-7wq-3@gated-at.bofh.it> |
| X-Original-To | Will Deacon <will.deacon@arm.com> |
| Dkim-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:subject:from:to:cc:date:in-reply-to:references :content-type:mime-version:content-transfer-encoding; bh=cH4YjnmxgMaMkCVBF2FTigI8rvus77to1gQGcnokiik=; b=fUasL8xlc55RSmw8fnZABhVXqFPwVnwob+E3qORpHyAgJKc4uPGOkX7v14+XIVddeR k7Pvt8iobl8JAxtiWZr/YBW7+La91raHxVzXwn7P/UOER1ZTmEm0fsgGxx3uBCzBMyj4 yzzVdRoUM01kTjCL3ua0EnEF8jQdWUvSY/w0MQNIlgT67Lk+MKiGhWR9kuYd7iZnQf8Q Qve3mULON9Ae1mkqmi9CzzE3heFa6kK2KEtMlKWpVUpIT9+ESvZLMvi6KYCp9ts4upTT 4ik6yDbOxrjKDSlgqrTbb7mIzT54Ougjbc6wKKB6cmIBt7o4wqeoGCZIXID6Nqu4y47K KrDA== |
| X-Received | by 10.66.155.74 with SMTP id vu10mr32397810pab.80.1447779717990; Tue, 17 Nov 2015 09:01:57 -0800 (PST) |
| Content-Type | text/plain; charset="UTF-8" |
| X-Mailer | Evolution 3.10.4-0ubuntu2 |
| MIME-Version | 1.0 |
| Content-Transfer-Encoding | 7bit |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 23 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | Arnd Bergmann <arnd@arndb.de>, Catalin Marinas <catalin.marinas@arm.com>, kernel-build-reports@lists.linaro.org, olof@lixom.net, David Miller <davem@davemloft.net>, netdev@vger.kernel.org, linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org |
| X-Original-Date | Tue, 17 Nov 2015 09:01:56 -0800 |
| X-Original-Message-ID | <1447779716.22599.123.camel@edumazet-glaptop2.roam.corp.google.com> |
| X-Original-References | <564a9961.878b420a.331b8.fffffd62@mx.google.com> <4694362.ZPL12j6kR2@wuerfel> <20151117164453.GF30101@arm.com> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1271456 |
Show key headers only | View raw
On Tue, 2015-11-17 at 16:44 +0000, Will Deacon wrote:
> Do you know the usage in the kernel causing this warning?
/**
* sk_state_load - read sk->sk_state for lockless contexts
* @sk: socket pointer
*
* Paired with sk_state_store(). Used in places we do not hold socket lock :
* tcp_diag_get_info(), tcp_get_info(), tcp_poll(), get_tcp4_sock() ...
*/
static inline int sk_state_load(const struct sock *sk)
{
return smp_load_acquire(&sk->sk_state);
}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: next build: 235 warnings 3 failures (next/next-20151117) Arnd Bergmann <arnd@arndb.de> - 2015-11-17 10:00 +0100
Re: next build: 235 warnings 3 failures (next/next-20151117) Will Deacon <will.deacon@arm.com> - 2015-11-17 17:50 +0100
Re: next build: 235 warnings 3 failures (next/next-20151117) Eric Dumazet <eric.dumazet@gmail.com> - 2015-11-17 18:10 +0100
Re: next build: 235 warnings 3 failures (next/next-20151117) Arnd Bergmann <arnd@arndb.de> - 2015-11-17 18:10 +0100
Re: next build: 235 warnings 3 failures (next/next-20151117) Will Deacon <will.deacon@arm.com> - 2015-11-17 18:20 +0100
Re: next build: 235 warnings 3 failures (next/next-20151117) Arnd Bergmann <arnd@arndb.de> - 2015-11-17 20:20 +0100
Re: next build: 235 warnings 3 failures (next/next-20151117) Will Deacon <will.deacon@arm.com> - 2015-11-18 11:20 +0100
RE: next build: 235 warnings 3 failures (next/next-20151117) David Laight <David.Laight@ACULAB.COM> - 2015-11-18 13:20 +0100
Re: next build: 235 warnings 3 failures (next/next-20151117) Will Deacon <will.deacon@arm.com> - 2015-11-18 13:30 +0100
RE: next build: 235 warnings 3 failures (next/next-20151117) David Laight <David.Laight@ACULAB.COM> - 2015-11-18 16:30 +0100
Re: next build: 235 warnings 3 failures (next/next-20151117) Will Deacon <will.deacon@arm.com> - 2015-11-18 16:40 +0100
RE: next build: 235 warnings 3 failures (next/next-20151117) David Laight <David.Laight@ACULAB.COM> - 2015-11-18 17:00 +0100
RE: next build: 235 warnings 3 failures (next/next-20151117) David Laight <David.Laight@ACULAB.COM> - 2015-11-18 11:30 +0100
csiph-web