mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 04:03:58 +08:00
drbd: fix warning
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
This commit is contained in:
parent
24c4830c8e
commit
9b2f61aec7
@ -1342,7 +1342,7 @@ static int drbd_nl_detach(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp,
|
||||
ret = wait_event_interruptible(mdev->misc_wait,
|
||||
mdev->state.disk != D_FAILED);
|
||||
drbd_resume_io(mdev);
|
||||
if (retcode == SS_IS_DISKLESS)
|
||||
if ((int)retcode == (int)SS_IS_DISKLESS)
|
||||
retcode = SS_NOTHING_TO_DO;
|
||||
if (ret)
|
||||
retcode = ERR_INTR;
|
||||
|
@ -2911,12 +2911,6 @@ disconnect:
|
||||
return false;
|
||||
}
|
||||
|
||||
static void drbd_setup_order_type(struct drbd_conf *mdev, int peer)
|
||||
{
|
||||
/* sorry, we currently have no working implementation
|
||||
* of distributed TCQ */
|
||||
}
|
||||
|
||||
/* warn if the arguments differ by more than 12.5% */
|
||||
static void warn_if_differ_considerably(struct drbd_conf *mdev,
|
||||
const char *s, sector_t a, sector_t b)
|
||||
|
Loading…
Reference in New Issue
Block a user