Skip to content

Commit

Permalink
drbd: Fixed conn_lowest_minor
Browse files Browse the repository at this point in the history
It actually returned the lowest volume number. While doing that
renamed a few wrongly named variables.

Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
  • Loading branch information
Philipp Reisner committed Nov 8, 2012
1 parent f399002 commit e90285e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 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 @@ -434,7 +434,7 @@ void tl_clear(struct drbd_tconn *tconn)
struct drbd_conf *mdev;
struct list_head *le, *tle;
struct drbd_request *r;
int minor;
int vnr;

spin_lock_irq(&tconn->req_lock);

Expand All @@ -453,7 +453,7 @@ void tl_clear(struct drbd_tconn *tconn)
}

/* ensure bit indicating barrier is required is clear */
idr_for_each_entry(&tconn->volumes, mdev, minor)
idr_for_each_entry(&tconn->volumes, mdev, vnr)
clear_bit(CREATE_BARRIER, &mdev->flags);

spin_unlock_irq(&tconn->req_lock);
Expand Down Expand Up @@ -634,11 +634,13 @@ char *drbd_task_to_thread_name(struct drbd_tconn *tconn, struct task_struct *tas

int conn_lowest_minor(struct drbd_tconn *tconn)
{
int minor = 0;
int vnr = 0;
struct drbd_conf *mdev;

if (!idr_get_next(&tconn->volumes, &minor))
mdev = idr_get_next(&tconn->volumes, &vnr);
if (!mdev)
return -1;
return minor;
return mdev_to_minor(mdev);
}

#ifdef CONFIG_SMP
Expand Down
4 changes: 2 additions & 2 deletions drivers/block/drbd/drbd_nl.c
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ int drbd_khelper(struct drbd_conf *mdev, char *cmd)
static void conn_md_sync(struct drbd_tconn *tconn)
{
struct drbd_conf *mdev;
int minor;
int vnr;

idr_for_each_entry(&tconn->volumes, mdev, minor)
idr_for_each_entry(&tconn->volumes, mdev, vnr)
drbd_md_sync(mdev);
}

Expand Down
8 changes: 4 additions & 4 deletions drivers/block/drbd/drbd_state.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ static union drbd_state sanitize_state(struct drbd_conf *mdev, union drbd_state
bool conn_all_vols_unconf(struct drbd_tconn *tconn)
{
struct drbd_conf *mdev;
int minor;
int vnr;

idr_for_each_entry(&tconn->volumes, mdev, minor) {
idr_for_each_entry(&tconn->volumes, mdev, vnr) {
if (mdev->state.disk != D_DISKLESS ||
mdev->state.conn != C_STANDALONE ||
mdev->state.role != R_SECONDARY)
Expand Down Expand Up @@ -332,9 +332,9 @@ static void print_state_change(struct drbd_conf *mdev, union drbd_state os, unio
static bool vol_has_primary_peer(struct drbd_tconn *tconn)
{
struct drbd_conf *mdev;
int minor;
int vnr;

idr_for_each_entry(&tconn->volumes, mdev, minor) {
idr_for_each_entry(&tconn->volumes, mdev, vnr) {
if (mdev->state.peer == R_PRIMARY)
return true;
}
Expand Down

0 comments on commit e90285e

Please sign in to comment.