From: Greg Ungerer <gerg@snapgear.com>
To: Namhyung Kim <namhyung@gmail.com>
Cc: Roland McGrath <roland@redhat.com>,
Oleg Nesterov <oleg@redhat.com>, Arnd Bergmann <arnd@arndb.de>,
linux-kernel@vger.kernel.org, Greg Ungerer <gerg@uclinux.org>
Subject: Re: [PATCH v2 13/24] ptrace: cleanup arch_ptrace() on m68knommu
Date: Tue, 7 Sep 2010 15:54:29 +1000 [thread overview]
Message-ID: <4C85D395.7040101@snapgear.com> (raw)
In-Reply-To: <1283442391-23612-14-git-send-email-namhyung@gmail.com>
Hi Namhyung,
Namhyung Kim wrote:
> Use new 'regno', 'datap' variables in order to remove duplicated
> expressions and unnecessary castings. Alse remove checking @addr
> less than 0 because addr is now unsigned.
>
> Signed-off-by: Namhyung Kim <namhyung@gmail.com>
> Cc: Greg Ungerer <gerg@uclinux.org>
Looks ok to me:
Acked-by: Greg Ungerer <gerg@uclinux.org>
> ---
> arch/m68knommu/kernel/ptrace.c | 58 ++++++++++++++++++---------------------
> 1 files changed, 27 insertions(+), 31 deletions(-)
>
> diff --git a/arch/m68knommu/kernel/ptrace.c b/arch/m68knommu/kernel/ptrace.c
> index 4ab9448..342baab 100644
> --- a/arch/m68knommu/kernel/ptrace.c
> +++ b/arch/m68knommu/kernel/ptrace.c
> @@ -115,6 +115,8 @@ long arch_ptrace(struct task_struct *child, long request,
> unsigned long addr, unsigned long data)
> {
> int ret;
> + int regno = addr >> 2;
> + unsigned long __user *datap = (unsigned long __user *) data;
>
> switch (request) {
> /* read the word at location addr in the USER area. */
> @@ -122,71 +124,66 @@ long arch_ptrace(struct task_struct *child, long request,
> unsigned long tmp;
>
> ret = -EIO;
> - if ((addr & 3) || addr < 0 ||
> - addr > sizeof(struct user) - 3)
> + if ((addr & 3) || addr > sizeof(struct user) - 3)
> break;
>
> tmp = 0; /* Default return condition */
> - addr = addr >> 2; /* temporary hack. */
> ret = -EIO;
> - if (addr < 19) {
> - tmp = get_reg(child, addr);
> - if (addr == PT_SR)
> + if (regno < 19) {
> + tmp = get_reg(child, regno);
> + if (regno == PT_SR)
> tmp >>= 16;
> - } else if (addr >= 21 && addr < 49) {
> - tmp = child->thread.fp[addr - 21];
> + } else if (regno >= 21 && regno < 49) {
> + tmp = child->thread.fp[regno - 21];
> #ifdef CONFIG_M68KFPU_EMU
> /* Convert internal fpu reg representation
> * into long double format
> */
> - if (FPU_IS_EMU && (addr < 45) && !(addr % 3))
> + if (FPU_IS_EMU && (regno < 45) && !(regno % 3))
> tmp = ((tmp & 0xffff0000) << 15) |
> ((tmp & 0x0000ffff) << 16);
> #endif
> - } else if (addr == 49) {
> + } else if (regno == 49) {
> tmp = child->mm->start_code;
> - } else if (addr == 50) {
> + } else if (regno == 50) {
> tmp = child->mm->start_data;
> - } else if (addr == 51) {
> + } else if (regno == 51) {
> tmp = child->mm->end_code;
> } else
> break;
> - ret = put_user(tmp,(unsigned long *) data);
> + ret = put_user(tmp, datap);
> break;
> }
>
> case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
> ret = -EIO;
> - if ((addr & 3) || addr < 0 ||
> - addr > sizeof(struct user) - 3)
> + if ((addr & 3) || addr > sizeof(struct user) - 3)
> break;
>
> - addr = addr >> 2; /* temporary hack. */
> -
> - if (addr == PT_SR) {
> + if (regno == PT_SR) {
> data &= SR_MASK;
> data <<= 16;
> data |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
> }
> - if (addr < 19) {
> - if (put_reg(child, addr, data))
> + if (regno < 19) {
> + if (put_reg(child, regno, data))
> break;
> ret = 0;
> break;
> }
> - if (addr >= 21 && addr < 48)
> + if (regno >= 21 && regno < 48)
> {
> #ifdef CONFIG_M68KFPU_EMU
> /* Convert long double format
> * into internal fpu reg representation
> */
> - if (FPU_IS_EMU && (addr < 45) && !(addr % 3)) {
> + if (FPU_IS_EMU && (regno < 45) && !(regno % 3)) {
> data <<= 15;
> data = (data & 0xffff0000) |
> ((data & 0x0000ffff) >> 1);
> }
> #endif
> - child->thread.fp[addr - 21] = data;
> + child->thread.fp[regno - 21] = data;
> ret = 0;
> }
> break;
> @@ -198,11 +195,11 @@ long arch_ptrace(struct task_struct *child, long request,
> tmp = get_reg(child, i);
> if (i == PT_SR)
> tmp >>= 16;
> - if (put_user(tmp, (unsigned long *) data)) {
> + if (put_user(tmp, datap)) {
> ret = -EFAULT;
> break;
> }
> - data += sizeof(unsigned long);
> + datap++;
> }
> ret = 0;
> break;
> @@ -212,7 +209,7 @@ long arch_ptrace(struct task_struct *child, long request,
> int i;
> unsigned long tmp;
> for (i = 0; i < 19; i++) {
> - if (get_user(tmp, (unsigned long *) data)) {
> + if (get_user(tmp, datap)) {
> ret = -EFAULT;
> break;
> }
> @@ -222,7 +219,7 @@ long arch_ptrace(struct task_struct *child, long request,
> tmp |= get_reg(child, PT_SR) & ~(SR_MASK << 16);
> }
> put_reg(child, i, tmp);
> - data += sizeof(unsigned long);
> + datap++;
> }
> ret = 0;
> break;
> @@ -231,7 +228,7 @@ long arch_ptrace(struct task_struct *child, long request,
> #ifdef PTRACE_GETFPREGS
> case PTRACE_GETFPREGS: { /* Get the child FPU state. */
> ret = 0;
> - if (copy_to_user((void *)data, &child->thread.fp,
> + if (copy_to_user(datap, &child->thread.fp,
> sizeof(struct user_m68kfp_struct)))
> ret = -EFAULT;
> break;
> @@ -241,7 +238,7 @@ long arch_ptrace(struct task_struct *child, long request,
> #ifdef PTRACE_SETFPREGS
> case PTRACE_SETFPREGS: { /* Set the child FPU state. */
> ret = 0;
> - if (copy_from_user(&child->thread.fp, (void *)data,
> + if (copy_from_user(&child->thread.fp, datap,
> sizeof(struct user_m68kfp_struct)))
> ret = -EFAULT;
> break;
> @@ -249,8 +246,7 @@ long arch_ptrace(struct task_struct *child, long request,
> #endif
>
> case PTRACE_GET_THREAD_AREA:
> - ret = put_user(task_thread_info(child)->tp_value,
> - (unsigned long __user *)data);
> + ret = put_user(task_thread_info(child)->tp_value, datap);
> break;
>
> default:
--
------------------------------------------------------------------------
Greg Ungerer -- Principal Engineer EMAIL: gerg@snapgear.com
SnapGear Group, McAfee PHONE: +61 7 3435 2888
8 Gardner Close FAX: +61 7 3217 5323
Milton, QLD, 4064, Australia WEB: http://www.SnapGear.com
next prev parent reply other threads:[~2010-09-07 5:54 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-02 15:46 [PATCH v2 00/24] ptrace cleanups Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 01/24] ptrace: change signature of sys_ptrace() and friends Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 02/24] ptrace: cleanup ptrace_request() Namhyung Kim
2010-09-02 18:32 ` Roland McGrath
2010-09-03 3:19 ` Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 03/24] ptrace: change signature of arch_ptrace() Namhyung Kim
2010-09-03 7:40 ` David Howells
2010-09-02 15:46 ` [PATCH v2 04/24] ptrace: cleanup arch_ptrace() on x86 Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 05/24] ptrace: cleanup arch_ptrace() on ARM Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 06/24] ptrace: cleanup arch_ptrace() on avr32 Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 07/24] ptrace: cleanup arch_ptrace() and friends on Blackfin Namhyung Kim
2010-09-02 17:48 ` Mike Frysinger
2010-09-02 15:46 ` [PATCH v2 08/24] ptrace: cleanup arch_ptrace() on cris Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 09/24] ptrace: cleanup arch_ptrace() on frv Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 10/24] ptrace: cleanup arch_ptrace() on h8300 Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 11/24] ptrace: cleanup arch_ptrace() on m32r Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 12/24] ptrace: cleanup arch_ptrace() on m68k Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 13/24] ptrace: cleanup arch_ptrace() on m68knommu Namhyung Kim
2010-09-07 5:54 ` Greg Ungerer [this message]
2010-09-02 15:46 ` [PATCH v2 14/24] ptrace: cleanup arch_ptrace() on microblaze Namhyung Kim
[not found] ` <4C8DCF72.4050701@monstr.eu>
2010-09-13 10:07 ` Namhyung Kim
2010-09-14 2:15 ` Roland McGrath
2010-09-14 2:27 ` Namhyung Kim
2010-09-14 2:31 ` Roland McGrath
2010-09-14 2:39 ` Namhyung Kim
2010-09-14 2:58 ` Roland McGrath
2010-09-02 15:46 ` [PATCH v2 15/24] ptrace: cleanup arch_ptrace() on MIPS Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 16/24] ptrace: cleanup arch_ptrace() on mn10300 Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 17/24] ptrace: cleanup arch_ptrace() on parisc Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 18/24] ptrace: cleanup arch_ptrace() on powerpc Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 19/24] ptrace: cleanup arch_ptrace() on score Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 20/24] ptrace: cleanup arch_ptrace() on sh Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 21/24] ptrace: cleanup arch_ptrace() on sparc Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 22/24] ptrace: cleanup arch_ptrace() on tile Namhyung Kim
2010-09-02 16:35 ` Chris Metcalf
2010-09-02 16:55 ` Namhyung Kim
2010-09-02 17:13 ` Chris Metcalf
2010-09-02 15:46 ` [PATCH v2 23/24] ptrace: cleanup arch_ptrace() on um Namhyung Kim
2010-09-02 15:46 ` [PATCH v2 24/24] ptrace: cleanup arch_ptrace() on xtensa Namhyung Kim
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=4C85D395.7040101@snapgear.com \
--to=gerg@snapgear.com \
--cc=arnd@arndb.de \
--cc=gerg@uclinux.org \
--cc=linux-kernel@vger.kernel.org \
--cc=namhyung@gmail.com \
--cc=oleg@redhat.com \
--cc=roland@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox