Lines Matching refs:ws
2209 static void do_worker(struct work_struct *ws) in do_worker() argument
2211 struct pool *pool = container_of(ws, struct pool, worker); in do_worker()
2228 static void do_waker(struct work_struct *ws) in do_waker() argument
2230 struct pool *pool = container_of(to_delayed_work(ws), struct pool, waker); in do_waker()
2242 static void do_no_space_timeout(struct work_struct *ws) in do_no_space_timeout() argument
2244 struct pool *pool = container_of(to_delayed_work(ws), struct pool, in do_no_space_timeout()
2261 static struct pool_work *to_pool_work(struct work_struct *ws) in to_pool_work() argument
2263 return container_of(ws, struct pool_work, worker); in to_pool_work()
2287 static struct noflush_work *to_noflush(struct work_struct *ws) in to_noflush() argument
2289 return container_of(to_pool_work(ws), struct noflush_work, pw); in to_noflush()
2292 static void do_noflush_start(struct work_struct *ws) in do_noflush_start() argument
2294 struct noflush_work *w = to_noflush(ws); in do_noflush_start()
2300 static void do_noflush_stop(struct work_struct *ws) in do_noflush_stop() argument
2302 struct noflush_work *w = to_noflush(ws); in do_noflush_stop()