Changeset 18879 for src/linux/universal/linux-3.2/kernel/module.c
- Timestamp:
- 03/31/12 01:43:19 (14 months ago)
- File:
-
- 1 edited
-
src/linux/universal/linux-3.2/kernel/module.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/linux/universal/linux-3.2/kernel/module.c
r18171 r18879 2345 2345 2346 2346 /* Suck in entire file: we'll want most of it. */ 2347 /* vmalloc barfs on "unusual" numbers. Check here */ 2348 if (len > 64 * 1024 * 1024 || (hdr = vmalloc(len)) == NULL) 2347 if ((hdr = vmalloc(len)) == NULL) 2349 2348 return -ENOMEM; 2350 2349
Note: See TracChangeset
for help on using the changeset viewer.
