Skip to content

Commit

Permalink
Merge branch 'tp/ibm_next_w_fsal_up_init_fix' into ibm_next_tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
Venkateswararao Jujjuri committed May 11, 2012
2 parents dc0fd2d + c6eb55d commit 99a791b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/FSAL_UP/fsal_up_thread.c
Expand Up @@ -243,9 +243,8 @@ static int fsal_up_thread_exists(exportlist_t *entry)
if (pcurrent->use_fsal_up == FALSE)
continue;

/* Should I check if major as well as minor are different? */
if (((pcurrent->filesystem_id.major != entry->filesystem_id.major)
|| (pcurrent->filesystem_id.minor != entry->filesystem_id.minor)))
/* Only check if major is different */
if (pcurrent->filesystem_id.major != entry->filesystem_id.major)
continue;

/* Is this the right wayt to check if a pthread reference is valid? */
Expand Down

0 comments on commit 99a791b

Please sign in to comment.