| 271 | } |
| 272 | |
| 273 | static void |
| 274 | crypt_kop_from_32(const struct crypt_kop32 *from, struct crypt_kop *to) |
| 275 | { |
| 276 | int i; |
| 277 | |
| 278 | CP(*from, *to, crk_op); |
| 279 | CP(*from, *to, crk_status); |
| 280 | CP(*from, *to, crk_iparams); |
| 281 | CP(*from, *to, crk_oparams); |
| 282 | CP(*from, *to, crk_crid); |
| 283 | for (i = 0; i < CRK_MAXPARAM; i++) |
| 284 | crparam_from_32(&from->crk_param[i], &to->crk_param[i]); |
| 285 | } |
| 286 | |
| 287 | static void |
| 288 | crypt_kop_to_32(const struct crypt_kop *from, struct crypt_kop32 *to) |
no test coverage detected