]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
repair: remove more dirv1 leftovers
authorDave Chinner <dchinner@redhat.com>
Thu, 1 May 2014 23:31:22 +0000 (09:31 +1000)
committerDave Chinner <david@fromorbit.com>
Thu, 1 May 2014 23:31:22 +0000 (09:31 +1000)
get_bmapi() and it's children were only called by dirv1 code. There
are no current callers, so remove them.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
repair/dinode.c
repair/dinode.h

index 48f17acfc7a90fae4441eacf7768569cafb900bc..b086bec2d9b4ce122f4916884ab6d4d8bcd32649 100644 (file)
@@ -869,245 +869,6 @@ get_agino_buf(xfs_mount_t  *mp,
        return(bp);
 }
 
-/*
- * these next routines return the filesystem blockno of the
- * block containing the block "bno" in the file whose bmap
- * tree (or extent list) is rooted by "rootblock".
- *
- * the next routines are utility routines for the third
- * routine, get_bmapi().
- *
- * NOTE: getfunc_extlist only used by dirv1 checking code
- */
-static xfs_dfsbno_t
-getfunc_extlist(xfs_mount_t            *mp,
-               xfs_ino_t               ino,
-               xfs_dinode_t            *dip,
-               xfs_dfiloff_t           bno,
-               int                     whichfork)
-{
-       xfs_bmbt_irec_t         irec;
-       xfs_dfsbno_t            final_fsbno = NULLDFSBNO;
-       xfs_bmbt_rec_t          *rootblock = (xfs_bmbt_rec_t *)
-                                               XFS_DFORK_PTR(dip, whichfork);
-       xfs_extnum_t            nextents = XFS_DFORK_NEXTENTS(dip, whichfork);
-       int                     i;
-
-       for (i = 0; i < nextents; i++)  {
-               libxfs_bmbt_disk_get_all(rootblock + i, &irec);
-               if (irec.br_startoff <= bno &&
-                               bno < irec.br_startoff + irec.br_blockcount) {
-                       final_fsbno = bno - irec.br_startoff + irec.br_startblock;
-                       break;
-               }
-       }
-
-       return(final_fsbno);
-}
-
-/*
- * NOTE: getfunc_btree only used by dirv1 checking code... 
- */
-static xfs_dfsbno_t
-getfunc_btree(xfs_mount_t              *mp,
-               xfs_ino_t               ino,
-               xfs_dinode_t            *dip,
-               xfs_dfiloff_t           bno,
-               int                     whichfork)
-{
-       int                     i;
-#ifdef DEBUG
-       int                     prev_level;
-#endif
-       int                     found;
-       int                     numrecs;
-       xfs_bmbt_rec_t          *rec;
-       xfs_bmbt_irec_t         irec;
-       xfs_bmbt_ptr_t          *pp;
-       xfs_bmbt_key_t          *key;
-       xfs_bmdr_key_t          *rkey;
-       xfs_bmdr_ptr_t          *rp;
-       xfs_dfsbno_t            fsbno;
-       xfs_buf_t               *bp;
-       xfs_dfsbno_t            final_fsbno = NULLDFSBNO;
-       struct xfs_btree_block  *block;
-       xfs_bmdr_block_t        *rootblock = (xfs_bmdr_block_t *)
-                                               XFS_DFORK_PTR(dip, whichfork);
-
-       ASSERT(rootblock->bb_level != 0);
-       /*
-        * deal with root block, it's got a slightly different
-        * header structure than interior nodes.  We know that
-        * a btree should have at least 2 levels otherwise it
-        * would be an extent list.
-        */
-       rkey = XFS_BMDR_KEY_ADDR(rootblock, 1);
-       rp = XFS_BMDR_PTR_ADDR(rootblock, 1,
-               xfs_bmdr_maxrecs(mp, XFS_DFORK_SIZE(dip, mp, whichfork), 1));
-       found = -1;
-       for (i = 0; i < be16_to_cpu(rootblock->bb_numrecs) - 1; i++) {
-               if (be64_to_cpu(rkey[i].br_startoff) <= bno && 
-                               bno < be64_to_cpu(rkey[i + 1].br_startoff)) {
-                       found = i;
-                       break;
-               }
-       }
-       if (i == be16_to_cpu(rootblock->bb_numrecs) - 1 && 
-                               bno >= be64_to_cpu(rkey[i].br_startoff))
-               found = i;
-
-       ASSERT(found != -1);
-
-       fsbno = be64_to_cpu(rp[found]);
-
-       ASSERT(verify_dfsbno(mp, fsbno));
-
-       bp = libxfs_readbuf(mp->m_dev, XFS_FSB_TO_DADDR(mp, fsbno),
-                               XFS_FSB_TO_BB(mp, 1), 0, NULL);
-       if (!bp) {
-               do_error(_("cannot read bmap block %" PRIu64 "\n"), fsbno);
-               return(NULLDFSBNO);
-       }
-       block = XFS_BUF_TO_BLOCK(bp);
-       numrecs = be16_to_cpu(block->bb_numrecs);
-
-       /*
-        * ok, now traverse any interior btree nodes
-        */
-#ifdef DEBUG
-       prev_level = be16_to_cpu(block->bb_level);
-#endif
-
-       while (be16_to_cpu(block->bb_level) > 0)  {
-#ifdef DEBUG
-               ASSERT(be16_to_cpu(block->bb_level) < prev_level);
-
-               prev_level = be16_to_cpu(block->bb_level);
-#endif
-               if (numrecs > mp->m_bmap_dmxr[1]) {
-                       do_warn(
-_("# of bmap records in inode %" PRIu64 " exceeds max (%u, max - %u)\n"),
-                               ino, numrecs,
-                               mp->m_bmap_dmxr[1]);
-                       libxfs_putbuf(bp);
-                       return(NULLDFSBNO);
-               }
-               if (verbose && numrecs < mp->m_bmap_dmnr[1]) {
-                       do_warn(
-_("- # of bmap records in inode %" PRIu64 " less than minimum (%u, min - %u), proceeding ...\n"),
-                               ino, numrecs, mp->m_bmap_dmnr[1]);
-               }
-               key = XFS_BMBT_KEY_ADDR(mp, block, 1);
-               pp = XFS_BMBT_PTR_ADDR(mp, block, 1, mp->m_bmap_dmxr[1]);
-               for (found = -1, i = 0; i < numrecs - 1; i++) {
-                       if (be64_to_cpu(key[i].br_startoff) <= bno && bno < 
-                                       be64_to_cpu(key[i + 1].br_startoff)) {
-                               found = i;
-                               break;
-                       }
-               }
-               if (i == numrecs - 1 && bno >= be64_to_cpu(key[i].br_startoff))
-                       found = i;
-
-               ASSERT(found != -1);
-               fsbno = be64_to_cpu(pp[found]);
-
-               ASSERT(verify_dfsbno(mp, fsbno));
-
-               /*
-                * release current btree block and read in the
-                * next btree block to be traversed
-                */
-               libxfs_putbuf(bp);
-               bp = libxfs_readbuf(mp->m_dev, XFS_FSB_TO_DADDR(mp, fsbno),
-                                       XFS_FSB_TO_BB(mp, 1), 0, NULL);
-               if (!bp) {
-                       do_error(_("cannot read bmap block %" PRIu64 "\n"),
-                               fsbno);
-                       return(NULLDFSBNO);
-               }
-               block = XFS_BUF_TO_BLOCK(bp);
-               numrecs = be16_to_cpu(block->bb_numrecs);
-       }
-
-       /*
-        * current block must be a leaf block
-        */
-       ASSERT(be16_to_cpu(block->bb_level) == 0);
-       if (numrecs > mp->m_bmap_dmxr[0]) {
-               do_warn(
-_("# of bmap records in inode %" PRIu64 " greater than maximum (%u, max - %u)\n"),
-                       ino, numrecs, mp->m_bmap_dmxr[0]);
-               libxfs_putbuf(bp);
-               return(NULLDFSBNO);
-       }
-       if (verbose && numrecs < mp->m_bmap_dmnr[0])
-               do_warn(
-_("- # of bmap records in inode %" PRIu64 " less than minimum (%u, min - %u), continuing...\n"),
-                       ino, numrecs, mp->m_bmap_dmnr[0]);
-
-       rec = XFS_BMBT_REC_ADDR(mp, block, 1);
-       for (i = 0; i < numrecs; i++)  {
-               libxfs_bmbt_disk_get_all(rec + i, &irec);
-               if (irec.br_startoff <= bno &&
-                               bno < irec.br_startoff + irec.br_blockcount) {
-                       final_fsbno = bno - irec.br_startoff +
-                                                       irec.br_startblock;
-                       break;
-               }
-       }
-       libxfs_putbuf(bp);
-
-       if (final_fsbno == NULLDFSBNO)
-               do_warn(_("could not map block %" PRIu64 "\n"), bno);
-
-       return(final_fsbno);
-}
-
-/*
- * this could be smarter.  maybe we should have an open inode
- * routine that would get the inode buffer and return back
- * an inode handle.  I'm betting for the moment that this
- * is used only by the directory and attribute checking code
- * and that the avl tree find and buffer cache search are
- * relatively cheap.  If they're too expensive, we'll just
- * have to fix this and add an inode handle to the da btree
- * cursor.
- *
- * caller is responsible for checking doubly referenced blocks
- * and references to holes
- *
- * NOTE: get_bmapi only used by dirv1 checking code
- */
-xfs_dfsbno_t
-get_bmapi(xfs_mount_t *mp, xfs_dinode_t *dino_p,
-               xfs_ino_t ino_num, xfs_dfiloff_t bno, int whichfork)
-{
-       xfs_dfsbno_t            fsbno;
-
-       switch (XFS_DFORK_FORMAT(dino_p, whichfork)) {
-       case XFS_DINODE_FMT_EXTENTS:
-               fsbno = getfunc_extlist(mp, ino_num, dino_p, bno, whichfork);
-               break;
-       case XFS_DINODE_FMT_BTREE:
-               fsbno = getfunc_btree(mp, ino_num, dino_p, bno, whichfork);
-               break;
-       case XFS_DINODE_FMT_LOCAL:
-               do_error(_("get_bmapi() called for local inode %" PRIu64 "\n"),
-                       ino_num);
-               fsbno = NULLDFSBNO;
-               break;
-       default:
-               /*
-                * shouldn't happen
-                */
-               do_error(_("bad inode format for inode %" PRIu64 "\n"), ino_num);
-               fsbno = NULLDFSBNO;
-       }
-
-       return(fsbno);
-}
-
 /*
  * higher level inode processing stuff starts here:
  * first, one utility routine for each type of inode
index 5ee51ca49d0aa10825ceb750fd8cdd3d5d3938a9..80f3e4ea92fdb02e9014f368c326a0bb1b064206 100644 (file)
@@ -119,12 +119,6 @@ get_agino_buf(xfs_mount_t  *mp,
                xfs_agino_t     agino,
                xfs_dinode_t    **dipp);
 
-xfs_dfsbno_t
-get_bmapi(xfs_mount_t          *mp,
-               xfs_dinode_t    *dip,
-               xfs_ino_t       ino_num,
-               xfs_dfiloff_t   bno,
-               int             whichfork );
 
 void dinode_bmbt_translation_init(void);
 char * get_forkname(int whichfork);