Lines Matching full:tar
7 * Do some transactions, see if the tar is corrupted.
8 * If the transaction is aborted, the TAR should be rolled back to the
10 * TAR in suspended mode should only remain in TAR if the transaction
36 "mtspr %[tar], 7;" /* tar = 1 */ in test_tar()
42 "mtspr %[tar], 7;" /* tar = 2 */ in test_tar()
45 "mtspr %[tar], 7;" /* tar = 3 */ in test_tar()
52 /* Transaction sucess! TAR should be 3 */ in test_tar()
53 "mfspr 7, %[tar];" in test_tar()
57 /* Abort handler. TAR should be rolled back to 1 */ in test_tar()
59 "mfspr 7, %[tar];" in test_tar()
64 : [tar]"i"(SPRN_TAR) in test_tar()
67 /* If result is anything else other than 7 or 9, the tar in test_tar()