chiark / gitweb /
[PATCH] remove mknod callout
[elogind.git] / namedev.h
1 /*
2  * namedev.h
3  *
4  * Userspace devfs
5  *
6  * Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
7  *
8  *      This program is free software; you can redistribute it and/or modify it
9  *      under the terms of the GNU General Public License as published by the
10  *      Free Software Foundation version 2 of the License.
11  * 
12  *      This program is distributed in the hope that it will be useful, but
13  *      WITHOUT ANY WARRANTY; without even the implied warranty of
14  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  *      General Public License for more details.
16  * 
17  *      You should have received a copy of the GNU General Public License along
18  *      with this program; if not, write to the Free Software Foundation, Inc.,
19  *      675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #ifndef NAMEDEV_H
24 #define NAMEDEV_H
25
26 #include "list.h"
27
28 struct sysfs_class_device;
29
30 /* namedev config files */
31 #define COMMENT_CHARACTER               '#'
32 #define NAMEDEV_CONFIG_ROOT             "/home/greg/src/udev/"
33 #define NAMEDEV_CONFIG_PERMISSION_FILE  "namedev.permissions"
34 #define NAMEDEV_CONFIG_FILE             "namedev.config"
35
36 enum config_type {
37         KERNEL_NAME     = 0,    /* must be 0 to let memset() default to this value */
38         LABEL           = 1,
39         NUMBER          = 2,
40         TOPOLOGY        = 3,
41         REPLACE         = 4,
42 };
43
44 #define BUS_SIZE        30
45 #define FILE_SIZE       50
46 #define VALUE_SIZE      100
47 #define ID_SIZE         50
48 #define PLACE_SIZE      50
49
50
51 struct config_device {
52         struct list_head node;
53
54         enum config_type type;
55
56         char bus[BUS_SIZE];
57         char sysfs_file[FILE_SIZE];
58         char sysfs_value[VALUE_SIZE];
59         char id[ID_SIZE];
60         char place[PLACE_SIZE];
61         char kernel_name[NAME_SIZE];
62         
63         /* what to set the device to */
64         struct device_attr attr;
65 };
66
67
68 extern int namedev_init(void);
69 extern int namedev_name_device(struct sysfs_class_device *class_dev, struct device_attr *attr);
70
71 #endif