aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/net.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2015-11-23 03:04:05 -0500
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-11-23 03:04:05 -0500
commit92907cbbef8625bb3998d1eb385fc88f23c97a3f (patch)
tree15626ff9287e37c3cb81c7286d6db5a7fd77c854 /include/linux/net.h
parent15fbfccfe92c62ae8d1ecc647c44157ed01ac02e (diff)
parent1ec218373b8ebda821aec00bb156a9c94fad9cd4 (diff)
Merge tag 'v4.4-rc2' into drm-intel-next-queued
Linux 4.4-rc2 Backmerge to get at commit 1b0e3a049efe471c399674fd954500ce97438d30 Author: Imre Deak <imre.deak@intel.com> Date: Thu Nov 5 23:04:11 2015 +0200 drm/i915/skl: disable display side power well support for now so that we can proplery re-eanble skl power wells in -next. Conflicts are just adjacent lines changed, except for intel_fbdev.c where we need to interleave the changs. Nothing nefarious. Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Diffstat (limited to 'include/linux/net.h')
-rw-r--r--include/linux/net.h21
1 files changed, 4 insertions, 17 deletions
diff --git a/include/linux/net.h b/include/linux/net.h
index 049d4b03c4c4..70ac5e28e6b7 100644
--- a/include/linux/net.h
+++ b/include/linux/net.h
@@ -24,7 +24,8 @@
24#include <linux/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK */ 24#include <linux/fcntl.h> /* For O_CLOEXEC and O_NONBLOCK */
25#include <linux/kmemcheck.h> 25#include <linux/kmemcheck.h>
26#include <linux/rcupdate.h> 26#include <linux/rcupdate.h>
27#include <linux/jump_label.h> 27#include <linux/once.h>
28
28#include <uapi/linux/net.h> 29#include <uapi/linux/net.h>
29 30
30struct poll_table_struct; 31struct poll_table_struct;
@@ -250,22 +251,8 @@ do { \
250 } while (0) 251 } while (0)
251#endif 252#endif
252 253
253bool __net_get_random_once(void *buf, int nbytes, bool *done, 254#define net_get_random_once(buf, nbytes) \
254 struct static_key *done_key); 255 get_random_once((buf), (nbytes))
255
256#define net_get_random_once(buf, nbytes) \
257 ({ \
258 bool ___ret = false; \
259 static bool ___done = false; \
260 static struct static_key ___once_key = \
261 STATIC_KEY_INIT_TRUE; \
262 if (static_key_true(&___once_key)) \
263 ___ret = __net_get_random_once(buf, \
264 nbytes, \
265 &___done, \
266 &___once_key); \
267 ___ret; \
268 })
269 256
270int kernel_sendmsg(struct socket *sock, struct msghdr *msg, struct kvec *vec, 257int kernel_sendmsg(struct socket *sock, struct msghdr *msg, struct kvec *vec,
271 size_t num, size_t len); 258 size_t num, size_t len);