Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ustat(2) [redhat man page]

USTAT(2)						     Linux Programmer's Manual							  USTAT(2)

NAME
ustat - get file system statistics SYNOPSIS
#include <sys/types.h> #include <unistd.h> /* libc[45] */ #include <ustat.h> /* glibc2 */ int ustat(dev_t dev, struct ustat *ubuf); DESCRIPTION
ustat returns information about a mounted file system. dev is a device number identifying a device containing a mounted file system. ubuf is a pointer to a ustat structure that contains the following members: daddr_t f_tfree; /* Total free blocks */ ino_t f_tinode; /* Number of free inodes */ char f_fname[6]; /* Filsys name */ char f_fpack[6]; /* Filsys pack name */ The last two fields, f_fname and f_fpack, are not implemented and will always be filled with null characters. RETURN VALUE
On success, zero is returned and the ustat structure pointed to by ubuf will be filled in. On error, -1 is returned, and errno is set appropriately. ERRORS
EINVAL dev does not refer to a device containing a mounted file system. EFAULT ubuf points outside of your accessible address space. ENOSYS The mounted file system referenced by dev does not support this operation, or any version of Linux before 1.3.16. NOTES
ustat has only been provided for compatibility. All new programs should use statfs(2) instead. CONFORMING TO
SVr4. SVr4 documents additional error conditions ENOLINK, ECOMM, and EINTR but has no ENOSYS condition. SEE ALSO
statfs(2), stat(2) Linux 1.3.16 1995-08-09 USTAT(2)

Check Out this Related Man Page

USTAT(2)						     Linux Programmer's Manual							  USTAT(2)

NAME
ustat - get file system statistics SYNOPSIS
#include <sys/types.h> #include <unistd.h> /* libc[45] */ #include <ustat.h> /* glibc2 */ int ustat(dev_t dev, struct ustat *ubuf); DESCRIPTION
ustat() returns information about a mounted file system. dev is a device number identifying a device containing a mounted file system. ubuf is a pointer to a ustat structure that contains the following members: daddr_t f_tfree; /* Total free blocks */ ino_t f_tinode; /* Number of free inodes */ char f_fname[6]; /* Filsys name */ char f_fpack[6]; /* Filsys pack name */ The last two fields, f_fname and f_fpack, are not implemented and will always be filled with null bytes (''). RETURN VALUE
On success, zero is returned and the ustat structure pointed to by ubuf will be filled in. On error, -1 is returned, and errno is set appropriately. ERRORS
EFAULT ubuf points outside of your accessible address space. EINVAL dev does not refer to a device containing a mounted file system. ENOSYS The mounted file system referenced by dev does not support this operation, or any version of Linux before 1.3.16. CONFORMING TO
SVr4. NOTES
ustat() is deprecated and has only been provided for compatibility. All new programs should use statfs(2) instead. HP-UX Notes The HP-UX version of the ustat structure has an additional field, f_blksize, that is unknown elsewhere. HP-UX warns: For some file sys- tems, the number of free inodes does not change. Such file systems will return -1 in the field f_tinode. For some file systems, inodes are dynamically allocated. Such file systems will return the current number of free inodes. SEE ALSO
stat(2), statfs(2) COLOPHON
This page is part of release 3.44 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2003-08-04 USTAT(2)
Man Page

4 More Discussions You Might Find Interesting

1. Solaris

Lustatus - ERROR

Hello, I'd appreciate any thoughts or pearls of wisdom on this issue. I can't find anything that helps. I even had to look on page 2 of my google search results :eek: Scenario: This is a Solaris10 Jan13 x86/64 VM that I stood up last week. I'm trying to prep for a Live Upgrade next... (2 Replies)
Discussion started by: ryanlraines
2 Replies

2. Shell Programming and Scripting

Shell Script: Run benchmark and cpustat together

Hello, New to Shell scripting here. :-( I am trying to do the following: - Run a long benchmark program (Don't need to see the outputs to stdout) - As long as the benchmark is running, run the "cpustat" command with one particular Performance Counter. - When the (Multi-thread) benchmark is... (1 Reply)
Discussion started by: Zam_1234
1 Replies

3. Red Hat

Redhat clustering clustat not showing info

Having an issue with clustat not displaying the rgmanager info eventhu all the of the cman started successfully. No fencing errors. all of the cluster.conf are the same on all serers ..etc. However when i run the clustat i only see this: Cluster Status for RESTON-LSMS @ Mon Aug 31 15:13:16 2015... (4 Replies)
Discussion started by: mrn6430
4 Replies

4. Solaris

Prustat throwing error only in zones not in global

Hi, Prustat is throwing error only in zones. But it is working fine in global. dtrace: invalid probe specifier /* ** The following is a trimmed version of two seperate DTrace scripts: ** ** socketsnoop.d - snoop TCP network socket traffic by process. ** This is intended to identify the... (3 Replies)
Discussion started by: Sumanthsv
3 Replies