From: Don Dutile <ddutile-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
To: Alex Williamson
<alex.williamson-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Cc: Alexey Kardashevskiy
<aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org>,
Benjamin Herrenschmidt
<benh-XVmvHMARGAS8U2dJNN8I7kB+6BGkLq7r@public.gmane.org>,
iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
David Gibson
<david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org>
Subject: Re: [PATCH] iommu: add a function to find an iommu group by id
Date: Mon, 25 Mar 2013 11:07:26 -0400 [thread overview]
Message-ID: <5150682E.6040900@redhat.com> (raw)
In-Reply-To: <1364221712.24132.632.camel-xdHQ/5r00wBBDLzU/O5InQ@public.gmane.org>
On 03/25/2013 10:28 AM, Alex Williamson wrote:
> On Mon, 2013-03-25 at 10:23 +1100, Alexey Kardashevskiy wrote:
>> As IOMMU groups are exposed to the user space by their numbers,
>> the user space can use them in various kernel APIs so the kernel
>> might need an API to find a group by its ID.
>>
>> As an example, QEMU VFIO on PPC64 platform needs it to associate
>> a logical bus number (LIOBN) with a specific IOMMU group in order
>> to support in-kernel handling of DMA map/unmap requests.
>>
>> The patch adds the iommu_group_get_by_id(id) function which performs
>> such search.
>
> Subject: [PATCH v3]....
>
> v2 was the last one, where's the changelog for v3?
>> v2: fixed reference counting.
>>
and changed function name...
>> Signed-off-by: Alexey Kardashevskiy<aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org>
>> ---
>
> Acked-by: Alex Williamson<alex.williamson-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
>
>> drivers/iommu/iommu.c | 29 +++++++++++++++++++++++++++++
>> include/linux/iommu.h | 1 +
>> 2 files changed, 30 insertions(+)
>>
>> diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
>> index 1065a1a..0de83eb 100644
>> --- a/drivers/iommu/iommu.c
>> +++ b/drivers/iommu/iommu.c
>> @@ -204,6 +204,35 @@ again:
>> }
>> EXPORT_SYMBOL_GPL(iommu_group_alloc);
>>
>> +struct iommu_group *iommu_group_get_by_id(int id)
>> +{
>> + struct kobject *group_kobj;
>> + struct iommu_group *group;
>> + const char *name;
>> +
>> + if (!iommu_group_kset)
>> + return NULL;
>> +
>> + name = kasprintf(GFP_KERNEL, "%d", id);
>> + if (!name)
>> + return NULL;
>> +
>> + group_kobj = kset_find_obj(iommu_group_kset, name);
>> + kfree(name);
>> +
>> + if (!group_kobj)
>> + return NULL;
>> +
>> + group = container_of(group_kobj, struct iommu_group, kobj);
>> + BUG_ON(group->id != id);
>> +
>> + kobject_get(group->devices_kobj);
>> + kobject_put(&group->kobj);
>> +
>> + return group;
>> +}
>> +EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
>> +
>> /**
>> * iommu_group_get_iommudata - retrieve iommu_data registered for a group
>> * @group: the group
>> diff --git a/include/linux/iommu.h b/include/linux/iommu.h
>> index f3b99e1..00e5d7d 100644
>> --- a/include/linux/iommu.h
>> +++ b/include/linux/iommu.h
>> @@ -113,6 +113,7 @@ struct iommu_ops {
>> extern int bus_set_iommu(struct bus_type *bus, struct iommu_ops *ops);
>> extern bool iommu_present(struct bus_type *bus);
>> extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
>> +extern struct iommu_group *iommu_group_get_by_id(int id);
>> extern void iommu_domain_free(struct iommu_domain *domain);
>> extern int iommu_attach_device(struct iommu_domain *domain,
>> struct device *dev);
>
>
>
> _______________________________________________
> iommu mailing list
> iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org
> https://lists.linuxfoundation.org/mailman/listinfo/iommu
WARNING: multiple messages have this Message-ID (diff)
From: Don Dutile <ddutile@redhat.com>
To: Alex Williamson <alex.williamson@redhat.com>
Cc: Alexey Kardashevskiy <aik@ozlabs.ru>,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org,
David Gibson <david@gibson.dropbear.id.au>
Subject: Re: [PATCH] iommu: add a function to find an iommu group by id
Date: Mon, 25 Mar 2013 11:07:26 -0400 [thread overview]
Message-ID: <5150682E.6040900@redhat.com> (raw)
In-Reply-To: <1364221712.24132.632.camel@bling.home>
On 03/25/2013 10:28 AM, Alex Williamson wrote:
> On Mon, 2013-03-25 at 10:23 +1100, Alexey Kardashevskiy wrote:
>> As IOMMU groups are exposed to the user space by their numbers,
>> the user space can use them in various kernel APIs so the kernel
>> might need an API to find a group by its ID.
>>
>> As an example, QEMU VFIO on PPC64 platform needs it to associate
>> a logical bus number (LIOBN) with a specific IOMMU group in order
>> to support in-kernel handling of DMA map/unmap requests.
>>
>> The patch adds the iommu_group_get_by_id(id) function which performs
>> such search.
>
> Subject: [PATCH v3]....
>
> v2 was the last one, where's the changelog for v3?
>> v2: fixed reference counting.
>>
and changed function name...
>> Signed-off-by: Alexey Kardashevskiy<aik@ozlabs.ru>
>> ---
>
> Acked-by: Alex Williamson<alex.williamson@redhat.com>
>
>> drivers/iommu/iommu.c | 29 +++++++++++++++++++++++++++++
>> include/linux/iommu.h | 1 +
>> 2 files changed, 30 insertions(+)
>>
>> diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
>> index 1065a1a..0de83eb 100644
>> --- a/drivers/iommu/iommu.c
>> +++ b/drivers/iommu/iommu.c
>> @@ -204,6 +204,35 @@ again:
>> }
>> EXPORT_SYMBOL_GPL(iommu_group_alloc);
>>
>> +struct iommu_group *iommu_group_get_by_id(int id)
>> +{
>> + struct kobject *group_kobj;
>> + struct iommu_group *group;
>> + const char *name;
>> +
>> + if (!iommu_group_kset)
>> + return NULL;
>> +
>> + name = kasprintf(GFP_KERNEL, "%d", id);
>> + if (!name)
>> + return NULL;
>> +
>> + group_kobj = kset_find_obj(iommu_group_kset, name);
>> + kfree(name);
>> +
>> + if (!group_kobj)
>> + return NULL;
>> +
>> + group = container_of(group_kobj, struct iommu_group, kobj);
>> + BUG_ON(group->id != id);
>> +
>> + kobject_get(group->devices_kobj);
>> + kobject_put(&group->kobj);
>> +
>> + return group;
>> +}
>> +EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
>> +
>> /**
>> * iommu_group_get_iommudata - retrieve iommu_data registered for a group
>> * @group: the group
>> diff --git a/include/linux/iommu.h b/include/linux/iommu.h
>> index f3b99e1..00e5d7d 100644
>> --- a/include/linux/iommu.h
>> +++ b/include/linux/iommu.h
>> @@ -113,6 +113,7 @@ struct iommu_ops {
>> extern int bus_set_iommu(struct bus_type *bus, struct iommu_ops *ops);
>> extern bool iommu_present(struct bus_type *bus);
>> extern struct iommu_domain *iommu_domain_alloc(struct bus_type *bus);
>> +extern struct iommu_group *iommu_group_get_by_id(int id);
>> extern void iommu_domain_free(struct iommu_domain *domain);
>> extern int iommu_attach_device(struct iommu_domain *domain,
>> struct device *dev);
>
>
>
> _______________________________________________
> iommu mailing list
> iommu@lists.linux-foundation.org
> https://lists.linuxfoundation.org/mailman/listinfo/iommu
next prev parent reply other threads:[~2013-03-25 15:07 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-24 23:23 [PATCH] iommu: add a function to find an iommu group by id Alexey Kardashevskiy
2013-03-24 23:23 ` Alexey Kardashevskiy
[not found] ` <1364167429-6432-1-git-send-email-aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org>
2013-03-25 14:28 ` Alex Williamson
2013-03-25 14:28 ` Alex Williamson
[not found] ` <1364221712.24132.632.camel-xdHQ/5r00wBBDLzU/O5InQ@public.gmane.org>
2013-03-25 15:07 ` Don Dutile [this message]
2013-03-25 15:07 ` Don Dutile
2013-04-24 18:01 ` Joerg Roedel
2013-04-24 18:01 ` Joerg Roedel
-- strict thread matches above, loose matches on Subject: below --
2013-03-21 7:48 Alexey Kardashevskiy
[not found] ` <1363852122-17974-1-git-send-email-aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org>
2013-03-21 16:35 ` Alex Williamson
2013-03-21 16:35 ` Alex Williamson
[not found] ` <1363883719.2747.13.camel-85EaTFmN5p//9pzu0YdTqQ@public.gmane.org>
2013-03-22 6:49 ` Alexey Kardashevskiy
2013-03-22 6:49 ` Alexey Kardashevskiy
[not found] ` <1363934941-21020-1-git-send-email-aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org>
2013-03-22 16:07 ` Alex Williamson
2013-03-22 16:07 ` Alex Williamson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5150682E.6040900@redhat.com \
--to=ddutile-h+wxahxf7alqt0dzr+alfa@public.gmane.org \
--cc=aik-sLpHqDYs0B2HXe+LvDLADg@public.gmane.org \
--cc=alex.williamson-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=benh-XVmvHMARGAS8U2dJNN8I7kB+6BGkLq7r@public.gmane.org \
--cc=david-xT8FGy+AXnRB3Ne2BGzF6laj5H9X9Tb+@public.gmane.org \
--cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.