uml: formatting fixes around os_{read_write}_file callers

Formatting fixes ahead of renaming os_{read_write}_file_k to
os_{read_write}_file and fixing all the callers.

Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Jeff Dike
2007-05-06 14:51:41 -07:00
committed by Linus Torvalds
parent fda83a99b2
commit dc764e5087
5 changed files with 89 additions and 120 deletions

View File

@@ -8,7 +8,7 @@
static inline void *cow_malloc(int size)
{
return(um_kmalloc(size));
return um_kmalloc(size);
}
static inline void cow_free(void *ptr)
@@ -20,29 +20,22 @@ static inline void cow_free(void *ptr)
static inline char *cow_strdup(char *str)
{
return(uml_strdup(str));
return uml_strdup(str);
}
static inline int cow_seek_file(int fd, __u64 offset)
{
return(os_seek_file(fd, offset));
return os_seek_file(fd, offset);
}
static inline int cow_file_size(char *file, unsigned long long *size_out)
{
return(os_file_size(file, size_out));
return os_file_size(file, size_out);
}
static inline int cow_write_file(int fd, void *buf, int size)
{
return(os_write_file_k(fd, buf, size));
return os_write_file_k(fd, buf, size);
}
#endif
/*
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/