• Home
  • Raw
  • Download

Lines Matching refs:ah_attr

1929 	memcpy(resp.dest.dgid, attr->ah_attr.grh.dgid.raw, 16);  in ib_uverbs_query_qp()
1930 resp.dest.flow_label = attr->ah_attr.grh.flow_label; in ib_uverbs_query_qp()
1931 resp.dest.sgid_index = attr->ah_attr.grh.sgid_index; in ib_uverbs_query_qp()
1932 resp.dest.hop_limit = attr->ah_attr.grh.hop_limit; in ib_uverbs_query_qp()
1933 resp.dest.traffic_class = attr->ah_attr.grh.traffic_class; in ib_uverbs_query_qp()
1934 resp.dest.dlid = attr->ah_attr.dlid; in ib_uverbs_query_qp()
1935 resp.dest.sl = attr->ah_attr.sl; in ib_uverbs_query_qp()
1936 resp.dest.src_path_bits = attr->ah_attr.src_path_bits; in ib_uverbs_query_qp()
1937 resp.dest.static_rate = attr->ah_attr.static_rate; in ib_uverbs_query_qp()
1938 resp.dest.is_global = !!(attr->ah_attr.ah_flags & IB_AH_GRH); in ib_uverbs_query_qp()
1939 resp.dest.port_num = attr->ah_attr.port_num; in ib_uverbs_query_qp()
2033 memcpy(attr->ah_attr.grh.dgid.raw, cmd.dest.dgid, 16); in ib_uverbs_modify_qp()
2034 attr->ah_attr.grh.flow_label = cmd.dest.flow_label; in ib_uverbs_modify_qp()
2035 attr->ah_attr.grh.sgid_index = cmd.dest.sgid_index; in ib_uverbs_modify_qp()
2036 attr->ah_attr.grh.hop_limit = cmd.dest.hop_limit; in ib_uverbs_modify_qp()
2037 attr->ah_attr.grh.traffic_class = cmd.dest.traffic_class; in ib_uverbs_modify_qp()
2038 attr->ah_attr.dlid = cmd.dest.dlid; in ib_uverbs_modify_qp()
2039 attr->ah_attr.sl = cmd.dest.sl; in ib_uverbs_modify_qp()
2040 attr->ah_attr.src_path_bits = cmd.dest.src_path_bits; in ib_uverbs_modify_qp()
2041 attr->ah_attr.static_rate = cmd.dest.static_rate; in ib_uverbs_modify_qp()
2042 attr->ah_attr.ah_flags = cmd.dest.is_global ? IB_AH_GRH : 0; in ib_uverbs_modify_qp()
2043 attr->ah_attr.port_num = cmd.dest.port_num; in ib_uverbs_modify_qp()