オープンソース・ソフトウェアの開発とダウンロード

Subversion リポジトリの参照

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

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

revision 1106 by kumaneko, Mon Apr 14 07:37:52 2008 UTC revision 1120 by kumaneko, Mon Apr 21 05:34:24 2008 UTC
# Line 1376  Fix 2008/04/14 Line 1376  Fix 2008/04/14
1376        CentOS 4.6's 2.6.9 kernel backported kzalloc() from 2.6.14 ,        CentOS 4.6's 2.6.9 kernel backported kzalloc() from 2.6.14 ,
1377        resulting compilation error at kzalloc().        resulting compilation error at kzalloc().
1378        I modified prototype of kzalloc().        I modified prototype of kzalloc().
1379    
1380    Fix 2008/04/20
1381    
1382        @ Fix "Compilation failures" with kernels before 2.4.30/2.6.11 .
1383    
1384          Turbolinux 10 Server's 2.6.8 kernel backported kzalloc() as an inlined
1385          function, resulting compilation error at kzalloc().
1386          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.1106  
changed lines
  Added in v.1120

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