aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_da_btree.c
AgeCommit message (Collapse)AuthorFilesLines
2008-07-28[XFS] streamline init/exit pathChristoph Hellwig1-1/+1
Currently the xfs module init/exit code is a mess. It's farmed out over a lot of function with very little error checking. This patch makes sure we propagate all initialization failures properly and clean up after them. Various runtime initializations are replaced with compile-time initializations where possible to make this easier. The exit path is similarly consolidated. There's now split out function to create/destroy the kmem zones and alloc/free the trace buffers. I've also changed the ktrace allocations to KM_MAYFAIL and handled errors resulting from that. And yes, we really should replace the XFS_*_TRACE ifdefs with a single XFS_TRACE.. SGI-PV: 976035 SGI-Modid: xfs-linux-melb:xfs-kern:31354a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Niv Sardi <[email protected]> Signed-off-by: Lachlan McIlroy <[email protected]>
2008-07-28[XFS] Add op_flags field and helpers to xfs_da_argsBarry Naujok1-1/+1
The end of the xfs_da_args structure has 4 unsigned char fields for true/false information on directory and attr operations using the xfs_da_args structure. The following converts these 4 into a op_flags field that uses the first 4 bits for these fields and allows expansion for future operation information (eg. case-insensitive lookup request). SGI-PV: 981520 SGI-Modid: xfs-linux-melb:xfs-kern:31206a Signed-off-by: Barry Naujok <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
2008-07-28[XFS] Name operation vector for hash and compareBarry Naujok1-0/+22
Adds two pieces of functionality for the basis of case-insensitive support in XFS: 1. A comparison result enumerated type: xfs_dacmp. It represents an exact match, case-insensitive match or no match at all. This patch only implements different and exact results. 2. xfs_nameops vector for specifying how to perform the hash generation of filenames and comparision methods. In this patch the hash vector points to the existing xfs_da_hashname function and the comparison method does a length compare, and if the same, does a memcmp and return the xfs_dacmp result. All filename functions that use the hash (create, lookup remove, rename, etc) now use the xfs_nameops.hashname function and all directory lookup functions also use the xfs_nameops.compname function. The lookup functions also handle case-insensitive results even though the default comparison function cannot return that. And important aspect of the lookup functions is that an exact match always has precedence over a case-insensitive. So while a case-insensitive match is found, we have to keep looking just in case there is an exact match. In the meantime, the info for the first case-insensitive match is retained if no exact match is found. SGI-PV: 981519 SGI-Modid: xfs-linux-melb:xfs-kern:31205a Signed-off-by: Barry Naujok <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]>
2008-07-28[XFS] Remove unused arg from kmem_free()Denys Vlasenko1-11/+11
kmem_free() function takes (ptr, size) arguments but doesn't actually use second one. This patch removes size argument from all callsites. SGI-PV: 981498 SGI-Modid: xfs-linux-melb:xfs-kern:31050a Signed-off-by: Denys Vlasenko <[email protected]> Signed-off-by: David Chinner <[email protected]> Signed-off-by: Lachlan McIlroy <[email protected]>
2008-02-13xfs: convert beX_add to beX_add_cpu (new common API)Marcin Slusarz1-7/+7
remove beX_add functions and replace all uses with beX_add_cpu Signed-off-by: Marcin Slusarz <[email protected]> Cc: Mark Fasheh <[email protected]> Reviewed-by: Dave Chinner <[email protected]> Cc: Timothy Shimmin <[email protected]> Cc: <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
2008-02-07[XFS] Unwrap xfs_dabuf_global_lockEric Sandeen1-8/+5
Un-obfuscate dabuf_global_lock, remove mutex_lock->spin_lock macros, call spin_lock directly, remove extraneous cookie holdover from old xfs code, and change lock type to spinlock_t. SGI-PV: 970382 SGI-Modid: xfs-linux-melb:xfs-kern:29744a Signed-off-by: Eric Sandeen <[email protected]> Signed-off-by: Donald Douwsma <[email protected]> Signed-off-by: Tim Shimmin <[email protected]>
2007-09-05[XFS] fix sparse shadowed variable warningsChristoph Hellwig1-1/+0
- in xfs_probe_cluster rename the inner len to pg_len. There's no harm here because the outer len isn't used after the inner len comes into existence but it keeps the code clean. - in xfs_da_do_buf remove the inner i because they don't overlap and they are both the same type. SGI-PV: 968555 SGI-Modid: xfs-linux-melb:xfs-kern:29311a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: David Chinner <[email protected]> Signed-off-by: Tim Shimmin <[email protected]>
2007-02-10[XFS] Remove a bunch of unused functions from XFS.Eric Sandeen1-15/+0
Patch provided by Eric Sandeen ([email protected]). SGI-PV: 960897 SGI-Modid: xfs-linux-melb:xfs-kern:28038a Signed-off-by: Eric Sandeen <[email protected]> Signed-off-by: David Chinner <[email protected]> Signed-off-by: Tim Shimmin <[email protected]>
2007-02-10[XFS] fix sparse warning in xfs_da_btree.cLachlan McIlroy1-2/+1
SGI-PV: 954580 SGI-Modid: xfs-linux-melb:xfs-kern:27702a Signed-off-by: Lachlan McIlroy <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Tim Shimmin <[email protected]>
2006-09-28[XFS] Minor code rearranging and cleanup to prevent some coverity falseNathan Scott1-15/+18
positives. SGI-PV: 955502 SGI-Modid: xfs-linux-melb:xfs-kern:26805a Signed-off-by: Nathan Scott <[email protected]> Signed-off-by: Tim Shimmin <[email protected]>
2006-06-20[XFS] Remove version 1 directory code. Never functioned on Linux, justNathan Scott1-157/+28
pure bloat. SGI-PV: 952969 SGI-Modid: xfs-linux-melb:xfs-kern:26251a Signed-off-by: Nathan Scott <[email protected]>
2006-06-09[XFS] endianess annotations for xfs_dir_leaf_entry_t Christoph Hellwig1-2/+2
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25808a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Al Viro <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-06-09[XFS] endianess annotations for xfs_dir_leaf_hdr_t Christoph Hellwig1-1/+1
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25807a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Al Viro <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-06-09[XFS] Add parameters to xfs_bmapi() and xfs_bunmapi() to have them reportOlaf Weber1-4/+5
the range spanned by modifications to the in-core extent map. Add XFS_BUNMAPI() and XFS_SWAP_EXTENTS() macros that call xfs_bunmapi() and xfs_swap_extents() via the ioops vector. Change all calls that may modify the in-core extent map for the data fork to go through the ioops vector. This allows a cache of extent map data to be kept in sync. SGI-PV: 947615 SGI-Modid: xfs-linux-melb:xfs-kern:209226a Signed-off-by: Olaf Weber <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-03-29[XFS] We really suck at spulling. Thanks to Chris Pascoe for fixing allNathan Scott1-1/+1
these typos. SGI-PV: 904196 SGI-Modid: xfs-linux-melb:xfs-kern:25539a Signed-off-by: Nathan Scott <[email protected]>
2006-03-17[XFS] endianess annotations for xfs_da_node_hdr_t Nathan Scott1-70/+69
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25505a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-03-17[XFS] endianess annotations for xfs_da_node_entry_t Nathan Scott1-43/+43
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25504a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-03-17[XFS] endianess annotations for xfs_da_blkinfo_t Nathan Scott1-107/+99
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25495a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-03-17[XFS] endianess annotations for xfs_dir2_leaf_entry_t Nathan Scott1-1/+1
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25493a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-03-17[XFS] endianess annotations for xfs_dir2_leaf_hdr_t Nathan Scott1-2/+2
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25492a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-03-17[XFS] endianess annotations for xfs_dir2_free_hdr_t Nathan Scott1-1/+1
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25485a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2006-03-17[XFS] endianess annotations for xfs_dir2_data_hdr structure.Nathan Scott1-1/+1
SGI-PV: 943272 SGI-Modid: xfs-linux-melb:xfs-kern:25484a Signed-off-by: Nathan Scott <[email protected]>
2005-11-03[XFS] Fixed the inconsistency between attribute b-tree intermidiate nodeYingping Lu1-1/+2
and leaf blocks. The problem cam from xfsqa test 117. SGI-PV: 940655 SGI-Modid: xfs-linux:xfs-kern:201527a Signed-off-by: Yingping Lu <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2005-11-02[XFS] Remove an unhelpful ifdef, the comment above the routine explainsNathan Scott1-13/+1
the purpose well enough here. SGI-PV: 944821 SGI-Modid: xfs-linux:xfs-kern:24214a Signed-off-by: Nathan Scott <[email protected]>
2005-11-02[XFS] Update license/copyright notices to match the prefered SGINathan Scott1-25/+11
boilerplate. SGI-PV: 913862 SGI-Modid: xfs-linux:xfs-kern:23903a Signed-off-by: Nathan Scott <[email protected]>
2005-11-02[XFS] Remove xfs_macros.c, xfs_macros.h, rework headers a whole lot.Nathan Scott1-11/+9
SGI-PV: 943122 SGI-Modid: xfs-linux:xfs-kern:23901a Signed-off-by: Nathan Scott <[email protected]>
2005-11-02[XFS] Make some extended attributes routines take const parameters, forNathan Scott1-1/+1
the FreeBSD porters. SGI-PV: 942906 SGI-Modid: xfs-linux:xfs-kern:23845a Signed-off-by: Nathan Scott <[email protected]>
2005-11-02[XFS] Move some code around to prepare for the upcoming extendedNathan Scott1-27/+1
attributes format change (attr2). SGI-PV: 941645 SGI-Modid: xfs-linux:xfs-kern:23833a Signed-off-by: Nathan Scott <[email protected]>
2005-06-21[XFS] mark various symbols static Patch from Adrian BunkChristoph Hellwig1-3/+6
SGI-PV: 936255 SGI-Modid: xfs-linux:xfs-kern:192760a Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Nathan Scott <[email protected]>
2005-04-16Linux-2.6.12-rc2Linus Torvalds1-0/+2648
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!