diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-08-14 06:19:59 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-08-14 06:19:59 -0400 |
| commit | 8d7ccaa545490cdffdfaff0842436a8dd85cf47b (patch) | |
| tree | 8129b5907161bc6ae26deb3645ce1e280c5e1f51 /fs/xfs/xfs_itable.c | |
| parent | b2139aa0eec330c711c5a279db361e5ef1178e78 (diff) | |
| parent | 30a2f3c60a84092c8084dfe788b710f8d0768cd4 (diff) | |
Merge commit 'v2.6.27-rc3' into x86/prototypes
Conflicts:
include/asm-x86/dma-mapping.h
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'fs/xfs/xfs_itable.c')
| -rw-r--r-- | fs/xfs/xfs_itable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_itable.c b/fs/xfs/xfs_itable.c index 419de15aeb43..9a3ef9dcaeb9 100644 --- a/fs/xfs/xfs_itable.c +++ b/fs/xfs/xfs_itable.c | |||
| @@ -257,7 +257,7 @@ xfs_bulkstat_one( | |||
| 257 | *ubused = error; | 257 | *ubused = error; |
| 258 | 258 | ||
| 259 | out_free: | 259 | out_free: |
| 260 | kmem_free(buf, sizeof(*buf)); | 260 | kmem_free(buf); |
| 261 | return error; | 261 | return error; |
| 262 | } | 262 | } |
| 263 | 263 | ||
| @@ -708,7 +708,7 @@ xfs_bulkstat( | |||
| 708 | /* | 708 | /* |
| 709 | * Done, we're either out of filesystem or space to put the data. | 709 | * Done, we're either out of filesystem or space to put the data. |
| 710 | */ | 710 | */ |
| 711 | kmem_free(irbuf, irbsize); | 711 | kmem_free(irbuf); |
| 712 | *ubcountp = ubelem; | 712 | *ubcountp = ubelem; |
| 713 | /* | 713 | /* |
| 714 | * Found some inodes, return them now and return the error next time. | 714 | * Found some inodes, return them now and return the error next time. |
| @@ -914,7 +914,7 @@ xfs_inumbers( | |||
| 914 | } | 914 | } |
| 915 | *lastino = XFS_AGINO_TO_INO(mp, agno, agino); | 915 | *lastino = XFS_AGINO_TO_INO(mp, agno, agino); |
| 916 | } | 916 | } |
| 917 | kmem_free(buffer, bcount * sizeof(*buffer)); | 917 | kmem_free(buffer); |
| 918 | if (cur) | 918 | if (cur) |
| 919 | xfs_btree_del_cursor(cur, (error ? XFS_BTREE_ERROR : | 919 | xfs_btree_del_cursor(cur, (error ? XFS_BTREE_ERROR : |
| 920 | XFS_BTREE_NOERROR)); | 920 | XFS_BTREE_NOERROR)); |
