async_work         59 drivers/char/tpm/tpm-dev-common.c 			container_of(work, struct file_priv, async_work);
async_work        115 drivers/char/tpm/tpm-dev-common.c 	INIT_WORK(&priv->async_work, tpm_dev_async_work);
async_work        213 drivers/char/tpm/tpm-dev-common.c 		queue_work(tpm_dev_wq, &priv->async_work);
async_work        260 drivers/char/tpm/tpm-dev-common.c 	flush_work(&priv->async_work);
async_work         15 drivers/char/tpm/tpm-dev.h 	struct work_struct async_work;
async_work        191 drivers/staging/wusbcore/host/whci/asl.c 	struct whc *whc = container_of(work, struct whc, async_work);
async_work        234 drivers/staging/wusbcore/host/whci/asl.c 				queue_work(whc->workqueue, &whc->async_work);
async_work        280 drivers/staging/wusbcore/host/whci/asl.c 		queue_work(whc->workqueue, &whc->async_work);
async_work        338 drivers/staging/wusbcore/host/whci/asl.c 	queue_work(whc->workqueue, &whc->async_work);
async_work        196 drivers/staging/wusbcore/host/whci/hcd.c 			queue_work(whc->workqueue, &whc->async_work);
async_work         64 drivers/staging/wusbcore/host/whci/init.c 	INIT_WORK(&whc->async_work, scan_async_work);
async_work         16 drivers/staging/wusbcore/host/whci/int.c 	queue_work(whc->workqueue, &whc->async_work);
async_work         55 drivers/staging/wusbcore/host/whci/whcd.h 	struct work_struct async_work;
async_work        107 fs/afs/internal.h 	struct work_struct	async_work;	/* async I/O processor */
async_work        151 fs/afs/rxrpc.c 	INIT_WORK(&call->async_work, afs_process_async_call);
async_work        176 fs/afs/rxrpc.c 		ASSERT(!work_pending(&call->async_work));
async_work        490 fs/afs/rxrpc.c 		if (cancel_work_sync(&call->async_work))
async_work        712 fs/afs/rxrpc.c 		if (!queue_work(afs_async_calls, &call->async_work))
async_work        723 fs/afs/rxrpc.c 	struct afs_call *call = container_of(work, struct afs_call, async_work);
async_work       1314 fs/btrfs/delayed-inode.c 	struct btrfs_async_delayed_work *async_work;
async_work       1323 fs/btrfs/delayed-inode.c 	async_work = container_of(work, struct btrfs_async_delayed_work, work);
async_work       1324 fs/btrfs/delayed-inode.c 	delayed_root = async_work->delayed_root;
async_work       1363 fs/btrfs/delayed-inode.c 	} while ((async_work->nr == 0 && total_done < BTRFS_DELAYED_WRITEBACK)
async_work       1364 fs/btrfs/delayed-inode.c 		 || total_done < async_work->nr);
async_work       1369 fs/btrfs/delayed-inode.c 	kfree(async_work);
async_work       1376 fs/btrfs/delayed-inode.c 	struct btrfs_async_delayed_work *async_work;
async_work       1378 fs/btrfs/delayed-inode.c 	async_work = kmalloc(sizeof(*async_work), GFP_NOFS);
async_work       1379 fs/btrfs/delayed-inode.c 	if (!async_work)
async_work       1382 fs/btrfs/delayed-inode.c 	async_work->delayed_root = delayed_root;
async_work       1383 fs/btrfs/delayed-inode.c 	btrfs_init_work(&async_work->work, btrfs_async_run_delayed_root, NULL,
async_work       1385 fs/btrfs/delayed-inode.c 	async_work->nr = nr;
async_work       1387 fs/btrfs/delayed-inode.c 	btrfs_queue_work(fs_info->delayed_workers, &async_work->work);