Linux NFS development
 help / color / mirror / Atom feed
 messages from 2023-12-03 12:19:15 to 2023-12-08 03:30:48 UTC [more...]

[PATCH 0/3] nfsd: fully close all files in the nfsd threads
 2023-12-08  3:27 UTC  (2+ messages)
` [PATCH 2/3] nfsd: Don't leave work of closing files to a work queue

[PATCH 0/2 v2] Move all file-close work for nfsd into nfsd threads
 2023-12-08  1:40 UTC  (34+ messages)
` [PATCH 1/2] Allow a kthread to declare that it calls task_work_run()
` [PATCH 2/2] nfsd: Don't leave work of closing files to a work queue

[PATCH nfs-utils v2 1/2] fsidd: call anonymous sockets by their name only, don't fill with NULs to 108 bytes
 2023-12-08  0:08 UTC  (3+ messages)

[PATCH 0/6] nfs-utils: handle BAD_INTEGRITY ERROR
 2023-12-07 22:27 UTC  (11+ messages)
` [PATCH 1/6] gssd: revert commit a5f3b7ccb01c
` [PATCH 2/6] gssd: revert commit 513630d720bd
` [PATCH 3/6] gssd: switch to using rpc_gss_seccreate()
` [PATCH 4/6] gssd: handle KRB5_AP_ERR_BAD_INTEGRITY for machine credentials
` [PATCH 5/6] gssd: handle KRB5_AP_ERR_BAD_INTEGRITY for user credentials
` [PATCH 6/6] configure: check for rpc_gss_seccreate

[PATCH v3 00/59] netfs, afs, 9p, cifs: Delegate high-level I/O to netfslib
 2023-12-07 21:57 UTC  (63+ messages)
` [PATCH v3 01/59] netfs, fscache: Move fs/fscache/* into fs/netfs/
` [PATCH v3 02/59] netfs, fscache: Combine fscache with netfs
` [PATCH v3 03/59] netfs, fscache: Remove ->begin_cache_operation
` [PATCH v3 04/59] netfs, fscache: Move /proc/fs/fscache to /proc/fs/netfs and put in a symlink
` [PATCH v3 05/59] netfs: Move pinning-for-writeback from fscache to netfs
` [PATCH v3 06/59] netfs: Add a procfile to list in-progress requests
` [PATCH v3 07/59] netfs: Allow the netfs to make the io (sub)request alloc larger
` [PATCH v3 08/59] netfs: Add a ->free_subrequest() op
` [PATCH v3 09/59] afs: Don't use folio->private to record partial modification
` [PATCH v3 10/59] netfs: Provide invalidate_folio and release_folio calls
` [PATCH v3 11/59] netfs: Implement unbuffered/DIO vs buffered I/O locking
` [PATCH v3 12/59] netfs: Add iov_iters to (sub)requests to describe various buffers
` [PATCH v3 13/59] netfs: Add support for DIO buffering
` [PATCH v3 14/59] netfs: Provide tools to create a buffer in an xarray
` [PATCH v3 15/59] netfs: Add bounce buffering support
` [PATCH v3 16/59] netfs: Add func to calculate pagecount/size-limited span of an iterator
` [PATCH v3 17/59] netfs: Limit subrequest by size or number of segments
` [PATCH v3 18/59] netfs: Export netfs_put_subrequest() and some tracepoints
` [PATCH v3 19/59] netfs: Extend the netfs_io_*request structs to handle writes
` [PATCH v3 20/59] netfs: Add a hook to allow tell the netfs to update its i_size
` [PATCH v3 21/59] netfs: Make netfs_put_request() handle a NULL pointer
` [PATCH v3 22/59] netfs: Make the refcounting of netfs_begin_read() easier to use
` [PATCH v3 23/59] netfs: Prep to use folio->private for write grouping and streaming write
` [PATCH v3 24/59] netfs: Dispatch write requests to process a writeback slice
` [PATCH v3 25/59] netfs: Provide func to copy data to pagecache for buffered write
` [PATCH v3 26/59] netfs: Make netfs_read_folio() handle streaming-write pages
` [PATCH v3 27/59] netfs: Allocate multipage folios in the writepath
` [PATCH v3 28/59] netfs: Implement support for unbuffered/DIO read
` [PATCH v3 29/59] netfs: Implement unbuffered/DIO write support
` [PATCH v3 30/59] netfs: Implement buffered write API
` [PATCH v3 31/59] netfs: Allow buffered shared-writeable mmap through netfs_page_mkwrite()
` [PATCH v3 32/59] netfs: Provide netfs_file_read_iter()
` [PATCH v3 33/59] netfs, cachefiles: Pass upper bound length to allow expansion
` [PATCH v3 34/59] netfs: Provide a writepages implementation
` [PATCH v3 35/59] netfs: Provide minimum blocksize parameter
` [PATCH v3 36/59] netfs: Make netfs_skip_folio_read() take account of blocksize
` [PATCH v3 37/59] netfs: Perform content encryption
` [PATCH v3 38/59] netfs: Decrypt encrypted content
` [PATCH v3 39/59] netfs: Support decryption on ubuffered/DIO read
` [PATCH v3 40/59] netfs: Support encryption on Unbuffered/DIO write
` [PATCH v3 41/59] netfs: Provide a launder_folio implementation
` [PATCH v3 42/59] netfs: Implement a write-through caching option
` [PATCH v3 43/59] netfs: Rearrange netfs_io_subrequest to put request pointer first
` [PATCH v3 44/59] netfs: Optimise away reads above the point at which there can be no data
` [PATCH v3 45/59] afs: Use the netfs write helpers
` [PATCH v3 46/59] 9p: Use netfslib read/write_iter
` [PATCH v3 47/59] cifs: Replace cifs_readdata with a wrapper around netfs_io_subrequest
` [PATCH v3 48/59] cifs: Share server EOF pos with netfslib
` [PATCH v3 49/59] cifs: Set zero_point in the copy_file_range() and remap_file_range()
` [PATCH v3 50/59] cifs: Replace cifs_writedata with a wrapper around netfs_io_subrequest
` [PATCH v3 51/59] cifs: Use more fields from netfs_io_subrequest
` [PATCH v3 52/59] cifs: Make wait_mtu_credits take size_t args
` [PATCH v3 53/59] cifs: Implement netfslib hooks
` [PATCH v3 54/59] cifs: Move cifs_loose_read_iter() and cifs_file_write_iter() to file.c
` [PATCH v3 55/59] cifs: Cut over to using netfslib
` [PATCH v3 56/59] cifs: Remove some code that's no longer used, part 1
` [PATCH v3 57/59] cifs: Remove some code that's no longer used, part 2
` [PATCH v3 58/59] cifs: Remove some code that's no longer used, part 3
` [PATCH v3 59/59] netfs: Eliminate PG_fscache by setting folio->private and marking dirty

[PATCH] autoconf: don't build nfsdcltrack by default
 2023-12-07 20:14 UTC  (3+ messages)

[PATCH RFC 0/5] Possible changes to nfs-utils junction support
 2023-12-07 19:36 UTC  (2+ messages)

spurious backchannel -ETIMEDOUT and reset on v6.7-rc1
 2023-12-07 15:48 UTC  (2+ messages)

[PATCH 1/2] gssapi: revert commit f5b6e6fdb1e6
 2023-12-07 14:26 UTC  (4+ messages)
` [PATCH 2/2] gssapi: fix rpc_gss_seccreate passed in cred

[PATCH v2] reexport/{fsidd,reexport}.c: Re-add missing includes
 2023-12-06 22:24 UTC  (7+ messages)
` [PATCH v2] support/backend_sqlite.c: Add missing <sys/syscall.h>

[PATCH 1/1] reexport: add a missing header include
 2023-12-06 21:32 UTC 

[PATCH v5 23/23] integrity: Switch from rbtree to LSM-managed blob for integrity_iint_cache
 2023-12-06 16:50 UTC  (13+ messages)

changes to struct rpc_gss_sec
 2023-12-06 15:47 UTC  (8+ messages)

[PATCH v2] NFSv4: Always ask for type with READDIR
 2023-12-06 13:10 UTC 

[RESEND PATCH] NFSv4: Always ask for type with READDIR
 2023-12-06  5:46 UTC  (2+ messages)

[PATCH 1/2] blocklayoutdriver: Fix reference leak of pnfs_device_node
 2023-12-06  5:44 UTC  (3+ messages)
` [PATCH 2/2] pnfs/blocklayout: Don't add zero-length pnfs_block_dev

Linux NFSv4 client: open() AlternateDataStreams via ioctl()?
 2023-12-06  3:33 UTC 

[PATCH v5 0/3] convert write_threads, write_version and write_ports to netlink commands
 2023-12-05 20:37 UTC  (5+ messages)
` [PATCH v5 2/3] NFSD: convert write_version to netlink command
` [PATCH v5 3/3] NFSD: convert write_ports "

[PATCH 1/1] reexport/{fsidd,reexport}.c: Add missing <unistd.h>
 2023-12-05 20:15 UTC 

[PATCH] conf_init_file: Fixed warn_unused_result error
 2023-12-05 19:29 UTC 

[PATCH RFC 0/1] Use parent's objective cred in nfs_access_login_time()
 2023-12-05 14:10 UTC  (2+ messages)
` [PATCH RFC 1/1] NFS: "

[PATCH v2 0/4] SUNRPC: Various RCU fixes
 2023-12-05 10:51 UTC  (6+ messages)
` [PATCH v2 1/4] SUNRPC: Clean up unused variable in rpc_xprt_probe_trunked()
` [PATCH v2 2/4] SUNRPC: Remove unused function rpc_clnt_xprt_switch_put()
` [PATCH v2 3/4] SUNRPC: Create a helper function for accessing the rpc_clnt's xprt_switch
` [PATCH v2 4/4] SUNRPC: Fix a suspicious RCU usage warning

[PATCH v2 0/4] sysctl: Remove sentinel elements from fs dir
 2023-12-05  5:44 UTC  (3+ messages)

kernel v6.6.3: nfsd hangs in nfsd_break_deleg_cb
 2023-12-05  1:05 UTC  (5+ messages)

PATH_MAX/max symlink length in the NFSv4/v4.1 protocol?
 2023-12-04 23:31 UTC  (2+ messages)

[PATCH] NFSv4, NFSD: move enum nfs_cb_opnum4 to include/linux/nfs4.h
 2023-12-04 22:05 UTC  (4+ messages)

Performance drop due to alloc_workqueue() misuse and recent change
 2023-12-04 18:07 UTC  (2+ messages)

[PATCH 0/4] SUNRPC: Various RCU fixes
 2023-12-04 17:00 UTC  (8+ messages)
` [PATCH 2/4] SUNRPC: Remove unused function rpc_clnt_xprt_switch_put()
` [PATCH 3/4] SUNRPC: Create a helper function for accessing the rpc_clnt's xprt_switch
` [PATCH 4/4] SUNRPC: Fix a suspicious RCU usage warning

[PATCH v1 00/21] svc_rdma_read_info clean ups
 2023-12-04 15:00 UTC  (23+ messages)
` [PATCH v1 01/21] svcrdma: Reduce size of struct svc_rdma_rw_ctxt
` [PATCH v1 02/21] svcrdma: Acquire the svcxprt_rdma pointer from the CQ context
` [PATCH v1 03/21] svcrdma: Explicitly pass the transport into Write chunk I/O paths
` [PATCH v1 04/21] svcrdma: Explicitly pass the transport into Read "
` [PATCH v1 05/21] svcrdma: Explicitly pass the transport to svc_rdma_post_chunk_ctxt()
` [PATCH v1 06/21] svcrdma: Pass a pointer to the transport to svc_rdma_cc_release()
` [PATCH v1 07/21] svcrdma: Remove the svc_rdma_chunk_ctxt::cc_rdma field
` [PATCH v1 08/21] svcrdma: Move struct svc_rdma_chunk_ctxt to svc_rdma.h
` [PATCH v1 09/21] svcrdma: Start moving fields out of struct svc_rdma_read_info
` [PATCH v1 10/21] svcrdma: Move svc_rdma_read_info::ri_pageno to struct svc_rdma_recv_ctxt
` [PATCH v1 11/21] svcrdma: Move read_info::ri_pageoff into "
` [PATCH v1 12/21] svcrdma: Update synopsis of svc_rdma_build_read_segment()
` [PATCH v1 13/21] svcrdma: Update synopsis of svc_rdma_build_read_chunk()
` [PATCH v1 14/21] svcrdma: Update synopsis of svc_rdma_read_chunk_range()
` [PATCH v1 15/21] svcrdma: Update the synopsis of svc_rdma_read_data_item()
` [PATCH v1 16/21] svcrdma: Update synopsis of svc_rdma_copy_inline_range()
` [PATCH v1 17/21] svcrdma: Update synopsis of svc_rdma_read_multiple_chunks()
` [PATCH v1 18/21] svcrdma: Update the synopsis of svc_rdma_read_call_chunk()
` [PATCH v1 19/21] svcrdma: Update the synopsis of svc_rdma_read_special()
` [PATCH v1 20/21] svcrdma: Remove struct svc_rdma_read_info
` [PATCH v1 21/21] svcrdma: Move the svc_rdma_cc_init() call

[PATCH] nfsd: remove unnecessary NULL check
 2023-12-04 14:33 UTC  (3+ messages)

[PATCH/RFC] core/nfsd: allow kernel threads to use task_work
 2023-12-04  1:30 UTC  (7+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox