Why do the statfs() and statvfs() calls both exist when they're so similar?

Under what circumstances would I prefer one over the other?

link|improve this question

78% accept rate
If you like this question, please upvote! – Matt Joiner May 19 '11 at 12:51
feedback

2 Answers

up vote 5 down vote accepted

Hysterical Raisins


Err, "historical reasons".

Originally 4.4BSD defined a statfs() call. Linux later implemented a slightly different call with the same name. Posix standardized it between all freenix and Unix versions by defining statvfs().

statfs() is OS-specific

statvfs() is posix-conforming

As they all return slightly different structures, later ones to come along can't replace the first.

In general you should use statvfs(), the Posix one. Be careful about "use Posix" advice, though, as in some cases (pty, for example) the BSD (or whatever) one is more portable in practice.

link|improve this answer
On FreeBSD, man statfs gives me "HISTORY The statfs() system call first appeared in 4.4BSD." – user181548 Oct 31 '09 at 2:09
Thanks, got it. – DigitalRoss Oct 31 '09 at 2:14
feedback

statfs() is deprecated in favor of statvfs(), which deals considerably better with large file support. statfs() is known to do odd things for sizes that exceed the value of an unsigned long.

As far as I can tell (and remember), statvfs() has been around since Redhat 7.3, just after being introduced as a POSIX replacement. You'll likely find it on (most) modern systems.

link|improve this answer
1  
Do you mean depreciated or deprecated? – Artelius Oct 31 '09 at 2:19
1  
Thanks, edited. Not enough coffee – Tim Post Oct 31 '09 at 2:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.