Lee,

The 02/26/2009 version is missing some of the patches that
were in the 02/20/2009 version so it will not compile on 26.

I found the bug in the patch that breaks on 26:

+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)
                        if (!trylock_page(page))
+#else
+                       if(!TestSetPageLocked(page))
+#endif

It should be

        if (TestSetPageLocked(page))

because pass/fail is reversed on those functions.

While I was testing, I ported back to 24 on
ubuntu and made it work with 2.6.24-23-generic
with the experimental tree from feb 25.

I will give you the 24 patches to include in your
patch as soon as you have a version that I can
rebase against the current experimental on 24/26.

jim
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to