| udev_rules.h | | udev_rules.h | |
| | | | |
| skipping to change at line 60 | | skipping to change at line 60 | |
| struct key_pair keys[PAIRS_MAX]; | | struct key_pair keys[PAIRS_MAX]; | |
| }; | | }; | |
| | | | |
| enum import_type { | | enum import_type { | |
| IMPORT_UNSET, | | IMPORT_UNSET, | |
| IMPORT_PROGRAM, | | IMPORT_PROGRAM, | |
| IMPORT_FILE, | | IMPORT_FILE, | |
| IMPORT_PARENT, | | IMPORT_PARENT, | |
| }; | | }; | |
| | | | |
|
| | | enum escape_type { | |
| | | ESCAPE_UNSET, | |
| | | ESCAPE_NONE, | |
| | | ESCAPE_REPLACE, | |
| | | }; | |
| | | | |
| struct udev_rule { | | struct udev_rule { | |
| struct key action; | | struct key action; | |
| struct key devpath; | | struct key devpath; | |
| struct key kernel; | | struct key kernel; | |
| struct key subsystem; | | struct key subsystem; | |
| struct key driver; | | struct key driver; | |
| struct key_pairs attr; | | struct key_pairs attr; | |
| | | | |
| struct key kernels; | | struct key kernels; | |
| struct key subsystems; | | struct key subsystems; | |
| | | | |
| skipping to change at line 91 | | skipping to change at line 97 | |
| struct key wait_for_sysfs; | | struct key wait_for_sysfs; | |
| struct key label; | | struct key label; | |
| struct key goto_label; | | struct key goto_label; | |
| | | | |
| struct key name; | | struct key name; | |
| struct key symlink; | | struct key symlink; | |
| struct key owner; | | struct key owner; | |
| struct key group; | | struct key group; | |
| mode_t mode; | | mode_t mode; | |
| enum key_operation mode_operation; | | enum key_operation mode_operation; | |
|
| | | enum escape_type string_escape; | |
| | | | |
| unsigned int link_priority; | | unsigned int link_priority; | |
| unsigned int partitions; | | unsigned int partitions; | |
| unsigned int last_rule:1, | | unsigned int last_rule:1, | |
| ignore_device:1, | | ignore_device:1, | |
| ignore_remove:1; | | ignore_remove:1; | |
| | | | |
| size_t bufsize; | | size_t bufsize; | |
| char buf[]; | | char buf[]; | |
| }; | | }; | |
| | | | |
End of changes. 2 change blocks. |
| 0 lines changed or deleted | | 7 lines changed or added | |
|