Lines Matching defs:ccfg
424 struct aac_cnt_config *ccfg;
489 ccfg = (struct aac_cnt_config *)&fib->data[0];
490 bzero(ccfg, sizeof (*ccfg) - CT_PACKET_SIZE);
491 ccfg->Command = VM_ContainerConfig;
492 ccfg->CTCommand.command = CT_CID_TO_32BITS_UID;
493 ccfg->CTCommand.param[0] = cid;
494 aac_cnt_config_tole(ccfg);
499 aac_cnt_config_toh(ccfg);
500 if (rval == 0 && ccfg->Command == ST_OK &&
501 ccfg->CTCommand.param[0] == CT_OK &&
503 *uid = ccfg->CTCommand.param[1];
518 aac_cnt_config_toh(ccfg);
519 if (rval == 0 && ccfg->Command == ST_OK &&
520 ccfg->CTCommand.param[0] == CT_OK &&
522 *uid = ccfg->CTCommand.param[1];
2009 struct aac_cnt_config *ccfg;
2016 ccfg = (struct aac_cnt_config *)&fib->data[0];
2017 bzero(ccfg, sizeof (*ccfg) - CT_PACKET_SIZE);
2018 ccfg->Command = VM_ContainerConfig;
2019 ccfg->CTCommand.command = CT_GET_CONFIG_STATUS;
2020 ccfg->CTCommand.param[CNT_SIZE] = sizeof(struct aac_cf_status_hdr);
2022 aac_cnt_config_tole(ccfg);
2025 aac_cnt_config_toh(ccfg);
2027 cf_shdr = (struct aac_cf_status_hdr *)ccfg->CTCommand.data;
2028 if (rval == 0 && ccfg->Command == ST_OK &&
2029 ccfg->CTCommand.param[0] == CT_OK) {
2031 bzero(ccfg, sizeof (*ccfg) - CT_PACKET_SIZE);
2032 ccfg->Command = VM_ContainerConfig;
2033 ccfg->CTCommand.command = CT_COMMIT_CONFIG;
2035 aac_cnt_config_tole(ccfg);
2038 aac_cnt_config_toh(ccfg);
2040 if (rval == 0 && ccfg->Command == ST_OK &&
2041 ccfg->CTCommand.param[0] == CT_OK) {