From 35149653ee29d925ea0c2b5ca0eacf0af32be34f Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Tue, 10 Feb 2026 08:23:13 -0800 Subject: [PATCH] smb client: Add generated file to gitignore file The smb client code recently started generating the error mapping table from a common header, but didn't tell git about it, so then git ends up thinking maybe it should be committed. Let's fix that. Fixes: c527e13a7a66 ("cifs: Autogenerate SMB2 error mapping table") Signed-off-by: Linus Torvalds --- fs/smb/client/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 fs/smb/client/.gitignore diff --git a/fs/smb/client/.gitignore b/fs/smb/client/.gitignore new file mode 100644 index 000000000000..8a6e04ab62b9 --- /dev/null +++ b/fs/smb/client/.gitignore @@ -0,0 +1 @@ +smb2_mapping_table.c -- 2.47.3