chiark / gitweb /
[PATCH] libsysfs 0.4.0 patch
[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 dprintf(format, arg...) \
25         log_message(LOG_DEBUG, "%s: " format, __FUNCTION__ , ## arg)
26
27 #define MAX_NAME_LEN    72
28 #define OFFSET (2 * sizeof(unsigned int))
29
30 /*
31  * MAX_SERIAL_LEN: the maximum length of the serial number, including
32  * added prefixes such as vendor and product (model) strings.
33  */
34 #define MAX_SERIAL_LEN  128
35
36 /*
37  * MAX_BUFFER_LEN: maximum buffer size and line length used while reading
38  * the config file.
39  */
40 #define MAX_BUFFER_LEN  256
41
42 static inline char *sysfs_get_attr(struct sysfs_class_device *dev,
43                                     const char *attr)
44 {
45         struct dlist *attributes = NULL;
46
47         attributes = sysfs_get_classdev_attributes(dev);
48
49         if (attributes == NULL)
50                 return NULL;
51
52         return sysfs_get_value_from_attributes(attributes, attr);
53 }
54
55 extern int scsi_get_serial (struct sysfs_class_device *scsi_dev,
56                             const char *devname, int page_code, char *serial,
57                             int len);
58 extern void log_message (int level, const char *format, ...)
59         __attribute__ ((format (printf, 2, 3)));
60
61 #ifdef __KLIBC__
62 #define makedev(major, minor)  ((major) << 8) | (minor)
63 #endif
64
65 #ifndef u8
66 typedef unsigned char u8;
67 #endif