mirror of
https://git.proxmox.com/git/mirror_smartmontools-debian
synced 2025-10-04 05:25:25 +00:00

Downloaded source from https://sourceforge.net/projects/smartmontools/files/smartmontools/7.0/ and imported here to git. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
70 lines
1.9 KiB
C
70 lines
1.9 KiB
C
/*
|
|
* scsiprint.h
|
|
*
|
|
* Home page of code is: http://www.smartmontools.org
|
|
*
|
|
* Copyright (C) 2002-9 Bruce Allen
|
|
* Copyright (C) 2000 Michael Cornwell <cornwell@acm.org>
|
|
*
|
|
* Additional SCSI work:
|
|
* Copyright (C) 2003-18 Douglas Gilbert <dgilbert@interlog.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
|
|
#ifndef SCSI_PRINT_H_
|
|
#define SCSI_PRINT_H_
|
|
|
|
#define SCSIPRINT_H_CVSID "$Id: scsiprint.h 4760 2018-08-19 18:45:53Z chrfranke $\n"
|
|
|
|
// Options for scsiPrintMain
|
|
struct scsi_print_options
|
|
{
|
|
bool drive_info;
|
|
bool smart_check_status;
|
|
bool smart_vendor_attrib;
|
|
bool smart_error_log;
|
|
bool smart_selftest_log;
|
|
bool smart_background_log;
|
|
bool smart_ss_media_log;
|
|
|
|
bool smart_disable, smart_enable;
|
|
bool smart_auto_save_disable, smart_auto_save_enable;
|
|
|
|
bool smart_default_selftest;
|
|
bool smart_short_selftest, smart_short_cap_selftest;
|
|
bool smart_extend_selftest, smart_extend_cap_selftest;
|
|
bool smart_selftest_abort;
|
|
bool smart_selftest_force; // Ignore already running test
|
|
|
|
bool sasphy, sasphy_reset;
|
|
|
|
bool get_wce, get_rcd;
|
|
short int set_wce, set_rcd; // disable(-1), enable(1) cache
|
|
|
|
scsi_print_options()
|
|
: drive_info(false),
|
|
smart_check_status(false),
|
|
smart_vendor_attrib(false),
|
|
smart_error_log(false),
|
|
smart_selftest_log(false),
|
|
smart_background_log(false),
|
|
smart_ss_media_log(false),
|
|
smart_disable(false), smart_enable(false),
|
|
smart_auto_save_disable(false), smart_auto_save_enable(false),
|
|
smart_default_selftest(false),
|
|
smart_short_selftest(false), smart_short_cap_selftest(false),
|
|
smart_extend_selftest(false), smart_extend_cap_selftest(false),
|
|
smart_selftest_abort(false),
|
|
smart_selftest_force(false),
|
|
sasphy(false), sasphy_reset(false),
|
|
get_wce(false), get_rcd(false),
|
|
set_wce(0), set_rcd(0)
|
|
{ }
|
|
};
|
|
|
|
int scsiPrintMain(scsi_device * device, const scsi_print_options & options);
|
|
|
|
#endif
|