On Fri, Mar 09, 2012 at 09:15:24PM +0900, Cho KyongHo wrote:
> +/* We does not consider super section mapping (16MB) */
> +struct iommu_client {
> +     struct list_head node;
> +     struct device *dev;
> +};
> +
> +struct exynos_iommu_domain {
> +     struct list_head clients; /* list of iommu_client */
> +     unsigned long *pgtable; /* lv1 page table, 16KB */
> +     short *lv2entcnt; /* free lv2 entry counter for each section */
> +     spinlock_t lock; /* lock for this structure and attached iommu_client */
> +     spinlock_t pgtablelock; /* lock for modifying page table @ pgtable */
> +};
> +
> +struct sysmmu_drvdata {
> +     struct device *sysmmu;
> +     char *dbgname;
> +     int nsfrs;
> +     void __iomem **sfrbases;
> +     struct clk *clk[2];
> +     int activations;
> +     rwlock_t lock;
> +     struct iommu_domain *domain;
> +     sysmmu_fault_handler_t fault_handler;
> +     unsigned long pgtable;
> +     struct iommu_client client;
> +};

Is there any reason why 'struct iommu_client' is a seperate data
structure? Otherwise it can be merged with 'truct sysmmu_drvdata'.

> +static void exynos_iommu_domain_destroy(struct iommu_domain *domain)
> +{
> +     struct exynos_iommu_domain *priv = domain->priv;
> +     struct list_head *pos, *n;
> +     unsigned long flags;
> +     int i;
> +
> +     WARN_ON(!list_empty(&priv->clients));
> +
> +     spin_lock_irqsave(&priv->lock, flags);
> +
> +     list_for_each_safe(pos, n, &priv->clients) {
> +             struct iommu_client *client;
> +
> +             client = list_entry(pos, struct iommu_client, node);
> +             exynos_sysmmu_disable(client->dev);
> +             kfree(client);
> +     }

Why this kfree here? Aren't all iommu_clients just a part of another
data-structre?


-- 
AMD Operating System Research Center

Advanced Micro Devices GmbH Einsteinring 24 85609 Dornach
General Managers: Alberto Bozzo
Registration: Dornach, Landkr. Muenchen; Registerger. Muenchen, HRB Nr. 43632

_______________________________________________
iommu mailing list
[email protected]
https://lists.linuxfoundation.org/mailman/listinfo/iommu

Reply via email to