Currently if no comm can be found dlm_comm_seq() returns -EEXIST which
means entry already exists for a lookup it makes no sense to return
-EEXIST. We change it to -ENOENT. There is no user that will evaluate
the return value on a specific value so this should be fine.
Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
                mutex_unlock(&clusters_root.subsys.su_mutex);
        }
        if (!cm)
-               return -EEXIST;
+               return -ENOENT;
 
        *seq = cm->seq;
        put_comm(cm);