Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 304100
b: refs/heads/master
c: f8450fc
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Warren authored and Greg Kroah-Hartman committed May 10, 2012
1 parent 72ac2aa commit 9dd3a1d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 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: af4681097b23fe9c63a03d774de7c742fa3a920e
refs/heads/master: f8450fca6ecdea38b5a882fdf6cd097e3ec8651c
13 changes: 6 additions & 7 deletions trunk/kernel/printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,13 @@ static u32 clear_idx;
#define LOG_LINE_MAX 1024

/* record buffer */
#if !defined(CONFIG_64BIT) || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
#define LOG_ALIGN 4
#else
#define LOG_ALIGN 8
#endif
#define __LOG_BUF_LEN (1 << CONFIG_LOG_BUF_SHIFT)
static char __log_buf[__LOG_BUF_LEN];
static char __log_buf[__LOG_BUF_LEN] __aligned(LOG_ALIGN);
static char *log_buf = __log_buf;
static u32 log_buf_len = __LOG_BUF_LEN;

Expand Down Expand Up @@ -279,12 +284,6 @@ static u32 log_next(u32 idx)
return idx + msg->len;
}

#if !defined(CONFIG_64BIT) || defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
#define LOG_ALIGN 4
#else
#define LOG_ALIGN 8
#endif

/* insert record into the buffer, discard old ones, update heads */
static void log_store(int facility, int level,
const char *dict, u16 dict_len,
Expand Down

0 comments on commit 9dd3a1d

Please sign in to comment.