From: Nigel Kukard <nkukard@lbsd.net>
To: buildroot@busybox.net
Subject: [Buildroot] deprecated ustat() vs. statfs()
Date: Wed, 31 Dec 2008 14:32:36 +0000 [thread overview]
Message-ID: <495B8284.3080805@lbsd.net> (raw)
I dont suppose this is the correct way to switch to statfs()?
--- xfsprogs-2.10.2_vanilla/libxfs/linux.c 2008-12-09
23:33:26.000000000 +0000
+++ xfsprogs-2.10.2_remove-deprecated/libxfs/linux.c 2008-12-31
14:30:45.000000000 +0000
@@ -21,7 +21,7 @@
#include <mntent.h>
#include <sys/stat.h>
#undef ustat
-#include <sys/ustat.h>
+#include <sys/statfs.h>
#include <sys/mount.h>
#include <sys/ioctl.h>
#include <sys/sysinfo.h>
@@ -49,7 +49,7 @@
int
platform_check_ismounted(char *name, char *block, struct stat64 *s, int
verbose)
{
- struct ustat ust;
+ struct statfs ust;
struct stat64 st;
if (!s) {
@@ -60,7 +60,7 @@
s = &st;
}
- if (ustat(s->st_rdev, &ust) >= 0) {
+ if (statfs(s->st_rdev, &ust) >= 0) {
if (verbose)
fprintf(stderr,
_("%s: %s contains a mounted filesystem\n"),
next reply other threads:[~2008-12-31 14:32 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-31 14:32 Nigel Kukard [this message]
2008-12-31 17:28 ` [Buildroot] deprecated ustat() vs. statfs() Bernhard Reutner-Fischer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=495B8284.3080805@lbsd.net \
--to=nkukard@lbsd.net \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox