~ubuntu-branches/ubuntu/dapper/xfsdump/dapper

« back to all changes in this revision

Viewing changes to common/util.h

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Scott
  • Date: 2005-07-27 16:45:42 UTC
  • Revision ID: james.westby@ubuntu.com-20050727164542-9avb979cu83drces
Tags: 2.2.30-1
New upstream release (closes: #318088).

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
 */
90
90
extern char *strncpyterm( char *s1, char *s2, size_t n );
91
91
 
92
 
/* converts a struct stat64 into a xfs_bstat_t. does not fill in fields
93
 
 * where info cannot be extracted from struct stat64.
94
 
 */
95
 
extern void stat64_to_xfsbstat( xfs_bstat_t *xfsstatp, struct stat64 *statp );
96
 
 
97
92
/* bigstat - efficient file status gatherer. presents an iterative
98
93
 * callback interface, invoking the caller's callback for each in-use
99
94
 * inode. the caller can specify the first ino, and can limit the callbacks
120
115
                              xfs_bstat_t *buf,
121
116
                              size_t buflen );
122
117
 
123
 
extern intgen_t bigstat_one( jdm_fshandle_t *fshandlep,
124
 
                             intgen_t fsid,
 
118
extern intgen_t bigstat_one( intgen_t fsid,
125
119
                             xfs_ino_t ino,
126
120
                             xfs_bstat_t *statp );
127
121