| Summary: | close_range syscalls started failing with 3.25.0 | ||
|---|---|---|---|
| Product: | [Developer tools] valgrind | Reporter: | correctmost <cmbugz> |
| Component: | general | Assignee: | Paul Floyd <pjfloyd> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | pjfloyd |
| Priority: | NOR | ||
| Version First Reported In: | 3.25.0 | ||
| Target Milestone: | --- | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
correctmost
2025-05-02 04:22:52 UTC
A small reproducer:
#include <unistd.h>
#include <cstdio>
#include <cerrno>
#include <linux/close_range.h>
int main(void)
{
if (close_range(2, ~0U, 0) == -1)
{
perror("close_range failed:");
}
}
commit 933e542b431f17681cc915de656e853dc16d4fe7 (HEAD -> master, origin/master, origin/HEAD) Author: Paul Floyd <pjfloyd@wanadoo.fr> Date: Fri May 2 18:53:09 2025 +0200 Bug 503641 - close_range syscalls started failing with 3.25.0 |