Open-Source-Software-Entwicklung und Downloads

Browse Subversion Repository

Diff of /trunk/1.6.x/ccs-patch/README.ccs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1117 by kumaneko, Sun Apr 20 05:26:45 2008 UTC revision 1120 by kumaneko, Mon Apr 21 05:34:24 2008 UTC
# Line 1384  Fix 2008/04/20 Line 1384  Fix 2008/04/20
1384        Turbolinux 10 Server's 2.6.8 kernel backported kzalloc() as an inlined        Turbolinux 10 Server's 2.6.8 kernel backported kzalloc() as an inlined
1385        function, resulting compilation error at kzalloc().        function, resulting compilation error at kzalloc().
1386        I converted kzalloc() from an inlined function into a macro.        I converted kzalloc() from an inlined function into a macro.
1387    
1388    Fix 2008/04/21
1389    
1390        @ Add workaround for gcc 3.2.2's inline bug.
1391    
1392          RedHat Linux 9's gcc 3.2.2 generated a bad code
1393             if ((var_of_u8 & 0x000000BF) & 0x80000000) { }
1394          where the expected code is
1395             if ((var_of_u8 & 0xBF) & 0x80) { }
1396          when embedding ccs_acl_type2() into print_entry(),
1397          resulting runtime BUG().
1398          I added the expected code explicitly as a workaround.

Legend:
Removed from v.1117  
changed lines
  Added in v.1120

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26