diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2015-11-02 12:08:25 +0100 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2015-11-02 12:08:25 +0100 |
commit | df6206aa56a3ef34f8444fee7c777593eddedbbe (patch) | |
tree | 4101958a42fe16a4ca570ff32c520d254d66ab8e /winsup/cygwin/path.h | |
parent | 7ac60f6cebdeafb091c9ce846c1f1eace8aeb4c5 (diff) | |
download | cygnal-df6206aa56a3ef34f8444fee7c777593eddedbbe.tar.gz cygnal-df6206aa56a3ef34f8444fee7c777593eddedbbe.tar.bz2 cygnal-df6206aa56a3ef34f8444fee7c777593eddedbbe.zip |
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 <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r-- | winsup/cygwin/path.h | 1 |
1 files changed, 1 insertions, 0 deletions
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) |