diff options
author | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2009-01-09 15:42:04 -0600 |
---|---|---|
committer | Dave Kleikamp <shaggy@linux.vnet.ibm.com> | 2009-01-09 15:42:04 -0600 |
commit | fec1878fe952b994125a3be7c94b1322db586f3b (patch) | |
tree | ef13833a74c4e1bcde57a4c4a6a2256fa9e84ccd /fs/jfs/jfs_xtree.h | |
parent | da9c138e9e1cc08aa3a4e8c09411a5d08f866445 (diff) | |
download | linux-stable-fec1878fe952b994125a3be7c94b1322db586f3b.tar.gz linux-stable-fec1878fe952b994125a3be7c94b1322db586f3b.tar.bz2 linux-stable-fec1878fe952b994125a3be7c94b1322db586f3b.zip |
jfs: remove xtLookupList()
xtLookupList() was a more generalized version of xtLookup() with a
nastier interface. Its only caller, extHint(), is actually better
suited to using xtLookup() than xtLookupList(). This also lets us
remove the definition of lxd_t, an obnoxious packed structure that was
only used in-memory.
Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
Diffstat (limited to 'fs/jfs/jfs_xtree.h')
-rw-r--r-- | fs/jfs/jfs_xtree.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/jfs/jfs_xtree.h b/fs/jfs/jfs_xtree.h index 70815c8a3d6a..08c0c749b986 100644 --- a/fs/jfs/jfs_xtree.h +++ b/fs/jfs/jfs_xtree.h @@ -110,8 +110,6 @@ typedef union { */ extern int xtLookup(struct inode *ip, s64 lstart, s64 llen, int *pflag, s64 * paddr, int *plen, int flag); -extern int xtLookupList(struct inode *ip, struct lxdlist * lxdlist, - struct xadlist * xadlist, int flag); extern void xtInitRoot(tid_t tid, struct inode *ip); extern int xtInsert(tid_t tid, struct inode *ip, int xflag, s64 xoff, int xlen, s64 * xaddrp, int flag); |