|
Bugzilla – Full Text Bug Listing |
| Summary: | stress-ng fsize failure on NFSv3 | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE Tumbleweed | Reporter: | Richard Palethorpe <richard.palethorpe> |
| Component: | Kernel | Assignee: | openSUSE Kernel Bugs <kernel-bugs> |
| Status: | NEW --- | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | nfbrown |
| Version: | Current | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | --- | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Richard Palethorpe
2023-06-01 09:12:40 UTC
The timeout setting it too small. Use a bigger number. NFSv3 (and NFSv4.1, but not NFSv4.2) does not implement fallocate(). So stress-ng uses a "shim_emulate_fallocate()" instead, which writes data. shim_emulate_fallocate() stops trying to write if keep_stressing_flag() fails. One of the things that causes this to fail is when a SIGALARM is delivered, which happens after the timeout. So after the timeout, a fallocate attempt will appear to succeed. This is arguably a bug in stress-ng. NFS is behaving correctly. stress-ng is not getting an error, because it the way is emulates fallocate is not reliable. |