All of lore.kernel.org
 help / color / mirror / Atom feed
From: Doug Ledford <dledford@redhat.com>
To: Lee Duncan <lduncan@suse.com>,
	linux-scsi@vger.kernel.org,
	James.Bottomley@HansenPartnership.com
Cc: linux-kernel@vger.kernel.org, hare@suse.com, jthumshirn@suse.de,
	hch@infradead.org
Subject: Re: [PATCH 06/17] Update the infiniband uverbs driver to use idr helper functions.
Date: Wed, 16 Sep 2015 14:39:45 -0400	[thread overview]
Message-ID: <55F9B771.2010302@redhat.com> (raw)
In-Reply-To: <da24a58bf9766c2cf1d2fe4019c9efc586306a9c.1442263513.git.lduncan@suse.com>

[-- Attachment #1: Type: text/plain, Size: 1606 bytes --]

On 09/16/2015 01:50 PM, Lee Duncan wrote:
> Signed-off-by: Lee Duncan <lduncan@suse.com>

Looks OK to me.  The setting of uobj->id is no longer under the lock,
but we won't succeed at an idr lookup until it is set, which means it
won't be found and can't be used in idr_remove_uobj() until after the
uobj->id is set regardless of the lock.

Acked-by: Doug Ledford <dledford@redhat.com>

> ---
>  drivers/infiniband/core/uverbs_cmd.c | 12 ++----------
>  1 file changed, 2 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/infiniband/core/uverbs_cmd.c b/drivers/infiniband/core/uverbs_cmd.c
> index bbb02ffe87df..1e5b2a66a501 100644
> --- a/drivers/infiniband/core/uverbs_cmd.c
> +++ b/drivers/infiniband/core/uverbs_cmd.c
> @@ -120,24 +120,16 @@ static int idr_add_uobj(struct idr *idr, struct ib_uobject *uobj)
>  {
>  	int ret;
>  
> -	idr_preload(GFP_KERNEL);
> -	spin_lock(&ib_uverbs_idr_lock);
> -
> -	ret = idr_alloc(idr, uobj, 0, 0, GFP_NOWAIT);
> +	ret = idr_get_index(idr, &ib_uverbs_idr_lock, uobj);
>  	if (ret >= 0)
>  		uobj->id = ret;
>  
> -	spin_unlock(&ib_uverbs_idr_lock);
> -	idr_preload_end();
> -
>  	return ret < 0 ? ret : 0;
>  }
>  
>  void idr_remove_uobj(struct idr *idr, struct ib_uobject *uobj)
>  {
> -	spin_lock(&ib_uverbs_idr_lock);
> -	idr_remove(idr, uobj->id);
> -	spin_unlock(&ib_uverbs_idr_lock);
> +	idr_put_index(idr, &ib_uverbs_idr_lock, uobj->id);
>  }
>  
>  static struct ib_uobject *__idr_get_uobj(struct idr *idr, int id,
> 


-- 
Doug Ledford <dledford@redhat.com>
              GPG KeyID: 0E572FDD



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 884 bytes --]

  reply	other threads:[~2015-09-16 18:39 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-16 17:50 [PATCH 00/17] Create and use ida and idr helper routines [RESEND] Lee Duncan
2015-09-16 17:50 ` [PATCH 01/17] Add ida and idr helper routines Lee Duncan
2015-09-16 17:50 ` [PATCH 02/17] Update scsi hosts to use idr for host number mgmt Lee Duncan
2015-09-16 17:50 ` [PATCH 03/17] Update the st driver to use idr helper functions Lee Duncan
2015-09-16 17:50 ` [PATCH 04/17] Update the ch " Lee Duncan
2015-09-16 17:50 ` [PATCH 05/17] Update the md " Lee Duncan
2015-09-16 17:50 ` [PATCH 06/17] Update the infiniband uverbs " Lee Duncan
2015-09-16 18:39   ` Doug Ledford [this message]
2015-09-16 17:50 ` [PATCH 07/17] Update the memstick " Lee Duncan
2015-09-16 17:50 ` [PATCH 08/17] Update the mmc " Lee Duncan
2015-09-16 17:50 ` [PATCH 09/17] Update the virtgpu " Lee Duncan
2015-09-16 17:50 ` [PATCH 10/17] Update the DCA DMA " Lee Duncan
2015-09-16 17:50 ` [PATCH 11/17] Update the rtsx multifunction " Lee Duncan
2015-09-16 17:50 ` [PATCH 12/17] Update the TI Flash Media " Lee Duncan
2015-09-16 17:50 ` [PATCH 13/17] Update the SCSI disk driver to use ida " Lee Duncan
2015-09-16 17:50 ` [PATCH 14/17] Update the rsxx flash adapter " Lee Duncan
2015-09-16 17:50 ` [PATCH 15/17] Update the NVMe SSD " Lee Duncan
2015-09-16 17:50 ` [PATCH 16/17] Update the Micron PCIe " Lee Duncan
2015-09-16 17:50 ` [PATCH 17/17] Update the ARM soc base " Lee Duncan
  -- strict thread matches above, loose matches on Subject: below --
2015-09-15 16:46 [PATCH 00/17] Create and use ida and idr helper routines Lee Duncan
2015-09-15 16:46 ` [PATCH 06/17] Update the infiniband uverbs driver to use idr helper functions Lee Duncan
2015-09-15 16:46   ` Lee Duncan

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=55F9B771.2010302@redhat.com \
    --to=dledford@redhat.com \
    --cc=James.Bottomley@HansenPartnership.com \
    --cc=hare@suse.com \
    --cc=hch@infradead.org \
    --cc=jthumshirn@suse.de \
    --cc=lduncan@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.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.