chiark / gitweb /
b5312b89888d02ef78fbff275b056f45da23bdbb
[elogind.git] / extras / scsi_id / scsi_id.h
1 /*
2  * scsi_id.h
3  *
4  * General defines and such for scsi_id
5  *
6  * Copyright (C) IBM Corp. 2003
7  *
8  *  This library is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU Lesser General Public License as
10  *  published by the Free Software Foundation; either version 2.1 of the
11  *  License, or (at your option) any later version.
12  *
13  *  This library is distributed in the hope that it will be useful, but
14  *  WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  *  Lesser General Public License for more details.
17  *
18  *  You should have received a copy of the GNU Lesser General Public
19  *  License along with this library; if not, write to the Free Software
20  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21  *  USA
22  */
23
24 #define MAX_NAME_LEN    72
25
26 /*
27  * MAX_ATTR_LEN: maximum length of the result of reading a sysfs
28  * attribute.
29  */
30 #define MAX_ATTR_LEN    256
31
32 /*
33  * MAX_SERIAL_LEN: the maximum length of the serial number, including
34  * added prefixes such as vendor and product (model) strings.
35  */
36 #define MAX_SERIAL_LEN  256
37
38 /*
39  * MAX_BUFFER_LEN: maximum buffer size and line length used while reading
40  * the config file.
41  */
42 #define MAX_BUFFER_LEN  256
43
44 extern int scsi_get_serial (struct sysfs_device *dev_scsi, const char *devname,
45                             int page_code, char *serial, int len);
46
47 /*
48  * Page code values. 
49  */
50 enum page_code {
51                 PAGE_83_PRE_SPC3 = -0x83,
52                 PAGE_UNSPECIFIED = 0x00,
53                 PAGE_80          = 0x80,
54                 PAGE_83          = 0x83,
55 };