[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v3 2/6] xen: pci: introduce reference counting for pdev


  • To: Roger Pau Monné <roger.pau@xxxxxxxxxx>
  • From: Volodymyr Babchuk <Volodymyr_Babchuk@xxxxxxxx>
  • Date: Fri, 14 Apr 2023 01:30:39 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=epam.com; dmarc=pass action=none header.from=epam.com; dkim=pass header.d=epam.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=a8a2Eq9xah/4GejivNZd2LJafoVPQEkFOxgCLXtX3kM=; b=HvvRRQ4cDiFBS95Zes2s4CZA6aJca28+ihCmTeo4a+KGkcShzH0h46sRq6WtHdEdbONRLkxR20SvsdcpG/QywCl6K2h2cMawpq/MgWvfctmeV5QlcHO4u/01he2e0R9Yj4Tw/KTCfE2ZHe/D75yBrN+th8B0y7p9e2KpCiEHAP6ja0JHUUQw4spq0wyQQAVmjGXH7rECkmfOgSd+CIKnilenaJk6cUbtyeywsk7CiNuyqMxDEYy3ctvPNlByeRl5yC5lrAfJuSRXsAZOio+lkNIyFzXM6twN9tH7Jzi3J6+djZFYaJo2qjP0EJ8K3VcOXbL9fpnJqgnMaOt9XUL/zg==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=d/XYGwsbX3tlkEnTql0JyT6h3G7rqs41W4omX6rQz0T/MYWICpcFKfwgMjr+CZK4ZI/rxJLilaSfkrqMPckU4BTnuzNX1dui0rcL5vVKLsymzwqVJZb2dEtTYSweHa8dszzCjOeW7NkRlp0o8t7VpFLlFnMn8QSxdyb7lKJZXA8QtREM/PvIYN65UlW7pC5N4/hL5ugffRie+OrTrcsdgLDzyhSBdPk4QiDDiEu0H/93rd5AabYrRJavzLesDJpL15QQ0MNawZVYnlRiQFSYOaU4XnDj8jiGBSuvDGD60hB5UnN3yX6FE58cqmzMg93slUUa8CQe6hPYaeUmXytENg==
  • Cc: "xen-devel@xxxxxxxxxxxxxxxxxxxx" <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>, George Dunlap <george.dunlap@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Paul Durrant <paul@xxxxxxx>, Kevin Tian <kevin.tian@xxxxxxxxx>
  • Delivery-date: Fri, 14 Apr 2023 01:32:11 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
  • Thread-index: AQHZVrdzsdckomMx4kauxHkZQ597Iq79mAMAgClI2ACAAK/igIAAVGGAgAGe14CAAJvOAA==
  • Thread-topic: [PATCH v3 2/6] xen: pci: introduce reference counting for pdev

Hi Roger,

Roger Pau Monné <roger.pau@xxxxxxxxxx> writes:

> On Wed, Apr 12, 2023 at 09:54:12PM +0000, Volodymyr Babchuk wrote:
>> 
>> Hi Roger,
>> 
>> First of all, I want to provide link [1] to the RFC series where I tried
>> total PCI locking rework. After discussing with Jan, it became clear for
>> me, that task is much harder, than I anticipated. So, it was decided to
>> move with a smaller steps. First step is to make vPCI code independed
>> from the global PCI lock. Actually, this is not the first try.
>> Oleksandr Andrushchenko tried to use r/w lock for this: [2]. But,
>> Jan suggested to use refcounting instead of r/w locks, and I liked the
>> idea. So, this is why you are seeing this patch series.
>
> Thanks, I've been on leave for long periods recently and I've missed
> some of the series.
>

Did you checked this RFC series? I am not asking you to review it, I am
just curious about your opinion on the selected approach

>> 
>> 
>> Roger Pau Monné <roger.pau@xxxxxxxxxx> writes:
>> 
>> > On Tue, Apr 11, 2023 at 11:41:04PM +0000, Volodymyr Babchuk wrote:
>> >> 
>> >> Hi Roger,
>> >> 
>> >> Roger Pau Monné <roger.pau@xxxxxxxxxx> writes:
>> >> 
>> >> > On Tue, Mar 14, 2023 at 08:56:29PM +0000, Volodymyr Babchuk wrote:
>> >> >> Prior to this change, lifetime of pci_dev objects was protected by 
>> >> >> global
>> >> >> pcidevs_lock(). Long-term plan is to remove this log, so we need some
>> >> >                                                    ^ lock
>> >> >
>> >> > I wouldn't say remove, as one way or another we need a lock to protect
>> >> > concurrent accesses.
>> >> >
>> >> 
>> >> I'll write "replace this global lock with couple of more granular
>> >> locking devices"
>> >> if this is okay for you.
>> >> 
>> >> >> other mechanism to ensure that those objects will not disappear under
>> >> >> feet of code that access them. Reference counting is a good choice as
>> >> >> it provides easy to comprehend way to control object lifetime.
>> >> >> 
>> >> >> This patch adds two new helper functions: pcidev_get() and
>> >> >> pcidev_put(). pcidev_get() will increase reference counter, while
>> >> >> pcidev_put() will decrease it, destroying object when counter reaches
>> >> >> zero.
>> >> >> 
>> >> >> pcidev_get() should be used only when you already have a valid pointer
>> >> >> to the object or you are holding lock that protects one of the
>> >> >> lists (domain, pseg or ats) that store pci_dev structs.
>> >> >> 
>> >> >> pcidev_get() is rarely used directly, because there already are
>> >> >> functions that will provide valid pointer to pci_dev struct:
>> >> >> pci_get_pdev(), pci_get_real_pdev(). They will lock appropriate list,
>> >> >> find needed object and increase its reference counter before returning
>> >> >> to the caller.
>> >> >> 
>> >> >> Naturally, pci_put() should be called after finishing working with a
>> >> >> received object. This is the reason why this patch have so many
>> >> >> pcidev_put()s and so little pcidev_get()s: existing calls to
>> >> >> pci_get_*() functions now will increase reference counter
>> >> >> automatically, we just need to decrease it back when we finished.
>> >> >
>> >> > After looking a bit into this, I would like to ask whether it's been
>> >> > considered the need to increase the refcount for each use of a pdev.
>> >> >
>> >> 
>> >> This is how Linux uses reference locking. It decreases cognitive load
>> >> and chance for an error, as there is a simple set of rules, which you
>> >> follow.
>> >> 
>> >> > For example I would consider the initial alloc_pdev() to take a
>> >> > refcount, and then pci_remove_device() _must_ be the function that
>> >> > removes the last refcount, so that it can return -EBUSY otherwise (see
>> >> > my comment below).
>> >> 
>> >> I tend to disagree there, as this ruins the very idea of reference
>> >> counting. We can't know who else holds reference right now. Okay, we
>> >> might know, but this requires additional lock to serialize
>> >> accesses. Which, in turn, makes refcount un-needed.
>> >
>> > In principle pci_remove_device() must report whether the device is
>> > ready to be physically removed from the system, so it must return
>> > -EBUSY if there are still users accessing the device.
>> >
>> > A user would use PHYSDEVOP_manage_pci_remove to signal Xen it's trying
>> > to physically remove a PCI device from a system, so we must ensure
>> > that when the hypervisor returns success the device is ready to be
>> > physically removed.
>> >
>> > Or at least that's my understanding of how this should work.
>> >
>> 
>> As I can see, this is not how it is implemented right
>> now. pci_remove_device() is not checking if device is not assigned to a
>> domain. Id does not check if there are still users accessing the
>> device. It just relies on a the global PCI lock to ensure that device is
>> removed in an orderly manner.
>
> Right, the expectation is that any path inside of the hypervisor using
> the device will hold the pcidevs lock, and thus bny holding it while
> removing we assert that no users (inside the hypervisor) are left.
>

May I proposed a bit relaxed assertion? "We assert that no users that
access the device are left". What I am trying is say there, that no one
will try to access, say, device's config space. Because the device
already may be physically removed and any access to the device itself
will cause a fault. But there may be users that can access struct pdev
that corresponds to this device.

> I don't think we have been very consistent about the usage of the
> pcidevs lock, and hence most of this is likely broken.  Hopefully
> removing a PCI device from a system is a very uncommon operation.
>
>> My patch series has no intention to change this behavior. All what I
>> want to achieve - is to allow vpci code access struct pdev objects
>> without holding the global PCI lock. 
>
> That's all fine, but we need to make sure it doesn't make things worse
> and what they currently are, and ideally it should make things easier.
>
> That's why I would like to understand exactly what's the purpose of
> the refcount, and how it should be used.  The usage of the refcount
> should be compatible with the intended behaviour of
> pci_remove_device(), regardless of whether the current implementation
> is not correct.  We don't want to be piling up more broken stuff on
> top of an already broken implementation.
>

I agree with you. I'll fix the issue with vPCI, that you mentioned below
and prepare more comprehensive commit description in the next version.

>> >> >
>> >> > That makes me wonder if for example callers of pci_get_pdev(d, sbdf)
>> >> > do need to take an extra refcount, because such access is already
>> >> > protected from the pdev going away by the fact that the device is
>> >> > assigned to a guest.  But maybe it's too much work to separate users
>> >> > of pci_get_pdev(d, ...); vs pci_get_pdev(NULL, ...);.
>> >> >
>> >> > There's also a window when the refcount is dropped to 0, and the
>> >> > destruction function is called, but at the same time a concurrent
>> >> > thread could attempt to take a reference to the pdev still?
>> >> 
>> >> Last pcidev_put() would be called by pci_remove_device(), after removing
>> >> it from all lists. This should prevent other threads from obtaining a 
>> >> valid
>> >> reference to the pdev.
>> >
>> > What if a concurrent user has taken a reference to the object before
>> > pci_remove_device() has removed the device from the lists, and still
>> > holds it when pci_remove_device() performs the supposedly last
>> > pcidev_put() call?
>> 
>> Well, let's consider VPCI code as this concurrent user, for
>> example. First, it will try to take vpci->lock. Depending on where in
>> pci_remov_device() there will be three cases:
>> 
>> 1. Lock is taken before vpci_remove_device() takes the lock. In this
>> case vpci code works as always
>> 
>> 2. It tries to take the lock when vpci_remove_device() is already locked
>> this. In this case we are falling to the next case:
>> 
>> 3. Lock is taken after vpci_remove_device() had finished it's work. In this
>> case vPCI code sees that it was called for a device in an invalid state
>> and exits.
>
> For 2) and 3) you will hit a dereference, as the lock (vpci->lock)
> would have been freed by vpci_remove_device() while a concurrent user
> is waiting on pci_remov_device() to release the lock.
>
> I'm not sure how the user sees the device is in an invalid state,
> because it was waiting on a lock (vpci->lock) that has been removed
> under it's feet.
>
> This is an existing issue not made worse by the refcounting, but it's
> not a great example.
>

Yes, agree. I am going to move vpci->lock to the upper level
(pdev->vpci_lock) and rework vPCI code so it will gracefully handle
 pdev->vpci == NULL.

>> 
>> As you can see, there is no case where vPCI code is running on an device
>> which was removed.
>> 
>> After vPCI code drops refcounter, pdev object will be freed once and for
>> all. Please node, that I am talking about pdev object there, not about
>> PCI device, because PCI device (as a high-level entity) was destroyed by
>> pci_remove_device(). refcount is needed just for the last clean-up
>> operations.
>
> Right, but pci_remove_device() will return success even when there are
> some users holding a refcount to the device, which is IMO undesirable.
>
> As I understand it the purpose of pci_remove_device() is that once it
> returns success the device can be physically removed from the system.
>

Yes, I totally agree with you. By saying "the device can physically removed
from the system" we are asserting that no one will try to access this
device via PCI bus. But this is not the same as "no one shall access
struct pdev fields as it should be freed immediately".

>> >
>> >> >
>> >> >>          sbdf.devfn &= ~stride;
>> >> >>          pdev = pci_get_pdev(NULL, sbdf);
>> >> >>          if ( pdev && stride != pdev->phantom_stride )
>> >> >> +        {
>> >> >> +            pcidev_put(pdev);
>> >> >>              pdev = NULL;
>> >> >> +        }
>> >> >>      }
>> >> >>  
>> >> >>      return pdev;
>> >> >> @@ -548,13 +526,18 @@ struct pci_dev *pci_get_pdev(const struct domain 
>> >> >> *d, pci_sbdf_t sbdf)
>> >> >>          list_for_each_entry ( pdev, &pseg->alldevs_list, alldevs_list 
>> >> >> )
>> >> >>              if ( pdev->sbdf.bdf == sbdf.bdf &&
>> >> >>                   (!d || pdev->domain == d) )
>> >> >> +            {
>> >> >> +                pcidev_get(pdev);
>> >> >>                  return pdev;
>> >> >> +            }
>> >> >>      }
>> >> >>      else
>> >> >>          list_for_each_entry ( pdev, &d->pdev_list, domain_list )
>> >> >>              if ( pdev->sbdf.bdf == sbdf.bdf )
>> >> >> +            {
>> >> >> +                pcidev_get(pdev);
>> >> >>                  return pdev;
>> >> >> -
>> >> >> +            }
>> >> >>      return NULL;
>> >> >>  }
>> >> >>  
>> >> >> @@ -663,7 +646,10 @@ int pci_add_device(u16 seg, u8 bus, u8 devfn,
>> >> >>                              PCI_SBDF(seg, info->physfn.bus,
>> >> >>                                       info->physfn.devfn));
>> >> >>          if ( pdev )
>> >> >> +        {
>> >> >>              pf_is_extfn = pdev->info.is_extfn;
>> >> >> +            pcidev_put(pdev);
>> >> >> +        }
>> >> >>          pcidevs_unlock();
>> >> >>          if ( !pdev )
>> >> >>              pci_add_device(seg, info->physfn.bus, info->physfn.devfn,
>> >> >> @@ -818,7 +804,9 @@ int pci_remove_device(u16 seg, u8 bus, u8 devfn)
>> >> >>              if ( pdev->domain )
>> >> >>                  list_del(&pdev->domain_list);
>> >> >>              printk(XENLOG_DEBUG "PCI remove device %pp\n", 
>> >> >> &pdev->sbdf);
>> >> >> -            free_pdev(pseg, pdev);
>> >> >> +            list_del(&pdev->alldevs_list);
>> >> >> +            pdev_msi_deinit(pdev);
>> >> >> +            pcidev_put(pdev);
>> >> >
>> >> > Hm, I think here we want to make sure that the device has been freed,
>> >> > or else you would have to return -EBUSY to the calls to notify that
>> >> > the device is still in use.
>> >> 
>> >> Why? As I can see, pdev object is still may potentially be accessed by
>> >> some other CPU right now. So pdev object will be freed after last
>> >> reference is dropped. As it is already removed from all the lists,
>> >> pci_dev_get() will not find it anymore.
>> >> 
>> >> Actually, I can't see how this can happen in reality, as VPCI, MSI and
>> >> IOMMU are already deactivated for this device. So, no one would touch it.
>> >
>> > Wouldn't it be possible for a concurrent user to hold a reference from
>> > befoe the device has been 'deactivated'?
>> >
>> 
>> Yes, it can hold a reference. This is why we need additional locking to
>> ensure that, say, pci_cleanup_msi() does not races with rest of the MSI
>> code. Right now this is ensured by then global PCI lock.
>> 
>> >> >
>> >> > I think we need an extra pcidev_put_final() or similar that can be
>> >> > used in pci_remove_device() to assert that the device has been
>> >> > actually removed.
>> >> 
>> >> Will something break if we don't do this? I can't see how this can
>> >> happen.
>> >
>> > As mentioned above, once pci_remove_device() returns 0 the admin
>> > should be capable of physically removing the device from the system.
>> >
>> 
>> This patch series does not alter this requirement. Admin is still
>> capable of physically removing the device from the system. After
>> successful call to the pci_remove_device()
>
> Indeed, but there might be users in the hypervisor still holding a
> reference to the pdev.
>

reference counting alone can't protect you from this
situation. Additional locking is required in this case. And right now we
have the global PCI lock that protects us. Actually, almost all the code
takes and drops references while holding the global PCI lock. Only one
exception, as far as I know, is the vPCI code. Which I am going to fix
in the next version.

Also, I'll double check that only vPCI code obtains references while not
holding the global lock. My reasoning is the following:

1. Right now (i.e. on staging branch) all accesses to pdevs are
in consistent state. This basically means that all code that access
pdevs is doing this while holding an appropriate lock. Global PCI lock,
in most cases. This means the following: pdev can't disappear under our
feet, no one racing with us while accessing the pdev, no new pdev can be
created while we are holding the global PCI lock.

2. Adding reference counting alone changes nothing in this
regard. Actually, PCI code will needlessly increase/decrease an atomic
while holding the global lock.

3. As all work with PCI devices is done while holding the lock, we can
assert that reference count at the beginning of a critical section will
be equal to reference count at the end of a critical section, because
my patch add _put to the every _get all across the hypervisor, with a
few notable exceptions:

3.1. pci_add_device() will initialize a device and set reference count
to 1

3.2. pci_remove_device() will de-initialize a device and decrease
reference count by 1. I can assert, that if p.1 is true and I didn't
messed up with balancing _gets/_puts in other parts of the code, then
pci_remove_device() will always remove the last reference. This may (and
will) change in the future.

3.3. MSI code holds long-term pointers to pdev, so
msi[x]_capability_init() does additional _get() and then
`msi_free_irq()` does corresponding _put(). Luckily for us,
pci_remove_device() calls pci_cleanup_msi() so we can be sure that does
not break assertion in p.3.2

4. Now, we want vPCI code to be able to access PCI devices without
holding the global PCI lock the whole time. This is where we can
leverage reference counting. Here are the assertions:

4.1. vPCI code gets pdev pointer only via pci_get_pdev() function, which
reads from a list while holding the global PCI lock. That means that
pci_get_pdev() will return NULL after pci_remove_device() deletes the
device from all lists. Also, that means that vPCI code can't get pdev
while pci_remove_device() is running, because pci_remove_device() is
holding the global PCI lock.

4.2. vPCI code will always acquire pdev->vpci_lock before accessing
pdev->vpci

4.3. pci_remove_device() will de-init vpci state while holding
pdev->vpci_lock

4.4. vPCI code will not try to access PCI device if pdev->vpci == NULL

4.5. vPCI code will access only vpci-related fields in struct pdev

4.6. vPCI does not depends and does not alter non-vPCI-related state of a PCI
device. This is the most tricky part, because most of the remaining state is
protected by the global PCI lock, which we are not holding. That means,
that we need to disable vPCI while re-assigning the PCI device to
another domain. As I can see, this is the only place where vPCI depends
on more broader PCI device state.

This approach will not interfere with pci_remove_device() obligations,
because we can be sure that right now vPCI is the only user that can
hold reference counter past pci_remove_device() call and that vPCI code
will not attempt to access to PCI device after end of , thus, allowing admin to
physically remote the device.

In the future, we can gradually remove other parts of the PCI code from under
the global PCI lock, providing we can give the same guarantees as p 4.1-4.6

>> >> >> -static int assign_device(struct domain *d, u16 seg, u8 bus, u8 devfn, 
>> >> >> u32 flag)
>> >> >> +static int assign_device(struct domain *d, struct pci_dev *pdev, u32 
>> >> >> flag)
>> >> >>  {
>> >> >>      const struct domain_iommu *hd = dom_iommu(d);
>> >> >> -    struct pci_dev *pdev;
>> >> >> +    uint8_t devfn;
>> >> >>      int rc = 0;
>> >> >>  
>> >> >>      if ( !is_iommu_enabled(d) )
>> >> >> @@ -1422,10 +1412,11 @@ static int assign_device(struct domain *d, u16 
>> >> >> seg, u8 bus, u8 devfn, u32 flag)
>> >> >>  
>> >> >>      /* device_assigned() should already have cleared the device for 
>> >> >> assignment */
>> >> >>      ASSERT(pcidevs_locked());
>> >> >> -    pdev = pci_get_pdev(NULL, PCI_SBDF(seg, bus, devfn));
>> >> >>      ASSERT(pdev && (pdev->domain == hardware_domain ||
>> >> >>                      pdev->domain == dom_io));
>> >> >>  
>> >> >> +    devfn = pdev->devfn;
>> >> >> +
>> >> >>      /* Do not allow broken devices to be assigned to guests. */
>> >> >>      rc = -EBADF;
>> >> >>      if ( pdev->broken && d != hardware_domain && d != dom_io )
>> >> >> @@ -1460,7 +1451,7 @@ static int assign_device(struct domain *d, u16 
>> >> >> seg, u8 bus, u8 devfn, u32 flag)
>> >> >>   done:
>> >> >>      if ( rc )
>> >> >>          printk(XENLOG_G_WARNING "%pd: assign (%pp) failed (%d)\n",
>> >> >> -               d, &PCI_SBDF(seg, bus, devfn), rc);
>> >> >> +               d, &PCI_SBDF(pdev->seg, pdev->bus, devfn), rc);
>> >> >>      /* The device is assigned to dom_io so mark it as quarantined */
>> >> >>      else if ( d == dom_io )
>> >> >>          pdev->quarantine = true;
>> >> >> @@ -1595,6 +1586,9 @@ int iommu_do_pci_domctl(
>> >> >>          ASSERT(d);
>> >> >>          /* fall through */
>> >> >>      case XEN_DOMCTL_test_assign_device:
>> >> >> +    {
>> >> >> +        struct pci_dev *pdev;
>> >> >> +
>> >> >>          /* Don't support self-assignment of devices. */
>> >> >>          if ( d == current->domain )
>> >> >>          {
>> >> >> @@ -1622,26 +1616,36 @@ int iommu_do_pci_domctl(
>> >> >>          seg = machine_sbdf >> 16;
>> >> >>          bus = PCI_BUS(machine_sbdf);
>> >> >>          devfn = PCI_DEVFN(machine_sbdf);
>> >> >> -
>> >> >>          pcidevs_lock();
>> >> >> -        ret = device_assigned(seg, bus, devfn);
>> >> >> +        pdev = pci_get_pdev(NULL, PCI_SBDF(seg, bus, devfn));
>> >> >> +        if ( !pdev )
>> >> >> +        {
>> >> >> +            printk(XENLOG_G_INFO "%pp non-existent\n",
>> >> >> +                   &PCI_SBDF(seg, bus, devfn));
>> >> >> +            ret = -EINVAL;
>> >> >> +            break;
>> >> >> +        }
>> >> >> +
>> >> >> +        ret = device_assigned(pdev);
>> >> >>          if ( domctl->cmd == XEN_DOMCTL_test_assign_device )
>> >> >>          {
>> >> >>              if ( ret )
>> >> >>              {
>> >> >> -                printk(XENLOG_G_INFO "%pp already assigned, or 
>> >> >> non-existent\n",
>> >> >> +                printk(XENLOG_G_INFO "%pp already assigned\n",
>> >> >>                         &PCI_SBDF(seg, bus, devfn));
>> >> >>                  ret = -EINVAL;
>> >> >>              }
>> >> >>          }
>> >> >>          else if ( !ret )
>> >> >> -            ret = assign_device(d, seg, bus, devfn, flags);
>> >> >> +            ret = assign_device(d, pdev, flags);
>> >> >> +
>> >> >> +        pcidev_put(pdev);
>> >> >
>> >> > I would think you need to keep the refcount here if ret == 0, so that
>> >> > the device cannot be removed while assigned to a domain?
>> >> 
>> >> Looks like we are perceiving function of refcnt in a different
>> >> ways. For me, this is the mechanism to guarantee that if we have a valid
>> >> pointer to an object, this object will not disappear under our
>> >> feet. This is the main function of krefs in the linux kernel: if your
>> >> code holds a reference to an object, you can be sure that this object is
>> >> exists in memory.
>> >> 
>> >> On other hand, it seems that you are considering this refcnt as an usage
>> >> counter for an actual PCI device, not "struct pdev" that represent
>> >> it. Those are two related things, but not the same. So, I can see why
>> >> you are suggesting to get additional reference there. But for me, this
>> >> looks unnecessary: the very first refcount is obtained in
>> >> pci_add_device() and there is the corresponding function
>> >> pci_remove_device() that will drop this refcount. So, for me, if admin
>> >> wants to remove a PCI device which is assigned to a domain, they can do
>> >> this as they were able to do this prior this patches.
>> >
>> > This is all fine, but needs to be stated in the commit message.
>> >
>> 
>> Sure, I will add this.
>> 
>> >> The main value of introducing refcnt is to be able to access pdev objects
>> >> without holding the global pcidevs_lock(). This does not mean that you
>> >> don't need locking at all. But this allows you to use pdev->lock (which
>> >> does not exists in this series, but was introduced in a RFC earlier), or
>> >> vpci->lock, or any other subsystem->lock.
>> >
>> > I guess I was missing this other bit about introducing a
>> > per-device lock, would it be possible to bundle all this together into
>> > a single patch series?
>> 
>> As I said at the top of this email, it was tried. You can check RFC at [1].
>> 
>> >
>> > It would be good to place this change together with any other locking
>> > related change that you have pending.
>> 
>> Honestly, my main goal is to fix the current issues with vPCI, so ARM
>> can move forward on adding PCI support for the platform. So, I am
>> focusing on this right now.
>
> Thanks, we need to be careful however as to not accumulate more
> bandaids on top just to workaround the fact that the locking we have
> regarding the pci devices is not suitable.
>
> I think it's important to keep all the usages of the pci_dev struct in
> mind when designing a solution.
>
> Overall it seems like might help vPCI on Arm, I think the only major
> request I have is the one related to pci_remove_device() only
> returning success when there are not refcounts left.

Above I have proposed another view on this. I hope, it will work for
you. Just to reiterate, idea is to allow "harmless" refcounts to be left
after returning from pci_remove_device(). By "harmless" I mean that
owners of those refcounts will not try to access the physical PCI
device if pci_remove_device() is already finished.

-- 
WBR, Volodymyr

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.