diff options
author | Peter Hurley <peter@hurleysoftware.com> | 2013-11-22 12:09:56 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-08 16:57:38 -0800 |
commit | 5dda4ca5585270c7d6854da5f83e8e8d3e157094 (patch) | |
tree | 118b0d649f8867ec75207ba9ccb41b1e978c11c9 /include/linux | |
parent | 4d18e6eff81e1d4d81d0942d5b7e96904b3b32df (diff) | |
download | blackbird-op-linux-5dda4ca5585270c7d6854da5f83e8e8d3e157094.tar.gz blackbird-op-linux-5dda4ca5585270c7d6854da5f83e8e8d3e157094.zip |
tty: Rename tty buffer memory_used field
Trim up the memory_used field name to mem_used.
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/tty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/tty.h b/include/linux/tty.h index 2225745060d6..38fcc0574ba9 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -60,7 +60,7 @@ struct tty_bufhead { atomic_t priority; struct tty_buffer sentinel; struct llist_head free; /* Free queue head */ - atomic_t memory_used; /* In-use buffers excluding free list */ + atomic_t mem_used; /* In-use buffers excluding free list */ int mem_limit; struct tty_buffer *tail; /* Active buffer */ }; |