Lines Matching refs:old

1909 		uint32_t new, old;
1911 new = old = itask->itask_flags;
1915 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
3782 uint8_t old, new;
3785 old = new = itl->itl_flags;
3786 if (old & STMF_ITL_BEING_TERMINATED)
3789 } while (atomic_cas_8(&itl->itl_flags, old, new) != old);
4436 uint32_t old, new;
4496 old = new = itask->itask_flags;
4509 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4601 uint32_t new, old;
4603 new = old = itask->itask_flags;
4607 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4649 uint32_t new, old;
4672 new = old = itask->itask_flags;
4673 if (old & ITASK_BEING_ABORTED) {
4691 if (old & ITASK_KNOWN_TO_LU) {
4694 if (old & ITASK_IN_WORKER_QUEUE) {
4704 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4751 uint32_t new, old;
4753 new = old = itask->itask_flags;
4757 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4793 uint32_t new, old;
4800 new = old = itask->itask_flags;
4801 if (old & ITASK_BEING_ABORTED) {
4818 if (old & ITASK_KNOWN_TO_LU) {
4821 if (old & ITASK_IN_WORKER_QUEUE) {
4830 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4874 uint32_t new, old;
4878 new = old = itask->itask_flags;
4879 if (old & ITASK_BEING_ABORTED) {
4883 if (old & ITASK_IN_WORKER_QUEUE) {
4889 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4909 uint32_t old, new;
4914 old = new = itask->itask_flags;
4915 if ((old & ITASK_BEING_ABORTED) ||
4916 ((old & (ITASK_KNOWN_TO_TGT_PORT |
4921 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
4956 uint32_t old, new, f, rf;
4982 old = new = itask->itask_flags;
4983 if ((old & f) != f) {
4987 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5024 uint32_t old, new;
5042 old = new = itask->itask_flags;
5043 if (!(old & ITASK_KNOWN_TO_TGT_PORT))
5046 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5155 uint32_t old, new;
5162 old = new = itask->itask_flags;
5163 if ((old & (ITASK_KNOWN_TO_LU | ITASK_LU_ABORT_CALLED)) ==
5170 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
5199 old = new = itask->itask_flags;
5200 if ((old & (ITASK_KNOWN_TO_TGT_PORT |
5207 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);
6191 uint32_t old, new;
6250 old = itask->itask_flags;
6251 if (old & ITASK_BEING_ABORTED) {
6262 new = old | ITASK_KNOWN_TO_LU |
6267 } while (atomic_cas_32(&itask->itask_flags, old, new) != old);