1 #ifndef _INOLENG_H_ 2 #define _INOLENG_H_ 3 4 #include <inttypes.h> 5 6 void* inoleng_acquire(uint32_t inode); 7 void inoleng_release(void *ptr); 8 uint64_t inoleng_getfleng(void *ptr); 9 void inoleng_setfleng(void *ptr,uint64_t fleng); 10 void inoleng_update_fleng(uint32_t inode,uint64_t fleng); 11 void inoleng_write_start(void *ptr); 12 void inoleng_write_end(void *ptr); 13 void inoleng_read_start(void *ptr); 14 void inoleng_read_end(void *ptr); 15 void inoleng_io_wait(void *ptr); 16 void inoleng_term(void); 17 void inoleng_init(void); 18 19 #endif 20