mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 16:55:16 -04:00
staging/lustre: Get rid of cfs_trace_buf_type_t typedef
Replace it with enum cfs_trace_buf_type Signed-off-by: Oleg Drokin <green@linuxhacker.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
4d8efec271
commit
4a44ab6848
@@ -130,7 +130,7 @@ void cfs_tracefile_write_unlock(void)
|
||||
up_write(&cfs_tracefile_sem);
|
||||
}
|
||||
|
||||
cfs_trace_buf_type_t cfs_trace_buf_idx_get(void)
|
||||
enum cfs_trace_buf_type cfs_trace_buf_idx_get(void)
|
||||
{
|
||||
if (in_irq())
|
||||
return CFS_TCD_TYPE_IRQ;
|
||||
|
||||
@@ -39,12 +39,12 @@
|
||||
|
||||
#include "../../include/linux/libcfs/libcfs.h"
|
||||
|
||||
typedef enum {
|
||||
enum cfs_trace_buf_type {
|
||||
CFS_TCD_TYPE_PROC = 0,
|
||||
CFS_TCD_TYPE_SOFTIRQ,
|
||||
CFS_TCD_TYPE_IRQ,
|
||||
CFS_TCD_TYPE_MAX
|
||||
} cfs_trace_buf_type_t;
|
||||
};
|
||||
|
||||
/* trace file lock routines */
|
||||
|
||||
@@ -208,7 +208,7 @@ int cfs_trace_lock_tcd(struct cfs_trace_cpu_data *tcd, int walking);
|
||||
void cfs_trace_unlock_tcd(struct cfs_trace_cpu_data *tcd, int walking);
|
||||
|
||||
extern char *cfs_trace_console_buffers[NR_CPUS][CFS_TCD_TYPE_MAX];
|
||||
cfs_trace_buf_type_t cfs_trace_buf_idx_get(void);
|
||||
enum cfs_trace_buf_type cfs_trace_buf_idx_get(void);
|
||||
|
||||
static inline char *
|
||||
cfs_trace_get_console_buffer(void)
|
||||
|
||||
Reference in New Issue
Block a user