Messages in this thread Patch in this message |  | | Date | Thu, 24 Aug 2000 22:40:34 +0200 | From | Rasmus Andersen <> | Subject | [patchlet] Unneeded #undef in pagemap.h (2.4.0-test7) |
| |
Hi.
In include/linux/pagemap.h in _page_hashfn we '#undef o' without o ever being #defined. I guess this is old cruft. The following patch removes it:
--- linux-240test7-clean/include/linux/pagemap.h Thu Aug 10 16:29:54 2000 +++ linux/include/linux/pagemap.h Thu Aug 24 22:34:16 2000 @@ -62,7 +62,6 @@ #define s(x) ((x)+((x)>>PAGE_HASH_BITS)) return s(i+index) & (PAGE_HASH_SIZE-1); #undef i -#undef o #undef s } -- Regards, Rasmus(rasmus@jaquet.dk)
"No man is genuinely happy, married, who has to drink worse whiskey than he used to drink when he was single." H.L. Mencken - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/
|  |