On 7/16/24 08:31, Greg Kroah-Hartman wrote:
This is the start of the stable review cycle for the 6.1.100 release. There are 96 patches in this series, all will be posted as a response to this one. If anyone has any issues with these being applied, please let me know.
Responses should be made by Thu, 18 Jul 2024 15:27:21 +0000. Anything received after that time might be too late.
The whole patch series can be found in one patch at: https://www.kernel.org/pub/linux/kernel/v6.x/stable-review/patch-6.1.100-rc1... or in the git tree and branch at: git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-6.1.y and the diffstat can be found below.
thanks,
greg k-h
Commit acbfb53f772f96fdffb3fba2fa16eed4ad7ba0d2 ("cifs: avoid dup prefix path in dfs_get_automount_devname()") causes the following build failure on bmips_stb_defconfig:
In file included from ./include/linux/build_bug.h:5, from ./include/linux/container_of.h:5, from ./include/linux/list.h:5, from ./include/linux/module.h:12, from fs/smb/client/cifsfs.c:13: fs/smb/client/cifsproto.h: In function 'dfs_get_automount_devname': fs/smb/client/cifsproto.h:74:22: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' if (unlikely(!server->origin_fullpath)) ^~ ./include/linux/compiler.h:78:42: note: in definition of macro 'unlikely' # define unlikely(x) __builtin_expect(!!(x), 0) ^ In file included from fs/smb/client/cifsfs.c:35: fs/smb/client/cifsproto.h:78:14: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' server->origin_fullpath, ^~ fs/smb/client/cifsproto.h:79:21: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' strlen(server->origin_fullpath), ^~ fs/smb/client/cifsproto.h:88:21: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' len = strlen(server->origin_fullpath); ^~ fs/smb/client/cifsproto.h:93:18: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' memcpy(s, server->origin_fullpath, len); ^~ In file included from ./include/linux/build_bug.h:5, from ./include/linux/container_of.h:5, from ./include/linux/list.h:5, from ./include/linux/wait.h:7, from ./include/linux/wait_bit.h:8, from ./include/linux/fs.h:6, from fs/smb/client/cifs_debug.c:8: fs/smb/client/cifsproto.h: In function 'dfs_get_automount_devname': fs/smb/client/cifsproto.h:74:22: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' if (unlikely(!server->origin_fullpath)) ^~ ./include/linux/compiler.h:78:42: note: in definition of macro 'unlikely' # define unlikely(x) __builtin_expect(!!(x), 0) ^ In file included from fs/smb/client/cifs_debug.c:16: fs/smb/client/cifsproto.h:78:14: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' server->origin_fullpath, ^~ fs/smb/client/cifsproto.h:79:21: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' strlen(server->origin_fullpath), ^~ fs/smb/client/cifsproto.h:88:21: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' len = strlen(server->origin_fullpath); ^~ fs/smb/client/cifsproto.h:93:18: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' memcpy(s, server->origin_fullpath, len); ^~ host-make[6]: *** [scripts/Makefile.build:250: fs/smb/client/cifsfs.o] Error 1 host-make[6]: *** Waiting for unfinished jobs....