Diff for /embedaddon/smartmontools/scsiprint.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 16:32:16 version 1.1.1.2, 2013/07/22 01:17:35
Line 7 Line 7
  * Copyright (C) 2000 Michael Cornwell <cornwell@acm.org>   * Copyright (C) 2000 Michael Cornwell <cornwell@acm.org>
  *   *
  * Additional SCSI work:   * Additional SCSI work:
 * Copyright (C) 2003-10 Douglas Gilbert <dgilbert@interlog.com> * Copyright (C) 2003-13 Douglas Gilbert <dgilbert@interlog.com>
  *   *
  * This program is free software; you can redistribute it and/or modify   * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by   * it under the terms of the GNU General Public License as published by
Line 15 Line 15
  * any later version.   * any later version.
  *   *
  * You should have received a copy of the GNU General Public License   * You should have received a copy of the GNU General Public License
 * (for example COPYING); if not, write to the Free * (for example COPYING); if not, write to the Free Software Foundation,
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  *   *
  * This code was originally developed as a Senior Thesis by Michael Cornwell   * This code was originally developed as a Senior Thesis by Michael Cornwell
  * at the Concurrent Systems Laboratory (now part of the Storage Systems   * at the Concurrent Systems Laboratory (now part of the Storage Systems
Line 49  struct scsi_print_options Line 49  struct scsi_print_options
   bool smart_short_selftest, smart_short_cap_selftest;    bool smart_short_selftest, smart_short_cap_selftest;
   bool smart_extend_selftest, smart_extend_cap_selftest;    bool smart_extend_selftest, smart_extend_cap_selftest;
   bool smart_selftest_abort;    bool smart_selftest_abort;
     bool smart_selftest_force; // Ignore already running test
   
   bool sasphy, sasphy_reset;    bool sasphy, sasphy_reset;
     
     bool get_wce, get_rcd;
     short int set_wce, set_rcd;  // disable(-1), enable(1) cache
   
   scsi_print_options()    scsi_print_options()
     : drive_info(false),      : drive_info(false),
Line 66  struct scsi_print_options Line 70  struct scsi_print_options
       smart_short_selftest(false), smart_short_cap_selftest(false),        smart_short_selftest(false), smart_short_cap_selftest(false),
       smart_extend_selftest(false), smart_extend_cap_selftest(false),        smart_extend_selftest(false), smart_extend_cap_selftest(false),
       smart_selftest_abort(false),        smart_selftest_abort(false),
      sasphy(false), sasphy_reset(false)      smart_selftest_force(false),
       sasphy(false), sasphy_reset(false),
       get_wce(false), get_rcd(false),
       set_wce(0), set_rcd(0)
     { }      { }
 };  };
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>