Skip to content

Commit

Permalink
drbd: cosmetic, don't report resync for online-verify
Browse files Browse the repository at this point in the history
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
  • Loading branch information
Lars Ellenberg authored and Philipp Reisner committed Oct 14, 2010
1 parent a821cc4 commit 02bc717
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions drivers/block/drbd/drbd_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ static int is_valid_state(struct drbd_conf *mdev, union drbd_state ns);
static int is_valid_state_transition(struct drbd_conf *,
union drbd_state, union drbd_state);
static union drbd_state sanitize_state(struct drbd_conf *mdev, union drbd_state os,
union drbd_state ns, int *warn_sync_abort);
union drbd_state ns, const char **warn_sync_abort);
int drbd_send_state_req(struct drbd_conf *,
union drbd_state, union drbd_state);

Expand Down Expand Up @@ -812,7 +812,7 @@ static int is_valid_state_transition(struct drbd_conf *mdev,
* to D_UNKNOWN. This rule and many more along those lines are in this function.
*/
static union drbd_state sanitize_state(struct drbd_conf *mdev, union drbd_state os,
union drbd_state ns, int *warn_sync_abort)
union drbd_state ns, const char **warn_sync_abort)
{
enum drbd_fencing_p fp;

Expand Down Expand Up @@ -851,7 +851,9 @@ static union drbd_state sanitize_state(struct drbd_conf *mdev, union drbd_state
if (os.conn > C_CONNECTED && ns.conn > C_CONNECTED &&
(ns.disk <= D_FAILED || ns.pdsk <= D_FAILED)) {
if (warn_sync_abort)
*warn_sync_abort = 1;
*warn_sync_abort =
os.conn == C_VERIFY_S || os.conn == C_VERIFY_T ?
"Online-verify" : "Resync";
ns.conn = C_CONNECTED;
}

Expand Down Expand Up @@ -984,7 +986,7 @@ int __drbd_set_state(struct drbd_conf *mdev,
{
union drbd_state os;
int rv = SS_SUCCESS;
int warn_sync_abort = 0;
const char *warn_sync_abort = NULL;
struct after_state_chg_work *ascw;

os = mdev->state;
Expand Down Expand Up @@ -1016,7 +1018,7 @@ int __drbd_set_state(struct drbd_conf *mdev,
}

if (warn_sync_abort)
dev_warn(DEV, "Resync aborted.\n");
dev_warn(DEV, "%s aborted.\n", warn_sync_abort);

{
char *pbp, pb[300];
Expand Down

0 comments on commit 02bc717

Please sign in to comment.