From: Chen Gang <gang.chen@asianux.com>
To: jason.wessel@windriver.com, anton.vorontsov@linaro.org,
sasha.levin@oracle.com, vincent.stehle@laposte.net,
john.blackwood@ccur.com
Cc: kgdb-bugreport@lists.sourceforge.net,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: [PATCH] kernel/debug/kdb: code enhancement for 3 areas.
Date: Thu, 16 May 2013 19:25:46 +0800 [thread overview]
Message-ID: <5194C23A.3090405@asianux.com> (raw)
Delete waste '{' for 'case' statement.
For the return variable 'long res' in function kdb_task_state_string(),
neither it matches the function return type 'unsigned long', nor is
suitable as a flag variable to make 'or' operation. So use 'unsigned
long' instead of 'long'.
If "case 'A'" happen in function kdb_task_state_string(), can return
~0UL directly to save the useless looping.
Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
kernel/debug/kdb/kdb_main.c | 3 ---
kernel/debug/kdb/kdb_support.c | 5 ++---
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
index 00eb8f7..62a0d4a 100644
--- a/kernel/debug/kdb/kdb_main.c
+++ b/kernel/debug/kdb/kdb_main.c
@@ -1151,7 +1151,6 @@ static int kdb_local(kdb_reason_t reason, int error, struct pt_regs *regs,
switch (reason) {
case KDB_REASON_DEBUG:
- {
/*
* If re-entering kdb after a single step
* command, don't print the message.
@@ -1176,8 +1175,6 @@ static int kdb_local(kdb_reason_t reason, int error, struct pt_regs *regs,
db_result);
break;
}
-
- }
break;
case KDB_REASON_ENTER:
if (KDB_STATE(KEYBOARD))
diff --git a/kernel/debug/kdb/kdb_support.c b/kernel/debug/kdb/kdb_support.c
index d35cc2d..75377d1 100644
--- a/kernel/debug/kdb/kdb_support.c
+++ b/kernel/debug/kdb/kdb_support.c
@@ -560,7 +560,7 @@ int kdb_putword(unsigned long addr, unsigned long word, size_t size)
unsigned long kdb_task_state_string(const char *s)
{
- long res = 0;
+ unsigned long res = 0;
if (!s) {
s = kdbgetenv("PS");
if (!s)
@@ -599,8 +599,7 @@ unsigned long kdb_task_state_string(const char *s)
res |= DAEMON;
break;
case 'A':
- res = ~0UL;
- break;
+ return ~0UL;
default:
kdb_printf("%s: unknown flag '%c' ignored\n",
__func__, *s);
--
1.7.7.6
next reply other threads:[~2013-05-16 11:26 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-16 11:25 Chen Gang [this message]
2013-05-23 17:28 ` [PATCH] kernel/debug/kdb: code enhancement for 3 areas Anton Vorontsov
2013-05-24 1:18 ` Chen Gang
2013-05-28 6:07 ` Chen Gang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5194C23A.3090405@asianux.com \
--to=gang.chen@asianux.com \
--cc=anton.vorontsov@linaro.org \
--cc=jason.wessel@windriver.com \
--cc=john.blackwood@ccur.com \
--cc=kgdb-bugreport@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=sasha.levin@oracle.com \
--cc=vincent.stehle@laposte.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.