* [PATCH] iommu: simplify and fix ida handling
@ 2016-06-29 19:13 Heiner Kallweit
[not found] ` <e6d78cf6-2af6-8638-6f08-70025b720265-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Heiner Kallweit @ 2016-06-29 19:13 UTC (permalink / raw)
To: Joerg Roedel; +Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
Ida handling can be much simplified by using the ida_simple_.. functions.
This change also fixes the bug that previously checking for errors
returned by ida_get_new() was incomplete.
ida_get_new() can return errors other than EAGAIN, e.g. ENOSPC.
This case wasn't handled.
Signed-off-by: Heiner Kallweit <hkallweit1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
drivers/iommu/iommu.c | 24 ++++++------------------
1 file changed, 6 insertions(+), 18 deletions(-)
diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
index debce45..4d3c4a8 100644
--- a/drivers/iommu/iommu.c
+++ b/drivers/iommu/iommu.c
@@ -35,7 +35,6 @@
static struct kset *iommu_group_kset;
static DEFINE_IDA(iommu_group_ida);
-static DEFINE_MUTEX(iommu_group_mutex);
struct iommu_callback_data {
const struct iommu_ops *ops;
@@ -144,9 +143,7 @@ static void iommu_group_release(struct kobject *kobj)
if (group->iommu_data_release)
group->iommu_data_release(group->iommu_data);
- mutex_lock(&iommu_group_mutex);
- ida_remove(&iommu_group_ida, group->id);
- mutex_unlock(&iommu_group_mutex);
+ ida_simple_remove(&iommu_group_ida, group->id);
if (group->default_domain)
iommu_domain_free(group->default_domain);
@@ -186,26 +183,17 @@ struct iommu_group *iommu_group_alloc(void)
INIT_LIST_HEAD(&group->devices);
BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
- mutex_lock(&iommu_group_mutex);
-
-again:
- if (unlikely(0 == ida_pre_get(&iommu_group_ida, GFP_KERNEL))) {
+ ret = ida_simple_get(&iommu_group_ida, 0, 0, GFP_KERNEL);
+ if (ret < 0) {
kfree(group);
- mutex_unlock(&iommu_group_mutex);
- return ERR_PTR(-ENOMEM);
+ return ERR_PTR(ret);
}
-
- if (-EAGAIN == ida_get_new(&iommu_group_ida, &group->id))
- goto again;
-
- mutex_unlock(&iommu_group_mutex);
+ group->id = ret;
ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
NULL, "%d", group->id);
if (ret) {
- mutex_lock(&iommu_group_mutex);
- ida_remove(&iommu_group_ida, group->id);
- mutex_unlock(&iommu_group_mutex);
+ ida_simple_remove(&iommu_group_ida, group->id);
kfree(group);
return ERR_PTR(ret);
}
--
2.9.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] iommu: simplify and fix ida handling
[not found] ` <e6d78cf6-2af6-8638-6f08-70025b720265-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2016-07-04 11:46 ` Joerg Roedel
[not found] ` <20160704114648.GE11467-l3A5Bk7waGM@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Joerg Roedel @ 2016-07-04 11:46 UTC (permalink / raw)
To: Heiner Kallweit; +Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
On Wed, Jun 29, 2016 at 09:13:59PM +0200, Heiner Kallweit wrote:
> Ida handling can be much simplified by using the ida_simple_.. functions.
>
> This change also fixes the bug that previously checking for errors
> returned by ida_get_new() was incomplete.
> ida_get_new() can return errors other than EAGAIN, e.g. ENOSPC.
> This case wasn't handled.
>
> Signed-off-by: Heiner Kallweit <hkallweit1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> ---
> drivers/iommu/iommu.c | 24 ++++++------------------
> 1 file changed, 6 insertions(+), 18 deletions(-)
The patch does not apply. Please rebase it against the latest upstream
kernel and resend.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] iommu: simplify and fix ida handling
[not found] ` <20160704114648.GE11467-l3A5Bk7waGM@public.gmane.org>
@ 2016-07-04 19:01 ` Heiner Kallweit
[not found] ` <7c77402b-cbcb-1ac0-d81a-0e7c92201ee8-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Heiner Kallweit @ 2016-07-04 19:01 UTC (permalink / raw)
To: Joerg Roedel; +Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
Am 04.07.2016 um 13:46 schrieb Joerg Roedel:
> On Wed, Jun 29, 2016 at 09:13:59PM +0200, Heiner Kallweit wrote:
>> Ida handling can be much simplified by using the ida_simple_.. functions.
>>
>> This change also fixes the bug that previously checking for errors
>> returned by ida_get_new() was incomplete.
>> ida_get_new() can return errors other than EAGAIN, e.g. ENOSPC.
>> This case wasn't handled.
>>
>> Signed-off-by: Heiner Kallweit <hkallweit1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>> ---
>> drivers/iommu/iommu.c | 24 ++++++------------------
>> 1 file changed, 6 insertions(+), 18 deletions(-)
>
> The patch does not apply. Please rebase it against the latest upstream
> kernel and resend.
>
This patch applies on top of patch "[PATCH 1/3] iommu: simplify init function"
I submitted on June 28th. Do you have an opinion on that patch?
Regards, Heiner
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] iommu: simplify and fix ida handling
[not found] ` <7c77402b-cbcb-1ac0-d81a-0e7c92201ee8-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2016-07-13 10:29 ` Joerg Roedel
0 siblings, 0 replies; 4+ messages in thread
From: Joerg Roedel @ 2016-07-13 10:29 UTC (permalink / raw)
To: Heiner Kallweit; +Cc: iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA
On Mon, Jul 04, 2016 at 09:01:18PM +0200, Heiner Kallweit wrote:
> Am 04.07.2016 um 13:46 schrieb Joerg Roedel:
> > On Wed, Jun 29, 2016 at 09:13:59PM +0200, Heiner Kallweit wrote:
> >> Ida handling can be much simplified by using the ida_simple_.. functions.
> >>
> >> This change also fixes the bug that previously checking for errors
> >> returned by ida_get_new() was incomplete.
> >> ida_get_new() can return errors other than EAGAIN, e.g. ENOSPC.
> >> This case wasn't handled.
> >>
> >> Signed-off-by: Heiner Kallweit <hkallweit1-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> >> ---
> >> drivers/iommu/iommu.c | 24 ++++++------------------
> >> 1 file changed, 6 insertions(+), 18 deletions(-)
> >
> > The patch does not apply. Please rebase it against the latest upstream
> > kernel and resend.
> >
> This patch applies on top of patch "[PATCH 1/3] iommu: simplify init function"
> I submitted on June 28th. Do you have an opinion on that patch?
Applied both, thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-07-13 10:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-29 19:13 [PATCH] iommu: simplify and fix ida handling Heiner Kallweit
[not found] ` <e6d78cf6-2af6-8638-6f08-70025b720265-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-07-04 11:46 ` Joerg Roedel
[not found] ` <20160704114648.GE11467-l3A5Bk7waGM@public.gmane.org>
2016-07-04 19:01 ` Heiner Kallweit
[not found] ` <7c77402b-cbcb-1ac0-d81a-0e7c92201ee8-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-07-13 10:29 ` Joerg Roedel
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.