lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <2024071701-boned-drove-1269@gregkh>
Date: Wed, 17 Jul 2024 08:24:23 +0200
From: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
To: Florian Fainelli <f.fainelli@...il.com>
Cc: stable@...r.kernel.org, Paulo Alcantara <pc@...guebit.com>,
	patches@...ts.linux.dev, linux-kernel@...r.kernel.org,
	torvalds@...ux-foundation.org, akpm@...ux-foundation.org,
	linux@...ck-us.net, shuah@...nel.org, patches@...nelci.org,
	lkft-triage@...ts.linaro.org, pavel@...x.de, jonathanh@...dia.com,
	sudipm.mukherjee@...il.com, srw@...dewatkins.net, rwarsow@....de,
	conor@...nel.org, allen.lkml@...il.com, broonie@...nel.org
Subject: Re: [PATCH 6.1 00/96] 6.1.100-rc1 review

On Tue, Jul 16, 2024 at 11:42:39AM -0700, 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.gz
> > 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....

Ugh, this was because I had to add a fixup patch for a different patch
here.  I'll go drop both of them for now, thanks.

greg k-h

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ