X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Date: Fri, 21 Nov 2008 14:48:45 +0100 From: Corinna Vinschen To: cygwin AT cygwin DOT com Subject: Re: Cygwin 1.7: O_DIRECT read from raw devices returns EOF Message-ID: <20081121134845.GG30831@calimero.vinschen.de> Reply-To: cygwin AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com References: <1L3Vag-0fDPUm0 AT fwd05 DOT aul DOT t-online DOT de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1L3Vag-0fDPUm0@fwd05.aul.t-online.de> User-Agent: Mutt/1.5.16 (2007-06-09) Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com On Nov 21 13:58, Christian Franke wrote: > void > fhandler_dev_floppy::raw_read (void *ptr, size_t& ulen) > { > ... > DWORD bytes_to_read = 0; > ... > if (devbuf) > { /* !O_DIRECT ... */ } > else > { > _off64_t current_position = get_current_position (); > if (current_position + bytes_to_read >= drive_size) > bytes_to_read = drive_size - current_position; > if (bytes_to_read && !read_file (p, len, &bytes_read, &ret)) > ... > > In the O_DIRECT case, bytes_to_read is always 0. Indeed. Thanks for catching this bug! I've checked in a patch. Would you mind to give it a whirl? Thanks again, Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Project Co-Leader cygwin AT cygwin DOT com Red Hat -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/