diff options
| author | Ingo Molnar <mingo@kernel.org> | 2015-09-30 03:29:27 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2015-09-30 03:29:27 -0400 |
| commit | ccf79c238f1a06a801b4c4449b9bc8a42be2c7bc (patch) | |
| tree | e9b0f1a4c2f324c6fb107e276b09894ae480baa6 /include/linux | |
| parent | 1e034743e918d195d339af340ae933727c072bce (diff) | |
| parent | 9ffecb10283508260936b96022d4ee43a7798b4c (diff) | |
Merge tag 'v4.3-rc3' into x86/urgent, before applying dependent fix
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/backing-dev.h | 11 | ||||
| -rw-r--r-- | include/linux/cgroup-defs.h | 27 | ||||
| -rw-r--r-- | include/linux/init_task.h | 8 | ||||
| -rw-r--r-- | include/linux/netdevice.h | 1 | ||||
| -rw-r--r-- | include/linux/phy.h | 6 | ||||
| -rw-r--r-- | include/linux/sched.h | 12 | ||||
| -rw-r--r-- | include/linux/security.h | 2 | ||||
| -rw-r--r-- | include/linux/skbuff.h | 9 | ||||
| -rw-r--r-- | include/linux/spi/spi.h | 2 | ||||
| -rw-r--r-- | include/linux/sunrpc/xprtsock.h | 3 | ||||
| -rw-r--r-- | include/linux/thermal.h | 8 | ||||
| -rw-r--r-- | include/linux/wait.h | 5 |
12 files changed, 57 insertions, 37 deletions
diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index 5a5d79ee256f..d5eb4ad1c534 100644 --- a/include/linux/backing-dev.h +++ b/include/linux/backing-dev.h | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #include <linux/sched.h> | 13 | #include <linux/sched.h> |
| 14 | #include <linux/blkdev.h> | 14 | #include <linux/blkdev.h> |
| 15 | #include <linux/writeback.h> | 15 | #include <linux/writeback.h> |
| 16 | #include <linux/memcontrol.h> | ||
| 16 | #include <linux/blk-cgroup.h> | 17 | #include <linux/blk-cgroup.h> |
| 17 | #include <linux/backing-dev-defs.h> | 18 | #include <linux/backing-dev-defs.h> |
| 18 | #include <linux/slab.h> | 19 | #include <linux/slab.h> |
| @@ -252,13 +253,19 @@ int inode_congested(struct inode *inode, int cong_bits); | |||
| 252 | * @inode: inode of interest | 253 | * @inode: inode of interest |
| 253 | * | 254 | * |
| 254 | * cgroup writeback requires support from both the bdi and filesystem. | 255 | * cgroup writeback requires support from both the bdi and filesystem. |
| 255 | * Test whether @inode has both. | 256 | * Also, both memcg and iocg have to be on the default hierarchy. Test |
| 257 | * whether all conditions are met. | ||
| 258 | * | ||
| 259 | * Note that the test result may change dynamically on the same inode | ||
| 260 | * depending on how memcg and iocg are configured. | ||
| 256 | */ | 261 | */ |
| 257 | static inline bool inode_cgwb_enabled(struct inode *inode) | 262 | static inline bool inode_cgwb_enabled(struct inode *inode) |
| 258 | { | 263 | { |
| 259 | struct backing_dev_info *bdi = inode_to_bdi(inode); | 264 | struct backing_dev_info *bdi = inode_to_bdi(inode); |
| 260 | 265 | ||
| 261 | return bdi_cap_account_dirty(bdi) && | 266 | return cgroup_on_dfl(mem_cgroup_root_css->cgroup) && |
| 267 | cgroup_on_dfl(blkcg_root_css->cgroup) && | ||
| 268 | bdi_cap_account_dirty(bdi) && | ||
| 262 | (bdi->capabilities & BDI_CAP_CGROUP_WRITEBACK) && | 269 | (bdi->capabilities & BDI_CAP_CGROUP_WRITEBACK) && |
| 263 | (inode->i_sb->s_iflags & SB_I_CGROUPWB); | 270 | (inode->i_sb->s_iflags & SB_I_CGROUPWB); |
| 264 | } | 271 | } |
diff --git a/include/linux/cgroup-defs.h b/include/linux/cgroup-defs.h index 4d8fcf2187dc..8492721b39be 100644 --- a/include/linux/cgroup-defs.h +++ b/include/linux/cgroup-defs.h | |||
| @@ -473,31 +473,8 @@ struct cgroup_subsys { | |||
| 473 | unsigned int depends_on; | 473 | unsigned int depends_on; |
| 474 | }; | 474 | }; |
| 475 | 475 | ||
| 476 | extern struct percpu_rw_semaphore cgroup_threadgroup_rwsem; | 476 | void cgroup_threadgroup_change_begin(struct task_struct *tsk); |
| 477 | 477 | void cgroup_threadgroup_change_end(struct task_struct *tsk); | |
| 478 | /** | ||
| 479 | * cgroup_threadgroup_change_begin - threadgroup exclusion for cgroups | ||
| 480 | * @tsk: target task | ||
| 481 | * | ||
| 482 | * Called from threadgroup_change_begin() and allows cgroup operations to | ||
| 483 | * synchronize against threadgroup changes using a percpu_rw_semaphore. | ||
| 484 | */ | ||
| 485 | static inline void cgroup_threadgroup_change_begin(struct task_struct *tsk) | ||
| 486 | { | ||
| 487 | percpu_down_read(&cgroup_threadgroup_rwsem); | ||
| 488 | } | ||
| 489 | |||
| 490 | /** | ||
| 491 | * cgroup_threadgroup_change_end - threadgroup exclusion for cgroups | ||
| 492 | * @tsk: target task | ||
| 493 | * | ||
| 494 | * Called from threadgroup_change_end(). Counterpart of | ||
| 495 | * cgroup_threadcgroup_change_begin(). | ||
| 496 | */ | ||
| 497 | static inline void cgroup_threadgroup_change_end(struct task_struct *tsk) | ||
| 498 | { | ||
| 499 | percpu_up_read(&cgroup_threadgroup_rwsem); | ||
| 500 | } | ||
| 501 | 478 | ||
| 502 | #else /* CONFIG_CGROUPS */ | 479 | #else /* CONFIG_CGROUPS */ |
| 503 | 480 | ||
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index d0b380ee7d67..e38681f4912d 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
| @@ -25,6 +25,13 @@ | |||
| 25 | extern struct files_struct init_files; | 25 | extern struct files_struct init_files; |
| 26 | extern struct fs_struct init_fs; | 26 | extern struct fs_struct init_fs; |
| 27 | 27 | ||
| 28 | #ifdef CONFIG_CGROUPS | ||
| 29 | #define INIT_GROUP_RWSEM(sig) \ | ||
| 30 | .group_rwsem = __RWSEM_INITIALIZER(sig.group_rwsem), | ||
| 31 | #else | ||
| 32 | #define INIT_GROUP_RWSEM(sig) | ||
| 33 | #endif | ||
| 34 | |||
| 28 | #ifdef CONFIG_CPUSETS | 35 | #ifdef CONFIG_CPUSETS |
| 29 | #define INIT_CPUSET_SEQ(tsk) \ | 36 | #define INIT_CPUSET_SEQ(tsk) \ |
| 30 | .mems_allowed_seq = SEQCNT_ZERO(tsk.mems_allowed_seq), | 37 | .mems_allowed_seq = SEQCNT_ZERO(tsk.mems_allowed_seq), |
| @@ -57,6 +64,7 @@ extern struct fs_struct init_fs; | |||
| 57 | INIT_PREV_CPUTIME(sig) \ | 64 | INIT_PREV_CPUTIME(sig) \ |
| 58 | .cred_guard_mutex = \ | 65 | .cred_guard_mutex = \ |
| 59 | __MUTEX_INITIALIZER(sig.cred_guard_mutex), \ | 66 | __MUTEX_INITIALIZER(sig.cred_guard_mutex), \ |
| 67 | INIT_GROUP_RWSEM(sig) \ | ||
| 60 | } | 68 | } |
| 61 | 69 | ||
| 62 | extern struct nsproxy init_nsproxy; | 70 | extern struct nsproxy init_nsproxy; |
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 88a00694eda5..2d15e3831440 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
| @@ -507,6 +507,7 @@ static inline void napi_enable(struct napi_struct *n) | |||
| 507 | BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state)); | 507 | BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state)); |
| 508 | smp_mb__before_atomic(); | 508 | smp_mb__before_atomic(); |
| 509 | clear_bit(NAPI_STATE_SCHED, &n->state); | 509 | clear_bit(NAPI_STATE_SCHED, &n->state); |
| 510 | clear_bit(NAPI_STATE_NPSVC, &n->state); | ||
| 510 | } | 511 | } |
| 511 | 512 | ||
| 512 | #ifdef CONFIG_SMP | 513 | #ifdef CONFIG_SMP |
diff --git a/include/linux/phy.h b/include/linux/phy.h index 962387a192f1..4a4e3a092337 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/spinlock.h> | 19 | #include <linux/spinlock.h> |
| 20 | #include <linux/ethtool.h> | 20 | #include <linux/ethtool.h> |
| 21 | #include <linux/mii.h> | 21 | #include <linux/mii.h> |
| 22 | #include <linux/module.h> | ||
| 22 | #include <linux/timer.h> | 23 | #include <linux/timer.h> |
| 23 | #include <linux/workqueue.h> | 24 | #include <linux/workqueue.h> |
| 24 | #include <linux/mod_devicetable.h> | 25 | #include <linux/mod_devicetable.h> |
| @@ -153,6 +154,7 @@ struct sk_buff; | |||
| 153 | * PHYs should register using this structure | 154 | * PHYs should register using this structure |
| 154 | */ | 155 | */ |
| 155 | struct mii_bus { | 156 | struct mii_bus { |
| 157 | struct module *owner; | ||
| 156 | const char *name; | 158 | const char *name; |
| 157 | char id[MII_BUS_ID_SIZE]; | 159 | char id[MII_BUS_ID_SIZE]; |
| 158 | void *priv; | 160 | void *priv; |
| @@ -198,7 +200,8 @@ static inline struct mii_bus *mdiobus_alloc(void) | |||
| 198 | return mdiobus_alloc_size(0); | 200 | return mdiobus_alloc_size(0); |
| 199 | } | 201 | } |
| 200 | 202 | ||
| 201 | int mdiobus_register(struct mii_bus *bus); | 203 | int __mdiobus_register(struct mii_bus *bus, struct module *owner); |
| 204 | #define mdiobus_register(bus) __mdiobus_register(bus, THIS_MODULE) | ||
| 202 | void mdiobus_unregister(struct mii_bus *bus); | 205 | void mdiobus_unregister(struct mii_bus *bus); |
| 203 | void mdiobus_free(struct mii_bus *bus); | 206 | void mdiobus_free(struct mii_bus *bus); |
| 204 | struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv); | 207 | struct mii_bus *devm_mdiobus_alloc_size(struct device *dev, int sizeof_priv); |
| @@ -742,6 +745,7 @@ struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id, | |||
| 742 | struct phy_c45_device_ids *c45_ids); | 745 | struct phy_c45_device_ids *c45_ids); |
| 743 | struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45); | 746 | struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45); |
| 744 | int phy_device_register(struct phy_device *phy); | 747 | int phy_device_register(struct phy_device *phy); |
| 748 | void phy_device_remove(struct phy_device *phydev); | ||
| 745 | int phy_init_hw(struct phy_device *phydev); | 749 | int phy_init_hw(struct phy_device *phydev); |
| 746 | int phy_suspend(struct phy_device *phydev); | 750 | int phy_suspend(struct phy_device *phydev); |
| 747 | int phy_resume(struct phy_device *phydev); | 751 | int phy_resume(struct phy_device *phydev); |
diff --git a/include/linux/sched.h b/include/linux/sched.h index a4ab9daa387c..b7b9501b41af 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -762,6 +762,18 @@ struct signal_struct { | |||
| 762 | unsigned audit_tty_log_passwd; | 762 | unsigned audit_tty_log_passwd; |
| 763 | struct tty_audit_buf *tty_audit_buf; | 763 | struct tty_audit_buf *tty_audit_buf; |
| 764 | #endif | 764 | #endif |
| 765 | #ifdef CONFIG_CGROUPS | ||
| 766 | /* | ||
| 767 | * group_rwsem prevents new tasks from entering the threadgroup and | ||
| 768 | * member tasks from exiting,a more specifically, setting of | ||
| 769 | * PF_EXITING. fork and exit paths are protected with this rwsem | ||
| 770 | * using threadgroup_change_begin/end(). Users which require | ||
| 771 | * threadgroup to remain stable should use threadgroup_[un]lock() | ||
| 772 | * which also takes care of exec path. Currently, cgroup is the | ||
| 773 | * only user. | ||
| 774 | */ | ||
| 775 | struct rw_semaphore group_rwsem; | ||
| 776 | #endif | ||
| 765 | 777 | ||
| 766 | oom_flags_t oom_flags; | 778 | oom_flags_t oom_flags; |
| 767 | short oom_score_adj; /* OOM kill score adjustment */ | 779 | short oom_score_adj; /* OOM kill score adjustment */ |
diff --git a/include/linux/security.h b/include/linux/security.h index 79d85ddf8093..2f4c1f7aa7db 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
| @@ -946,7 +946,7 @@ static inline int security_task_prctl(int option, unsigned long arg2, | |||
| 946 | unsigned long arg4, | 946 | unsigned long arg4, |
| 947 | unsigned long arg5) | 947 | unsigned long arg5) |
| 948 | { | 948 | { |
| 949 | return cap_task_prctl(option, arg2, arg3, arg3, arg5); | 949 | return cap_task_prctl(option, arg2, arg3, arg4, arg5); |
| 950 | } | 950 | } |
| 951 | 951 | ||
| 952 | static inline void security_task_to_inode(struct task_struct *p, struct inode *inode) | 952 | static inline void security_task_to_inode(struct task_struct *p, struct inode *inode) |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 2738d355cdf9..2b0a30a6e31c 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
| @@ -179,6 +179,9 @@ struct nf_bridge_info { | |||
| 179 | u8 bridged_dnat:1; | 179 | u8 bridged_dnat:1; |
| 180 | __u16 frag_max_size; | 180 | __u16 frag_max_size; |
| 181 | struct net_device *physindev; | 181 | struct net_device *physindev; |
| 182 | |||
| 183 | /* always valid & non-NULL from FORWARD on, for physdev match */ | ||
| 184 | struct net_device *physoutdev; | ||
| 182 | union { | 185 | union { |
| 183 | /* prerouting: detect dnat in orig/reply direction */ | 186 | /* prerouting: detect dnat in orig/reply direction */ |
| 184 | __be32 ipv4_daddr; | 187 | __be32 ipv4_daddr; |
| @@ -189,9 +192,6 @@ struct nf_bridge_info { | |||
| 189 | * skb is out in neigh layer. | 192 | * skb is out in neigh layer. |
| 190 | */ | 193 | */ |
| 191 | char neigh_header[8]; | 194 | char neigh_header[8]; |
| 192 | |||
| 193 | /* always valid & non-NULL from FORWARD on, for physdev match */ | ||
| 194 | struct net_device *physoutdev; | ||
| 195 | }; | 195 | }; |
| 196 | }; | 196 | }; |
| 197 | #endif | 197 | #endif |
| @@ -2707,6 +2707,9 @@ static inline void skb_postpull_rcsum(struct sk_buff *skb, | |||
| 2707 | { | 2707 | { |
| 2708 | if (skb->ip_summed == CHECKSUM_COMPLETE) | 2708 | if (skb->ip_summed == CHECKSUM_COMPLETE) |
| 2709 | skb->csum = csum_sub(skb->csum, csum_partial(start, len, 0)); | 2709 | skb->csum = csum_sub(skb->csum, csum_partial(start, len, 0)); |
| 2710 | else if (skb->ip_summed == CHECKSUM_PARTIAL && | ||
| 2711 | skb_checksum_start_offset(skb) <= len) | ||
| 2712 | skb->ip_summed = CHECKSUM_NONE; | ||
| 2710 | } | 2713 | } |
| 2711 | 2714 | ||
| 2712 | unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len); | 2715 | unsigned char *skb_pull_rcsum(struct sk_buff *skb, unsigned int len); |
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 269e8afd3e2a..6b00f18f5e6b 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h | |||
| @@ -34,7 +34,7 @@ extern struct bus_type spi_bus_type; | |||
| 34 | 34 | ||
| 35 | /** | 35 | /** |
| 36 | * struct spi_statistics - statistics for spi transfers | 36 | * struct spi_statistics - statistics for spi transfers |
| 37 | * @clock: lock protecting this structure | 37 | * @lock: lock protecting this structure |
| 38 | * | 38 | * |
| 39 | * @messages: number of spi-messages handled | 39 | * @messages: number of spi-messages handled |
| 40 | * @transfers: number of spi_transfers handled | 40 | * @transfers: number of spi_transfers handled |
diff --git a/include/linux/sunrpc/xprtsock.h b/include/linux/sunrpc/xprtsock.h index 7591788e9fbf..357e44c1a46b 100644 --- a/include/linux/sunrpc/xprtsock.h +++ b/include/linux/sunrpc/xprtsock.h | |||
| @@ -42,6 +42,7 @@ struct sock_xprt { | |||
| 42 | /* | 42 | /* |
| 43 | * Connection of transports | 43 | * Connection of transports |
| 44 | */ | 44 | */ |
| 45 | unsigned long sock_state; | ||
| 45 | struct delayed_work connect_worker; | 46 | struct delayed_work connect_worker; |
| 46 | struct sockaddr_storage srcaddr; | 47 | struct sockaddr_storage srcaddr; |
| 47 | unsigned short srcport; | 48 | unsigned short srcport; |
| @@ -76,6 +77,8 @@ struct sock_xprt { | |||
| 76 | */ | 77 | */ |
| 77 | #define TCP_RPC_REPLY (1UL << 6) | 78 | #define TCP_RPC_REPLY (1UL << 6) |
| 78 | 79 | ||
| 80 | #define XPRT_SOCK_CONNECTING 1U | ||
| 81 | |||
| 79 | #endif /* __KERNEL__ */ | 82 | #endif /* __KERNEL__ */ |
| 80 | 83 | ||
| 81 | #endif /* _LINUX_SUNRPC_XPRTSOCK_H */ | 84 | #endif /* _LINUX_SUNRPC_XPRTSOCK_H */ |
diff --git a/include/linux/thermal.h b/include/linux/thermal.h index 17292fee8686..157d366e761b 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h | |||
| @@ -360,7 +360,7 @@ static inline struct thermal_zone_device * | |||
| 360 | thermal_zone_of_sensor_register(struct device *dev, int id, void *data, | 360 | thermal_zone_of_sensor_register(struct device *dev, int id, void *data, |
| 361 | const struct thermal_zone_of_device_ops *ops) | 361 | const struct thermal_zone_of_device_ops *ops) |
| 362 | { | 362 | { |
| 363 | return NULL; | 363 | return ERR_PTR(-ENODEV); |
| 364 | } | 364 | } |
| 365 | 365 | ||
| 366 | static inline | 366 | static inline |
| @@ -380,6 +380,8 @@ static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev) | |||
| 380 | 380 | ||
| 381 | int power_actor_get_max_power(struct thermal_cooling_device *, | 381 | int power_actor_get_max_power(struct thermal_cooling_device *, |
| 382 | struct thermal_zone_device *tz, u32 *max_power); | 382 | struct thermal_zone_device *tz, u32 *max_power); |
| 383 | int power_actor_get_min_power(struct thermal_cooling_device *, | ||
| 384 | struct thermal_zone_device *tz, u32 *min_power); | ||
| 383 | int power_actor_set_power(struct thermal_cooling_device *, | 385 | int power_actor_set_power(struct thermal_cooling_device *, |
| 384 | struct thermal_instance *, u32); | 386 | struct thermal_instance *, u32); |
| 385 | struct thermal_zone_device *thermal_zone_device_register(const char *, int, int, | 387 | struct thermal_zone_device *thermal_zone_device_register(const char *, int, int, |
| @@ -415,6 +417,10 @@ static inline bool cdev_is_power_actor(struct thermal_cooling_device *cdev) | |||
| 415 | static inline int power_actor_get_max_power(struct thermal_cooling_device *cdev, | 417 | static inline int power_actor_get_max_power(struct thermal_cooling_device *cdev, |
| 416 | struct thermal_zone_device *tz, u32 *max_power) | 418 | struct thermal_zone_device *tz, u32 *max_power) |
| 417 | { return 0; } | 419 | { return 0; } |
| 420 | static inline int power_actor_get_min_power(struct thermal_cooling_device *cdev, | ||
| 421 | struct thermal_zone_device *tz, | ||
| 422 | u32 *min_power) | ||
| 423 | { return -ENODEV; } | ||
| 418 | static inline int power_actor_set_power(struct thermal_cooling_device *cdev, | 424 | static inline int power_actor_set_power(struct thermal_cooling_device *cdev, |
| 419 | struct thermal_instance *tz, u32 power) | 425 | struct thermal_instance *tz, u32 power) |
| 420 | { return 0; } | 426 | { return 0; } |
diff --git a/include/linux/wait.h b/include/linux/wait.h index d3d077228d4c..1e1bf9f963a9 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
| @@ -147,8 +147,7 @@ __remove_wait_queue(wait_queue_head_t *head, wait_queue_t *old) | |||
| 147 | 147 | ||
| 148 | typedef int wait_bit_action_f(struct wait_bit_key *); | 148 | typedef int wait_bit_action_f(struct wait_bit_key *); |
| 149 | void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key); | 149 | void __wake_up(wait_queue_head_t *q, unsigned int mode, int nr, void *key); |
| 150 | void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, int nr, | 150 | void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key); |
| 151 | void *key); | ||
| 152 | void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode, int nr, void *key); | 151 | void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode, int nr, void *key); |
| 153 | void __wake_up_locked(wait_queue_head_t *q, unsigned int mode, int nr); | 152 | void __wake_up_locked(wait_queue_head_t *q, unsigned int mode, int nr); |
| 154 | void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr); | 153 | void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr); |
| @@ -180,7 +179,7 @@ wait_queue_head_t *bit_waitqueue(void *, int); | |||
| 180 | #define wake_up_poll(x, m) \ | 179 | #define wake_up_poll(x, m) \ |
| 181 | __wake_up(x, TASK_NORMAL, 1, (void *) (m)) | 180 | __wake_up(x, TASK_NORMAL, 1, (void *) (m)) |
| 182 | #define wake_up_locked_poll(x, m) \ | 181 | #define wake_up_locked_poll(x, m) \ |
| 183 | __wake_up_locked_key((x), TASK_NORMAL, 1, (void *) (m)) | 182 | __wake_up_locked_key((x), TASK_NORMAL, (void *) (m)) |
| 184 | #define wake_up_interruptible_poll(x, m) \ | 183 | #define wake_up_interruptible_poll(x, m) \ |
| 185 | __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m)) | 184 | __wake_up(x, TASK_INTERRUPTIBLE, 1, (void *) (m)) |
| 186 | #define wake_up_interruptible_sync_poll(x, m) \ | 185 | #define wake_up_interruptible_sync_poll(x, m) \ |
