forked from Imagelibrary/rtems
* libcsupport/src/chdir.c, libcsupport/src/chmod.c, libcsupport/src/chown.c, libcsupport/src/close.c, libcsupport/src/eval.c, libcsupport/src/fchdir.c, libcsupport/src/fchmod.c, libcsupport/src/fchown.c, libcsupport/src/fcntl.c, libcsupport/src/fdatasync.c, libcsupport/src/freenode.c, libcsupport/src/fstat.c, libcsupport/src/fsync.c, libcsupport/src/ftruncate.c, libcsupport/src/ioctl.c, libcsupport/src/link.c, libcsupport/src/lseek.c, libcsupport/src/mknod.c, libcsupport/src/mount.c, libcsupport/src/open.c, libcsupport/src/read.c, libcsupport/src/readlink.c, libcsupport/src/readv.c, libcsupport/src/rmdir.c, libcsupport/src/stat.c, libcsupport/src/statvfs.c, libcsupport/src/symlink.c, libcsupport/src/unlink.c, libcsupport/src/unmount.c, libcsupport/src/write.c: Removed filesystem checks for NULL methods checks from the main posix rountines. These are now required to have at a miminum default routines in the tables.
53 lines
1.2 KiB
C
53 lines
1.2 KiB
C
/*
|
|
* COPYRIGHT (c) 2009 Chris Johns <chrisj@rtems.org>
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.com/license/LICENSE.
|
|
*
|
|
* $Id$
|
|
*/
|
|
/*
|
|
* The statvfs as defined by the SUS:
|
|
* http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/statvfs.h.html
|
|
*/
|
|
|
|
#if HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <rtems/libio_.h>
|
|
#include <rtems/seterr.h>
|
|
|
|
#include <sys/statvfs.h>
|
|
|
|
int
|
|
statvfs (const char *path, struct statvfs *sb)
|
|
{
|
|
rtems_filesystem_location_info_t loc;
|
|
rtems_filesystem_location_info_t *fs_mount_root;
|
|
rtems_filesystem_mount_table_entry_t *mt_entry;
|
|
int result;
|
|
|
|
/*
|
|
* Get
|
|
* The root node of the mounted filesytem.
|
|
* The node for the directory that the fileystem is mounted on.
|
|
* The mount entry that is being refered to.
|
|
*/
|
|
|
|
if ( rtems_filesystem_evaluate_path( path, strlen( path ), 0x0, &loc, true ) )
|
|
return -1;
|
|
|
|
mt_entry = loc.mt_entry;
|
|
fs_mount_root = &mt_entry->mt_fs_root;
|
|
|
|
memset (sb, 0, sizeof (struct statvfs));
|
|
|
|
result = ( fs_mount_root->ops->statvfs_h )( fs_mount_root, sb );
|
|
|
|
rtems_filesystem_freenode( &loc );
|
|
|
|
return result;
|
|
}
|