Changes between Version 1 and Version 2 of Servers/virt_machines/kernel/compile_err
- Timestamp:
- Feb 19, 2009, 3:05:23 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Servers/virt_machines/kernel/compile_err
v1 v2 6 6 }}} 7 7 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 13 570 #define ll_remove_suid(inode,mnt) remove_suid(inode) 14 }}}