From df6206aa56a3ef34f8444fee7c777593eddedbbe Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Mon, 2 Nov 2015 12:08:25 +0100 Subject: Add support for Parallels Desktop FS (prlfs) * mount.h (enum fs_info_type): Add prlfs (Parallels Desktop FS). (class fs_info): Add has_broken_fnoi flag. Implement prlfs FS flag. * mount.cc (fs_info::update): Handle PrlFS. Fill new has_broken_fnoi flag with life. (fs_names): Add prlfs. * globals.cc (ro_u_prlfs): Define. * path.h (path_conv::has_broken_fnoi): New method. * path.cc (symlink_info::check): Call file_get_fnoi utilizing new has_broken_fnoi filesystem flag. * fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Ditto. * new-features.xml (ov-new2.3): Document Parallels Desktop FS support. Signed-off-by: Corinna Vinschen --- winsup/cygwin/path.h | 1 + 1 file changed, 1 insertion(+) (limited to 'winsup/cygwin/path.h') diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index 5c464dc9a..f8cb37a8b 100644 --- a/winsup/cygwin/path.h +++ b/winsup/cygwin/path.h @@ -169,6 +169,7 @@ class path_conv int has_buggy_reopen () const {return fs.has_buggy_reopen ();} int has_buggy_fileid_dirinfo () const {return fs.has_buggy_fileid_dirinfo ();} int has_buggy_basic_info () const {return fs.has_buggy_basic_info ();} + int has_broken_fnoi () const {return fs.has_broken_fnoi ();} int binmode () const { if (path_flags & PATH_BINARY) -- cgit v1.2.3