xfs_rtbitmap.c (27fd38c5226ed0f1712d071880fa8e739eb78650) | xfs_rtbitmap.c (0d5a75e9e23ee39cd0d8a167393dcedb4f0f47b2) |
---|---|
1/* 2 * Copyright (c) 2000-2005 Silicon Graphics, Inc. 3 * All Rights Reserved. 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * --- 56 unchanged lines hidden (view full) --- 65 .verify_read = xfs_rtbuf_verify_read, 66 .verify_write = xfs_rtbuf_verify_write, 67}; 68 69/* 70 * Get a buffer for the bitmap or summary file block specified. 71 * The buffer is returned read and locked. 72 */ | 1/* 2 * Copyright (c) 2000-2005 Silicon Graphics, Inc. 3 * All Rights Reserved. 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * --- 56 unchanged lines hidden (view full) --- 65 .verify_read = xfs_rtbuf_verify_read, 66 .verify_write = xfs_rtbuf_verify_write, 67}; 68 69/* 70 * Get a buffer for the bitmap or summary file block specified. 71 * The buffer is returned read and locked. 72 */ |
73int | 73static int |
74xfs_rtbuf_get( 75 xfs_mount_t *mp, /* file system mount structure */ 76 xfs_trans_t *tp, /* transaction pointer */ 77 xfs_rtblock_t block, /* block number in bitmap or summary */ 78 int issum, /* is summary not bitmap */ 79 xfs_buf_t **bpp) /* output: buffer for the block */ 80{ 81 xfs_buf_t *bp; /* block buffer, result */ --- 938 unchanged lines hidden --- | 74xfs_rtbuf_get( 75 xfs_mount_t *mp, /* file system mount structure */ 76 xfs_trans_t *tp, /* transaction pointer */ 77 xfs_rtblock_t block, /* block number in bitmap or summary */ 78 int issum, /* is summary not bitmap */ 79 xfs_buf_t **bpp) /* output: buffer for the block */ 80{ 81 xfs_buf_t *bp; /* block buffer, result */ --- 938 unchanged lines hidden --- |