const char *node = NULL;
int export = 0;
int fd = -1;
+ int cnt;
int rc = 0;
udev = udev_new();
goto exit;
}
- if (is_mounted(node)) {
- fd = open(node, O_RDONLY|O_NONBLOCK);
- } else {
- int cnt;
+ srand((unsigned int)getpid());
+ for (cnt = 20; cnt > 0; cnt--) {
struct timespec duration;
- srand((unsigned int)getpid());
- for (cnt = 40; cnt > 0; cnt--) {
- fd = open(node, O_RDONLY|O_NONBLOCK|O_EXCL);
- if (fd >= 0 || errno != EBUSY)
- break;
- duration.tv_sec = 0;
- duration.tv_nsec = (100 * 1000 * 1000) + (rand() % 100 * 1000 * 1000);
- nanosleep(&duration, NULL);
- }
+ fd = open(node, O_RDONLY|O_NONBLOCK|(is_mounted(node) ? 0 : O_EXCL));
+ if (fd >= 0 || errno != EBUSY)
+ break;
+ duration.tv_sec = 0;
+ duration.tv_nsec = (100 * 1000 * 1000) + (rand() % 100 * 1000 * 1000);
+ nanosleep(&duration, NULL);
}
if (fd < 0) {
info(udev, "unable to open '%s'\n", node);