]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: raw disk I/O: lock floppys as well
authorCorinna Vinschen <corinna@vinschen.de>
Fri, 24 Apr 2020 14:22:26 +0000 (16:22 +0200)
committerCorinna Vinschen <corinna@vinschen.de>
Fri, 24 Apr 2020 14:22:26 +0000 (16:22 +0200)
The workaround to access the full disk required since Vista
and described in http://support.microsoft.com/kb/942448
(NOT ACCESSIBLE at the time of writing this commit message)
is required on floppy drives as well.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
winsup/cygwin/fhandler_floppy.cc

index 778d6ef981477f9316ace91c40db9dcf33c9a3a5..2768a9cbf2d85aecab44fbc6f16c2c249c0a5200 100644 (file)
@@ -161,7 +161,8 @@ fhandler_dev_floppy::lock_partition (DWORD to_write)
      If there's some file handle open on one of the affected partitions,
      this fails, but that's how it works...
      The high partition major numbers don't have a partition 0. */
-  if (get_major () >= DEV_SD_HIGHPART_START || get_minor () % 16 != 0)
+  if (get_major () == DEV_FLOPPY_MAJOR
+      || get_major () >= DEV_SD_HIGHPART_START || get_minor () % 16 != 0)
     {
       if (!DeviceIoControl (get_handle (), FSCTL_LOCK_VOLUME,
                           NULL, 0, NULL, 0, &bytes_read, NULL))
@@ -302,7 +303,6 @@ fhandler_dev_floppy::write_file (const void *buf, DWORD to_write,
      See http://support.microsoft.com/kb/942448 for details.
      What we do here is to lock the affected partition(s) and retry. */
   if (*err == ERROR_ACCESS_DENIED
-      && get_major () != DEV_FLOPPY_MAJOR
       && get_major () != DEV_CDROM_MAJOR
       && (get_flags () & O_ACCMODE) != O_RDONLY
       && lock_partition (to_write))
This page took 0.031598 seconds and 5 git commands to generate.