Re: [Patch 2/12] IPMI: remove interface number limits

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

 



Andrew Morton wrote:
> On Fri, 1 Dec 2006 22:24:22 -0600
> Corey Minyard <[email protected]> wrote:
>
>   
>> This patch removes the arbitrary limit of number of IPMI interfaces.
>> This has been tested with 8 interfaces.
>>
>> Signed-off-by: Corey Minyard <[email protected]>
>> Cc: Carol Hebert <[email protected]>
>>
>> ..
>>
>> +struct watcher_entry {
>> +	struct list_head link;
>> +	int intf_num;
>> +};
>> +
>>  int ipmi_smi_watcher_register(struct ipmi_smi_watcher *watcher)
>>  {
>> -	int           i;
>> -	unsigned long flags;
>> +	ipmi_smi_t intf;
>> +	struct list_head to_deliver = LIST_HEAD_INIT(to_deliver);
>> +	struct watcher_entry *e, *e2;
>> +
>> +	mutex_lock(&ipmi_interfaces_mutex);
>> +
>> +	list_for_each_entry_rcu(intf, &ipmi_interfaces, link) {
>> +		if (intf->intf_num == -1)
>> +			continue;
>> +		e = kmalloc(sizeof(*e), GFP_KERNEL);
>> +		if (!e)
>> +			goto out_err;
>>     
>
> You miss a mutex_unlock(&ipmi_interfaces_mutex) here
>   
This is actually fixed in patch 4 (ipmi-system-interface-hotplug.patch)

-Corey

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[Index of Archives]     [Kernel Newbies]     [Netfilter]     [Bugtraq]     [Photo]     [Stuff]     [Gimp]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Video 4 Linux]     [Linux for the blind]     [Linux Resources]
  Powered by Linux