diff options
author | Robert P. J. Day <rpjday@mindspring.com> | 2007-10-17 02:30:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:42:58 -0400 |
commit | bda5b655fe663c86ae16436ab983a656d73b6e62 (patch) | |
tree | 5c0a580aab8dba20fdd9770597706a567b6fe50c /mm/slab.c | |
parent | fb46f341d9868fe993626536c7449c2a1aec62a3 (diff) |
Delete gcc-2.95 compatible structure definition.
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 <rpjday@mindspring.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/slab.c')
-rw-r--r-- | mm/slab.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -267,11 +267,10 @@ struct array_cache { | |||
267 | unsigned int batchcount; | 267 | unsigned int batchcount; |
268 | unsigned int touched; | 268 | unsigned int touched; |
269 | spinlock_t lock; | 269 | spinlock_t lock; |
270 | void *entry[0]; /* | 270 | void *entry[]; /* |
271 | * Must have this definition in here for the proper | 271 | * Must have this definition in here for the proper |
272 | * alignment of array_cache. Also simplifies accessing | 272 | * alignment of array_cache. Also simplifies accessing |
273 | * the entries. | 273 | * the entries. |
274 | * [0] is for gcc 2.95. It should really be []. | ||
275 | */ | 274 | */ |
276 | }; | 275 | }; |
277 | 276 | ||