Fix broken arg parsing (was not passing pointer to items so p, argc, and argv
were only modified locally). Fix error reporting to properly describe why ioctls fail.
This commit is contained in:
parent
16767e2377
commit
06d4ec2a4b
@ -383,7 +383,7 @@ static const char *cmd_feat_str[] = {
|
|||||||
"SET FEATURES subcommand required to spinup after power up",
|
"SET FEATURES subcommand required to spinup after power up",
|
||||||
"Power-Up In Standby feature set", /* word 83 bit 5 */
|
"Power-Up In Standby feature set", /* word 83 bit 5 */
|
||||||
"Removable Media Status Notification feature set",
|
"Removable Media Status Notification feature set",
|
||||||
"Advanced Power Management feature set",/* word 83 bit 3 */
|
"Adv. Power Management feature set",/* word 83 bit 3 */
|
||||||
"CFA feature set", /* word 83 bit 2 */
|
"CFA feature set", /* word 83 bit 2 */
|
||||||
"READ/WRITE DMA QUEUED", /* word 83 bit 1 */
|
"READ/WRITE DMA QUEUED", /* word 83 bit 1 */
|
||||||
"DOWNLOAD MICROCODE cmd", /* word 83 bit 0 */
|
"DOWNLOAD MICROCODE cmd", /* word 83 bit 0 */
|
||||||
@ -473,7 +473,7 @@ const char * const bb_msg_op_not_supp =" operation not supported on %s disks";
|
|||||||
static void bb_ioctl(int fd, int request, void *argp, const char *string)
|
static void bb_ioctl(int fd, int request, void *argp, const char *string)
|
||||||
{
|
{
|
||||||
if (ioctl (fd, request, argp) != 0)
|
if (ioctl (fd, request, argp) != 0)
|
||||||
bb_error_msg(" %s", string);
|
bb_perror_msg(" %s", string);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void if_printf(unsigned long i, char *fmt, ... )
|
static void if_printf(unsigned long i, char *fmt, ... )
|
||||||
@ -500,7 +500,7 @@ static void bb_ioctl_on_off(int fd, int request, void *argp, const char *string,
|
|||||||
const char * fmt)
|
const char * fmt)
|
||||||
{
|
{
|
||||||
if (ioctl (fd, request, &argp) != 0)
|
if (ioctl (fd, request, &argp) != 0)
|
||||||
bb_error_msg(" %s", string);
|
bb_perror_msg(" %s", string);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf(fmt, (unsigned long) argp);
|
printf(fmt, (unsigned long) argp);
|
||||||
@ -556,20 +556,7 @@ static void check_if_maj_and_set_val(uint16_t a, uint16_t b)
|
|||||||
a = b;
|
a = b;
|
||||||
}
|
}
|
||||||
|
|
||||||
char * check_ptr(char *p, int argc, char **argv)
|
static
|
||||||
{
|
|
||||||
if (!*p && argc && isdigit(**argv))
|
|
||||||
p = *argv++, --argc;
|
|
||||||
return p;
|
|
||||||
}
|
|
||||||
|
|
||||||
char * check_ptr_v2(char *p, int argc, char **argv)
|
|
||||||
{
|
|
||||||
if (!*p && argc && isalnum(**argv))
|
|
||||||
p = *argv++, --argc;
|
|
||||||
return p;
|
|
||||||
}
|
|
||||||
|
|
||||||
unsigned long int set_flag(char *p, char max)
|
unsigned long int set_flag(char *p, char max)
|
||||||
{
|
{
|
||||||
if (*p >= '0' && *p <= max )
|
if (*p >= '0' && *p <= max )
|
||||||
@ -1238,7 +1225,7 @@ static int verbose = 0, get_identity = 0, get_geom = 0, noisy = 1, quiet = 0;
|
|||||||
static int flagcount = 0, do_flush = 0, is_scsi_hd = 0, is_xt_hd = 0;
|
static int flagcount = 0, do_flush = 0, is_scsi_hd = 0, is_xt_hd = 0;
|
||||||
static int do_ctimings, do_timings = 0;
|
static int do_ctimings, do_timings = 0;
|
||||||
|
|
||||||
static unsigned long set_readahead= 0, get_readahead= 0, bbreadahead= 0;
|
static unsigned long set_readahead= 0, get_readahead= 0, readahead= 0;
|
||||||
static unsigned long set_readonly = 0, get_readonly = 0, readonly = 0;
|
static unsigned long set_readonly = 0, get_readonly = 0, readonly = 0;
|
||||||
static unsigned long set_unmask = 0, get_unmask = 0, unmask = 0;
|
static unsigned long set_unmask = 0, get_unmask = 0, unmask = 0;
|
||||||
static unsigned long set_mult = 0, get_mult = 0, mult = 0;
|
static unsigned long set_mult = 0, get_mult = 0, mult = 0;
|
||||||
@ -1470,7 +1457,7 @@ static void flush_buffer_cache (int fd)
|
|||||||
#ifdef HDIO_DRIVE_CMD
|
#ifdef HDIO_DRIVE_CMD
|
||||||
sleep(1);
|
sleep(1);
|
||||||
if (ioctl(fd, HDIO_DRIVE_CMD, NULL) && errno != EINVAL) /* await completion */
|
if (ioctl(fd, HDIO_DRIVE_CMD, NULL) && errno != EINVAL) /* await completion */
|
||||||
bb_error_msg("HDIO_DRIVE_CMD");
|
bb_perror_msg("HDIO_DRIVE_CMD");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1511,7 +1498,7 @@ static int read_big_block (int fd, char *buf)
|
|||||||
|
|
||||||
static double correction = 0.0;
|
static double correction = 0.0;
|
||||||
|
|
||||||
void do_time (int flag, int fd)
|
static void do_time (int flag, int fd)
|
||||||
/*
|
/*
|
||||||
flag = 0 time_cache
|
flag = 0 time_cache
|
||||||
flag = 1 time_device
|
flag = 1 time_device
|
||||||
@ -1948,8 +1935,8 @@ static void process_dev (char *devname)
|
|||||||
|
|
||||||
if (set_readahead)
|
if (set_readahead)
|
||||||
{
|
{
|
||||||
if_printf(get_readahead," setting fs readahead to %ld\n", bbreadahead);
|
if_printf(get_readahead," setting fs readahead to %ld\n", readahead);
|
||||||
bb_ioctl(fd, BLKRASET,(int *)bbreadahead,"BLKRASET");
|
bb_ioctl(fd, BLKRASET,(int *)readahead,"BLKRASET");
|
||||||
}
|
}
|
||||||
#ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
|
#ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
|
||||||
if (unregister_hwif)
|
if (unregister_hwif)
|
||||||
@ -2003,7 +1990,7 @@ static void process_dev (char *devname)
|
|||||||
no_xt();
|
no_xt();
|
||||||
if_printf(get_mult, " setting multcount to %ld\n", mult);
|
if_printf(get_mult, " setting multcount to %ld\n", mult);
|
||||||
if(ioctl(fd, HDIO_SET_MULTCOUNT, mult))
|
if(ioctl(fd, HDIO_SET_MULTCOUNT, mult))
|
||||||
bb_error_msg("HDIO_SET_MULTCOUNT");
|
bb_perror_msg("HDIO_SET_MULTCOUNT");
|
||||||
#ifndef HDIO_DRIVE_CMD
|
#ifndef HDIO_DRIVE_CMD
|
||||||
else
|
else
|
||||||
force_operation = 1;
|
force_operation = 1;
|
||||||
@ -2150,12 +2137,12 @@ static void process_dev (char *devname)
|
|||||||
if_printf_on_off(get_wcache," setting drive write-caching to %ld", wcache);
|
if_printf_on_off(get_wcache," setting drive write-caching to %ld", wcache);
|
||||||
#ifdef DO_FLUSHCACHE
|
#ifdef DO_FLUSHCACHE
|
||||||
if (!wcache && ioctl(fd, HDIO_DRIVE_CMD, &flushcache))
|
if (!wcache && ioctl(fd, HDIO_DRIVE_CMD, &flushcache))
|
||||||
bb_error_msg ("HDIO_DRIVE_CMD(flushcache)");
|
bb_perror_msg ("HDIO_DRIVE_CMD(flushcache)");
|
||||||
#endif /* DO_FLUSHCACHE */
|
#endif /* DO_FLUSHCACHE */
|
||||||
bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setcache)");
|
bb_ioctl(fd, HDIO_DRIVE_CMD, &args, "HDIO_DRIVE_CMD(setcache)");
|
||||||
#ifdef DO_FLUSHCACHE
|
#ifdef DO_FLUSHCACHE
|
||||||
if (!wcache && ioctl(fd, HDIO_DRIVE_CMD, &flushcache))
|
if (!wcache && ioctl(fd, HDIO_DRIVE_CMD, &flushcache))
|
||||||
bb_error_msg ("HDIO_DRIVE_CMD(flushcache)");
|
bb_perror_msg ("HDIO_DRIVE_CMD(flushcache)");
|
||||||
#endif /* DO_FLUSHCACHE */
|
#endif /* DO_FLUSHCACHE */
|
||||||
}
|
}
|
||||||
if (set_standbynow)
|
if (set_standbynow)
|
||||||
@ -2172,7 +2159,7 @@ static void process_dev (char *devname)
|
|||||||
if_printf(get_standbynow," issuing standby command\n");
|
if_printf(get_standbynow," issuing standby command\n");
|
||||||
if (ioctl(fd, HDIO_DRIVE_CMD, &args1)
|
if (ioctl(fd, HDIO_DRIVE_CMD, &args1)
|
||||||
&& ioctl(fd, HDIO_DRIVE_CMD, &args2))
|
&& ioctl(fd, HDIO_DRIVE_CMD, &args2))
|
||||||
bb_error_msg("HDIO_DRIVE_CMD(standby)");
|
bb_perror_msg("HDIO_DRIVE_CMD(standby)");
|
||||||
}
|
}
|
||||||
if (set_sleepnow)
|
if (set_sleepnow)
|
||||||
{
|
{
|
||||||
@ -2188,7 +2175,7 @@ static void process_dev (char *devname)
|
|||||||
if_printf(get_sleepnow," issuing sleep command\n");
|
if_printf(get_sleepnow," issuing sleep command\n");
|
||||||
if (ioctl(fd, HDIO_DRIVE_CMD, &args1)
|
if (ioctl(fd, HDIO_DRIVE_CMD, &args1)
|
||||||
&& ioctl(fd, HDIO_DRIVE_CMD, &args2))
|
&& ioctl(fd, HDIO_DRIVE_CMD, &args2))
|
||||||
bb_error_msg("HDIO_DRIVE_CMD(sleep)");
|
bb_perror_msg("HDIO_DRIVE_CMD(sleep)");
|
||||||
}
|
}
|
||||||
if (set_seagate)
|
if (set_seagate)
|
||||||
{
|
{
|
||||||
@ -2230,7 +2217,7 @@ static void process_dev (char *devname)
|
|||||||
if (ioctl(fd, HDIO_GET_MULTCOUNT, &multcount))
|
if (ioctl(fd, HDIO_GET_MULTCOUNT, &multcount))
|
||||||
{
|
{
|
||||||
if ((verbose && !is_xt_hd) || get_mult)
|
if ((verbose && !is_xt_hd) || get_mult)
|
||||||
bb_error_msg("HDIO_GET_MULTCOUNT");
|
bb_perror_msg("HDIO_GET_MULTCOUNT");
|
||||||
}
|
}
|
||||||
else if (verbose | get_mult)
|
else if (verbose | get_mult)
|
||||||
{
|
{
|
||||||
@ -2243,7 +2230,7 @@ static void process_dev (char *devname)
|
|||||||
no_scsi();
|
no_scsi();
|
||||||
no_xt();
|
no_xt();
|
||||||
if(ioctl(fd, HDIO_GET_32BIT, &parm))
|
if(ioctl(fd, HDIO_GET_32BIT, &parm))
|
||||||
bb_error_msg("HDIO_GET_32BIT");
|
bb_perror_msg("HDIO_GET_32BIT");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf(" IO_support =%3ld (", parm);
|
printf(" IO_support =%3ld (", parm);
|
||||||
@ -2282,7 +2269,7 @@ static void process_dev (char *devname)
|
|||||||
if ((verbose && !is_scsi_hd) || get_dma) {
|
if ((verbose && !is_scsi_hd) || get_dma) {
|
||||||
no_scsi();
|
no_scsi();
|
||||||
if(ioctl(fd, HDIO_GET_DMA, &parm))
|
if(ioctl(fd, HDIO_GET_DMA, &parm))
|
||||||
bb_error_msg("HDIO_GET_DMA");
|
bb_perror_msg("HDIO_GET_DMA");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf(" using_dma = %2ld", parm);
|
printf(" using_dma = %2ld", parm);
|
||||||
@ -2333,13 +2320,13 @@ static void process_dev (char *devname)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (ioctl(fd, BLKGETSIZE, &parm))
|
if (ioctl(fd, BLKGETSIZE, &parm))
|
||||||
bb_error_msg("BLKGETSIZE");
|
bb_perror_msg("BLKGETSIZE");
|
||||||
#ifdef HDIO_GETGEO_BIG
|
#ifdef HDIO_GETGEO_BIG
|
||||||
else if (!ioctl(fd, HDIO_GETGEO_BIG, &bg))
|
else if (!ioctl(fd, HDIO_GETGEO_BIG, &bg))
|
||||||
printf(msg, bg.cylinders, bg.heads, bg.sectors, parm, bg.start);
|
printf(msg, bg.cylinders, bg.heads, bg.sectors, parm, bg.start);
|
||||||
#endif
|
#endif
|
||||||
else if (ioctl(fd, HDIO_GETGEO, &g))
|
else if (ioctl(fd, HDIO_GETGEO, &g))
|
||||||
bb_error_msg("HDIO_GETGEO");
|
bb_perror_msg("HDIO_GETGEO");
|
||||||
else
|
else
|
||||||
printf(msg, g.cylinders, g.heads, g.sectors, parm, g.start);
|
printf(msg, g.cylinders, g.heads, g.sectors, parm, g.start);
|
||||||
}
|
}
|
||||||
@ -2409,7 +2396,7 @@ static void process_dev (char *devname)
|
|||||||
else if (errno == -ENOMSG)
|
else if (errno == -ENOMSG)
|
||||||
printf(" no identification info available\n");
|
printf(" no identification info available\n");
|
||||||
else
|
else
|
||||||
bb_error_msg("HDIO_GET_IDENTITY");
|
bb_perror_msg("HDIO_GET_IDENTITY");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (get_IDentity)
|
if (get_IDentity)
|
||||||
@ -2425,7 +2412,7 @@ static void process_dev (char *devname)
|
|||||||
args[0] = WIN_PIDENTIFY;
|
args[0] = WIN_PIDENTIFY;
|
||||||
if (ioctl(fd, HDIO_DRIVE_CMD, &args))
|
if (ioctl(fd, HDIO_DRIVE_CMD, &args))
|
||||||
{
|
{
|
||||||
bb_error_msg("HDIO_DRIVE_CMD(identify)");
|
bb_perror_msg("HDIO_DRIVE_CMD(identify)");
|
||||||
goto identify_abort;
|
goto identify_abort;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2454,7 +2441,7 @@ identify_abort:
|
|||||||
{
|
{
|
||||||
no_scsi();
|
no_scsi();
|
||||||
if (ioctl(fd, HDIO_GET_BUSSTATE, &parm))
|
if (ioctl(fd, HDIO_GET_BUSSTATE, &parm))
|
||||||
bb_error_msg("HDIO_GET_BUSSTATE");
|
bb_perror_msg("HDIO_GET_BUSSTATE");
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf(" busstate = %2ld", parm);
|
printf(" busstate = %2ld", parm);
|
||||||
@ -2475,6 +2462,35 @@ identify_abort:
|
|||||||
close (fd);
|
close (fd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static char * GET_NUMBER(char *p, unsigned long *flag, unsigned long *num)
|
||||||
|
{
|
||||||
|
*num = 0;
|
||||||
|
while (isdigit(*p)) {
|
||||||
|
*flag = 1;
|
||||||
|
*num = (*num * 10) + (*p++ - '0');
|
||||||
|
}
|
||||||
|
return p;
|
||||||
|
}
|
||||||
|
|
||||||
|
static char * GET_STRING(char *p, unsigned long *flag, int *num)
|
||||||
|
{
|
||||||
|
char *tmpstr;
|
||||||
|
char name[32];
|
||||||
|
tmpstr = name;
|
||||||
|
tmpstr[0] = '\0';
|
||||||
|
while (isalnum(*p) && (tmpstr - name) < 31) {
|
||||||
|
tmpstr[0] = *p++;
|
||||||
|
tmpstr[1] = '\0';
|
||||||
|
++tmpstr;
|
||||||
|
}
|
||||||
|
*num = translate_xfermode(name);
|
||||||
|
if (*num == -1)
|
||||||
|
*flag = 0;
|
||||||
|
else
|
||||||
|
*flag = 1;
|
||||||
|
return p;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
|
#ifdef CONFIG_FEATURE_HDPARM_GET_IDENTITY
|
||||||
static int fromhex (unsigned char c)
|
static int fromhex (unsigned char c)
|
||||||
{
|
{
|
||||||
@ -2510,8 +2526,6 @@ int hdparm_main(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
const char * const bb_msg_missing_value ="missing value";
|
const char * const bb_msg_missing_value ="missing value";
|
||||||
char c, *p;
|
char c, *p;
|
||||||
char *tmpstr;
|
|
||||||
char name[32];
|
|
||||||
/*int neg;*/
|
/*int neg;*/
|
||||||
|
|
||||||
++argv;
|
++argv;
|
||||||
@ -2565,7 +2579,8 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'u':
|
case 'u':
|
||||||
get_unmask = noisy;
|
get_unmask = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_unmask = set_flag(p,'1'))==1)
|
if((set_unmask = set_flag(p,'1'))==1)
|
||||||
unmask = *p++ - '0';
|
unmask = *p++ - '0';
|
||||||
break;
|
break;
|
||||||
@ -2573,7 +2588,8 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'd':
|
case 'd':
|
||||||
get_dma = noisy;
|
get_dma = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_dma = set_flag(p,'9'))==1)
|
if((set_dma = set_flag(p,'9'))==1)
|
||||||
dma = *p++ - '0';
|
dma = *p++ - '0';
|
||||||
break;
|
break;
|
||||||
@ -2581,65 +2597,47 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'n':
|
case 'n':
|
||||||
get_nowerr = noisy;
|
get_nowerr = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_nowerr = set_flag(p,'1'))==1)
|
if((set_nowerr = set_flag(p,'1'))==1)
|
||||||
nowerr = *p++ - '0';
|
nowerr = *p++ - '0';
|
||||||
break;
|
break;
|
||||||
case 'p':
|
case 'p':
|
||||||
noisy_piomode = noisy;
|
noisy_piomode = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr_v2(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
tmpstr = name;
|
p = *argv++, --argc;
|
||||||
tmpstr[0] = '\0';
|
p=GET_STRING(p,&set_piomode,&piomode);
|
||||||
while (isalnum(*p) && (tmpstr - name) < 31)
|
|
||||||
{
|
|
||||||
tmpstr[0] = *p++;
|
|
||||||
tmpstr[1] = '\0';
|
|
||||||
++tmpstr;
|
|
||||||
}
|
|
||||||
piomode = translate_xfermode(name);
|
|
||||||
if (piomode == -1)
|
|
||||||
set_piomode = 0;
|
|
||||||
else
|
|
||||||
set_piomode = 1;
|
|
||||||
break;
|
break;
|
||||||
case 'r':
|
case 'r':
|
||||||
get_readonly = noisy;
|
get_readonly = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_readonly = set_flag(p,'1'))==1)
|
if((set_readonly = set_flag(p,'1'))==1)
|
||||||
readonly = *p++ - '0';
|
readonly = *p++ - '0';
|
||||||
break;
|
break;
|
||||||
case 'm':
|
case 'm':
|
||||||
get_mult = noisy;
|
get_mult = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
while (isdigit(*p))
|
p = *argv++, --argc;
|
||||||
{
|
p=GET_NUMBER(p,&set_mult,&mult);
|
||||||
set_mult = 1;
|
|
||||||
mult = (mult * 10) + (*p++ - '0');
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 'c':
|
case 'c':
|
||||||
get_io32bit = noisy;
|
get_io32bit = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
while (isdigit(*p))
|
p = *argv++, --argc;
|
||||||
{
|
p=GET_NUMBER(p,&set_io32bit,&io32bit);
|
||||||
set_io32bit = 1;
|
|
||||||
io32bit = (io32bit * 10) + (*p++ - '0');
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
#ifdef HDIO_DRIVE_CMD
|
#ifdef HDIO_DRIVE_CMD
|
||||||
case 'S':
|
case 'S':
|
||||||
get_standby = noisy;
|
get_standby = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
while (isdigit(*p))
|
p = *argv++, --argc;
|
||||||
{
|
p=GET_NUMBER(p,&set_standby,&standby_requested);
|
||||||
set_standby = 1;
|
|
||||||
standby_requested = (standby_requested * 10) + (*p++ - '0');
|
|
||||||
}
|
|
||||||
if (!set_standby)
|
if (!set_standby)
|
||||||
bb_error_msg("-S: %s", bb_msg_missing_value);
|
bb_error_msg("-S: %s", bb_msg_missing_value);
|
||||||
break;
|
break;
|
||||||
@ -2647,24 +2645,18 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'D':
|
case 'D':
|
||||||
get_defects = noisy;
|
get_defects = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
while (isdigit(*p))
|
p = *argv++, --argc;
|
||||||
{
|
p=GET_NUMBER(p,&set_defects,&defects);
|
||||||
set_defects = 1;
|
|
||||||
defects = (defects * 10) + (*p++ - '0');
|
|
||||||
}
|
|
||||||
if (!set_defects)
|
if (!set_defects)
|
||||||
bb_error_msg("-D: %s", bb_msg_missing_value);
|
bb_error_msg("-D: %s", bb_msg_missing_value);
|
||||||
break;
|
break;
|
||||||
case 'P':
|
case 'P':
|
||||||
get_prefetch = noisy;
|
get_prefetch = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
while (isdigit(*p))
|
p = *argv++, --argc;
|
||||||
{
|
p=GET_NUMBER(p,&set_prefetch,&prefetch);
|
||||||
set_prefetch = 1;
|
|
||||||
prefetch = (prefetch * 10) + (*p++ - '0');
|
|
||||||
}
|
|
||||||
if (!set_prefetch)
|
if (!set_prefetch)
|
||||||
bb_error_msg("-P: %s", bb_msg_missing_value);
|
bb_error_msg("-P: %s", bb_msg_missing_value);
|
||||||
break;
|
break;
|
||||||
@ -2672,20 +2664,9 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'X':
|
case 'X':
|
||||||
get_xfermode = noisy;
|
get_xfermode = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr_v2(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
tmpstr = name;
|
p = *argv++, --argc;
|
||||||
tmpstr[0] = '\0';
|
p=GET_STRING(p,&set_xfermode,&xfermode_requested);
|
||||||
while (isalnum(*p) && (tmpstr - name) < 31)
|
|
||||||
{
|
|
||||||
tmpstr[0] = *p++;
|
|
||||||
tmpstr[1] = '\0';
|
|
||||||
++tmpstr;
|
|
||||||
}
|
|
||||||
xfermode_requested = translate_xfermode(name);
|
|
||||||
if (xfermode_requested == -1)
|
|
||||||
set_xfermode = 0;
|
|
||||||
else
|
|
||||||
set_xfermode = 1;
|
|
||||||
if (!set_xfermode)
|
if (!set_xfermode)
|
||||||
bb_error_msg("-X: %s", bb_msg_missing_value);
|
bb_error_msg("-X: %s", bb_msg_missing_value);
|
||||||
break;
|
break;
|
||||||
@ -2693,7 +2674,8 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'K':
|
case 'K':
|
||||||
get_dkeep = noisy;
|
get_dkeep = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_dkeep = set_flag(p,'1'))==1)
|
if((set_dkeep = set_flag(p,'1'))==1)
|
||||||
dkeep = *p++ - '0';
|
dkeep = *p++ - '0';
|
||||||
else
|
else
|
||||||
@ -2703,7 +2685,8 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'A':
|
case 'A':
|
||||||
get_lookahead = noisy;
|
get_lookahead = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_lookahead = set_flag(p,'1'))==1)
|
if((set_lookahead = set_flag(p,'1'))==1)
|
||||||
lookahead = *p++ - '0';
|
lookahead = *p++ - '0';
|
||||||
else
|
else
|
||||||
@ -2713,7 +2696,8 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'L':
|
case 'L':
|
||||||
get_doorlock = noisy;
|
get_doorlock = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_doorlock = set_flag(p,'1'))==1)
|
if((set_doorlock = set_flag(p,'1'))==1)
|
||||||
doorlock = *p++ - '0';
|
doorlock = *p++ - '0';
|
||||||
else
|
else
|
||||||
@ -2723,7 +2707,8 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'W':
|
case 'W':
|
||||||
get_wcache = noisy;
|
get_wcache = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_wcache = set_flag(p,'1'))==1)
|
if((set_wcache = set_flag(p,'1'))==1)
|
||||||
wcache = *p++ - '0';
|
wcache = *p++ - '0';
|
||||||
else
|
else
|
||||||
@ -2760,13 +2745,15 @@ int hdparm_main(int argc, char **argv)
|
|||||||
case 'k':
|
case 'k':
|
||||||
get_keep = noisy;
|
get_keep = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_keep = set_flag(p,'1'))==1)
|
if((set_keep = set_flag(p,'1'))==1)
|
||||||
keep = *p++ - '0';
|
keep = *p++ - '0';
|
||||||
break;
|
break;
|
||||||
#ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
|
#ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF
|
||||||
case 'U':
|
case 'U':
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if(! p)
|
if(! p)
|
||||||
goto error; /* "expected hwif_nr" */
|
goto error; /* "expected hwif_nr" */
|
||||||
|
|
||||||
@ -2777,7 +2764,8 @@ int hdparm_main(int argc, char **argv)
|
|||||||
#endif /* CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF */
|
#endif /* CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF */
|
||||||
#ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
|
#ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF
|
||||||
case 'R':
|
case 'R':
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if(! p)
|
if(! p)
|
||||||
goto error; /* "expected hwif_data" */
|
goto error; /* "expected hwif_data" */
|
||||||
|
|
||||||
@ -2804,19 +2792,20 @@ error:
|
|||||||
break;
|
break;
|
||||||
#endif /* CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF */
|
#endif /* CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF */
|
||||||
case 'Q':
|
case 'Q':
|
||||||
|
#ifdef HDIO_GET_QDMA
|
||||||
get_dma_q = noisy;
|
get_dma_q = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
/* neg = 0; */
|
#ifdef HDIO_SET_QDMA
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
while (isdigit(*p))
|
p = *argv++, --argc;
|
||||||
{
|
p=GET_NUMBER(p,&set_dma_q,&dma_q);
|
||||||
set_dma_q = 1;
|
#ifdef HDIO_GET_QDMA
|
||||||
dma_q = (dma_q * 10) + (*p++ - '0');
|
dma_q = -dma_q;
|
||||||
}
|
#endif
|
||||||
/* what is this for ? as neg = 0 (see above) it seems to do nothing */
|
#endif
|
||||||
/*if (neg)
|
#endif
|
||||||
dma_q = -dma_q;*/
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#ifdef CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
|
#ifdef CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET
|
||||||
case 'w':
|
case 'w':
|
||||||
perform_reset = 1;
|
perform_reset = 1;
|
||||||
@ -2824,7 +2813,8 @@ error:
|
|||||||
#endif /* CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET */
|
#endif /* CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET */
|
||||||
#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
|
#ifdef CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF
|
||||||
case 'x':
|
case 'x':
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((perform_tristate = set_flag(p,'1'))==1)
|
if((perform_tristate = set_flag(p,'1'))==1)
|
||||||
tristate = *p++ - '0';
|
tristate = *p++ - '0';
|
||||||
else
|
else
|
||||||
@ -2835,22 +2825,16 @@ error:
|
|||||||
case 'a':
|
case 'a':
|
||||||
get_readahead = noisy;
|
get_readahead = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
while (isdigit(*p))
|
p = *argv++, --argc;
|
||||||
{
|
p=GET_NUMBER(p,&set_readahead,&readahead);
|
||||||
set_readahead = 1;
|
|
||||||
bbreadahead = (bbreadahead * 10) + (*p++ - '0');
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case 'B':
|
case 'B':
|
||||||
get_apmmode = noisy;
|
get_apmmode = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isalnum(**argv))
|
||||||
while (isdigit(*p))
|
p = *argv++, --argc;
|
||||||
{
|
p=GET_NUMBER(p,&set_apmmode,&apmmode);
|
||||||
set_apmmode = 1;
|
|
||||||
apmmode = (io32bit * 10) + (*p++ - '0');
|
|
||||||
}
|
|
||||||
if (!set_apmmode)
|
if (!set_apmmode)
|
||||||
printf("-B: %s (1-255)", bb_msg_missing_value);
|
printf("-B: %s (1-255)", bb_msg_missing_value);
|
||||||
break;
|
break;
|
||||||
@ -2866,7 +2850,8 @@ error:
|
|||||||
case 'b':
|
case 'b':
|
||||||
get_busstate = noisy;
|
get_busstate = noisy;
|
||||||
noisy = 1;
|
noisy = 1;
|
||||||
p = check_ptr(p,argc,argv);
|
if (!*p && argc && isdigit(**argv))
|
||||||
|
p = *argv++, --argc;
|
||||||
if((set_busstate = set_flag(p,'2'))==1)
|
if((set_busstate = set_flag(p,'2'))==1)
|
||||||
busstate = *p++ - '0';
|
busstate = *p++ - '0';
|
||||||
break;
|
break;
|
||||||
@ -2878,9 +2863,9 @@ error:
|
|||||||
}
|
}
|
||||||
if (!argc)
|
if (!argc)
|
||||||
bb_show_usage();
|
bb_show_usage();
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
process_dev (p);
|
process_dev (p);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return 0 ;
|
return 0 ;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user