linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2017-05-04 13:45:22 to 2017-05-10 16:19:23 UTC [more...]

[RFC][PATCH 00/14] VFS: Introduce superblock configuration context
 2017-05-10 16:19 UTC  (6+ messages)
` [PATCH 01/14] Provide a function to create a NUL-terminated string from unterminated data
` [PATCH 02/14] Clean up whitespace in fs/namespace.c
` [PATCH 03/14] VFS: Make get_mnt_ns() return the namespace
` [PATCH 04/14] VFS: Make get_filesystem() return the affected filesystem
` [PATCH 06/14] VFS: Introduce a superblock configuration context

[PATCH v4 00/27] fs: introduce new writeback error reporting and convert existing API as a wrapper around it
 2017-05-10 16:18 UTC  (43+ messages)
` [PATCH v4 01/27] fs: remove unneeded forward definition of mm_struct from fs.h
` [PATCH v4 02/27] mm: drop "wait" parameter from write_one_page
` [PATCH v4 03/27] mm: fix mapping_set_error call in me_pagecache_dirty
` [PATCH v4 04/27] buffer: use mapping_set_error instead of setting the flag
` [PATCH v4 05/27] btrfs: btrfs_wait_tree_block_writeback can be void return
` [PATCH v4 06/27] fs: check for writeback errors after syncing out buffers in generic_file_fsync
` [PATCH v4 07/27] orangefs: don't call filemap_write_and_wait from fsync
` [PATCH v4 08/27] dax: set errors in mapping when writeback fails
` [PATCH v4 09/27] nilfs2: set the mapping error when calling SetPageError on writeback
` [PATCH v4 10/27] 9p: set mapping error when writeback fails in launder_page
` [PATCH v4 11/27] fuse: set mapping error in writepage_locked when it fails
` [PATCH v4 12/27] cifs: set mapping error when page writeback fails in writepage or launder_pages
` [PATCH v4 13/27] lib: add errseq_t type and infrastructure for handling it
` [PATCH v4 14/27] fs: new infrastructure for writeback error handling and reporting
` [PATCH v4 15/27] fs: retrofit old error reporting API onto new infrastructure
` [PATCH v4 16/27] fs: adapt sync_file_range to new reporting infrastructure
` [PATCH v4 17/27] mm: remove AS_EIO and AS_ENOSPC flags
` [PATCH v4 18/27] mm: don't TestClearPageError in __filemap_fdatawait_range
` [PATCH v4 19/27] buffer: set errors in mapping at the time that the error occurs
` [PATCH v4 20/27] cifs: cleanup writeback handling errors and comments
` [PATCH v4 21/27] mm: clean up error handling in write_one_page
` [PATCH v4 22/27] jbd2: don't reset error in journal_finish_inode_data_buffers
` [PATCH v4 23/27] gfs2: clean up some filemap_* calls
` [PATCH v4 24/27][RFC] nfs: convert to new errseq_t based error tracking for writeback errors
` [PATCH v4 25/27] Documentation: flesh out the section in vfs.txt on storing and reporting "
` [PATCH v4 26/27] mm: flesh out comments over mapping_set_error
` [PATCH v4 27/27] mm: clean up comments in me_pagecache_dirty

Venue change for bake-a-thon June 2017
 2017-05-10 15:52 UTC  (5+ messages)
    ` [nfsv4] "

[PATCH 3/9] VFS: Introduce a mount context
 2017-05-10 13:48 UTC  (37+ messages)
` [RFC][PATCH 0/9] VFS: Introduce "
  ` [PATCH 4/9] Implement fsopen() to prepare for a mount

Locking problems with Linux 4.9 with NFSD and `fs/iomap.c`
 2017-05-10  9:08 UTC  (4+ messages)

[PATCH] nfsd: avoid out of bounds read on array nfsd4_layout_ops
 2017-05-10  5:24 UTC  (6+ messages)

[PATCH] nfsd: Fix up the "supattr_exclcreat" attributes
 2017-05-09 20:56 UTC  (2+ messages)

[PATCH] pNFS/flexfiles: Always attempt to call layoutstats when flexfiles is enabled
 2017-05-09 20:28 UTC 

[PATCH] NFSv4: Fix an rcu lock leak
 2017-05-09 19:59 UTC  (2+ messages)

[PATCH] NFSv4.1: Work around a Linux server bug
 2017-05-09 19:58 UTC  (3+ messages)

[PATCH] nfsd: encoders mustn't use unitialized values in error cases
 2017-05-09 19:58 UTC  (3+ messages)

[PATCH] NFSv4: Fix exclusive create attributes encoding
 2017-05-09 18:30 UTC  (3+ messages)

RFC: remove function pointer casts and constify function tables
 2017-05-09 17:35 UTC  (54+ messages)
` [PATCH 01/32] sunrpc: properly type argument to kxdreproc_t
` [PATCH 02/32] sunrpc: fix encoder callback prototypes
` [PATCH 03/32] lockd: "
` [PATCH 04/32] nfs: "
` [PATCH 05/32] nfsd: "
` [PATCH 06/32] sunrpc/auth_gss: "
` [PATCH 07/32] sunrpc: properly type argument to kxdrdproc_t
` [PATCH 08/32] sunrpc: fix decoder callback prototypes
` [PATCH 09/32] sunrpc/auth_gss: "
` [PATCH 10/32] nfsd: "
` [PATCH 11/32] lockd: "
` [PATCH 12/32] nfs: "
` [PATCH 13/32] nfs: don't cast callback decode/proc/encode routines
` [PATCH 14/32] RFC: sunrpc: remove p_count
` [PATCH 15/32] sunrpc: mark all struct rpc_procinfo instances as const
` [PATCH 16/32] lockd: fix some weird indentation
` [PATCH 17/32] nfsd4: const-ify nfs_cb_version4
` [PATCH 18/32] nfsd: use named initializers in PROC()
` [PATCH 19/32] nfsd: remove the unused PROC() macro in nfs3proc.c
` [PATCH 20/32] sunrpc: properly type pc_func callbacks
` [PATCH 21/32] sunrpc: properly type pc_release callbacks
` [PATCH 22/32] sunrpc: properly type pc_decode callbacks
` [PATCH 23/32] sunrpc: properly type pc_encode callbacks
` [PATCH 24/32] sunrpc: remove kxdrproc_t
` [PATCH 25/32] nfsd4: properly type op_set_currentstateid callbacks
` [PATCH 26/32] nfsd4: properly type op_get_currentstateid callbacks
` [PATCH 27/32] nfsd4: remove nfsd4op_rsize
` [PATCH 28/32] nfsd4: properly type op_func callbacks
` [PATCH 29/32] RFC: sunrpc: remove pc_count
` [PATCH 30/32] sunrpc: mark all struct svc_procinfo instances as const
` [PATCH 31/32] sunrpc: mark all struct svc_version "
` [PATCH 32/32] nfsd4: const-ify nfsd4_ops

[xfstests PATCH v2 0/3] xfstest for updated writeback error handling
 2017-05-09 16:12 UTC  (4+ messages)
` [xfstests PATCH v2 1/3] generic: add a writeback error handling test
` [xfstests PATCH v2 2/3] ext4: allow ext4 to use $SCRATCH_LOGDEV
` [xfstests PATCH v2 3/3] btrfs: allow it "

[PATCH] lockd: fix lockd shutdown race
 2017-05-08 22:17 UTC 

[PATCH 1/1] NFS append COMMIT after synchronous COPY
 2017-05-08 22:02 UTC  (5+ messages)
      ` [PATCH v3 "

[PATCH v2 1/2] dax: prevent invalidation of mapped DAX entries
 2017-05-08 17:08 UTC  (4+ messages)
` [PATCH v2 2/2] dax: fix data corruption due to stale mmap reads

[PATCH] fs/nfs: fix covscan error: FORWARD_NULL
 2017-05-06  7:42 UTC  (2+ messages)

[PATCH] NFSv4.1: RECLAIM_COMPLETE must handle NFS4ERR_CONN_NOT_BOUND_TO_SESSION
 2017-05-05 15:59 UTC  (2+ messages)

[PATCH] mount.nfs: Restore errno after v3 mounts on ECONNREFUSED errors
 2017-05-05 15:07 UTC  (2+ messages)

[PATCH] Remove the conf_path global
 2017-05-05 15:05 UTC  (2+ messages)

Linux NFS Town Hall meeting: Tomorrow - Thur May 4
 2017-05-05 13:37 UTC  (4+ messages)

Issue with mixed short and fully qualified names with NFS4+KRB5 and libnfsidmap
 2017-05-05 11:05 UTC 

[PATCH] fs/nfs: fix covscan error: FORWARD_NULL
 2017-05-05  3:58 UTC 

Race between RPC queuing on xprt_pending and a write space notification?
 2017-05-04 23:29 UTC  (2+ messages)

NFS oops in encode_nfs4_verifier
 2017-05-04 21:05 UTC 

[RFC PATCH 0/5] Fun with the multipathing code
 2017-05-04 20:42 UTC  (14+ messages)
` [RFC PATCH 1/5] SUNRPC: Allow creation of RPC clients with multiple connections
  ` [RFC PATCH 2/5] NFS: Add a mount option to specify number of TCP connections to use

[PATCH 1/4] fs: fix data invalidation in the cleancache during direct IO
 2017-05-04  9:12 UTC  (10+ messages)
` [PATCH 1/2] dax: prevent invalidation of mapped DAX entries
  ` [PATCH 2/2] dax: fix data corruption due to stale mmap reads

[PATCH] nfs: Fix bdi handling for cloned superblocks
 2017-05-04 13:58 UTC  (2+ messages)

[PATCH 4/9] Implement fsopen() to prepare for a mount
 2017-05-04 10:40 UTC 


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).