From: Paulo Alcantara <pc@manguebit.org>
To: Linus Torvalds <torvalds@linux-foundation.org>,
Steve French <smfrench@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>, CIFS <linux-cifs@vger.kernel.org>
Subject: Re: [GIT PULL] smb3 client fixes
Date: Tue, 14 Apr 2026 00:13:27 -0300 [thread overview]
Message-ID: <ab9457074b5852e73e84f0209bb58279@manguebit.org> (raw)
In-Reply-To: <CAHk-=wgerpUKCDhdzKH0FEdLyfhj3doc9t+kO9Yb6rSsTp7hdQ@mail.gmail.com>
Linus Torvalds <torvalds@linux-foundation.org> writes:
> On Mon, 13 Apr 2026 at 15:06, Steve French <smfrench@gmail.com> wrote:
>>
>> git://git.samba.org/sfrench/cifs-2.6.git tags/v7.1-rc1-part1-smb3-client-fixes
>
> I've pulled this, but then looking at the dcache changes I noted the
> big forest of BUG_ON() which really isn't valid. Error handling is a
> thing - BUG_ON() is *not* error handling.
>
> And then looking at verifying the length of the name - one of the
> things checked for in that forest of BUG_ON() calls - the call site is
> an unreadable mess.
>
> You have this:
>
> size_t size = CIFS_TMPNAME_LEN + 1;
>
> fifty lines earlier, and then you do
>
> d_mark_tmpfile_name(file, &QSTR_LEN(name, size - 1));
>
> which is not just illegible, it's also illogical. That "size" is just
> voodoo. The string is generated by
>
> scnprintf(name, size,
> CIFS_TMPNAME_PREFIX "%0*x",
> CIFS_TMPNAME_COUNTER_LEN,
> atomic_inc_return(&cifs_tmpcounter));
>
> which uses several other magic #define's, and yes, I'm sure it all
> adds up to CIFS_TMPNAME_LEN in the end, but this is basically all just
> line noise.
>
> PLEASE write this legibly instead, and make that new dentry helper
> actually do error handling, not BUG_ON().
>
> Because this kind of mess is simply not acceptable.
>
> I don't even understand why you use a variable for an insane constant.
> The code *could* have done something like this:
>
> namelen = scnprintf(name, size,
> CIFS_TMPNAME_PREFIX "%0*x",
> CIFS_TMPNAME_COUNTER_LEN,
> atomic_inc_return(&cifs_tmpcounter));
>
> and it would all have actually made sense. But stating the final size
> like that really doesn't - not without at least a big comment on how
> those random things are interrelated.
>
> So this is in my tree now, but I expect it to be cleaned up and made sensible.
ACK.
Do the below changes look any better? I wasn't sure what exact error
values to return from d_mark_tmpfile_name(), hopefully it's fine.
diff --git a/fs/dcache.c b/fs/dcache.c
index df11bbba0342..151f83f0a0e5 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -3196,15 +3196,20 @@ void d_mark_tmpfile(struct file *file, struct inode *inode)
}
EXPORT_SYMBOL(d_mark_tmpfile);
-void d_mark_tmpfile_name(struct file *file, const struct qstr *name)
+int d_mark_tmpfile_name(struct file *file, const struct qstr *name)
{
struct dentry *dentry = file->f_path.dentry;
char *dname = dentry->d_shortname.string;
- BUG_ON(dname_external(dentry));
- BUG_ON(d_really_is_positive(dentry));
- BUG_ON(!d_unlinked(dentry));
- BUG_ON(name->len > DNAME_INLINE_LEN - 1);
+ if (WARN_ON_ONCE(dname_external(dentry)))
+ return -EINVAL;
+ if (WARN_ON_ONCE(d_really_is_positive(dentry)))
+ return -EINVAL;
+ if (WARN_ON_ONCE(!d_unlinked(dentry)))
+ return -EINVAL;
+ if (WARN_ON_ONCE(name->len > DNAME_INLINE_LEN - 1))
+ return -ENAMETOOLONG;
+
spin_lock(&dentry->d_parent->d_lock);
spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
dentry->__d_name.len = name->len;
@@ -3212,6 +3217,7 @@ void d_mark_tmpfile_name(struct file *file, const struct qstr *name)
dname[name->len] = '\0';
spin_unlock(&dentry->d_lock);
spin_unlock(&dentry->d_parent->d_lock);
+ return 0;
}
EXPORT_SYMBOL(d_mark_tmpfile_name);
diff --git a/fs/smb/client/cifsfs.h b/fs/smb/client/cifsfs.h
index 18f9f93a01b4..804b57595ab8 100644
--- a/fs/smb/client/cifsfs.h
+++ b/fs/smb/client/cifsfs.h
@@ -10,6 +10,7 @@
#define _CIFSFS_H
#include <linux/hash.h>
+#include <linux/dcache.h>
#define ROOT_I 2
@@ -149,17 +150,8 @@ struct dentry *cifs_smb3_do_mount(struct file_system_type *fs_type, int flags,
char *cifs_silly_fullpath(struct dentry *dentry);
-#define CIFS_TMPNAME_PREFIX ".__smbfile_tmp"
-#define CIFS_TMPNAME_PREFIX_LEN ((int)sizeof(CIFS_TMPNAME_PREFIX) - 1)
-#define CIFS_TMPNAME_COUNTER_LEN ((int)sizeof(cifs_tmpcounter) * 2)
-#define CIFS_TMPNAME_LEN \
- (CIFS_TMPNAME_PREFIX_LEN + CIFS_TMPNAME_COUNTER_LEN)
-
-#define CIFS_SILLYNAME_PREFIX ".__smbfile_silly"
-#define CIFS_SILLYNAME_PREFIX_LEN ((int)sizeof(CIFS_SILLYNAME_PREFIX) - 1)
-#define CIFS_SILLYNAME_COUNTER_LEN ((int)sizeof(cifs_sillycounter) * 2)
-#define CIFS_SILLYNAME_LEN \
- (CIFS_SILLYNAME_PREFIX_LEN + CIFS_SILLYNAME_COUNTER_LEN)
+#define CIFS_TMPNAME_LEN (DNAME_INLINE_LEN - 1)
+#define CIFS_SILLYNAME_LEN (DNAME_INLINE_LEN - 1)
#ifdef CONFIG_CIFS_NFSD_EXPORT
extern const struct export_operations cifs_export_ops;
diff --git a/fs/smb/client/dir.c b/fs/smb/client/dir.c
index 6ea1ae7f7a46..2abe76a7cec0 100644
--- a/fs/smb/client/dir.c
+++ b/fs/smb/client/dir.c
@@ -1056,9 +1056,9 @@ int cifs_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
{
struct dentry *dentry = file->f_path.dentry;
struct cifs_sb_info *cifs_sb = CIFS_SB(dir);
+ size_t namesize = CIFS_TMPNAME_LEN + 1;
char *path __free(kfree) = NULL, *name;
unsigned int oflags = file->f_flags;
- size_t size = CIFS_TMPNAME_LEN + 1;
int retries = 0, max_retries = 16;
struct TCP_Server_Info *server;
struct cifs_pending_open open;
@@ -1070,6 +1070,7 @@ int cifs_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
struct inode *inode;
unsigned int xid;
__u32 oplock;
+ int namelen;
int rc;
if (unlikely(cifs_forced_shutdown(cifs_sb)))
@@ -1093,7 +1094,7 @@ int cifs_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
server->ops->new_lease_key(&fid);
cifs_add_pending_open(&fid, tlink, &open);
- path = alloc_parent_path(dentry, size - 1);
+ path = alloc_parent_path(dentry, namesize - 1);
if (IS_ERR(path)) {
cifs_del_pending_open(&open);
rc = PTR_ERR(path);
@@ -1103,16 +1104,21 @@ int cifs_tmpfile(struct mnt_idmap *idmap, struct inode *dir,
name = path + strlen(path);
do {
- scnprintf(name, size,
- CIFS_TMPNAME_PREFIX "%0*x",
- CIFS_TMPNAME_COUNTER_LEN,
- atomic_inc_return(&cifs_tmpcounter));
+ /* Append tmpfile name to @path */
+ namelen = scnprintf(name, namesize, ".__smbfile_tmp%0*x",
+ (int)sizeof(cifs_tmpcounter) * 2,
+ atomic_inc_return(&cifs_tmpcounter));
rc = __cifs_do_create(dir, dentry, path, xid, tlink, oflags,
mode, &oplock, &fid, NULL, &inode);
if (!rc) {
+ rc = d_mark_tmpfile_name(file, &QSTR_LEN(name, namelen));
+ if (rc) {
+ rc = -EISDIR;
+ iput(inode);
+ goto err_open;
+ }
set_nlink(inode, 0);
mark_inode_dirty(inode);
- d_mark_tmpfile_name(file, &QSTR_LEN(name, size - 1));
d_instantiate(dentry, inode);
break;
}
@@ -1168,9 +1174,8 @@ char *cifs_silly_fullpath(struct dentry *dentry)
do {
dput(sdentry);
- scnprintf(name, namesize,
- CIFS_SILLYNAME_PREFIX "%0*x",
- CIFS_SILLYNAME_COUNTER_LEN,
+ scnprintf(name, namesize, ".__smbfile_silly%0*x",
+ (int)sizeof(cifs_sillycounter) * 2,
atomic_inc_return(&cifs_sillycounter));
sdentry = lookup_noperm(&QSTR(name), dentry->d_parent);
if (IS_ERR(sdentry))
diff --git a/include/linux/dcache.h b/include/linux/dcache.h
index f60819dcfebd..c5bd5a74baba 100644
--- a/include/linux/dcache.h
+++ b/include/linux/dcache.h
@@ -264,7 +264,7 @@ extern void d_invalidate(struct dentry *);
extern struct dentry * d_make_root(struct inode *);
extern void d_mark_tmpfile(struct file *, struct inode *);
-void d_mark_tmpfile_name(struct file *file, const struct qstr *name);
+int d_mark_tmpfile_name(struct file *file, const struct qstr *name);
extern void d_tmpfile(struct file *, struct inode *);
extern struct dentry *d_find_alias(struct inode *);
next prev parent reply other threads:[~2026-04-14 3:13 UTC|newest]
Thread overview: 307+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-13 22:06 [GIT PULL] smb3 client fixes Steve French
2026-04-14 0:28 ` Linus Torvalds
2026-04-14 1:22 ` Steve French
2026-04-14 3:13 ` Paulo Alcantara [this message]
2026-04-14 3:26 ` Linus Torvalds
2026-04-14 4:39 ` Paulo Alcantara
2026-04-14 0:29 ` pr-tracker-bot
-- strict thread matches above, loose matches on Subject: below --
2026-05-08 17:05 Steve French
2026-05-08 17:53 ` pr-tracker-bot
2026-04-30 18:47 Steve French
2026-05-01 0:45 ` pr-tracker-bot
2026-04-23 19:32 Steve French
2026-04-24 0:13 ` pr-tracker-bot
2026-04-16 17:15 Steve French
2026-04-17 4:11 ` pr-tracker-bot
2026-03-20 15:59 Steve French
2026-03-20 16:25 ` pr-tracker-bot
2026-03-13 14:57 Steve French
2026-03-13 17:53 ` pr-tracker-bot
2026-03-06 22:03 Steve French
2026-03-06 22:23 ` Linus Torvalds
2026-03-06 22:29 ` Steve French
2026-03-07 0:21 ` Linus Torvalds
2026-03-07 1:42 ` Steve French
2026-03-07 4:34 ` pr-tracker-bot
2026-02-28 18:19 Steve French
2026-02-28 19:04 ` pr-tracker-bot
2026-02-17 4:54 Steve French
2026-02-17 23:50 ` pr-tracker-bot
2026-02-09 21:56 Steve French
2026-02-10 0:50 ` pr-tracker-bot
2026-02-10 0:50 ` pr-tracker-bot
2026-02-04 0:13 Steve French
2026-02-04 2:07 ` pr-tracker-bot
2026-01-02 3:54 Steve French
2026-01-02 17:53 ` pr-tracker-bot
2025-12-18 16:48 Steve French
2025-12-18 20:40 ` pr-tracker-bot
2025-12-12 2:11 Steve French
2025-12-12 10:08 ` pr-tracker-bot
2025-11-21 14:43 Steve French
2025-11-21 19:19 ` pr-tracker-bot
2025-11-14 4:23 Steve French
2025-11-14 18:20 ` pr-tracker-bot
2025-11-08 18:15 Steve French
2025-11-08 18:22 ` pr-tracker-bot
2025-10-31 16:13 Steve French
2025-10-31 16:38 ` pr-tracker-bot
2025-10-24 14:31 Steve French
2025-10-24 23:49 ` pr-tracker-bot
2025-10-17 16:24 Steve French
2025-10-18 17:26 ` pr-tracker-bot
2025-10-10 16:21 Steve French
2025-10-10 18:45 ` pr-tracker-bot
2025-10-03 16:02 Steve French
2025-10-03 21:32 ` pr-tracker-bot
2025-09-26 16:18 Steve French
2025-09-26 20:44 ` pr-tracker-bot
2025-09-19 20:22 Steve French
2025-09-19 23:14 ` pr-tracker-bot
2025-09-12 3:06 Steve French
2025-09-12 17:49 ` pr-tracker-bot
2025-09-05 15:13 Steve French
2025-09-05 20:17 ` pr-tracker-bot
2025-08-29 14:01 Steve French
2025-08-29 16:39 ` pr-tracker-bot
2025-08-15 3:06 Steve French
2025-08-15 14:06 ` pr-tracker-bot
2025-08-08 21:21 Steve French
2025-08-09 5:20 ` pr-tracker-bot
2025-07-31 19:34 Steve French
2025-08-01 4:52 ` pr-tracker-bot
2025-07-19 4:02 Steve French
2025-07-19 5:40 ` pr-tracker-bot
2025-07-05 0:41 Steve French
2025-07-05 20:09 ` pr-tracker-bot
2025-06-27 23:19 Steve French
2025-06-28 3:54 ` pr-tracker-bot
2025-06-20 22:57 Steve French
2025-06-21 15:54 ` Linus Torvalds
2025-06-21 16:00 ` Steve French
2025-06-21 16:09 ` Linus Torvalds
2025-06-21 16:12 ` Steve French
2025-06-14 16:13 Steve French
2025-06-14 18:10 ` pr-tracker-bot
2025-06-08 1:03 Steve French
2025-06-08 18:53 ` pr-tracker-bot
2025-06-03 15:36 Steve French
2025-06-03 23:21 ` pr-tracker-bot
2025-06-03 23:21 ` pr-tracker-bot
2025-05-22 18:42 Steve French
2025-05-22 19:44 ` pr-tracker-bot
2025-05-16 23:42 Steve French
2025-05-17 2:50 ` pr-tracker-bot
2025-05-02 20:17 Steve French
2025-05-02 22:03 ` pr-tracker-bot
2025-04-19 2:57 Steve French
2025-04-19 3:30 ` pr-tracker-bot
2025-04-11 18:22 Steve French
2025-04-11 23:45 ` pr-tracker-bot
2025-04-04 22:10 Steve French
2025-04-04 22:35 ` pr-tracker-bot
2025-03-30 23:19 Steve French
2025-04-01 2:03 ` pr-tracker-bot
2025-03-14 23:47 Steve French
2025-03-15 0:40 ` pr-tracker-bot
2025-02-20 16:08 Steve French
2025-02-20 17:03 ` pr-tracker-bot
2025-02-08 2:33 Steve French
2025-02-08 4:24 ` pr-tracker-bot
2025-02-01 19:03 Steve French
2025-02-01 20:08 ` pr-tracker-bot
2025-01-23 21:23 Steve French
2025-01-24 1:10 ` pr-tracker-bot
2025-01-17 4:49 Steve French
2025-01-17 17:11 ` pr-tracker-bot
2024-12-28 2:42 Steve French
2024-12-28 19:16 ` pr-tracker-bot
2024-12-21 3:27 Steve French
2024-12-21 17:37 ` pr-tracker-bot
2024-12-14 0:04 Steve French
2024-12-14 1:40 ` pr-tracker-bot
2024-12-07 22:22 Steve French
2024-12-08 19:19 ` pr-tracker-bot
2024-11-30 1:00 Steve French
2024-11-30 18:39 ` pr-tracker-bot
2024-10-25 16:40 Steve French
2024-10-25 19:18 ` pr-tracker-bot
2024-10-18 15:00 Steve French
2024-10-18 19:00 ` pr-tracker-bot
2024-10-13 17:50 Steve French
2024-10-14 2:39 ` pr-tracker-bot
2024-10-04 1:36 Steve French
2024-10-04 17:50 ` pr-tracker-bot
2024-09-27 20:39 Steve French
2024-09-28 16:45 ` pr-tracker-bot
2024-09-25 23:27 Steve French
2024-09-26 16:37 ` pr-tracker-bot
2024-09-17 8:22 Steve French
2024-09-19 5:20 ` pr-tracker-bot
2024-09-01 3:41 Steve French
2024-09-01 4:01 ` pr-tracker-bot
2024-08-23 15:40 Steve French
2024-08-24 1:24 ` pr-tracker-bot
2024-08-17 21:52 Steve French
2024-08-17 23:36 ` pr-tracker-bot
2024-08-03 23:14 Steve French
2024-08-04 16:54 ` pr-tracker-bot
2024-07-28 0:35 [GIT PULL] SMB3 " Steve French
2024-07-28 3:16 ` Linus Torvalds
2024-07-28 3:57 ` Steve French
2024-07-28 3:30 ` pr-tracker-bot
2024-07-21 19:48 [GIT PULL] smb3 " Steve French
2024-07-21 22:53 ` pr-tracker-bot
2024-06-23 6:44 Steve French
2024-06-23 15:05 ` Linus Torvalds
2024-06-23 15:13 ` pr-tracker-bot
2024-06-08 23:41 Steve French
2024-06-09 2:18 ` pr-tracker-bot
2024-06-01 21:14 Steve French
2024-06-01 21:40 ` pr-tracker-bot
2024-05-25 22:24 Steve French
2024-05-26 5:41 ` pr-tracker-bot
2024-05-15 5:37 Steve French
2024-05-15 20:29 ` pr-tracker-bot
2024-04-27 16:45 Steve French
2024-04-27 19:17 ` pr-tracker-bot
2024-04-13 9:18 Steve French
2024-04-13 17:12 ` pr-tracker-bot
2024-04-06 5:08 Steve French
2024-04-06 16:19 ` pr-tracker-bot
2024-03-29 17:05 Steve French
2024-03-29 19:27 ` pr-tracker-bot
2024-02-17 4:28 Steve French
2024-02-17 16:27 ` pr-tracker-bot
2024-02-10 0:33 Steve French
2024-02-10 1:15 ` pr-tracker-bot
2024-02-03 20:47 Steve French
2024-02-04 7:44 ` pr-tracker-bot
2024-01-26 22:25 Steve French
2024-01-27 17:21 ` pr-tracker-bot
2024-01-20 23:30 Steve French
2024-01-21 0:59 ` pr-tracker-bot
2024-01-10 22:26 Steve French
2024-01-11 2:24 ` pr-tracker-bot
2023-12-21 4:08 Steve French
2023-12-21 5:22 ` pr-tracker-bot
2023-12-08 22:26 Steve French
2023-12-09 20:34 ` pr-tracker-bot
2023-12-01 23:59 Steve French
2023-12-03 1:24 ` pr-tracker-bot
2023-11-18 0:37 Steve French
2023-11-18 19:44 ` pr-tracker-bot
2023-11-11 22:21 Steve French
2023-11-12 1:30 ` pr-tracker-bot
2023-10-15 2:15 Steve French
2023-10-15 2:47 ` pr-tracker-bot
2023-10-06 21:44 Steve French
2023-10-07 18:12 ` pr-tracker-bot
2023-09-23 17:28 Steve French
2023-09-23 19:08 ` pr-tracker-bot
2023-09-17 5:42 Steve French
2023-09-17 18:24 ` pr-tracker-bot
2023-09-10 1:36 Steve French
2023-09-10 3:17 ` pr-tracker-bot
2023-08-30 20:48 Steve French
2023-08-31 4:21 ` Linus Torvalds
2023-08-31 4:37 ` Steve French
2023-08-31 10:30 ` Dr. David Alan Gilbert
2023-08-31 4:30 ` pr-tracker-bot
2023-08-15 19:59 [GIT PULL] SMB3 " Steve French
2023-08-15 20:04 ` pr-tracker-bot
2023-07-29 19:07 [GIT PULL] smb3 " Steve French
2023-07-30 3:53 ` pr-tracker-bot
2023-07-16 14:59 Steve French
2023-07-16 19:58 ` pr-tracker-bot
2023-07-09 4:39 Steve French
2023-07-09 17:46 ` pr-tracker-bot
2023-07-01 4:20 Steve French
2023-07-01 5:04 ` pr-tracker-bot
2023-06-15 4:36 Steve French
2023-06-15 23:10 ` pr-tracker-bot
2023-05-21 4:52 Steve French
2023-05-21 18:09 ` pr-tracker-bot
2023-05-12 19:21 Steve French
2023-05-12 22:14 ` pr-tracker-bot
2023-05-06 20:45 Steve French
2023-05-07 18:12 ` pr-tracker-bot
2023-04-30 15:35 Steve French
2023-05-01 19:26 ` pr-tracker-bot
2023-04-22 2:43 Steve French
2023-04-22 16:47 ` pr-tracker-bot
2023-04-08 23:34 Steve French
2023-04-09 2:16 ` pr-tracker-bot
2023-04-01 21:32 Steve French
2023-04-02 18:02 ` pr-tracker-bot
2023-03-16 20:39 Steve French
2023-03-16 22:12 ` pr-tracker-bot
2023-03-03 23:29 Steve French
2023-03-04 0:39 ` pr-tracker-bot
2023-02-23 0:02 Steve French
2023-02-23 1:23 ` pr-tracker-bot
2023-01-20 21:23 Steve French
2023-01-20 22:38 ` pr-tracker-bot
2023-01-14 1:19 Steve French
2023-01-14 14:17 ` pr-tracker-bot
2022-12-20 21:49 Steve French
2022-12-21 18:50 ` pr-tracker-bot
2022-12-15 22:40 Steve French
2022-12-15 22:59 ` pr-tracker-bot
2022-11-27 4:44 [GIT PULL] SMB3 " Steve French
2022-11-27 17:14 ` pr-tracker-bot
2022-11-19 5:02 [GIT PULL] smb3 " Steve French
2022-11-19 17:14 ` pr-tracker-bot
2022-11-06 5:07 Steve French
2022-11-06 18:49 ` pr-tracker-bot
2022-10-30 2:40 Steve French
2022-10-30 18:34 ` pr-tracker-bot
2022-10-21 14:40 Steve French
2022-10-21 23:03 ` pr-tracker-bot
2022-10-16 0:33 Steve French
2022-10-16 18:18 ` pr-tracker-bot
2022-10-09 5:50 Steve French
2022-10-11 3:43 ` pr-tracker-bot
2022-09-16 5:25 Steve French
2022-09-16 14:21 ` pr-tracker-bot
2022-09-02 0:44 Steve French
2022-09-02 23:48 ` pr-tracker-bot
2022-08-27 21:43 Steve French
2022-08-28 18:18 ` pr-tracker-bot
2022-08-20 22:34 Steve French
2022-08-21 18:42 ` pr-tracker-bot
2022-08-13 21:44 Steve French
2022-08-14 0:39 ` pr-tracker-bot
2022-08-07 5:03 Steve French
2022-08-07 17:57 ` pr-tracker-bot
2022-07-14 18:41 Steve French
2022-07-14 20:42 ` pr-tracker-bot
2022-07-14 3:35 Steve French
2022-07-14 18:33 ` Linus Torvalds
2022-06-25 21:38 [GIT PULL] SMB3 " Steve French
2022-06-26 17:36 ` pr-tracker-bot
2022-06-18 22:38 Steve French
2022-06-19 3:02 ` pr-tracker-bot
2022-06-11 16:38 [GIT PULL] smb3 " Steve French
2022-06-12 18:40 ` pr-tracker-bot
2022-06-04 23:00 [GIT PULL] SMB3 " Steve French
2022-06-05 2:13 ` pr-tracker-bot
2022-05-27 6:52 Steve French
2022-05-27 16:31 ` Steve French
2022-04-22 17:00 [GIT PULL] smb3 " Steve French
2022-04-22 20:46 ` pr-tracker-bot
2022-04-14 20:42 Steve French
2022-04-14 23:25 ` pr-tracker-bot
2022-02-18 0:26 Steve French
2022-02-18 17:39 ` pr-tracker-bot
2022-02-12 20:20 Steve French
2022-02-13 18:04 ` pr-tracker-bot
2021-12-19 1:36 Steve French
2021-12-19 20:34 ` pr-tracker-bot
2021-12-04 20:41 Steve French
2021-12-04 21:50 ` pr-tracker-bot
2021-11-13 20:17 Steve French
2021-11-13 20:30 ` pr-tracker-bot
2021-09-11 17:23 Steve French
2021-09-12 17:11 ` Linus Torvalds
2021-09-12 18:41 ` pr-tracker-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ab9457074b5852e73e84f0209bb58279@manguebit.org \
--to=pc@manguebit.org \
--cc=linux-cifs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=smfrench@gmail.com \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox