|
@@ -3165,14 +3165,10 @@ destroy_port(struct lpfc_vport *vport)
|
|
|
int
|
|
|
lpfc_get_instance(void)
|
|
|
{
|
|
|
- int instance = 0;
|
|
|
-
|
|
|
- /* Assign an unused number */
|
|
|
- if (!idr_pre_get(&lpfc_hba_index, GFP_KERNEL))
|
|
|
- return -1;
|
|
|
- if (idr_get_new(&lpfc_hba_index, NULL, &instance))
|
|
|
- return -1;
|
|
|
- return instance;
|
|
|
+ int ret;
|
|
|
+
|
|
|
+ ret = idr_alloc(&lpfc_hba_index, NULL, 0, 0, GFP_KERNEL);
|
|
|
+ return ret < 0 ? -1 : ret;
|
|
|
}
|
|
|
|
|
|
/**
|