2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __COW_SYS_H__
|
|
|
|
#define __COW_SYS_H__
|
|
|
|
|
|
|
|
#include "kern_util.h"
|
|
|
|
#include "os.h"
|
|
|
|
#include "user.h"
|
2006-10-20 14:28:20 +08:00
|
|
|
#include "um_malloc.h"
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
static inline void *cow_malloc(int size)
|
|
|
|
{
|
2008-05-13 05:01:52 +08:00
|
|
|
return uml_kmalloc(size, UM_GFP_KERNEL);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void cow_free(void *ptr)
|
|
|
|
{
|
|
|
|
kfree(ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define cow_printf printk
|
|
|
|
|
|
|
|
static inline char *cow_strdup(char *str)
|
|
|
|
{
|
2007-05-07 05:51:41 +08:00
|
|
|
return uml_strdup(str);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-02-25 05:03:58 +08:00
|
|
|
static inline int cow_seek_file(int fd, __u64 offset)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-05-07 05:51:41 +08:00
|
|
|
return os_seek_file(fd, offset);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-04-11 13:53:41 +08:00
|
|
|
static inline int cow_file_size(char *file, unsigned long long *size_out)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-05-07 05:51:41 +08:00
|
|
|
return os_file_size(file, size_out);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2006-02-25 05:03:53 +08:00
|
|
|
static inline int cow_write_file(int fd, void *buf, int size)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-05-07 05:51:43 +08:00
|
|
|
return os_write_file(fd, buf, size);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|