On Tue 2024-07-16 11:42:39, Florian Fainelli wrote:
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.
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))
We see same problem.
CC [M] sound/soc/soc-ops.o 3131 In file included from ./include/linux/build_bug.h:5, 3132 from ./include/linux/container_of.h:5, 3133 from ./include/linux/list.h:5, 3134 from ./include/linux/module.h:12, 3135 from fs/smb/client/cifsfs.c:13: 3136 fs/smb/client/cifsproto.h: In function 'dfs_get_automount_devname': 3137 fs/smb/client/cifsproto.h:74:29: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' 3138 74 | if (unlikely(!server->origin_fullpath)) 3139 | ^~ 3140 ./include/linux/compiler.h:78:45: note: in definition of macro 'unlikely' 3141 78 | # define unlikely(x) __builtin_expect(!!(x), 0) 3142 | ^ 3143 In file included from fs/smb/client/cifsfs.c:35: 3144 fs/smb/client/cifsproto.h:78:63: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' 3145 78 | server->origin_fullpath, 3146 | ^~ 3147 fs/smb/client/cifsproto.h:79:70: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' 3148 79 | strlen(server->origin_fullpath), 3149 | ^~ 3150 fs/smb/client/cifsproto.h:88:28: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' 3151 88 | len = strlen(server->origin_fullpath); 3152 | ^~ 3153 fs/smb/client/cifsproto.h:93:25: error: 'struct TCP_Server_Info' has no member named 'origin_fullpath' 3154 93 | memcpy(s, server->origin_fullpath, len); 3155 | ^~ 3156 CC [M] net/netfilter/nf_conntrack_standalone.o 3157 CC [M] net/netfilter/nf_conntrack_expect.o
Best regards, Pavel