From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vyacheslav Dubeyko Subject: [PATCH v3 0/3] hfsplus: implement ACLs support Date: Sun, 03 Mar 2013 19:28:35 +0400 Message-ID: <1362324515.29435.38.camel@slavad-ubuntu-12.04> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: Hin-Tak Leung To: linux-fsdevel@vger.kernel.org, Andrew Morton , Christoph Hellwig , Al Viro Return-path: Received: from oproxy5-pub.bluehost.com ([67.222.38.55]:48008 "HELO oproxy5-pub.bluehost.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1753294Ab3CCP2j (ORCPT ); Sun, 3 Mar 2013 10:28:39 -0500 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: Hi, This patchset implements ACLs support in hfsplus driver. v2->v3 * Fix errors in dprint_hexdump() macro. * Correct format on %zd for size_t in dprint() calls. v1->v2 * Add several dprint() messages. * Change hardcoded function names on __func__ macro. * Fix coding style errors. Mac OS X supports NFSv4 ACLs. It keeps its in the form of specially named xattr (com.apple.system.Security). So, this patchset makes conversion between NFSv4 and POSIX ACLs. With the best regards, Vyacheslav Dubeyko. --- fs/hfsplus/Makefile | 2 +- fs/hfsplus/acl.c | 1491 +++++++++++++++++++++++++++++++++++++++++++ fs/hfsplus/acl.h | 90 +++ fs/hfsplus/dir.c | 2 + fs/hfsplus/hfsplus_fs.h | 14 +- fs/hfsplus/hfsplus_raw.h | 26 + fs/hfsplus/inode.c | 9 + fs/hfsplus/xattr.c | 20 +- fs/hfsplus/xattr.h | 32 +- fs/hfsplus/xattr_security.c | 13 + 10 files changed, 1671 insertions(+), 28 deletions(-) -- 1.7.9.5