Linux NFS development
 help / color / mirror / Atom feed
 messages from 2023-10-11 14:44:20 to 2023-10-18 17:41:48 UTC [more...]

[PATCH RFC 0/9] fs: multigrain timestamps (redux)
 2023-10-18 17:41 UTC  (5+ messages)
` [PATCH RFC 1/9] fs: switch timespec64 fields in inode to discrete integers
` [PATCH RFC 2/9] timekeeping: new interfaces for multigrain timestamp handing
` [PATCH RFC 3/9] timekeeping: add new debugfs file to count multigrain timestamps
` [PATCH RFC 4/9] fs: add infrastructure for "

[PATCH 0/5] Support more filesystems with FAN_REPORT_FID
 2023-10-18 17:19 UTC  (18+ messages)
` [PATCH 1/5] fanotify: limit reporting of event with non-decodeable file handles
` [PATCH 2/5] exportfs: add helpers to check if filesystem can encode/decode "
` [PATCH 3/5] exportfs: make ->encode_fh() a mandatory method for NFS export
` [PATCH 4/5] exportfs: define FILEID_INO64_GEN* file handle types
` [PATCH 5/5] exportfs: support encoding non-decodeable file handles by default

bad info in NFS context
 2023-10-18 15:31 UTC  (6+ messages)

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

[PATCH 0/2] NFSv4 READDIR d_type fixup
 2023-10-18 14:33 UTC  (8+ messages)
` [PATCH 1/2] NFSv4: Always ask for type with READDIR
` [PATCH 2/2] NFSv4: Allow per-mount tuning of READDIR attrs

split up ->kill_sb
 2023-10-17 19:50 UTC  (9+ messages)
` [PATCH 03/19] fs: release anon dev_t in deactivate_locked_super

[RFC PATCH 00/53] netfs, afs, cifs: Delegate high-level I/O to netfslib
 2023-10-17 10:42 UTC  (11+ messages)
` [RFC PATCH 01/53] netfs: Add a procfile to list in-progress requests
` [RFC PATCH 02/53] netfs: Track the fpos above which the server has no data
` [RFC PATCH 03/53] netfs: Note nonblockingness in the netfs_io_request struct
` [RFC PATCH 04/53] netfs: Allow the netfs to make the io (sub)request alloc larger
` [RFC PATCH 05/53] netfs: Add a ->free_subrequest() op

[PATCH -next v3 0/2] sunrpc: Fix W=1 compiler warnings
 2023-10-17  6:35 UTC  (6+ messages)
` [PATCH -next v3 1/2] sunrpc: Wrap read accesses to rpc_task.tk_pid
` [PATCH -next v3 2/2] sunrpc: Use no_printk() in dfprintk*() dummies

[PATCH] nfsd: lock_rename() needs both directories to live on the same fs
 2023-10-16 20:32 UTC  (4+ messages)

bpftrace script to monitor tasks that are stuck in NFSv4 exception loops
 2023-10-16 20:24 UTC  (2+ messages)

[PATCH v2 0/3] nfs-utils: gssd support for KRB5_AP_ERR_BAD_INTEGRITY
 2023-10-16 16:15 UTC  (2+ messages)

Zapytanie ofertowe
 2023-10-16  7:30 UTC 

NFSv4.2: READ_PLUS - when safe to use?
 2023-10-14 13:08 UTC 

pynfs update
 2023-10-13 20:30 UTC 

[PATCH v3 00/25] security: Move IMA and EVM to the LSM infrastructure
 2023-10-13 19:45 UTC  (57+ messages)
` [PATCH v3 02/25] ima: Align ima_post_path_mknod() definition with "
` [PATCH v3 04/25] ima: Align ima_file_mprotect() "
` [PATCH v3 05/25] ima: Align ima_inode_setxattr() "
` [PATCH v3 07/25] ima: Align ima_post_read_file() "
` [PATCH v3 08/25] evm: Align evm_inode_post_setattr() "
` [PATCH v3 09/25] evm: Align evm_inode_setxattr() "
` [PATCH v3 10/25] evm: Align evm_inode_post_setxattr() "
` [PATCH v3 11/25] security: Align inode_setattr hook definition with EVM
` [PATCH v3 12/25] security: Introduce inode_post_setattr hook
` [PATCH v3 13/25] security: Introduce inode_post_removexattr hook
` [PATCH v3 14/25] security: Introduce file_post_open hook
` [PATCH v3 15/25] security: Introduce file_pre_free_security hook
` [PATCH v3 16/25] security: Introduce path_post_mknod hook
` [PATCH v3 17/25] security: Introduce inode_post_create_tmpfile hook
` [PATCH v3 18/25] security: Introduce inode_post_set_acl hook
` [PATCH v3 20/25] security: Introduce key_post_create_or_update hook
` [PATCH v3 21/25] ima: Move to LSM infrastructure
` [PATCH v3 25/25] integrity: Switch from rbtree to LSM-managed blob for integrity_iint_cache

[PATCH 1/1] NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO
 2023-10-13 15:04 UTC 

[PATCH] svcrdma: Fix tracepoint printk format
 2023-10-13 13:21 UTC  (3+ messages)

[PATCH] NFSD: Remove a layering violation when encoding lock_denied
 2023-10-13 13:20 UTC  (3+ messages)

[PATCH] nfsd: new Kconfig option for legacy client tracking
 2023-10-13 13:21 UTC  (2+ messages)

[PATCH net-XXX] SUNRPC: Add an IS_ERR() check back to where it was
 2023-10-13 12:34 UTC  (2+ messages)

[PATCH v1] svcrdma: Drop connection after an RDMA Read error
 2023-10-13 12:01 UTC  (3+ messages)

[PATCH] NFSD: Clean up errors in nfs4xdr.c
 2023-10-13 10:50 UTC  (2+ messages)

[PATCH] NFS: Clean up errors in nfs_page.h
 2023-10-13 10:50 UTC  (2+ messages)

[PATCH] NFS: Clean up errors in nfstrace.h
 2023-10-13  6:49 UTC 

[PATCH] NFSD: Clean up errors in nfssvc.c
 2023-10-13  6:18 UTC 

[PATCH] nfsd: Clean up errors in export.h
 2023-10-13  6:12 UTC 

[PATCH] nfsd: Clean up errors in nfs4idmap.c
 2023-10-13  6:07 UTC 

[PATCH] nfsd: Clean up errors in filecache.c
 2023-10-13  6:00 UTC 

[PATCH] NFSD: Clean up errors in lockd.c
 2023-10-13  5:55 UTC 

[PATCH] NFS: Clean up errors in nfs_fs_sb.h
 2023-10-13  3:23 UTC 

[PATCH RFC] nfsd: new Kconfig option for legacy client tracking
 2023-10-12 23:22 UTC  (2+ messages)

Bakeathon 2pm EST talks
 2023-10-12 17:10 UTC 

[PATCH] netconfig: remove tcp6, udp6 on --disable-ipv6
 2023-10-12 14:28 UTC 

PROBLEM: Pointer dereference error may occur in "alloc_init_deleg" function
 2023-10-12 12:44 UTC  (4+ messages)
  ` [PATCH v1] NFSD: clean up alloc_init_deleg()

[PATCH] sunrpc: Use no_printk() in dfprintk*() dummies
 2023-10-12 10:59 UTC  (5+ messages)

[PATCH -next v2] sunrpc: Use no_printk() in dfprintk*() dummies
 2023-10-12 10:17 UTC  (3+ messages)

[PATCH] xfs: reinstate the old i_version counter as STATX_CHANGE_COOKIE
 2023-10-12  4:47 UTC  (6+ messages)

Bakeathon 2pm EST talks
 2023-10-11 17:56 UTC 

missing patches for v6.6-rc
 2023-10-11 14:43 UTC  (2+ messages)
` [PATCH] NFS: Fix potential oops in nfs_inode_remove_request()


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