Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ring-buffer: Remove unused function __rb_data_page_index()

This fixes the following warning when building with clang:

kernel/trace/ring_buffer.c:1842:1: error: unused function
'__rb_data_page_index' [-Werror,-Wunused-function]

Link: http://lkml.kernel.org/r/20170518001415.5223-1-mka@chromium.org

Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>

authored by

Matthias Kaehlcke and committed by
Steven Rostedt (VMware)
c4bfd39d 2dde6b00

-6
-6
kernel/trace/ring_buffer.c
··· 1799 1799 } 1800 1800 EXPORT_SYMBOL_GPL(ring_buffer_change_overwrite); 1801 1801 1802 - static __always_inline void * 1803 - __rb_data_page_index(struct buffer_data_page *bpage, unsigned index) 1804 - { 1805 - return bpage->data + index; 1806 - } 1807 - 1808 1802 static __always_inline void *__rb_page_index(struct buffer_page *bpage, unsigned index) 1809 1803 { 1810 1804 return bpage->page->data + index;