@@ -2545,19 +2545,19 @@ update_path_state (struct vectors * vecs, struct path * pp)
return CHECK_PATH_CHECKED;
}
- if (newstate == PATH_UP || newstate == PATH_GHOST) {
- if (pp->mpp->prflag != PRFLAG_UNSET) {
- int prflag = pp->mpp->prflag;
- /*
- * Check Persistent Reservation.
- */
- condlog(2, "%s: checking persistent "
- "reservation registration", pp->dev);
- mpath_pr_event_handle(pp);
- if (pp->mpp->prflag == PRFLAG_SET &&
- prflag != PRFLAG_SET)
- pr_register_active_paths(pp->mpp);
- }
+ /* newstate == PATH_UP || newstate == PATH_GHOST */
+
+ if (pp->mpp->prflag != PRFLAG_UNSET) {
+ int prflag = pp->mpp->prflag;
+ /*
+ * Check Persistent Reservation.
+ */
+ condlog(2, "%s: checking persistent "
+ "reservation registration", pp->dev);
+ mpath_pr_event_handle(pp);
+ if (pp->mpp->prflag == PRFLAG_SET &&
+ prflag != PRFLAG_SET)
+ pr_register_active_paths(pp->mpp);
}
/*
Since we just returned if newstate wasn't PATH_UP or PATH_GHOST, it must obviously be PATH_UP or PATH_GHOST at this point in the code. We don't even wrap all the code for dealing with a path that just came up in this if-block, It's only the persistent resrvation code. Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com> --- multipathd/main.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-)