From: "Robert P. J. Day" Since nothing earlier than gcc-3.2 is supported for kernel compilation, that 2.95 hack can be removed. Signed-off-by: Robert P. J. Day Signed-off-by: Andrew Morton --- mm/slab.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN mm/slab.c~delete-gcc-295-compatible-structure-definition mm/slab.c --- a/mm/slab.c~delete-gcc-295-compatible-structure-definition +++ a/mm/slab.c @@ -267,11 +267,10 @@ struct array_cache { unsigned int batchcount; unsigned int touched; spinlock_t lock; - void *entry[0]; /* + void *entry[]; /* * Must have this definition in here for the proper * alignment of array_cache. Also simplifies accessing * the entries. - * [0] is for gcc 2.95. It should really be []. */ }; _