{
struct netfront_accelerator *accelerator =
kmalloc(sizeof(struct netfront_accelerator), GFP_KERNEL);
+ unsigned long flags;
int frontend_len;
if (!accelerator) {
accelerator->hooks = hooks;
+ spin_lock_irqsave(&accelerators_lock, flags);
list_add(&accelerator->link, &accelerators_list);
+ spin_unlock_irqrestore(&accelerators_lock, flags);
*result = accelerator;
{
struct netfront_accelerator *accelerator;
int rc = 0;
- unsigned long flags;
DPRINTK(" %s\n", frontend);
- spin_lock_irqsave(&accelerators_lock, flags);
-
/*
* Look at list of loaded accelerators to see if the requested
* one is already there
*/
list_for_each_entry(accelerator, &accelerators_list, link) {
if (match_accelerator(frontend, accelerator)) {
- spin_unlock_irqrestore(&accelerators_lock, flags);
-
accelerator_probe_new_vif(np, dev, accelerator);
return 0;
}
/* Couldn't find it, so create a new one and load the module */
if ((rc = init_accelerator(frontend, &accelerator, NULL)) < 0) {
- spin_unlock_irqrestore(&accelerators_lock, flags);
return rc;
}
- spin_unlock_irqrestore(&accelerators_lock, flags);
-
/* Include this frontend device on the accelerator's list */
add_accelerator_vif(accelerator, np);
struct netfront_accel_hooks *hooks)
{
struct netfront_accelerator *accelerator;
- unsigned long flags;
if (version != NETFRONT_ACCEL_VERSION) {
if (version > NETFRONT_ACCEL_VERSION) {
mutex_lock(&accelerator_mutex);
- spin_lock_irqsave(&accelerators_lock, flags);
-
/*
* Look through list of accelerators to see if it has already
* been requested
*/
list_for_each_entry(accelerator, &accelerators_list, link) {
if (match_accelerator(frontend, accelerator)) {
- spin_unlock_irqrestore(&accelerators_lock, flags);
-
accelerator_probe_vifs(accelerator, hooks);
-
goto out;
}
}
init_accelerator(frontend, &accelerator, hooks);
- spin_unlock_irqrestore(&accelerators_lock, flags);
-
out:
mutex_unlock(&accelerator_mutex);
return 0;