All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iommu/arm-smmu: add a shortcut when the @dev_node is NULL
@ 2016-01-12  2:15 ` Huang Shijie
  0 siblings, 0 replies; 17+ messages in thread
From: Huang Shijie @ 2016-01-12  2:15 UTC (permalink / raw)
  To: will.deacon; +Cc: joro, linux-kernel, iommu, Huang Shijie, nd, linux-arm-kernel

When a device is added to a bus, it will trigger the chain notifier hook,
such as iommu_bus_notifier. The find_smmu_for_device() can be called here.

In some cases, the @device_node can be NULL. For example, when the device
is one of the following:
    alarmtime, serial, rtc or snd_soc.

This patch adds a shortcut for the code when the @device_node is NULL.
In my juno-r1 board, the boot time can be faster by 0.004014s.

Signed-off-by: Huang Shijie <shijie.huang@arm.com>
---
 drivers/iommu/arm-smmu.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
index 59ee4b8..6724a46 100644
--- a/drivers/iommu/arm-smmu.c
+++ b/drivers/iommu/arm-smmu.c
@@ -506,6 +506,9 @@ static struct arm_smmu_device *find_smmu_for_device(struct device *dev)
 	struct arm_smmu_master *master = NULL;
 	struct device_node *dev_node = dev_get_dev_node(dev);
 
+	if (!dev_node)
+		return NULL;
+
 	spin_lock(&arm_smmu_devices_lock);
 	list_for_each_entry(smmu, &arm_smmu_devices, list) {
 		master = find_smmu_master(smmu, dev_node);
-- 
2.5.0

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

end of thread, other threads:[~2016-01-21  2:04 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-12  2:15 [PATCH] iommu/arm-smmu: add a shortcut when the @dev_node is NULL Huang Shijie
2016-01-12  2:15 ` Huang Shijie
2016-01-12  2:15 ` Huang Shijie
     [not found] ` <1452564905-2662-1-git-send-email-shijie.huang-5wv7dgnIgG8@public.gmane.org>
2016-01-20 12:02   ` Joerg Roedel
2016-01-20 12:02     ` Joerg Roedel
2016-01-20 12:02     ` Joerg Roedel
     [not found]     ` <20160120120225.GD18805-zLv9SwRftAIdnm+yROfE0A@public.gmane.org>
2016-01-20 13:34       ` Huang Shijie
2016-01-20 13:34         ` Huang Shijie
2016-01-20 13:34         ` Huang Shijie
     [not found]         ` <20160120133401.GA3487-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2016-01-20 14:46           ` Robin Murphy
2016-01-20 14:46             ` Robin Murphy
2016-01-20 14:46             ` Robin Murphy
2016-01-20 16:00             ` Jon Medhurst (Tixy)
2016-01-20 16:00               ` Jon Medhurst (Tixy)
     [not found]             ` <569F9DCA.3030808-5wv7dgnIgG8@public.gmane.org>
2016-01-21  2:04               ` Huang Shijie
2016-01-21  2:04                 ` Huang Shijie
2016-01-21  2:04                 ` Huang Shijie

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.