Lines Matching defs:vol
81 ntfs_volume *vol;
102 if (ntfs_umount(logfile->vol, 0))
115 * @vol: volume to unmount.
124 static void device_err_exit(ntfs_volume *vol, ntfs_inode *ni,
134 if (ntfs_umount(vol, 0))
196 ntfs_volume *vol;
203 vol = ntfs_mount(filename, NTFS_MNT_RDONLY);
204 if (!vol)
208 vol->vol_name ? vol->vol_name : "<NO_NAME>",
209 vol->major_ver, vol->minor_ver, filename);
210 if (ntfs_version_is_supported(vol))
211 device_err_exit(vol, NULL, NULL,
213 ni = ntfs_inode_open(vol, FILE_LogFile);
215 device_err_exit(vol, NULL, NULL, "Failed to "
220 device_err_exit(vol, ni, NULL, "Failed to open "
225 device_err_exit(vol, ni, na, "$LogFile has zero "
229 logfile->vol = vol;