* [PATCH] Fix build with glibc-2.42
@ 2025-06-27 10:06 Steve Dickson
2025-06-27 10:44 ` Steve Dickson
0 siblings, 1 reply; 2+ messages in thread
From: Steve Dickson @ 2025-06-27 10:06 UTC (permalink / raw)
To: Linux NFS Mailing list
From: Yaakov Selkowitz <yselkowi@redhat.com>
exportfs.c: In function ‘release_lockfile’:
exportfs.c:83:17: error: ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
83 | lockf(_lockfd, F_ULOCK, 0);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
exportfs.c: In function ‘grab_lockfile’:
exportfs.c:77:17: error: ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
77 | lockf(_lockfd, F_LOCK, 0);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
lockf is now marked with attribute warn_unused_result:
https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=f3c82fc1b41261f582f5f9fa12f74af9bcbc88f9
Signed-off-by: Steve Dickson <steved@redhat.com>
---
utils/exportfs/exportfs.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c
index b03a047b..748c38e3 100644
--- a/utils/exportfs/exportfs.c
+++ b/utils/exportfs/exportfs.c
@@ -74,13 +74,19 @@ grab_lockfile(void)
{
_lockfd = open(lockfile, O_CREAT|O_RDWR, 0666);
if (_lockfd != -1)
- lockf(_lockfd, F_LOCK, 0);
+ if (lockf(_lockfd, F_LOCK, 0) != 0) {
+ xlog_warn("%s: lockf() failed: errno %d (%s)",
+ __func__, errno, strerror(errno));
+ }
}
static void
release_lockfile(void)
{
if (_lockfd != -1) {
- lockf(_lockfd, F_ULOCK, 0);
+ if (lockf(_lockfd, F_ULOCK, 0) != 0) {
+ xlog_warn("%s: lockf() failed: errno %d (%s)",
+ __func__, errno, strerror(errno));
+ }
close(_lockfd);
_lockfd = -1;
}
--
2.50.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Fix build with glibc-2.42
2025-06-27 10:06 [PATCH] Fix build with glibc-2.42 Steve Dickson
@ 2025-06-27 10:44 ` Steve Dickson
0 siblings, 0 replies; 2+ messages in thread
From: Steve Dickson @ 2025-06-27 10:44 UTC (permalink / raw)
To: Linux NFS Mailing list
On 6/27/25 6:06 AM, Steve Dickson wrote:
> From: Yaakov Selkowitz <yselkowi@redhat.com>
>
> exportfs.c: In function ‘release_lockfile’:
> exportfs.c:83:17: error: ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
> 83 | lockf(_lockfd, F_ULOCK, 0);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~
> exportfs.c: In function ‘grab_lockfile’:
> exportfs.c:77:17: error: ignoring return value of ‘lockf’ declared with attribute ‘warn_unused_result’ [-Werror=unused-result]
> 77 | lockf(_lockfd, F_LOCK, 0);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~
>
> lockf is now marked with attribute warn_unused_result:
>
> https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=f3c82fc1b41261f582f5f9fa12f74af9bcbc88f9
>
> Signed-off-by: Steve Dickson <steved@redhat.com>
Committed... (tag: nfs-utils-2-8-4-rc3)
steved.
> ---
> utils/exportfs/exportfs.c | 10 ++++++++--
> 1 file changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/utils/exportfs/exportfs.c b/utils/exportfs/exportfs.c
> index b03a047b..748c38e3 100644
> --- a/utils/exportfs/exportfs.c
> +++ b/utils/exportfs/exportfs.c
> @@ -74,13 +74,19 @@ grab_lockfile(void)
> {
> _lockfd = open(lockfile, O_CREAT|O_RDWR, 0666);
> if (_lockfd != -1)
> - lockf(_lockfd, F_LOCK, 0);
> + if (lockf(_lockfd, F_LOCK, 0) != 0) {
> + xlog_warn("%s: lockf() failed: errno %d (%s)",
> + __func__, errno, strerror(errno));
> + }
> }
> static void
> release_lockfile(void)
> {
> if (_lockfd != -1) {
> - lockf(_lockfd, F_ULOCK, 0);
> + if (lockf(_lockfd, F_ULOCK, 0) != 0) {
> + xlog_warn("%s: lockf() failed: errno %d (%s)",
> + __func__, errno, strerror(errno));
> + }
> close(_lockfd);
> _lockfd = -1;
> }
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-06-27 10:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-27 10:06 [PATCH] Fix build with glibc-2.42 Steve Dickson
2025-06-27 10:44 ` Steve Dickson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox