8dc522478c
XFS combines advanced journaling technology with full 64-bit addressing and scalable structures and algorithms. + Journaled 64-bit filesystem with guaranteed filesystem consistency. + XFS supports filesystem growth for mounted volumes, allows filesystem "freeze" and "thaw" operations to support volume level snapshots, and provides an online file defragmentation utility. + XFS supports user and group quotas. XFS considers quota information as filesystem metadata and uses journaling to avoid the need for lengthy quota consistency checks after a crash. + For Linux 2.6 and beyond, when using 64 bit addressing in the block devices layer (CONFIG_LBD) and a 64 bit platform, filesystem size limit increases to 9 million terabytes (or the device limits). For these later kernels on 32 bit platforms, 16TB is the current limit even with 64 bit addressing enabled in the block layer. This package contains filesystem manipulation and support programs. Very loosely based on the FreeBSD port (I took the MASTER_SITES from there).
27 lines
624 B
Text
27 lines
624 B
Text
$NetBSD: patch-ai,v 1.1.1.1 2005/12/30 23:03:06 agc Exp $
|
|
|
|
--- include/input.h.orig 2005-10-07 17:51:34.000000000 +0100
|
|
+++ include/input.h 2005-12-30 10:45:15.000000000 +0000
|
|
@@ -62,18 +62,12 @@
|
|
extern gid_t gid_from_string(char *group);
|
|
extern prid_t prid_from_string(char *project);
|
|
|
|
+#ifdef __NetBSD__
|
|
+#undef HAVE_FTW_H
|
|
+#else
|
|
#define HAVE_FTW_H 1 /* TODO: configure me */
|
|
+#endif
|
|
|
|
-#ifdef HAVE_FTW_H
|
|
#include <ftw.h>
|
|
-#else
|
|
-struct FTW;
|
|
-struct stat;
|
|
-extern int nftw(
|
|
- char *dir,
|
|
- int (*fn)(const char *, const struct stat *, int, struct FTW *),
|
|
- int depth,
|
|
- int flags);
|
|
-#endif
|
|
|
|
#endif /* __INPUT_H__ */
|