Le 25/11/2015 à 00:16, Rashmica Gupta a écrit :
The ml command in xmon currently only works for 32-bit values and so fails
to find 64-bit values on a ppc64 machine. So change to work for 64-bit
values.

This is based off a patch by Josh Boyer.

Signed-off-by: Rashmica Gupta <rashm...@gmail.com>
---

Based off this patch: http://patchwork.ozlabs.org/patch/90309/

  arch/powerpc/xmon/xmon.c | 23 +++++++++++++++--------
  1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index 786bf01691c9..df05bd2fca07 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -184,6 +184,12 @@ extern void xmon_leave(void);
  #define GETWORD(v)    (((v)[0] << 24) + ((v)[1] << 16) + ((v)[2] << 8) + 
(v)[3])
  #endif
+#if BITS_PER_LONG == 64
+#define GETLONG(v)     (((unsigned long) GETWORD(v)) << 32 | GETWORD(v+4))
+#else
+#define GETLONG(v)     GETWORD(v)
+#endif
+

memlocate() is the only place when GETWORD() is used. Shouldn't we just replace GETWORD() by GETLONG() instead of doing a GETLONG() with GETWORD() ?

Also, can we use CONFIG_PPC64 instead of BITS_PER_LONG == 64 ?

  static char *help_string = "\
  Commands:\n\
    b   show breakpoints\n\
@@ -2447,14 +2453,15 @@ memdiffs(unsigned char *p1, unsigned char *p2, unsigned 
nb, unsigned maxpr)
                printf("Total of %d differences\n", prt);
  }
-static unsigned mend;
-static unsigned mask;
+static unsigned long mend;
+static unsigned long mask;
static void
  memlocate(void)
  {
-       unsigned a, n;
-       unsigned char val[4];
+       unsigned long a, n;
+       int size = sizeof(unsigned long);
+       unsigned char val[size];
last_cmd = "ml";
        scanhex((void *)&mdest);
@@ -2470,10 +2477,10 @@ memlocate(void)
                }
        }
        n = 0;
-       for (a = mdest; a < mend; a += 4) {
-               if (mread(a, val, 4) == 4
-                       && ((GETWORD(val) ^ mval) & mask) == 0) {
-                       printf("%.16x:  %.16x\n", a, GETWORD(val));
+       for (a = mdest; a < mend; a += size) {
+               if (mread(a, val, size) == size
+                       && ((GETLONG(val) ^ mval) & mask) == 0){
+                       printf("%.16lx:  %.16lx\n", a, GETLONG(val));
                        if (++n >= 10)
                                break;
                }

Reply via email to