Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754640Ab0H0Jnv (ORCPT ); Fri, 27 Aug 2010 05:43:51 -0400 Received: from mail-px0-f174.google.com ([209.85.212.174]:57960 "EHLO mail-px0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754187Ab0H0Jns (ORCPT ); Fri, 27 Aug 2010 05:43:48 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=pSRX7xSnGZylbRxvT9WjSUNnHLeGhVawjHLSdrpoDoPNnV5iw7kjQ3vifDYyfGKOjJ zOo2OfHjdjq7vvKRfmShLOEn15FX1UezkvIBY6IByRroqXybEge1eZ2Vc+yq7CrVifIc bNbpRhBi3kFWYrAqGYHtqdNXdU7qAtg3wmsJM= From: Namhyung Kim To: Roland McGrath , Oleg Nesterov , Arnd Bergmann Cc: linux-kernel@vger.kernel.org, Tony Luck , Fenghua Yu Subject: [RFC PATCH 18/43] ptrace, ia64: change signature of arch_ptrace() Date: Fri, 27 Aug 2010 18:42:04 +0900 Message-Id: <1282902149-12991-19-git-send-email-namhyung@gmail.com> X-Mailer: git-send-email 1.7.2.2 In-Reply-To: <1282902149-12991-1-git-send-email-namhyung@gmail.com> References: <1282902149-12991-1-git-send-email-namhyung@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1064 Lines: 32 change type of @addr and @data into unsigned long according to commit f76671df26ef06321480e702770f88f61272be29 [PATCH 03/43] Signed-off-by: Namhyung Kim Cc: Tony Luck Cc: Fenghua Yu --- arch/ia64/kernel/ptrace.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/arch/ia64/kernel/ptrace.c b/arch/ia64/kernel/ptrace.c index 7c7909f..8848f43 100644 --- a/arch/ia64/kernel/ptrace.c +++ b/arch/ia64/kernel/ptrace.c @@ -1177,7 +1177,8 @@ ptrace_disable (struct task_struct *child) } long -arch_ptrace (struct task_struct *child, long request, long addr, long data) +arch_ptrace (struct task_struct *child, long request, + unsigned long addr, unsigned long data) { switch (request) { case PTRACE_PEEKTEXT: -- 1.7.2.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/