Skip to content
Snippets Groups Projects
Select Git revision
  • a522417f6a4ee4cbc27a0299d163311f6074b1b2
  • master default
  • trunk
  • RELEASE_6_5_DRIVEDB
  • RELEASE_6_6_DRIVEDB
  • RELEASE_7_0_DRIVEDB
  • RELEASE_7_2_DRIVEDB
  • RELEASE_7_3_DRIVEDB
  • RELEASE_6_0_DRIVEDB
  • RELEASE_6_1_DRIVEDB
  • RELEASE_6_2_DRIVEDB
  • RELEASE_6_3_DRIVEDB
  • RELEASE_6_4_DRIVEDB
  • tags/RELEASE_7_4
  • tags/RELEASE_7_3
  • RELEASE_5_41_DRIVEDB
  • RELEASE_5_42_DRIVEDB
  • RELEASE_5_43_DRIVEDB
  • tags/RELEASE_7_2
  • tags/RELEASE_7_1
  • tags/RELEASE_7_0
  • RELEASE_5_40_DRIVEDB
22 results

scsicmds.h

Blame
  • smartd.h 2.15 KiB
    /*
     * smartd.h
     *
     * Home page of code is: http://smartmontools.sourceforge.net
     *
     * Copyright (C) 2002 Bruce Allen <smartmontools-support@lists.sourceforge.net>
     * Copyright (C) 2000 Michael Cornwell <cornwell@acm.org>
     *
     * 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
     * the Free Software Foundation; either version 2, or (at your option)
     * any later version.
     *
     * You should have received a copy of the GNU General Public License
     * (for example COPYING); if not, write to the Free
     * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
     *
     * This code was originally developed as a Senior Thesis by Michael Cornwell
     * at the Concurrent Systems Laboratory (now part of the Storage Systems
     * Research Center), Jack Baskin School of Engineering, University of
     * California, Santa Cruz. http://ssrc.soe.ucsc.edu/
     *
     */
    
    #ifndef CVSID7
    #define CVSID7 "$Id: smartd.h,v 1.8 2002/10/25 14:15:05 ballen4705 Exp $\n"
    #endif
    
    // Configuration file
    #define CONFIGFILE "/etc/smartd.conf"
    #define MAXLINELEN 126
    #define MAXENTRIES 64
    
    /* Defines for command line options */ 
    #define DEBUGMODE 		'X'
    #define EMAILNOTIFICATION	'e'
    #define PRINTCOPYLEFT           'V'
    
    /* Boolean Values */
    #define TRUE 0x01
    #define FALSE 0x00
    
    #define MAXATADEVICES	12
    #define MAXSCSIDEVICES	26
    
    /* Global Variables for command line options */
    unsigned char debugmode               = FALSE;
    unsigned char emailnotification       = FALSE;
    unsigned char printcopyleft           = FALSE;
    
    /* Number of ata device to scan */
    int numatadevices;
    int numscsidevices;
    
    
    /* how often SMART is checks in seconds */
    int checktime = 1800;
    
    typedef struct atadevices_s {
    	int fd;
    	char devicename[14];
    	int selftest;
    	struct hd_driveid drive;
    	struct ata_smart_values smartval;
    	struct ata_smart_thresholds smartthres;
    }  atadevices_t;
    
    typedef struct scsidevices_s {
    	int fd;
    	char devicename[14];
    	unsigned char SmartPageSupported;
    	unsigned char TempPageSupported;
    	unsigned char Temperature;
    } scsidevices_t;
    
    typedef struct configfile_s {
      char name[MAXLINELEN+2];
      int tryata;
      int tryscsi;
      int lineno;
    } cfgfile;