Displaying 1 result from an estimated 1 matches for "file_in_sec".
2009 Mar 31
1
[PATCH 1/1] CORE/cache: add cache priority parameter
...inode within group
@@ -985,7 +988,10 @@ open_inode:
and dx,SECTOR_SIZE-1
mov [bx+file_in_off],dx
+ push dx
+ mov dx,1
call getcachesector
+ pop dx
add si,dx
mov cx,EXT2_GOOD_OLD_INODE_SIZE >> 2
mov di,ThisInode
@@ -1351,6 +1357,7 @@ linsector:
push eax
mov eax,[si+file_in_sec]
mov bx,si
+ mov dx,1
call getcachesector ; Get inode
add si,[bx+file_in_off] ; Get *our* inode
pop eax
@@ -1382,7 +1389,10 @@ linsector:
mov ebp,[gs:si+bx]
shl ebp,cl
add eax,ebp
+ push dx
+ mov dx,1
call getcachesector
+ pop dx
pop bx
and bx,(SECTOR_SIZE >>...