#[repr(C)]
pub struct ibv_port_attr
{
pub state: ibv_port_state,
pub max_mtu: ibv_mtu,
pub active_mtu: ibv_mtu,
pub gid_tbl_len: c_int,
pub port_cap_flags: u32,
pub max_msg_sz: u32,
pub bad_pkey_cntr: u32,
pub qkey_viol_cntr: u32,
pub pkey_tbl_len: u16,
pub lid: u16,
pub sm_lid: u16,
pub lmc: u8,
pub max_vl_num: u8,
pub sm_sl: u8,
pub subnet_timeout: u8,
pub init_type_reply: u8,
pub active_width: u8,
pub active_speed: u8,
pub phys_state: u8,
pub link_layer: u8,
pub reserved: u8,
}
impl Default for ibv_port_attr
{
#[inline(always)]
fn default() -> Self
{
unsafe { zeroed() }
}
}
impl Debug for ibv_port_attr
{
#[inline(always)]
fn fmt(&self, f: &mut Formatter) -> Result
{
write!(f, "ibv_port_attr {{ state: {:?}, max_mtu: {:?}, active_mtu: {:?} }}", self.state, self.max_mtu, self.active_mtu)
}
}