Changes between Version 1 and Version 2 of Servers/virt_machines/kernel/compile_err


Ignore:
Timestamp:
Feb 19, 2009, 3:05:23 PM (16 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Servers/virt_machines/kernel/compile_err

    v1 v2  
    66}}}
    77
    8  * 本來 kernel 的 remove_suid 只有一個參數 -> int remove_suid(struct path *path),[[BR]]但 lustre 的 remove_suid 卻需要兩個參數
     8 * 本來 kernel 的 remove_suid 只有一個參數 -> int remove_suid(struct path *path),但 lustre 的 remove_suid 卻需要兩個參數
     9 * 解決方法
     10{{{
     11//將 570行 改成 #define ll_remove_suid(inode,mnt)               remove_suid(inode)
     12$ sudo vim lustre/include/linux/lustre_compat25.h
     13570 #define ll_remove_suid(inode,mnt)               remove_suid(inode)
     14}}}