public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [5.10.y] Regression in EXT3/4 with v5.10.227, LTP preadv03 is failing
       [not found] <lrkyqy12hpikl.fsf@dev-dsk-mngyadam-1c-a2602c62.eu-west-1.amazon.com>
@ 2024-10-21 16:49 ` Greg KH
  2024-10-21 17:15   ` Mahmoud Adam
  0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2024-10-21 16:49 UTC (permalink / raw)
  To: Mahmoud Adam; +Cc: jack, hch, sashal, tytso, linux-ext4, regressions

On Mon, Oct 21, 2024 at 05:43:54PM +0200, Mahmoud Adam wrote:
> 
> Hello,
> 
>   In the latest 5.10.227 we see LTP preadv03 failing on EXT3/4, when
> bisected it was found that the commit dde4c1e1663b6 ("ext4: properly
> sync file size update after O_SYNC direct IO") is causing it
> 
> This seems similar to what occurred before[1] and if I understand
> correctly it was because of missing dependency backport 936e114a245b6
> ("iomap: update ki_pos a little later in iomap_dio_complete") which was
> then backported to 5.15 & 6.1 but not to 5.10.
> 
> *This is not failing on 5.15 nor 6.1, and it does fail consistently in x86-64 & ARM
> 
> [1]: https://lore.kernel.org/all/20231205122122.dfhhoaswsfscuhc3@quack3/
> 


What do you suggest be done?

thanks,

greg k-h

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

* Re: [5.10.y] Regression in EXT3/4 with v5.10.227, LTP preadv03 is failing
  2024-10-21 16:49 ` [5.10.y] Regression in EXT3/4 with v5.10.227, LTP preadv03 is failing Greg KH
@ 2024-10-21 17:15   ` Mahmoud Adam
  2024-10-21 20:19     ` Greg KH
  2024-10-22  9:40     ` Jan Kara
  0 siblings, 2 replies; 5+ messages in thread
From: Mahmoud Adam @ 2024-10-21 17:15 UTC (permalink / raw)
  To: Greg KH; +Cc: jack, hch, sashal, tytso, linux-ext4, regressions

Greg KH <gregkh@linuxfoundation.org> writes:

> On Mon, Oct 21, 2024 at 05:43:54PM +0200, Mahmoud Adam wrote:
>> 
>> Hello,
>> 
>>   In the latest 5.10.227 we see LTP preadv03 failing on EXT3/4, when
>> bisected it was found that the commit dde4c1e1663b6 ("ext4: properly
>> sync file size update after O_SYNC direct IO") is causing it
>> 
>> This seems similar to what occurred before[1] and if I understand
>> correctly it was because of missing dependency backport 936e114a245b6
>> ("iomap: update ki_pos a little later in iomap_dio_complete") which was
>> then backported to 5.15 & 6.1 but not to 5.10.
>> 
>> *This is not failing on 5.15 nor 6.1, and it does fail consistently in x86-64 & ARM
>> 
>> [1]: https://lore.kernel.org/all/20231205122122.dfhhoaswsfscuhc3@quack3/
>> 
>
>
> What do you suggest be done?
>

I think as an urgent fix I would suggest reverting the mentioned commit
and commits that depend on it from 5.10.y..

4911610c7a1fe ("ext4: fix warning in ext4_dio_write_end_io()")
f8a7c342326f6 ("ext4: dax: fix overflowing extents beyond inode size when partially writing")
dde4c1e1663b6 ("ext4: properly sync file size update after O_SYNC direct
IO")

maybe someone from the ext4 side confirm that as well?

thanks,
MNAdam

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

* Re: [5.10.y] Regression in EXT3/4 with v5.10.227, LTP preadv03 is failing
  2024-10-21 17:15   ` Mahmoud Adam
@ 2024-10-21 20:19     ` Greg KH
  2024-10-22  9:40     ` Jan Kara
  1 sibling, 0 replies; 5+ messages in thread
From: Greg KH @ 2024-10-21 20:19 UTC (permalink / raw)
  To: Mahmoud Adam; +Cc: jack, hch, sashal, tytso, linux-ext4, regressions

On Mon, Oct 21, 2024 at 07:15:58PM +0200, Mahmoud Adam wrote:
> Greg KH <gregkh@linuxfoundation.org> writes:
> 
> > On Mon, Oct 21, 2024 at 05:43:54PM +0200, Mahmoud Adam wrote:
> >> 
> >> Hello,
> >> 
> >>   In the latest 5.10.227 we see LTP preadv03 failing on EXT3/4, when
> >> bisected it was found that the commit dde4c1e1663b6 ("ext4: properly
> >> sync file size update after O_SYNC direct IO") is causing it
> >> 
> >> This seems similar to what occurred before[1] and if I understand
> >> correctly it was because of missing dependency backport 936e114a245b6
> >> ("iomap: update ki_pos a little later in iomap_dio_complete") which was
> >> then backported to 5.15 & 6.1 but not to 5.10.
> >> 
> >> *This is not failing on 5.15 nor 6.1, and it does fail consistently in x86-64 & ARM
> >> 
> >> [1]: https://lore.kernel.org/all/20231205122122.dfhhoaswsfscuhc3@quack3/
> >> 
> >
> >
> > What do you suggest be done?
> >
> 
> I think as an urgent fix I would suggest reverting the mentioned commit
> and commits that depend on it from 5.10.y..
> 
> 4911610c7a1fe ("ext4: fix warning in ext4_dio_write_end_io()")
> f8a7c342326f6 ("ext4: dax: fix overflowing extents beyond inode size when partially writing")
> dde4c1e1663b6 ("ext4: properly sync file size update after O_SYNC direct
> IO")

Great, can you submit a series of these reverted that you have tested to
fix the issue?

thanks,

greg k-h

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

* Re: [5.10.y] Regression in EXT3/4 with v5.10.227, LTP preadv03 is failing
  2024-10-21 17:15   ` Mahmoud Adam
  2024-10-21 20:19     ` Greg KH
@ 2024-10-22  9:40     ` Jan Kara
  2024-10-22 10:59       ` Mahmoud Adam
  1 sibling, 1 reply; 5+ messages in thread
From: Jan Kara @ 2024-10-22  9:40 UTC (permalink / raw)
  To: Mahmoud Adam; +Cc: Greg KH, jack, hch, sashal, tytso, linux-ext4, regressions

On Mon 21-10-24 19:15:58, Mahmoud Adam wrote:
> Greg KH <gregkh@linuxfoundation.org> writes:
> 
> > On Mon, Oct 21, 2024 at 05:43:54PM +0200, Mahmoud Adam wrote:
> >> 
> >> Hello,
> >> 
> >>   In the latest 5.10.227 we see LTP preadv03 failing on EXT3/4, when
> >> bisected it was found that the commit dde4c1e1663b6 ("ext4: properly
> >> sync file size update after O_SYNC direct IO") is causing it
> >> 
> >> This seems similar to what occurred before[1] and if I understand
> >> correctly it was because of missing dependency backport 936e114a245b6
> >> ("iomap: update ki_pos a little later in iomap_dio_complete") which was
> >> then backported to 5.15 & 6.1 but not to 5.10.
> >> 
> >> *This is not failing on 5.15 nor 6.1, and it does fail consistently in x86-64 & ARM
> >> 
> >> [1]: https://lore.kernel.org/all/20231205122122.dfhhoaswsfscuhc3@quack3/
> >> 
> >
> >
> > What do you suggest be done?
> >
> 
> I think as an urgent fix I would suggest reverting the mentioned commit
> and commits that depend on it from 5.10.y..
> 
> 4911610c7a1fe ("ext4: fix warning in ext4_dio_write_end_io()")
> f8a7c342326f6 ("ext4: dax: fix overflowing extents beyond inode size when partially writing")
> dde4c1e1663b6 ("ext4: properly sync file size update after O_SYNC direct
> IO")

Looks sensible to me. Another possibility would be to backport commit
936e114a245b6e3 ("iomap: update ki_pos a little later in
iomap_dio_complete") to 5.10-stable. We've done this for other stable
branches which had this issue and so far I didn't hear about any fallout
from that.

								Honza
-- 
Jan Kara <jack@suse.com>
SUSE Labs, CR

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

* Re: [5.10.y] Regression in EXT3/4 with v5.10.227, LTP preadv03 is failing
  2024-10-22  9:40     ` Jan Kara
@ 2024-10-22 10:59       ` Mahmoud Adam
  0 siblings, 0 replies; 5+ messages in thread
From: Mahmoud Adam @ 2024-10-22 10:59 UTC (permalink / raw)
  To: Jan Kara; +Cc: Greg KH, hch, sashal, tytso, linux-ext4, regressions

Jan Kara <jack@suse.cz> writes:

> On Mon 21-10-24 19:15:58, Mahmoud Adam wrote:
>> Greg KH <gregkh@linuxfoundation.org> writes:
>> 
>> > On Mon, Oct 21, 2024 at 05:43:54PM +0200, Mahmoud Adam wrote:
>> >> 
>> >> Hello,
>> >> 
>> >>   In the latest 5.10.227 we see LTP preadv03 failing on EXT3/4, when
>> >> bisected it was found that the commit dde4c1e1663b6 ("ext4: properly
>> >> sync file size update after O_SYNC direct IO") is causing it
>> >> 
>> >> This seems similar to what occurred before[1] and if I understand
>> >> correctly it was because of missing dependency backport 936e114a245b6
>> >> ("iomap: update ki_pos a little later in iomap_dio_complete") which was
>> >> then backported to 5.15 & 6.1 but not to 5.10.
>> >> 
>> >> *This is not failing on 5.15 nor 6.1, and it does fail consistently in x86-64 & ARM
>> >> 
>> >> [1]: https://lore.kernel.org/all/20231205122122.dfhhoaswsfscuhc3@quack3/
>> >> 
>> >
>> >
>> > What do you suggest be done?
>> >
>> 
>> I think as an urgent fix I would suggest reverting the mentioned commit
>> and commits that depend on it from 5.10.y..
>> 
>> 4911610c7a1fe ("ext4: fix warning in ext4_dio_write_end_io()")
>> f8a7c342326f6 ("ext4: dax: fix overflowing extents beyond inode size when partially writing")
>> dde4c1e1663b6 ("ext4: properly sync file size update after O_SYNC direct
>> IO")
>
> Looks sensible to me. Another possibility would be to backport commit
> 936e114a245b6e3 ("iomap: update ki_pos a little later in
> iomap_dio_complete") to 5.10-stable. We've done this for other stable
> branches which had this issue and so far I didn't hear about any fallout
> from that.

Sure, I can backport that today, if any blockers will send the reverts
instead.

- MNAdam

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

end of thread, other threads:[~2024-10-22 11:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <lrkyqy12hpikl.fsf@dev-dsk-mngyadam-1c-a2602c62.eu-west-1.amazon.com>
2024-10-21 16:49 ` [5.10.y] Regression in EXT3/4 with v5.10.227, LTP preadv03 is failing Greg KH
2024-10-21 17:15   ` Mahmoud Adam
2024-10-21 20:19     ` Greg KH
2024-10-22  9:40     ` Jan Kara
2024-10-22 10:59       ` Mahmoud Adam

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