Diff for /xfs-linux/xfs_itable.h between versions 1.50 and 1.51

version 1.50, 2006/09/15 12:33:25 version 1.51, 2007/07/09 15:45:29
Line 69  xfs_bulkstat_single( Line 69  xfs_bulkstat_single(
         char                    __user *buffer,          char                    __user *buffer,
         int                     *done);          int                     *done);
   
   typedef int (*bulkstat_one_fmt_pf)(  /* used size in bytes or negative error */
           void                    __user *ubuffer, /* buffer to write to */
           const xfs_bstat_t       *buffer);        /* buffer to read from */
   
 int  int
 xfs_bulkstat_one(  xfs_bulkstat_one(
         xfs_mount_t             *mp,          xfs_mount_t             *mp,
Line 86  xfs_internal_inum( Line 90  xfs_internal_inum(
         xfs_mount_t             *mp,          xfs_mount_t             *mp,
         xfs_ino_t               ino);          xfs_ino_t               ino);
   
   typedef int (*inumbers_fmt_pf)(
           void                    __user *ubuffer, /* buffer to write to */
           const xfs_inogrp_t      *buffer,        /* buffer to read from */
           long                    count,          /* # of elements to read */
           long                    *written);      /* # of bytes written */
   
   int
   xfs_inumbers_fmt(
           void                    __user *ubuffer, /* buffer to write to */
           const xfs_inogrp_t      *buffer,        /* buffer to read from */
           long                    count,          /* # of elements to read */
           long                    *written);      /* # of bytes written */
   
 int                                     /* error status */  int                                     /* error status */
 xfs_inumbers(  xfs_inumbers(
         xfs_mount_t             *mp,    /* mount point for filesystem */          xfs_mount_t             *mp,    /* mount point for filesystem */
         xfs_ino_t               *last,  /* last inode returned */          xfs_ino_t               *last,  /* last inode returned */
         int                     *count, /* size of buffer/count returned */          int                     *count, /* size of buffer/count returned */
         xfs_inogrp_t            __user *buffer);/* buffer with inode info */          void                    __user *buffer, /* buffer with inode info */
           inumbers_fmt_pf         formatter);
   
 #endif  /* __XFS_ITABLE_H__ */  #endif  /* __XFS_ITABLE_H__ */

Removed from v.1.50  
changed lines
  Added in v.1.51


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>