Commit 99ba6ccc authored by Willy Tarreau's avatar Willy Tarreau Committed by Denis Efremov

floppy: cleanup: get rid of current_reqD in favor of current_drive

This macro equals -1 and is used as an alternative for current_drive when
calling reschedule_timeout(), which in turn needs to remap it. This only
adds obfuscation, let's simply use current_drive.

Link: https://lore.kernel.org/r/20200410101904.14652-2-w@1wt.euSigned-off-by: default avatarWilly Tarreau <w@1wt.eu>
Signed-off-by: default avatarDenis Efremov <efremov@linux.com>
parent 6111a4f9
...@@ -668,16 +668,12 @@ static struct output_log { ...@@ -668,16 +668,12 @@ static struct output_log {
static int output_log_pos; static int output_log_pos;
#define current_reqD -1
#define MAXTIMEOUT -2 #define MAXTIMEOUT -2
static void __reschedule_timeout(int drive, const char *message) static void __reschedule_timeout(int drive, const char *message)
{ {
unsigned long delay; unsigned long delay;
if (drive == current_reqD)
drive = current_drive;
if (drive < 0 || drive >= N_DRIVE) { if (drive < 0 || drive >= N_DRIVE) {
delay = 20UL * HZ; delay = 20UL * HZ;
drive = 0; drive = 0;
...@@ -1960,7 +1956,7 @@ static void floppy_ready(void) ...@@ -1960,7 +1956,7 @@ static void floppy_ready(void)
static void floppy_start(void) static void floppy_start(void)
{ {
reschedule_timeout(current_reqD, "floppy start"); reschedule_timeout(current_drive, "floppy start");
scandrives(); scandrives();
debug_dcl(drive_params[current_drive].flags, debug_dcl(drive_params[current_drive].flags,
...@@ -2874,7 +2870,7 @@ static void redo_fd_request(void) ...@@ -2874,7 +2870,7 @@ static void redo_fd_request(void)
} }
drive = (long)current_req->rq_disk->private_data; drive = (long)current_req->rq_disk->private_data;
set_fdc(drive); set_fdc(drive);
reschedule_timeout(current_reqD, "redo fd request"); reschedule_timeout(current_drive, "redo fd request");
set_floppy(drive); set_floppy(drive);
raw_cmd = &default_raw_cmd; raw_cmd = &default_raw_cmd;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment