diff options
author | Jiri Slaby <jslaby@suse.cz> | 2013-01-03 09:53:02 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-16 01:17:29 -0500 |
commit | 2f69335710884ae6112fc8196ebe29b5cda7b79b (patch) | |
tree | c97bec97e703faace437235d3bcbbf80c078ad21 /include/linux/tty_flip.h | |
parent | 227434f8986c3827a1faedd1feb437acd6285315 (diff) |
TTY: convert more flipping functions
Now, we start converting tty buffer functions to actually use
tty_port. This will allow us to get rid of the need of tty pointer in
many call sites. Only tty_port will be needed and hence no more
tty_port_tty_get calls in those paths.
Now 4 string flipping ones are on turn:
* tty_insert_flip_string_flags
* tty_insert_flip_string_fixed_flag
* tty_prepare_flip_string
* tty_prepare_flip_string_flags
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/tty_flip.h')
-rw-r--r-- | include/linux/tty_flip.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/include/linux/tty_flip.h b/include/linux/tty_flip.h index 78207ca8fab1..743f1d076467 100644 --- a/include/linux/tty_flip.h +++ b/include/linux/tty_flip.h | |||
@@ -2,10 +2,14 @@ | |||
2 | #define _LINUX_TTY_FLIP_H | 2 | #define _LINUX_TTY_FLIP_H |
3 | 3 | ||
4 | extern int tty_buffer_request_room(struct tty_port *port, size_t size); | 4 | extern int tty_buffer_request_room(struct tty_port *port, size_t size); |
5 | extern int tty_insert_flip_string_flags(struct tty_struct *tty, const unsigned char *chars, const char *flags, size_t size); | 5 | extern int tty_insert_flip_string_flags(struct tty_port *port, |
6 | extern int tty_insert_flip_string_fixed_flag(struct tty_struct *tty, const unsigned char *chars, char flag, size_t size); | 6 | const unsigned char *chars, const char *flags, size_t size); |
7 | extern int tty_prepare_flip_string(struct tty_struct *tty, unsigned char **chars, size_t size); | 7 | extern int tty_insert_flip_string_fixed_flag(struct tty_port *port, |
8 | extern int tty_prepare_flip_string_flags(struct tty_struct *tty, unsigned char **chars, char **flags, size_t size); | 8 | const unsigned char *chars, char flag, size_t size); |
9 | extern int tty_prepare_flip_string(struct tty_port *port, | ||
10 | unsigned char **chars, size_t size); | ||
11 | extern int tty_prepare_flip_string_flags(struct tty_port *port, | ||
12 | unsigned char **chars, char **flags, size_t size); | ||
9 | void tty_schedule_flip(struct tty_struct *tty); | 13 | void tty_schedule_flip(struct tty_struct *tty); |
10 | 14 | ||
11 | static inline int tty_insert_flip_char(struct tty_struct *tty, | 15 | static inline int tty_insert_flip_char(struct tty_struct *tty, |
@@ -17,12 +21,12 @@ static inline int tty_insert_flip_char(struct tty_struct *tty, | |||
17 | tb->char_buf_ptr[tb->used++] = ch; | 21 | tb->char_buf_ptr[tb->used++] = ch; |
18 | return 1; | 22 | return 1; |
19 | } | 23 | } |
20 | return tty_insert_flip_string_flags(tty, &ch, &flag, 1); | 24 | return tty_insert_flip_string_flags(tty->port, &ch, &flag, 1); |
21 | } | 25 | } |
22 | 26 | ||
23 | static inline int tty_insert_flip_string(struct tty_struct *tty, const unsigned char *chars, size_t size) | 27 | static inline int tty_insert_flip_string(struct tty_struct *tty, const unsigned char *chars, size_t size) |
24 | { | 28 | { |
25 | return tty_insert_flip_string_fixed_flag(tty, chars, TTY_NORMAL, size); | 29 | return tty_insert_flip_string_fixed_flag(tty->port, chars, TTY_NORMAL, size); |
26 | } | 30 | } |
27 | 31 | ||
28 | #endif /* _LINUX_TTY_FLIP_H */ | 32 | #endif /* _LINUX_TTY_FLIP_H */ |