From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vyacheslav Dubeyko Subject: Re: [PATCH v2 4/4] hfsplus: add support of manipulation by attributes file Date: Mon, 01 Oct 2012 15:52:50 +0400 Message-ID: <1349092370.2105.9.camel@slavad-ubuntu-11> References: <1349090673.63017.YahooMailClassic@web29406.mail.ird.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: linux-fsdevel@vger.kernel.org, Andrew Morton , Christoph Hellwig , Al Viro To: htl10@users.sourceforge.net Return-path: Received: from oproxy7-pub.bluehost.com ([67.222.55.9]:52209 "HELO oproxy7-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1752333Ab2JALxB (ORCPT ); Mon, 1 Oct 2012 07:53:01 -0400 In-Reply-To: <1349090673.63017.YahooMailClassic@web29406.mail.ird.yahoo.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Hi Hin-Tak, On Mon, 2012-10-01 at 12:24 +0100, Hin-Tak Leung wrote: > --- On Sun, 23/9/12, Vyacheslav Dubeyko wrote: > > > Hi, > > > > This patch adds support of manipulation by attributes file. > > > > With the best regards, > > Vyacheslav Dubeyko. > > --- > > From: Vyacheslav Dubeyko > > Subject: [PATCH v2 4/4] hfsplus: add support of manipulation > > by attributes file > > > > This patch adds support of manipulation by attributes file. > > > > Reported-by: Hin-Tak Leung > > Signed-off-by: Vyacheslav Dubeyko > > Tested-by: Hin-Tak Leung > Thank you. > Tried these 4 patches -together with the 5th which acted on code reviews and feedback. Works okay and fixed the two minor problems I had work v 1 (dubious warnings and interactions with selinux's use of extended atttributes). > > There is a small problem though - this set of patches changes the file modes of some of the files, as seen below - just scroll further down... The other patches also touch the file modes where files are modified. > > Hin-Tak > > > --- > > fs/hfsplus/bfind.c > > | 79 > > ++++++++++++++++++++++++++++++++++++++++------- > > fs/hfsplus/bnode.c | 6 > > ++-- > > fs/hfsplus/brec.c > > | 23 ++++++++------ > > fs/hfsplus/btree.c | 8 > > +++++ > > fs/hfsplus/catalog.c | 36 > > ++++++++++++--------- > > fs/hfsplus/dir.c | > > 6 +++- > > fs/hfsplus/extents.c | 4 +-- > > fs/hfsplus/hfsplus_fs.h | 41 > > +++++++++++++++++++++--- > > fs/hfsplus/inode.c > > | 13 ++++++++ > > fs/hfsplus/super.c > > | 36 +++++++++++++++++++-- > > fs/hfsplus/unicode.c | 7 +++-- > > 11 files changed, 210 insertions(+), 49 deletions(-) > > mode change 100644 => 100755 fs/hfsplus/bfind.c > > mode change 100644 => 100755 fs/hfsplus/bnode.c > > mode change 100644 => 100755 fs/hfsplus/brec.c > > mode change 100644 => 100755 fs/hfsplus/btree.c > > mode change 100644 => 100755 fs/hfsplus/catalog.c > > mode change 100644 => 100755 fs/hfsplus/dir.c > > mode change 100644 => 100755 fs/hfsplus/extents.c > > mode change 100644 => 100755 fs/hfsplus/hfsplus_fs.h > > mode change 100644 => 100755 fs/hfsplus/inode.c > > mode change 100644 => 100755 fs/hfsplus/super.c > > mode change 100644 => 100755 fs/hfsplus/unicode.c > > Here - the file modes should not be touched... > You are right. This is my mistake that was made during path set preparation. As I can understand, these file mode changes were not adopted during adding to the -mm tree. With the best regards, Vyacheslav Dubeyko.