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