Searched refs:ws (Results 1 – 3 of 3) sorted by relevance
/fs/ |
D | eventpoll.c | 175 struct wakeup_source __rcu *ws; member 218 struct wakeup_source *ws; member 561 return rcu_dereference_check(epi->ws, lockdep_is_held(&epi->ep->mtx)); in ep_wakeup_source() 567 struct wakeup_source *ws = ep_wakeup_source(epi); in ep_pm_stay_awake() local 569 if (ws) in ep_pm_stay_awake() 570 __pm_stay_awake(ws); in ep_pm_stay_awake() 575 return rcu_access_pointer(epi->ws) ? true : false; in ep_has_wakeup_source() 581 struct wakeup_source *ws; in ep_pm_stay_awake_rcu() local 584 ws = rcu_dereference(epi->ws); in ep_pm_stay_awake_rcu() 585 if (ws) in ep_pm_stay_awake_rcu() [all …]
|
/fs/btrfs/ |
D | lzo.c | 39 static void lzo_free_workspace(struct list_head *ws) in lzo_free_workspace() argument 41 struct workspace *workspace = list_entry(ws, struct workspace, list); in lzo_free_workspace() 87 static int lzo_compress_pages(struct list_head *ws, in lzo_compress_pages() argument 97 struct workspace *workspace = list_entry(ws, struct workspace, list); in lzo_compress_pages() 257 static int lzo_decompress_biovec(struct list_head *ws, in lzo_decompress_biovec() argument 264 struct workspace *workspace = list_entry(ws, struct workspace, list); in lzo_decompress_biovec() 381 static int lzo_decompress(struct list_head *ws, unsigned char *data_in, in lzo_decompress() argument 386 struct workspace *workspace = list_entry(ws, struct workspace, list); in lzo_decompress()
|
D | zlib.c | 41 static void zlib_free_workspace(struct list_head *ws) in zlib_free_workspace() argument 43 struct workspace *workspace = list_entry(ws, struct workspace, list); in zlib_free_workspace() 74 static int zlib_compress_pages(struct list_head *ws, in zlib_compress_pages() argument 84 struct workspace *workspace = list_entry(ws, struct workspace, list); in zlib_compress_pages() 213 static int zlib_decompress_biovec(struct list_head *ws, struct page **pages_in, in zlib_decompress_biovec() argument 219 struct workspace *workspace = list_entry(ws, struct workspace, list); in zlib_decompress_biovec() 307 static int zlib_decompress(struct list_head *ws, unsigned char *data_in, in zlib_decompress() argument 312 struct workspace *workspace = list_entry(ws, struct workspace, list); in zlib_decompress()
|