Linux CIFS filesystem development
 help / color / mirror / Atom feed
 messages from 2025-09-10 19:05:26 to 2025-09-23 15:47:17 UTC [more...]

[PATCH net-next v3 00/15] net: introduce QUIC infrastructure and core subcomponents
 2025-09-23 15:47 UTC  (26+ messages)
` [PATCH net-next v3 01/15] net: define IPPROTO_QUIC and SOL_QUIC constants
` [PATCH net-next v3 02/15] net: build socket infrastructure for QUIC protocol
` [PATCH net-next v3 03/15] quic: provide common utilities and data structures
` [PATCH net-next v3 04/15] quic: provide family ops for address and protocol
` [PATCH net-next v3 05/15] quic: provide quic.h header files for kernel and userspace
` [PATCH net-next v3 06/15] quic: add stream management
` [PATCH net-next v3 07/15] quic: add connection id management
` [PATCH net-next v3 08/15] quic: add path management
` [PATCH net-next v3 09/15] quic: add congestion control
` [PATCH net-next v3 10/15] quic: add packet number space
` [PATCH net-next v3 11/15] quic: add crypto key derivation and installation
` [PATCH net-next v3 12/15] quic: add crypto packet encryption and decryption
` [PATCH net-next v3 13/15] quic: add timer management
` [PATCH net-next v3 14/15] quic: add frame encoder and decoder base
` [PATCH net-next v3 15/15] quic: add packet builder and parser base

[PATCH 1/2] cifs: client: force multichannel=off when max_channels=1
 2025-09-23 14:21 UTC  (17+ messages)
` [PATCH 2/2] cifs: client: allow changing multichannel mount options on remount

[PATCH] smb: client: fix wrong index reference in smb2_compound_op()
 2025-09-23  8:16 UTC 

Fix for xfstest generic/637 (dir lease not updating for newly created file on same client)
 2025-09-23  3:25 UTC  (2+ messages)

[PATCH 6.16 012/149] smb: server: let smb_direct_writev() respect SMB_DIRECT_MAX_SEND_SGES
 2025-09-22 19:30 UTC  (12+ messages)
` [PATCH 6.16 048/149] ksmbd: smbdirect: verify remaining_data_length respects max_fragmented_recv_size
` [PATCH 6.16 126/149] smb: smbdirect: introduce smbdirect_socket.recv_io.expected
` [PATCH 6.16 127/149] smb: client: make use of smbdirect_socket->recv_io.expected
` [PATCH 6.16 128/149] smb: smbdirect: introduce struct smbdirect_recv_io
` [PATCH 6.16 129/149] smb: client: make use of "
` [PATCH 6.16 130/149] smb: client: let recv_done verify data_offset, data_length and remaining_data_length
` [PATCH 6.16 131/149] smb: client: fix filename matching of deferred files
` [PATCH 6.16 132/149] smb: client: use disable[_delayed]_work_sync in smbdirect.c
` [PATCH 6.16 133/149] smb: client: let smbd_destroy() call disable_work_sync(&info->post_send_credits_work)
` [PATCH 6.16 136/149] smb: client: fix file open check in __cifs_unlink()
` [PATCH 6.16 137/149] smb: client: fix smbdirect_recv_io leak in smbd_negotiate() error path

[PATCH 6.12 035/105] ksmbd: smbdirect: verify remaining_data_length respects max_fragmented_recv_size
 2025-09-22 19:30 UTC  (4+ messages)
` [PATCH 6.12 080/105] smb: client: fix filename matching of deferred files
` [PATCH 6.12 081/105] smb: client: let smbd_destroy() call disable_work_sync(&info->post_send_credits_work)
` [PATCH 6.12 083/105] smb: client: fix smbdirect_recv_io leak in smbd_negotiate() error path

[PATCH 6.6 27/70] ksmbd: smbdirect: verify remaining_data_length respects max_fragmented_recv_size
 2025-09-22 19:29 UTC  (2+ messages)
` [PATCH 6.6 56/70] smb: client: fix smbdirect_recv_io leak in smbd_negotiate() error path

[PATCH 6.1 21/61] ksmbd: smbdirect: verify remaining_data_length respects max_fragmented_recv_size
 2025-09-22 19:29 UTC  (2+ messages)
` [PATCH 6.1 45/61] smb: client: fix smbdirect_recv_io leak in smbd_negotiate() error path

smbdirect/RDMA patches for 6.18
 2025-09-22 18:18 UTC  (2+ messages)

[PATCH 5.15.y] ksmbd: smbdirect: verify remaining_data_length respects max_fragmented_recv_size
 2025-09-22  2:19 UTC 

[PATCH 00/18] smbdirect/client/server: improved error handling and other small improvements
 2025-09-21 21:45 UTC  (19+ messages)
` [PATCH 01/18] smb: smbdirect/client: introduce SMBDIRECT_SOCKET_ERROR
` [PATCH 02/18] smb: smbdirect: let smbdirect_socket_init() initialize all [delayed_]work_structs as disabled
` [PATCH 03/18] smb: smbdirect: introduce smbdirect_socket.first_error
` [PATCH 04/18] smb: client: let smbd_disconnect_rdma_connection() set SMBDIRECT_SOCKET_ERROR
` [PATCH 05/18] smb: client: fill in smbdirect_socket.first_error on error
` [PATCH 06/18] smb: client: let smbd_disconnect_rdma_connection() disable all work but disconnect_work
` [PATCH 07/18] smb: client: let smbd_{destroy,disconnect_rdma_{work,connection}}() wake up all wait queues
` [PATCH 08/18] smb: client: make consitent use of spin_lock_irq{save,restore}() in smbdirect.c
` [PATCH 09/18] smb: client: allocate smbdirect workqueue at the beginning of _smbd_get_connection()
` [PATCH 10/18] smb: client: defer calling ib_alloc_pd() after we are connected
` [PATCH 11/18] smb: client: let smbd_post_send_iter() call ib_dma_map_single() for the header first
` [PATCH 12/18] smb: server: let smb_direct_disconnect_rdma_connection() set SMBDIRECT_SOCKET_ERROR
` [PATCH 13/18] smb: server: fill in smbdirect_socket.first_error on error
` [PATCH 14/18] smb: server: let smb_direct_disconnect_rdma_connection() disable all work but disconnect_work
` [PATCH 15/18] smb: server: let {free_transport,smb_direct_disconnect_rdma_{work,connection}}() wake up all wait queues
` [PATCH 16/18] smb: server: make consitent use of spin_lock_irq{save,restore}() in transport_rdma.c
` [PATCH 17/18] smb: server: make use of ib_alloc_cq_any() instead of ib_alloc_cq()
` [PATCH 18/18] smb: server: let smb_direct_flush_send_list() invalidate a remote key first

[PATCH v3 5/6] VFS: rename kern_path_locked() and related functions
 2025-09-21 10:22 UTC  (2+ messages)

[PATCH 00/35] cifs: Fix SMB rmdir() and unlink() against Windows SMB servers
 2025-09-20 18:08 UTC  (27+ messages)
` [PATCH 08/35] cifs: Improve SMB2+ stat() to work also for paths in DELETE_PENDING state
` [PATCH 26/35] cifs: Add SMB2+ support into cifs_rename_pending_delete() function
` [PATCH 27/35] cifs: Move SMB1 usage of CIFSPOSIXDelFile() from inode.c to cifssmb.c
` [PATCH 28/35] cifs: Fix smb2_unlink() to fail on directory

[PATCH] smb: client: handle unlink(2) of files open by different clients
 2025-09-20 17:02 UTC  (3+ messages)

[GIT PULL] smb3 client fixes
 2025-09-19 23:14 UTC  (2+ messages)

[PATCH 1/6] smb: client: ensure open_cached_dir_by_dentry() only returns valid cfid
 2025-09-19 20:49 UTC  (12+ messages)
` [PATCH 2/6] smb: client: short-circuit in open_cached_dir_by_dentry() if !dentry
` [PATCH 3/6] smb: client: short-circuit negative lookups when parent dir is fully cached
` [PATCH 4/6] smb: client: update cfid->last_access_time in open_cached_dir_by_dentry()
` [PATCH 5/6] smb: client: remove pointless cfid->has_lease check
` [PATCH 6/6] smb: client: remove unused fid_lock

[PATCHES] finish_no_open() calling conventions change
 2025-09-19  9:16 UTC  (12+ messages)
` [PATCH 1/9] allow finish_no_open(file, ERR_PTR(-E...))
  ` [PATCH 2/9] 9p: simplify v9fs_vfs_atomic_open()
  ` [PATCH 3/9] 9p: simplify v9fs_vfs_atomic_open_dotl()
  ` [PATCH 4/9] simplify cifs_atomic_open()
  ` [PATCH 5/9] simplify vboxsf_dir_atomic_open()
  ` [PATCH 6/9] simplify nfs_atomic_open_v23()
  ` [PATCH 7/9] simplify fuse_atomic_open()
  ` [PATCH 8/9] simplify gfs2_atomic_open()
  ` [PATCH 9/9] slightly simplify nfs_atomic_open()

Outsourced welding teams
 2025-09-19  8:00 UTC 

[PATCH v3] smb: server: fix IRD/ORD negotiation with the client
 2025-09-19  0:41 UTC  (2+ messages)

[bug report] smb: client: batch SRV_COPYCHUNK entries to cut roundtrips
 2025-09-18 20:59 UTC  (3+ messages)

[PATCH] smb: client: fix smbdirect_recv_io leak in smbd_negotiate() error path
 2025-09-18 20:36 UTC 

[PATCH v2] smb: client: fix sending the iwrap custom IRD/ORD negotiation messages
 2025-09-18 15:25 UTC 

[PATCH v2] smb: client: fix filename matching of deferred files
 2025-09-18 12:09 UTC  (4+ messages)

[GIT PULL] ksmbd server fixes
 2025-09-18  3:38 UTC  (2+ messages)

[PATCH v2] smb: client: let recv_done verify data length and remaining_data_length
 2025-09-18  1:28 UTC 

[PATCH] smb: client: fix filename matching of deferred files
 2025-09-17 17:08 UTC  (3+ messages)

[PATCH 6.16 068/189] smb: client: fix compound alignment with encryption
 2025-09-17 12:32 UTC  (2+ messages)
` [PATCH 6.16 069/189] smb: client: fix data loss due to broken rename(2)

[PATCH] smb: client: batch SRV_COPYCHUNK entries to cut roundtrips
 2025-09-17  0:06 UTC 

[PATCH] cifs: Fix oops due to uninitialised variable
 2025-09-16 17:29 UTC  (2+ messages)

[RFC PATCH 0/2] smb: client: support directory change tracking
 2025-09-16 13:34 UTC  (3+ messages)
` [RFC PATCH 1/2] smb: client: export SMB2_notify_init for "
` [RFC PATCH 2/2] smb: client: add directory change tracking via SMB2 Change Notify

[RFC] ksmbd: Deprecate MD5 support and enhance AES-GCM for SMB 3.1.1 compliance
 2025-09-16  9:47 UTC  (3+ messages)

[PATCH] ksmbd: Fix race condition in RPC handle list access
 2025-09-16  1:11 UTC  (2+ messages)

[PATCH 0/2] smb: client: transport: avoid reconnects triggered by pending task work
 2025-09-15 15:19 UTC  (3+ messages)
` [PATCH 1/2] "
` [PATCH 2/2] smb: client: transport: minor indentation style fix

[PATCH v4 000/142] smb: smbdirect/client/server: make use of common structures
 2025-09-13  0:03 UTC  (6+ messages)
` replace for-next-next... "

[PATCH v4] cifs: fix pagecache leak when do writepages
 2025-09-12 19:41 UTC  (3+ messages)

[GIT PULL] smb3 client fixes
 2025-09-12 17:49 UTC  (2+ messages)

[PATCH] smb: client: skip cifs_lookup on mkdir
 2025-09-12 12:29 UTC  (7+ messages)

[RFC PATCH 0/2] cifs: Organise declarations in the cifs client header files
 2025-09-12 12:28 UTC  (4+ messages)
` [RFC PATCH 2/2] cifs: Clean up declarations

[PATCH v3] cifs: fix pagecache leak when do writepages
 2025-09-12  1:12 UTC  (15+ messages)

multichannel with global encryption fails to open extra channel
 2025-09-11  4:32 UTC 


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