Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'v7.0-rc5-smb3-client-fix' of git://git.samba.org/sfrench/cifs-2.6

Pull smb client fix from Steve French:

- Fix rebuild of mapping table

* tag 'v7.0-rc5-smb3-client-fix' of git://git.samba.org/sfrench/cifs-2.6:
smb/client: ensure smb2_mapping_table rebuild on cmd changes

+4 -3
+4 -3
fs/smb/client/Makefile
··· 48 48 # Build the SMB2 error mapping table from smb2status.h 49 49 # 50 50 $(obj)/smb2_mapping_table.c: $(src)/../common/smb2status.h \ 51 - $(src)/gen_smb2_mapping 52 - $(call cmd,gen_smb2_mapping) 51 + $(src)/gen_smb2_mapping FORCE 52 + $(call if_changed,gen_smb2_mapping) 53 53 54 54 $(obj)/smb2maperror.o: $(obj)/smb2_mapping_table.c 55 55 ··· 58 58 59 59 obj-$(CONFIG_SMB_KUNIT_TESTS) += smb2maperror_test.o 60 60 61 - clean-files += smb2_mapping_table.c 61 + # Let Kbuild handle tracking and cleaning 62 + targets += smb2_mapping_table.c