Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754802AbcJEKSx (ORCPT ); Wed, 5 Oct 2016 06:18:53 -0400 Received: from mail-wm0-f67.google.com ([74.125.82.67]:34673 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753085AbcJEKSw (ORCPT ); Wed, 5 Oct 2016 06:18:52 -0400 Date: Wed, 5 Oct 2016 12:18:46 +0200 From: Miklos Szeredi To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: [GIT PULL] fuse update for 4.9 Message-ID: <20161005101846.GB31239@veci.piliscsaba.szeredi.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.7.0 (2016-08-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1449 Lines: 46 Hi Linus, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git for-linus This adds POSIX ACL permission checking to the fuse kernel module. In addition there are minor bug fixes as well as cleanups. Thanks, Miklos --- Al Viro (1): fuse_ioctl_copy_user(): don't open-code copy_page_{to,from}_iter() Miklos Szeredi (10): fuse: listxattr: verify xattr list fuse: invalidate dir dentry after chmod fuse: fix killing s[ug]id in setattr fuse: handle killpriv in userspace fs fuse: don't use ->d_time fuse: use timespec64 fuse: get rid of fc->flags fuse: don't use fuse_ioctl_copy_user() helper fuse: remove duplicate cs->offset assignment fuse: limit xattr returned size Seth Forshee (2): fuse: Use generic xattr ops fuse: Add posix ACL support --- fs/fuse/Kconfig | 1 + fs/fuse/Makefile | 2 +- fs/fuse/acl.c | 99 ++++++++++++++++ fs/fuse/dev.c | 1 - fs/fuse/dir.c | 288 +++++++++++++++++----------------------------- fs/fuse/file.c | 68 +++-------- fs/fuse/fuse_i.h | 40 +++++-- fs/fuse/inode.c | 28 +++-- fs/fuse/xattr.c | 211 +++++++++++++++++++++++++++++++++ include/uapi/linux/fuse.h | 10 +- 10 files changed, 491 insertions(+), 257 deletions(-) create mode 100644 fs/fuse/acl.c create mode 100644 fs/fuse/xattr.c