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