Update of /cvsroot/linux-vax/kernel-2.5/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24924/lib
Modified Files:
radix-tree.c
Log Message:
Merge with 2.6.10
Index: radix-tree.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/lib/radix-tree.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- radix-tree.c 28 Jul 2004 21:59:19 -0000 1.6
+++ radix-tree.c 21 Mar 2005 23:44:18 -0000 1.7
@@ -701,8 +701,10 @@
for (tag = 0; tag < RADIX_TREE_TAGS; tag++) {
int idx;
- if (!tags[tag])
- tag_clear(pathp[0].node, tag, pathp[0].offset);
+ if (tags[tag])
+ continue;
+
+ tag_clear(pathp[0].node, tag, pathp[0].offset);
for (idx = 0; idx < RADIX_TREE_TAG_LONGS; idx++) {
if (pathp[0].node->tags[tag][idx]) {
|