On 07/24/2014 12:22 PM, Sam Bobroff wrote:
>> Outstanding Issues
>> ==================
>> (1) Running DSCR register value inside a transaction does not seem to be 
>> saved
>>     at thread.dscr when the process stops for ptrace examination.
> 
> Since this is fixed by 96d016108640bc2b7fb0ee800737f80923847294, which
> is already upstream, you might want to rebase and re-test. It should
> pass and then you can remove the outstanding issues :-)

Sure will do that.

> 
>>     
>> Test programs
> 
> program
> 
> When I posted the patch I mentioned above, I was asked to move the test
> code into the powerpc kernel selftests so you may want to do this too.

Yes, I will add these ptrace related tests as tm/tm-ptrace.c test case.

> 
> Also, your test program covers everything mine did and more so you might
> want to remove mine if you do add this to the selftests.

The new one will be more ptrace specific, so wont remove yours which tests
the context saved DSCR value.

> 
>> =============
>> #include <unistd.h>
>> #include <stdlib.h>
>> #include <string.h>
>> #include <malloc.h>
>> #include <errno.h>
>> #include <sys/ptrace.h>
>> #include <sys/uio.h>
>> #include <sys/types.h>
>> #include <sys/signal.h>
>> #include <sys/user.h>
> 
> You should include sys/wait.h for waitpid().

Will do.

> status, i and flags are all unused.

Will remove them.

>>                      else
>>                              printf("DSCR FAILED\n");
>>
>>                      /* TM checkpointed GPR */
>>                      iov.iov_base = (struct pt_regs *) malloc(sizeof(struct 
>> pt_regs));;
>>                      iov.iov_len = sizeof(struct pt_regs);
>>                      ret = ptrace(PTRACE_GETREGSET, child, NT_PPC_TM_CGPR, 
>> &iov);
>>                      if (ret == -1) {
>>                              printf("PTRACE_GETREGSET: NT_PPC_TM_CGPR 
>> failed: %s\n", strerror(errno));
>>                              exit(-1);
>>                      }
>>
>>                      if (iov.iov_len != sizeof(struct pt_regs)) {
>>                              printf("NT_PPC_TM_CGPR: Length returned is 
>> wrong\n");
>>                              exit(-1);
>>                      }
>>
>>                      pregs1 = iov.iov_base;
>>                      printf("-------TM checkpointed GPR-----\n");
>>                      printf("TM CH GPR[1]: %x\n", pregs1->gpr[1]);
>>                      printf("TM CH GPR[2]: %x\n", pregs1->gpr[2]);
>>                      printf("TM CH NIP: %x\n", pregs1->nip);
>>                      printf("TM CH LINK: %x\n", pregs1->link);
>>                      printf("TM CH CCR: %x\n", pregs1->ccr);
> 
> I get a compiler warning for these printfs: they should be "%lx".

Okay.

> 
>>
>>                      if (pregs1->gpr[1] == VAL1)
>>                              printf("GPR[1] PASSED\n");
>>                      else
>>                              printf("GPR[1] FAILED\n");
>>
>>                      if (pregs1->gpr[2] == VAL2)
>>                              printf("GPR[2] PASSED\n");
>>                      else
>>                              printf("GPR[2] FAILED\n");
>>
>>                      /* TM running GPR */
>>                      ret = ptrace(PTRACE_GETREGS, child, NULL, pregs2);
>>                      if (ret == -1) {
>>                              printf("PTRACE_GETREGS fail: %s\n", 
>> strerror(errno));
>>                              exit(-1);
>>                      }
>>
>>                      printf("-------TM running GPR-----\n");
>>                      printf("TM RN GPR[1]: %x\n", pregs2->gpr[1]);
>>                      printf("TM RN GPR[2]: %x\n", pregs2->gpr[2]);
>>                      printf("TM RN NIP: %x\n", pregs2->nip);
>>                      printf("TM RN LINK: %x\n", pregs2->link);
>>                      printf("TM RN CCR: %x\n", pregs2->ccr);
> 
> Same as above, I get warnings and they should be "%lx".

Okay. Will fix them.

_______________________________________________
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev

Reply via email to