From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751248AbdCQPaa convert rfc822-to-8bit (ORCPT ); Fri, 17 Mar 2017 11:30:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42450 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751010AbdCQPa2 (ORCPT ); Fri, 17 Mar 2017 11:30:28 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 27C5AC05B1EB Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx08.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=dhowells@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 27C5AC05B1EB Organization: Red Hat UK Ltd. Registered Address: Red Hat UK Ltd, Amberley Place, 107-111 Peascod Street, Windsor, Berkshire, SI4 1TE, United Kingdom. Registered in England and Wales under Company Registration No. 3798903 From: David Howells To: torvalds@linux-foundation.org cc: dhowells@redhat.com, linux-afs@lists.infradead.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] AFS fixes MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <10393.1489764571.1@warthog.procyon.org.uk> Content-Transfer-Encoding: 8BIT Date: Fri, 17 Mar 2017 15:29:31 +0000 Message-ID: <10394.1489764571@warthog.procyon.org.uk> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Fri, 17 Mar 2017 15:29:34 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, Could you pull these fixes to the AFS filesystem in the kernel please? They fix a variety of bugs. These include some issues fixed for consistency with other AFS implementations: (*) Handle AFS mode bits better. (*) Use the client mtime rather than the server mtime in the protocol. (*) Handle the server returning more or less data than was requested in a FetchData call. (*) Distinguish mountpoints from symlinks based on the mode bits rather than preemptively reading every symlink to find out what it actually represents. One other notable change for the user is that files are now flushed on close analogously with other network filesystems. Thanks, David --- The following changes since commit 69eea5a4ab9c705496e912b55a9d312325de19e6: Merge branch 'for-linus' of git://git.kernel.dk/linux-block (2017-03-15 16:54:58 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs.git tags/afs-20170316 for you to fetch changes up to c5051c7bc777dffa5661569dec5997f432b9a34a: afs: Don't wait for page writeback with the page lock held (2017-03-16 16:29:30 +0000) ---------------------------------------------------------------- kAFS fixes ---------------------------------------------------------------- Andreea-Cristina Bernat (2): afs: inode: Replace rcu_assign_pointer() with RCU_INIT_POINTER() afs: security: Replace rcu_assign_pointer() with RCU_INIT_POINTER() David Howells (20): afs: Fix missing put_page() afs: Fix page overput in afs_fill_page() afs: Handle better the server returning excess or short data afs: Kill struct afs_read::pg_offset afs: Handle a short write to an AFS page afs: Flush outstanding writes when an fd is closed afs: Distinguish mountpoints from symlinks by file mode alone afs: Fix AFS read bug afs: Make struct afs_read::remain 64-bit afs: Use a bvec rather than a kvec in afs_send_pages() afs: Fix the maths in afs_fs_store_data() afs: Invalid op ID should abort with RXGEN_OPCODE afs: Better abort and net error handling afs: Don't set PG_error on local EINTR or ENOMEM when filling a page afs: Fix page leak in afs_write_begin() afs: Fix afs_kill_pages() afs: Fix an off-by-one error in afs_send_pages() afs: Fix abort on signal while waiting for call completion afs: ->writepage() shouldn't call clear_page_dirty_for_io() afs: Don't wait for page writeback with the page lock held Marc Dionne (4): afs: Populate group ID from vnode status afs: Adjust mode bits processing afs: Deal with an empty callback array afs: Populate and use client modification time Tina Ruchandani (2): afs: Migrate vlocation fields to 64-bit afs: Prevent callback expiry timer overflow fs/afs/callback.c | 7 +-- fs/afs/cmservice.c | 11 ++-- fs/afs/file.c | 20 +++++-- fs/afs/fsclient.c | 77 +++++++++++++++++---------- fs/afs/inode.c | 42 ++++++++------- fs/afs/internal.h | 23 +++++---- fs/afs/misc.c | 2 + fs/afs/mntpt.c | 53 ------------------- fs/afs/rxrpc.c | 149 ++++++++++++++++++++++++++++++----------------------- fs/afs/security.c | 9 +++- fs/afs/server.c | 6 +-- fs/afs/vlocation.c | 16 +++--- fs/afs/write.c | 76 +++++++++++++++++++-------- 13 files changed, 269 insertions(+), 222 deletions(-)