X-Authentication-Warning: delorie.com: mail set sender to djgpp-workers-bounces using -f X-Recipient: djgpp-workers AT delorie DOT com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; bh=zL7Jf67vRRkFSHklDJK31Qjn5+UOuB06tC7SOXw1k1o=; b=FmU+2IC7kXN7r/smr2xR7WenCgVyd8Y4ZmwMjGZd1xGbiyOjmSCy89ff/Qa7dfYq5s mOzNlSzjoAhxnj8gHcNrDcrrrqIQbvYE7bUmdptTOvj4RK5oaxZpGWwVqEuuRBii6jrK 4DJJCCzHLnGuh2FfmURquh4XU/XXWTUZ/ruMU4MBbTWMs+WU30dpAdq+qlyGB1svt5O1 8y4CjqF4KlIlvSuNTUOs5jLvHtTXMq5oYkXNrxhoCcqc8vdEiAsT/jvO/Nln6MCXtTvu H7xAhYbGloEdC6c5ETfg3tYwicEiW3rYhYiZyimpQ1AWJC/W9HexlVqWsXDWL+4lZUs6 sbhQ== MIME-Version: 1.0 In-Reply-To: <83haxvxegr.fsf@gnu.org> References: <201203111650 DOT 53344 DOT juan DOT guerrero AT gmx DOT de> <83haxvxegr DOT fsf AT gnu DOT org> Date: Thu, 29 Mar 2012 13:03:11 +0300 Message-ID: Subject: Re: Value stored in cache_blksize if _is_remote_drive fails From: Ozkan Sezer To: djgpp-workers AT delorie DOT com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id q2TAWECK011770 Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, Mar 11, 2012 at 6:57 PM, Eli Zaretskii wrote: >> From: Juan Manuel Guerrero >> Date: Sun, 11 Mar 2012 16:50:53 +0100 >> >>   if (!cache_blksize[d]) >>   { >>     if (_is_remote_drive(d))  /* A = 0, B = 1, C = 2,  etc. */ >>     { >>       /* Default remote drives to 4K block size, to improve performance. >>        * >>        * Also the size returned by statfs() may not be correct. Testing >>        * against files shared by Samba 2.0.10 on Linux kernel 2.2.19 >>        * returned a 32K block size, even though the ext2 filesystem >>        * holding the share share had a 4K block size. */ >>       cache_blksize[d] = 4096; >>     } >>     else >>     { >>       /* No entry => retrieve cluster size */ >>       if (statfs(path, &sbuf) != 0) >>       { >>         /* Failed, pass error through */ >>         return -1; >>       } >> >>       cache_blksize[d] = sbuf.f_bsize; >>     } >>   } >> -- code end -- >> >> >> If _is_remote_drive returns with a value different from 0 then cache_blksize[d] >> is set to 4096.  The issue is that _is_remote_drive may return with 1 if d is a >> remote drive but also it may return with -1 if the function fails for drive >> number d.  In both cases cache_blksize[d] = 4096.  The question arises if this >> is a bug or a feature?  Drive "d" does not exist but a valid block size is >> assigned to cache_blksize[d] at the same time the errno (= ENODEV) set by >> _is_remote_drive may get lost in future operations. > > There's not enough context in what you show to make up my mind whether > this is a bug or a feature.  Specifically, it's not clear why it would > be better to do something different when _is_remote_drive fails. > > Perhaps you could show a couple of use cases where this does some > harm. > > Thanks. What is the status of this issue? -- O.S.