Lines Matching refs:cdw10

1235 	c.common.cdw10[0] = cpu_to_le32(cmd.cdw10);  in nvme_user_cmd()
1236 c.common.cdw10[1] = cpu_to_le32(cmd.cdw11); in nvme_user_cmd()
1237 c.common.cdw10[2] = cpu_to_le32(cmd.cdw12); in nvme_user_cmd()
1238 c.common.cdw10[3] = cpu_to_le32(cmd.cdw13); in nvme_user_cmd()
1239 c.common.cdw10[4] = cpu_to_le32(cmd.cdw14); in nvme_user_cmd()
1240 c.common.cdw10[5] = cpu_to_le32(cmd.cdw15); in nvme_user_cmd()
1582 static int nvme_pr_command(struct block_device *bdev, u32 cdw10, in nvme_pr_command() argument
1601 c.common.cdw10[0] = cpu_to_le32(cdw10); in nvme_pr_command()
1611 u32 cdw10; in nvme_pr_register() local
1616 cdw10 = old ? 2 : 0; in nvme_pr_register()
1617 cdw10 |= (flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0; in nvme_pr_register()
1618 cdw10 |= (1 << 30) | (1 << 31); /* PTPL=1 */ in nvme_pr_register()
1619 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_register); in nvme_pr_register()
1625 u32 cdw10; in nvme_pr_reserve() local
1630 cdw10 = nvme_pr_type(type) << 8; in nvme_pr_reserve()
1631 cdw10 |= ((flags & PR_FL_IGNORE_KEY) ? 1 << 3 : 0); in nvme_pr_reserve()
1632 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_acquire); in nvme_pr_reserve()
1638 u32 cdw10 = nvme_pr_type(type) << 8 | (abort ? 2 : 1); in nvme_pr_preempt() local
1639 return nvme_pr_command(bdev, cdw10, old, new, nvme_cmd_resv_acquire); in nvme_pr_preempt()
1644 u32 cdw10 = 1 | (key ? 1 << 3 : 0); in nvme_pr_clear() local
1645 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_register); in nvme_pr_clear()
1650 u32 cdw10 = nvme_pr_type(type) << 8 | (key ? 1 << 3 : 0); in nvme_pr_release() local
1651 return nvme_pr_command(bdev, cdw10, key, 0, nvme_cmd_resv_release); in nvme_pr_release()
1675 cmd.common.cdw10[0] = cpu_to_le32(((u32)secp) << 24 | ((u32)spsp) << 8); in nvme_sec_submit()
1676 cmd.common.cdw10[1] = cpu_to_le32(len); in nvme_sec_submit()