Ignore:
Timestamp:
03/31/12 01:43:19 (14 months ago)
Author:
BrainSlayer
Message:

update kernels

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/linux/universal/linux-3.2/kernel/module.c

    r18171 r18879  
    23452345 
    23462346        /* 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) 
    23492348                return -ENOMEM; 
    23502349 
Note: See TracChangeset for help on using the changeset viewer.