Searched refs:rta (Results 1 – 3 of 3) sorted by relevance
/drivers/char/rio/ |
D | rioboot.c | 730 int host, rta; in RIOBootComplete() local 897 for (rta = 0; rta < MAX_RUP; rta++) { in RIOBootComplete() 898 …if ((p->RIOHosts[host].Mapping[rta].Flags & (SLOT_IN_USE | SLOT_TENTATIVE)) && (p->RIOHosts[host].… in RIOBootComplete() 899 Flag = p->RIOHosts[host].Mapping[rta].Flags; in RIOBootComplete() 900 MapP = &p->RIOHosts[host].Mapping[rta]; in RIOBootComplete() 903 …rio_dprintk(RIO_DEBUG_BOOT, "This RTA is units %d+%d from host %s\n", rta + 1, MapP->ID2, p->RIOHo… in RIOBootComplete() 905 …rio_dprintk(RIO_DEBUG_BOOT, "This RTA is unit %d from host %s\n", rta + 1, p->RIOHosts[host].Name); in RIOBootComplete() 923 for (rta = 0; rta < TOTAL_MAP_ENTRIES; rta++) { in RIOBootComplete() 924 … rio_dprintk(RIO_DEBUG_BOOT, "Check table entry %d (%x)", rta, p->RIOSavedTable[rta].RtaUniqueNum); in RIOBootComplete() 926 …if ((p->RIOSavedTable[rta].Flags & SLOT_IN_USE) && (p->RIOSavedTable[rta].RtaUniqueNum == RtaUniq)… in RIOBootComplete() [all …]
|
/drivers/crypto/ |
D | talitos.c | 701 struct rtattr *rta = (void *)key; in aead_authenc_setkey() local 706 if (!RTA_OK(rta, keylen)) in aead_authenc_setkey() 709 if (rta->rta_type != CRYPTO_AUTHENC_KEYA_PARAM) in aead_authenc_setkey() 712 if (RTA_PAYLOAD(rta) < sizeof(*param)) in aead_authenc_setkey() 715 param = RTA_DATA(rta); in aead_authenc_setkey() 718 key += RTA_ALIGN(rta->rta_len); in aead_authenc_setkey() 719 keylen -= RTA_ALIGN(rta->rta_len); in aead_authenc_setkey()
|
D | ixp4xx_crypto.c | 1164 struct rtattr *rta = (struct rtattr *)key; in aead_setkey() local 1167 if (!RTA_OK(rta, keylen)) in aead_setkey() 1169 if (rta->rta_type != CRYPTO_AUTHENC_KEYA_PARAM) in aead_setkey() 1171 if (RTA_PAYLOAD(rta) < sizeof(*param)) in aead_setkey() 1174 param = RTA_DATA(rta); in aead_setkey() 1177 key += RTA_ALIGN(rta->rta_len); in aead_setkey() 1178 keylen -= RTA_ALIGN(rta->rta_len); in aead_setkey()
|