Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54323
b: refs/heads/master
c: dc764e5
h: refs/heads/master
i:
  54321: d9a797c
  54319: eab44f0
v: v3
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed May 7, 2007
1 parent 1cf01af commit 23b5aef
Show file tree
Hide file tree
Showing 6 changed files with 90 additions and 121 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fda83a99b2b49016b9d7ed562745969db25c4ef9
refs/heads/master: dc764e5087bceeb26714bb7975b711062b39d804
11 changes: 0 additions & 11 deletions trunk/arch/um/drivers/chan_user.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,14 +203,3 @@ void register_winch(int fd, struct tty_struct *tty)
}
}
}

/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* Emacs will notice this stuff at the end of the file and automatically
* adjust the settings for this buffer only. This must remain at the end
* of the file.
* ---------------------------------------------------------------------------
* Local variables:
* c-file-style: "linux"
* End:
*/
17 changes: 5 additions & 12 deletions trunk/arch/um/drivers/cow_sys.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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:
*/
Loading

0 comments on commit 23b5aef

Please sign in to comment.