forked from KolibriOS/kolibrios
Krn: Fixed the number of functions in the file system drivers
git-svn-id: svn://kolibrios.org@10015 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
e72feb4052
commit
d8b8010bbd
@ -18,7 +18,7 @@ iglobal
|
||||
align 4
|
||||
exFAT_user_functions:
|
||||
dd exFAT_free
|
||||
dd (exFAT_user_functions_end - exFAT_user_functions - 4) / 4
|
||||
dd (exFAT_user_functions_end - exFAT_user_functions - 8) / 4
|
||||
dd exFAT_ReadFile
|
||||
dd exFAT_ReadFolder
|
||||
dd 0 ;exFAT_CreateFile
|
||||
|
@ -18,7 +18,7 @@ iglobal
|
||||
align 4
|
||||
ext_user_functions:
|
||||
dd ext_free
|
||||
dd (ext_user_functions_end - ext_user_functions - 4) / 4
|
||||
dd (ext_user_functions_end - ext_user_functions - 8) / 4
|
||||
dd ext_ReadFile
|
||||
dd ext_ReadFolder
|
||||
dd ext_CreateFile
|
||||
|
@ -18,7 +18,7 @@ iglobal
|
||||
align 4
|
||||
fat_user_functions:
|
||||
dd fat_free
|
||||
dd (fat_user_functions_end - fat_user_functions - 4) / 4
|
||||
dd (fat_user_functions_end - fat_user_functions - 8) / 4
|
||||
dd fat_Read
|
||||
dd fat_ReadFolder
|
||||
dd fat_CreateFile
|
||||
|
@ -18,7 +18,7 @@ iglobal
|
||||
align 4
|
||||
ntfs_user_functions:
|
||||
dd ntfs_free
|
||||
dd (ntfs_user_functions_end - ntfs_user_functions - 4) / 4
|
||||
dd (ntfs_user_functions_end - ntfs_user_functions - 8) / 4
|
||||
dd ntfs_ReadFile
|
||||
dd ntfs_ReadFolder
|
||||
dd ntfs_CreateFile
|
||||
@ -3478,7 +3478,7 @@ ntfs_WriteFile:
|
||||
mov edx, [ebx+8]
|
||||
add eax, [ebx+12]
|
||||
adc edx, 0
|
||||
mov [edi+fileRealSize], eax
|
||||
|
||||
cmp edx, [edi+fileRealSize+4]
|
||||
jc @f
|
||||
jnz .resize
|
||||
@ -3488,7 +3488,6 @@ ntfs_WriteFile:
|
||||
mov [edi+fileRealSize], eax
|
||||
mov [edi+fileRealSize+4], edx
|
||||
@@:
|
||||
mov [edi+fileRealSize+4], edx
|
||||
push edx eax ebx
|
||||
call ntfsGetTime
|
||||
mov [edi+fileModified], eax
|
||||
|
@ -80,7 +80,7 @@ iglobal
|
||||
align 4
|
||||
xfs._.user_functions:
|
||||
dd xfs._.free
|
||||
dd (xfs._.user_functions_end-xfs._.user_functions-4)/4
|
||||
dd (xfs._.user_functions_end-xfs._.user_functions-8)/4
|
||||
dd xfs_Read
|
||||
dd xfs_ReadFolder
|
||||
dd 0;xfs_Rewrite
|
||||
|
Loading…
Reference in New Issue
Block a user