mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-28 06:35:34 +07:00
2b41e68a08
This makes the udev operation completely lockless by storing a file for every node in /dev/.udevdb/* This solved the problem with deadlocking concurrent udev processes waiting for each other to release the file lock under heavy load.
37 lines
525 B
Bash
37 lines
525 B
Bash
#!/bin/bash
|
|
|
|
RULES=ignore_test.rules
|
|
CONFIG=ignore_test.conf
|
|
|
|
export UDEV_TEST=yes
|
|
export SYSFS_PATH=$PWD/sys/
|
|
export UDEV_CONFIG_FILE=$PWD/$CONFIG
|
|
|
|
cat > $RULES << EOF
|
|
KERNEL="ttyUSB0", NAME=""
|
|
EOF
|
|
|
|
cat > $CONFIG << EOF
|
|
udev_root="$PWD/udev/"
|
|
udev_db="$PWD/udev/.udevdb"
|
|
udev_rules="$PWD/$RULES"
|
|
udev_permissions="$PWD/udev.permissions"
|
|
udev_log="true"
|
|
EOF
|
|
|
|
mkdir udev
|
|
|
|
export DEVPATH=class/tty/ttyUSB0
|
|
export ACTION=add
|
|
|
|
../udev tty
|
|
ls -l udev
|
|
|
|
export ACTION=remove
|
|
../udev tty
|
|
ls -l udev
|
|
|
|
rm $RULES
|
|
rm $CONFIG
|
|
rm -rf udev
|