blob: 1f8d1004b4a67a0af5790b2e6cdc95a7d2c2f083 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
* farmprint.h
*
* Home page of code is: https://www.smartmontools.org
*
* Copyright (C) 2021 - 2023 Seagate Technology LLC and/or its Affiliates
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef FARMPRINT_H
#define FARMPRINT_H
#include "farmcmds.h"
/*
* Prints parsed FARM log (GP Log 0xA6) data from Seagate
* drives already present in ataFarmLog structure
*
* @param farmLog: Constant reference to parsed farm log (const ataFarmLog&)
*/
void ataPrintFarmLog(const ataFarmLog& farmLog);
/*
* Prints parsed FARM log (SCSI log page 0x3D, sub-page 0x3) data from Seagate
* drives already present in scsiFarmLog structure
*
* @param farmLog: Constant reference to parsed farm log (const scsiFarmLog&)
*/
void scsiPrintFarmLog(const scsiFarmLog& farmLog);
#endif
|