Re: [PATCH] Make kunmap_atomic() harder to misuse

From: Cesar Eduardo Barros
Date: Mon May 31 2010 - 06:45:28 EST


Em 31-05-2010 07:15, Rusty Russell escreveu:
On Sun, 30 May 2010 01:12:56 pm Andrew Morton wrote:
On Fri, 28 May 2010 07:53:13 -0300 Cesar Eduardo Barros<cesarb@xxxxxxxxxx> wrote:
+/* Prevent people trying to call kunmap_atomic() as if it were kunmap() */
+struct __kunmap_atomic_dummy {};
+#define kunmap_atomic(addr, idx) do { \
+ BUILD_BUG_ON( \
+ __builtin_types_compatible_p(typeof(addr), struct page *)&& \
+ !__builtin_types_compatible_p(typeof(addr), struct __kunmap_atomic_dummy *)); \
+ kunmap_atomic_notypecheck((addr), (idx)); \
+ } while (0)

We have a little __same_type() helper for this. __must_be_array()
should be using it, too.

Yep... but I think BUILD_BUG_ON(__same_type((addr), struct page *)); is
sufficient; void * is not compatible in my quick tests here.

That is what I get for only reading the manual instead of testing :(

(I only tested the completed patch, not each step along the way.)

I will try it later today and make a new patch if it works as expected.

--
Cesar Eduardo Barros
cesarb@xxxxxxxxxx
cesar.barros@xxxxxxxxx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/