diff options
author | Alex Elder <aelder@sgi.com> | 2010-03-05 20:45:03 +0300 |
---|---|---|
committer | Alex Elder <aelder@sgi.com> | 2010-03-05 20:45:03 +0300 |
commit | 9b1f56d60acfd634728f91f34922066c6f80ede6 (patch) | |
tree | e8f64d4bea808341f56f41e724c2920ae6b1ed26 /fs/xfs/linux-2.6/xfs_trace.c | |
parent | 64ba9926759792cf7b95f823402e2781edd1b5d4 (diff) | |
parent | 07000ee686cf19e853fa06f7904eff2cfe230ea3 (diff) | |
download | linux-9b1f56d60acfd634728f91f34922066c6f80ede6.tar.xz |
Merge branch 'for-2.6.34-rc1-batch2' into for-linus
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_trace.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_trace.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/fs/xfs/linux-2.6/xfs_trace.c b/fs/xfs/linux-2.6/xfs_trace.c index 856eb3c8d605..5a107601e969 100644 --- a/fs/xfs/linux-2.6/xfs_trace.c +++ b/fs/xfs/linux-2.6/xfs_trace.c @@ -52,22 +52,6 @@ #include "quota/xfs_dquot.h" /* - * Format fsblock number into a static buffer & return it. - */ -STATIC char *xfs_fmtfsblock(xfs_fsblock_t bno) -{ - static char rval[50]; - - if (bno == NULLFSBLOCK) - sprintf(rval, "NULLFSBLOCK"); - else if (isnullstartblock(bno)) - sprintf(rval, "NULLSTARTBLOCK(%lld)", startblockval(bno)); - else - sprintf(rval, "%lld", (xfs_dfsbno_t)bno); - return rval; -} - -/* * We include this last to have the helpers above available for the trace * event implementations. */ |