* mount.cc (fs_info::update): Set has_buggy_reopen for Netapps as well.
This commit is contained in:
parent
74e0bcfc0f
commit
7a7a9e7179
|
@ -1,3 +1,7 @@
|
||||||
|
2011-12-12 Corinna Vinschen <vinschen@redhat.com>
|
||||||
|
|
||||||
|
* mount.cc (fs_info::update): Set has_buggy_reopen for Netapps as well.
|
||||||
|
|
||||||
2011-12-12 Corinna Vinschen <vinschen@redhat.com>
|
2011-12-12 Corinna Vinschen <vinschen@redhat.com>
|
||||||
Christopher Faylor <me.cygwin2011@cgf.cx>
|
Christopher Faylor <me.cygwin2011@cgf.cx>
|
||||||
|
|
||||||
|
|
|
@ -393,10 +393,10 @@ fs_info::update (PUNICODE_STRING upath, HANDLE in_vol)
|
||||||
away since at least some of them are not capable either. */
|
away since at least some of them are not capable either. */
|
||||||
has_dos_filenames_only (is_netapp () || is_nwfs ()
|
has_dos_filenames_only (is_netapp () || is_nwfs ()
|
||||||
|| is_ncfsd () || is_cifs ());
|
|| is_ncfsd () || is_cifs ());
|
||||||
/* NWFS does not grok re-opening a file by handle. It only
|
/* Netapp and NWFS don't grok re-opening a file by handle. They
|
||||||
supports this if the filename is non-null and the handle is
|
only support this if the filename is non-null and the handle is
|
||||||
the handle to a directory. NcFsd IR10 is supposed to be ok. */
|
the handle to a directory. NcFsd IR10 is supposed to be ok. */
|
||||||
has_buggy_reopen (is_nwfs ());
|
has_buggy_reopen (is_netapp () || is_nwfs ());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!got_fs ()
|
if (!got_fs ()
|
||||||
|
|
Loading…
Reference in New Issue