All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iommu/arm-smmu-v3: Remove some unneeded init in arm_smmu_cmdq_issue_cmdlist()
@ 2021-06-21 16:36 ` John Garry
  0 siblings, 0 replies; 27+ messages in thread
From: John Garry @ 2021-06-21 16:36 UTC (permalink / raw)
  To: will, robin.murphy
  Cc: joro, linux-arm-kernel, iommu, linux-kernel, linuxarm, John Garry

Members of struct "llq" will be zero-inited, apart from member max_n_shift.
But we write llq.val straight after the init, so it was pointless to zero
init those other members. As such, separately init member max_n_shift
only.

In addition, struct "head" is initialised to "llq" only so that member
max_n_shift is set. But that member is never referenced for "head", so
remove any init there.

Removing these initializations is seen as a small performance optimisation,
as this code is (very) hot path.

Signed-off-by: John Garry <john.garry@huawei.com>

diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
index 54b2f27b81d4..8a8ad49bb7fd 100644
--- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
+++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c
@@ -727,11 +727,11 @@ static int arm_smmu_cmdq_issue_cmdlist(struct arm_smmu_device *smmu,
 	unsigned long flags;
 	bool owner;
 	struct arm_smmu_cmdq *cmdq = &smmu->cmdq;
-	struct arm_smmu_ll_queue llq = {
-		.max_n_shift = cmdq->q.llq.max_n_shift,
-	}, head = llq;
+	struct arm_smmu_ll_queue llq, head;
 	int ret = 0;
 
+	llq.max_n_shift = cmdq->q.llq.max_n_shift;
+
 	/* 1. Allocate some space in the queue */
 	local_irq_save(flags);
 	llq.val = READ_ONCE(cmdq->q.llq.val);
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2021-08-05 17:17 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-21 16:36 [PATCH] iommu/arm-smmu-v3: Remove some unneeded init in arm_smmu_cmdq_issue_cmdlist() John Garry
2021-06-21 16:36 ` John Garry
2021-06-21 16:36 ` John Garry
2021-08-05 10:22 ` John Garry
2021-08-05 10:22   ` John Garry
2021-08-05 10:22   ` John Garry
2021-08-05 11:21   ` Will Deacon
2021-08-05 11:21     ` Will Deacon
2021-08-05 11:21     ` Will Deacon
2021-08-05 11:24 ` Robin Murphy
2021-08-05 11:24   ` Robin Murphy
2021-08-05 11:24   ` Robin Murphy
2021-08-05 12:18   ` Robin Murphy
2021-08-05 12:18     ` Robin Murphy
2021-08-05 12:18     ` Robin Murphy
2021-08-05 13:40   ` John Garry
2021-08-05 13:40     ` John Garry
2021-08-05 13:40     ` John Garry
2021-08-05 14:41     ` Robin Murphy
2021-08-05 14:41       ` Robin Murphy
2021-08-05 14:41       ` Robin Murphy
2021-08-05 15:16       ` John Garry
2021-08-05 15:16         ` John Garry
2021-08-05 15:16         ` John Garry
2021-08-05 17:14         ` Robin Murphy
2021-08-05 17:14           ` Robin Murphy
2021-08-05 17:14           ` Robin Murphy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.