Re: [PATCH] lightnvm: missing nvm_lock acquire

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

 



On 11/25/2015 03:18 PM, Wenwei Tao wrote:
Or we can add a new function

static struct nvm_dev *nvm_find_nvm_dev_locked(const char *name)
  {
         struct nvm_dev *dev;

+       down_write(&nvm_lock);
         list_for_each_entry(dev, &nvm_devices, devices)
                 if (!strcmp(name, dev->name))
                         return dev;
+       up_write(&nvm_lock);

         return NULL;
  }

use nvm_find_nvm_dev_locked() and nvm_find_nvm_dev() properly.


That could also work. Let's go with your original solution. I don't like it completely, but on the other hand. The other iterators build up to the locks in that way. So making a special case for the nvm_find_nvm_dev properly makes the code harder to understand.

--
To unsubscribe from this list: send the line "unsubscribe linux-block" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Linux RAID]     [Linux SCSI]     [Linux ATA RAID]     [IDE]     [Linux Wireless]     [Linux Kernel]     [ATH6KL]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Device Mapper]

  Powered by Linux