On Wed, 9 Nov 2005, Nikita Danilov wrote:
> +#ifdef CONFIG_MIGRATION
> +extern int buffer_migrate_page(struct page *, struct page *);
> +#else
> +#define buffer_migrate_page(a,b) NULL
> +#endif
Depending on the CONFIG_MIGRATION, the type of buffer_migrate_page(a,b)
expansion is either int or void *, which doesn't look right.
But its right. You need to think about buffer_migrate_page as a pointer to
a function.
Moreover below you have initializations
.migrate_page = buffer_migrate_page,
that wouldn't compile when CONFIG_MIGRATION is not defined (as macro
requires two arguments).
NULL is a void * pointer which should work.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>