public inbox for linux-cifs@vger.kernel.org
 help / color / mirror / Atom feed
* xfstests failed test cases
       [not found]               ` <CAH2r5mu909vLwAQcKFQX7cWz421V1QmSiBAKyJeC8gUcGVb0Ew@mail.gmail.com>
@ 2026-01-28 15:29                 ` ChenXiaoSong
       [not found]                   ` <CAH2r5muyYgm4-Nwvd=d+Sqq7mmd+HGPoyM1tid6dsnN1=vt3Ng@mail.gmail.com>
  2026-01-29 12:20                   ` ChenXiaoSong
  0 siblings, 2 replies; 6+ messages in thread
From: ChenXiaoSong @ 2026-01-28 15:29 UTC (permalink / raw)
  To: Steve French, Shyam Prasad N, David Howells, Henrique Carvalho,
	Bharath S M, Meetakshi Setiya
  Cc: CIFS, ChenXiaoSong

I have reproduced the failures of these test cases. For detailed 
information, please check the link: 
https://chenxiaosong.com/en/smb-buildbot.html (I will ensure this link 
is always accessible).

Perhaps sending these issues to the mailing list could help resolve them 
more quickly.

Thanks,
ChenXiaoSong <chenxiaosong@kylinos.cn>

On 1/25/26 03:45, Steve French wrote:
> I did see a crash in cifs/103
> (http://smb311-linux-testing.southcentralus.cloudapp.azure.com/#/ 
> builders/12/builds/38/steps/19/logs/stdio)
> running mchan test run to Windows.  Ideas?

On 1/25/26 12:36, Steve French wrote:
> Any thoughts on the failures with current for-next (to WIndows, fast
> VM, with multichannel) for tests generic/533 and generic/565
> 
> +++ /data/xfstests-dev/results//smb3mcmfs/generic/565.out.bad
> 2026-01-24 22:13:17.098765412 -0600
> @@ -1,4 +1,6 @@
> QA output created by 565
> +mkdir: cannot create directory '/mnt/test/test-565': Input/output error
> +/mnt/scratch/copy: Input/output error cmp: /mnt/test/test-565/file:
> No such file or directory
> md5sums after xdev copy:
> -81615449a98aaaad8dc179b3bec87f38 TEST_DIR/test-565/file
> -81615449a98aaaad8dc179b3bec87f38 SCRATCH_MNT/copy
> +md5sum: /mnt/test/test-565/file: No such file or directory
> 
> http://smb311-linux-testing.southcentralus.cloudapp.azure.com/#/builders/12/builds/46/steps/138/logs/stdio
> 
> and
> 
> http://smb311-linux-testing.southcentralus.cloudapp.azure.com/#/builders/12/builds/46/steps/136/logs/stdio
> 
> and also git/0003
> 
> http://smb311-linux-testing.southcentralus.cloudapp.azure.com/#/builders/12/builds/46/steps/160/logs/stdio
> 
> Does this fail for you as well?


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: xfstests failed test cases
       [not found]                   ` <CAH2r5muyYgm4-Nwvd=d+Sqq7mmd+HGPoyM1tid6dsnN1=vt3Ng@mail.gmail.com>
@ 2026-01-28 15:41                     ` ChenXiaoSong
  0 siblings, 0 replies; 6+ messages in thread
From: ChenXiaoSong @ 2026-01-28 15:41 UTC (permalink / raw)
  To: Steve French
  Cc: Shyam Prasad N, David Howells, Henrique Carvalho, Bharath S M,
	Meetakshi Setiya, CIFS, ChenXiaoSong

I will identify the cause of these test case failures as soon as possible.

Thanks,
ChenXiaoSong <chenxiaosong@kylinos.cn>

On 1/28/26 23:37, Steve French wrote:
> This is helpful. Any luck finding out if fails on both mainline and also 
> for-next and if so can we bisect it?


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: xfstests failed test cases
  2026-01-28 15:29                 ` xfstests failed test cases ChenXiaoSong
       [not found]                   ` <CAH2r5muyYgm4-Nwvd=d+Sqq7mmd+HGPoyM1tid6dsnN1=vt3Ng@mail.gmail.com>
@ 2026-01-29 12:20                   ` ChenXiaoSong
  2026-02-01  6:30                     ` ChenXiaoSong
  1 sibling, 1 reply; 6+ messages in thread
From: ChenXiaoSong @ 2026-01-29 12:20 UTC (permalink / raw)
  To: Steve French, Shyam Prasad N, David Howells, Henrique Carvalho,
	Bharath S M, Meetakshi Setiya, ChenXiaoSong
  Cc: CIFS

I found the key factor that triggers kmemleak in cifs/103, the directory 
exported by the server must be read-only.

When sharing a folder on Windows, do not check "Allow Change", set the 
permissions of the shared directory to read-only.

Alternatively, `smb.conf` of Samba is configured as follows:
```
[test]
     ...
     read only = yes
[test2]
     ...
     read only = yes
```

For detailed information, please check the link: 
https://chenxiaosong.com/en/smb-buildbot.html#cifs-103

I will first try to analyze the code, and if that doesn't work, I will 
try to bisect it.

Thanks,
ChenXiaoSong <chenxiaosong@kylinos.cn>

On 1/28/26 23:29, ChenXiaoSong wrote:
> I have reproduced the failures of these test cases. For detailed 
> information, please check the link: https://chenxiaosong.com/en/smb- 
> buildbot.html (I will ensure this link is always accessible).
> 
> Perhaps sending these issues to the mailing list could help resolve them 
> more quickly.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: xfstests failed test cases
  2026-01-29 12:20                   ` ChenXiaoSong
@ 2026-02-01  6:30                     ` ChenXiaoSong
  2026-02-01  8:14                       ` ChenXiaoSong
  0 siblings, 1 reply; 6+ messages in thread
From: ChenXiaoSong @ 2026-02-01  6:30 UTC (permalink / raw)
  To: Steve French, Shyam Prasad N, David Howells, Henrique Carvalho,
	Bharath S M, Meetakshi Setiya, ChenXiaoSong, Paulo Alcantara,
	Steve French, nspmangalore, Enzo Matsumiya
  Cc: CIFS

Steve and I have completed a git bisect and found the first bad commit:
[e255612b5ed9f179abe8196df7c2ba09dd227900] cifs: Add fallback for SMB2 
CREATE without FILE_READ_ATTRIBUTES

For detailed information, please check the link: 
https://chenxiaosong.com/en/smb-buildbot.html#cifs-103-bisect

Thanks,
ChenXiaoSong <chenxiaosong@kylinos.cn>

On 1/29/26 8:20 PM, ChenXiaoSong wrote:
> I found the key factor that triggers kmemleak in cifs/103, the directory 
> exported by the server must be read-only.
> 
> When sharing a folder on Windows, do not check "Allow Change", set the 
> permissions of the shared directory to read-only.
> 
> Alternatively, `smb.conf` of Samba is configured as follows:
> ```
> [test]
>      ...
>      read only = yes
> [test2]
>      ...
>      read only = yes
> ```
> 
> For detailed information, please check the link: https:// 
> chenxiaosong.com/en/smb-buildbot.html#cifs-103
> 
> I will first try to analyze the code, and if that doesn't work, I will 
> try to bisect it.
> 
> Thanks,
> ChenXiaoSong <chenxiaosong@kylinos.cn>
> 
> On 1/28/26 23:29, ChenXiaoSong wrote:
>> I have reproduced the failures of these test cases. For detailed 
>> information, please check the link: https://chenxiaosong.com/en/smb- 
>> buildbot.html (I will ensure this link is always accessible).
>>
>> Perhaps sending these issues to the mailing list could help resolve 
>> them more quickly.


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: xfstests failed test cases
  2026-02-01  6:30                     ` ChenXiaoSong
@ 2026-02-01  8:14                       ` ChenXiaoSong
  2026-02-02  6:56                         ` ChenXiaoSong
  0 siblings, 1 reply; 6+ messages in thread
From: ChenXiaoSong @ 2026-02-01  8:14 UTC (permalink / raw)
  To: Steve French, Shyam Prasad N, David Howells, Henrique Carvalho,
	Bharath S M, Meetakshi Setiya, ChenXiaoSong, Paulo Alcantara,
	Steve French, Enzo Matsumiya
  Cc: CIFS

I have already submitted a patch to fix this issue: 
https://lore.kernel.org/linux-cifs/20260201081017.998628-1-chenxiaosong.chenxiaosong@linux.dev/

Thanks,
ChenXiaoSong <chenxiaosong@kylinos.cn>

On 2/1/26 2:30 PM, ChenXiaoSong wrote:
> Steve and I have completed a git bisect and found the first bad commit:
> [e255612b5ed9f179abe8196df7c2ba09dd227900] cifs: Add fallback for SMB2 
> CREATE without FILE_READ_ATTRIBUTES
> 
> For detailed information, please check the link: https:// 
> chenxiaosong.com/en/smb-buildbot.html#cifs-103-bisect
> 
> Thanks,
> ChenXiaoSong <chenxiaosong@kylinos.cn>
> 
> On 1/29/26 8:20 PM, ChenXiaoSong wrote:
>> I found the key factor that triggers kmemleak in cifs/103, the 
>> directory exported by the server must be read-only.
>>
>> When sharing a folder on Windows, do not check "Allow Change", set the 
>> permissions of the shared directory to read-only.
>>
>> Alternatively, `smb.conf` of Samba is configured as follows:
>> ```
>> [test]
>>      ...
>>      read only = yes
>> [test2]
>>      ...
>>      read only = yes
>> ```
>>
>> For detailed information, please check the link: https:// 
>> chenxiaosong.com/en/smb-buildbot.html#cifs-103
>>
>> I will first try to analyze the code, and if that doesn't work, I will 
>> try to bisect it.
>>
>> Thanks,
>> ChenXiaoSong <chenxiaosong@kylinos.cn>
>>
>> On 1/28/26 23:29, ChenXiaoSong wrote:
>>> I have reproduced the failures of these test cases. For detailed 
>>> information, please check the link: https://chenxiaosong.com/en/smb- 
>>> buildbot.html (I will ensure this link is always accessible).
>>>
>>> Perhaps sending these issues to the mailing list could help resolve 
>>> them more quickly.
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: xfstests failed test cases
  2026-02-01  8:14                       ` ChenXiaoSong
@ 2026-02-02  6:56                         ` ChenXiaoSong
  0 siblings, 0 replies; 6+ messages in thread
From: ChenXiaoSong @ 2026-02-02  6:56 UTC (permalink / raw)
  To: Steve French, Shyam Prasad N, David Howells, Henrique Carvalho,
	Bharath S M, Meetakshi Setiya, ChenXiaoSong, Paulo Alcantara,
	Steve French, Enzo Matsumiya, Pali Rohár, linkinjeon,
	ChenXiaoSong
  Cc: CIFS

I have submitted another patch to fix the SMB1 kmemleak issue: 
https://lore.kernel.org/linux-cifs/20260202064928.1879323-1-chenxiaosong.chenxiaosong@linux.dev/

Thanks,
ChenXiaoSong <chenxiaosong@kylinos.cn>

On 2/1/26 4:14 PM, ChenXiaoSong wrote:
> I have already submitted a patch to fix this issue: https:// 
> lore.kernel.org/linux-cifs/20260201081017.998628-1- 
> chenxiaosong.chenxiaosong@linux.dev/
> 
> Thanks,
> ChenXiaoSong <chenxiaosong@kylinos.cn>
> 
> On 2/1/26 2:30 PM, ChenXiaoSong wrote:
>> Steve and I have completed a git bisect and found the first bad commit:
>> [e255612b5ed9f179abe8196df7c2ba09dd227900] cifs: Add fallback for SMB2 
>> CREATE without FILE_READ_ATTRIBUTES
>>
>> For detailed information, please check the link: https:// 
>> chenxiaosong.com/en/smb-buildbot.html#cifs-103-bisect
>>
>> Thanks,
>> ChenXiaoSong <chenxiaosong@kylinos.cn>
>>
>> On 1/29/26 8:20 PM, ChenXiaoSong wrote:
>>> I found the key factor that triggers kmemleak in cifs/103, the 
>>> directory exported by the server must be read-only.
>>>
>>> When sharing a folder on Windows, do not check "Allow Change", set 
>>> the permissions of the shared directory to read-only.
>>>
>>> Alternatively, `smb.conf` of Samba is configured as follows:
>>> ```
>>> [test]
>>>      ...
>>>      read only = yes
>>> [test2]
>>>      ...
>>>      read only = yes
>>> ```
>>>
>>> For detailed information, please check the link: https:// 
>>> chenxiaosong.com/en/smb-buildbot.html#cifs-103
>>>
>>> I will first try to analyze the code, and if that doesn't work, I 
>>> will try to bisect it.
>>>
>>> Thanks,
>>> ChenXiaoSong <chenxiaosong@kylinos.cn>
>>>
>>> On 1/28/26 23:29, ChenXiaoSong wrote:
>>>> I have reproduced the failures of these test cases. For detailed 
>>>> information, please check the link: https://chenxiaosong.com/en/smb- 
>>>> buildbot.html (I will ensure this link is always accessible).
>>>>
>>>> Perhaps sending these issues to the mailing list could help resolve 
>>>> them more quickly.
>>
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-02-02  6:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CAH2r5mv41nFwJQwszD82MQbtDV75zVy6=tbwqxDTOsw2hwfBpw@mail.gmail.com>
     [not found] ` <CANT5p=qmo_KORMQbnjonapAaGHq=UvWAMzR0jNKBBvx3UUkyjQ@mail.gmail.com>
     [not found]   ` <CANT5p=pfQE2A++j6W4sEudrSLH6ct=ho4i=k2ZDEecUAX0cReg@mail.gmail.com>
     [not found]     ` <CAH2r5mvakK7=1i-fZTE9hLLYd_Q3o5z557vQZ5QQtdOTkZeSew@mail.gmail.com>
     [not found]       ` <CAH2r5mufJgC85ULoVzYSMXDq4=-RUiJ2YgppM434vz1Q4B1d+A@mail.gmail.com>
     [not found]         ` <CAH2r5msVifsc-E0TjaYXt2Afh1MiCsJTSwMnsDAdUShRgkJ_4A@mail.gmail.com>
     [not found]           ` <CAH2r5mukVmnfK7X3jXWwRnD-_RAMuUgzXpi+HzNjxOat4tobJA@mail.gmail.com>
     [not found]             ` <CAH2r5mvW23-eUsjDQ_0oLrmj406Og5sDs-yPgqh6jPwdSEG+Tg@mail.gmail.com>
     [not found]               ` <CAH2r5mu909vLwAQcKFQX7cWz421V1QmSiBAKyJeC8gUcGVb0Ew@mail.gmail.com>
2026-01-28 15:29                 ` xfstests failed test cases ChenXiaoSong
     [not found]                   ` <CAH2r5muyYgm4-Nwvd=d+Sqq7mmd+HGPoyM1tid6dsnN1=vt3Ng@mail.gmail.com>
2026-01-28 15:41                     ` ChenXiaoSong
2026-01-29 12:20                   ` ChenXiaoSong
2026-02-01  6:30                     ` ChenXiaoSong
2026-02-01  8:14                       ` ChenXiaoSong
2026-02-02  6:56                         ` ChenXiaoSong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox