search for: file_dev

Displaying 1 result from an estimated 1 matches for "file_dev".

Did you mean: file&dev
2009 Nov 14
2
[PATCH] btrfs-progs: Check mount status of multidevice filesystems
...; + } + + return 0; +} + /* * returns 1 if the device was mounted, < 0 on error or 0 if everything - * is safe to continue. TODO, this should also scan multi-device filesystems + * is safe to continue. */ int check_mounted(char *file) { struct mntent *mnt; - struct stat st_buf; - dev_t file_dev = 0; - dev_t file_rdev = 0; - ino_t file_ino = 0; FILE *f; int ret = 0; - if ((f = setmntent ("/proc/mounts", "r")) == NULL) - return -errno; + int loop_fd; + struct loop_info loopinfo; - if (stat(file, &st_buf) < 0) { + if ((f = setmntent ("/proc/mounts&quo...