Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751556AbbEYAHR (ORCPT ); Sun, 24 May 2015 20:07:17 -0400 Received: from mail-qk0-f177.google.com ([209.85.220.177]:33904 "EHLO mail-qk0-f177.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751353AbbEYAHM (ORCPT ); Sun, 24 May 2015 20:07:12 -0400 Date: Sun, 24 May 2015 20:07:09 -0400 From: Tejun Heo To: Vladimir Zapolskiy Cc: Greg Kroah-Hartman , linux-kernel@vger.kernel.org Subject: Re: [PATCH] fs: sysfs: don't pass count == 0 to bin file readers Message-ID: <20150525000709.GE7099@htj.duckdns.org> References: <1432243276-27733-1-git-send-email-vz@mleia.com> <20150521221423.GK4914@htj.duckdns.org> <555E647F.7070907@mleia.com> <20150521232615.GA7099@htj.duckdns.org> <555E7C7B.1080706@mleia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <555E7C7B.1080706@mleia.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1342 Lines: 39 On Fri, May 22, 2015 at 03:46:51AM +0300, Vladimir Zapolskiy wrote: > Hello Tejun, > > On 22.05.2015 02:26, Tejun Heo wrote: > > Hello, Vladimir. > > > > On Fri, May 22, 2015 at 02:04:31AM +0300, Vladimir Zapolskiy wrote: > >> But "!size" is a special case, > >> > >> if (!count || pos >= size) > >> return 0; > >> > >> seems to be incorrect in case of !size ===> (pos >= size) == true. > > > > Hmmm... Why is that wrong tho? If size is zero and pos is zero, > > there's nothing to do, no? > > positive size value in the context means the fixed exact length of the > file and if size == 0, then it represents some undefined size, often > dynamic in runtime. So, if size is zero and pos is zero it stands for > reading from the beginning of the file as many bytes as allowed by > battr->read() realization. This special case is utilized by quite many > bin_attribute users, probably more than half of them set .size to 0. Ah, right, I completely forgot about that. Please feel free to add Acked-by: Tejun Heo to the original patch. Thanks for the patience. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/