- 時間撮記:
- 2012-1-23 下午05:40:50 (13 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
r39840 r39841 576 576 * @returns 0 on success, Linux error code otherwise 577 577 */ 578 #if LINUX_VERSION_CODE >= KERNEL_VERSION( 2, 6, 0)578 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0) 579 579 static int sf_create(struct inode *parent, struct dentry *dentry, umode_t mode, struct nameidata *nd) 580 #elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) 581 static int sf_create(struct inode *parent, struct dentry *dentry, int mode, struct nameidata *nd) 580 582 #else 581 static int sf_create(struct inode *parent, struct dentry *dentry, umode_t mode)583 static int sf_create(struct inode *parent, struct dentry *dentry, int mode) 582 584 #endif 583 585 { … … 594 596 * @returns 0 on success, Linux error code otherwise 595 597 */ 598 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 3, 0) 596 599 static int sf_mkdir(struct inode *parent, struct dentry *dentry, umode_t mode) 600 #else 601 static int sf_mkdir(struct inode *parent, struct dentry *dentry, int mode) 602 #endif 597 603 { 598 604 TRACE();
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器