예제 #1
0
파일: port.c 프로젝트: c444b774/linux
void mlx5_query_port_oper_mtu(struct mlx5_core_dev *dev, int *oper_mtu,
			      u8 port)
{
	mlx5_query_port_mtu(dev, NULL, NULL, oper_mtu, port);
}
예제 #2
0
파일: port.c 프로젝트: c444b774/linux
void mlx5_query_port_max_mtu(struct mlx5_core_dev *dev, int *max_mtu,
			     u8 port)
{
	mlx5_query_port_mtu(dev, NULL, max_mtu, NULL, port);
}
예제 #3
0
파일: port.c 프로젝트: Dyoed/ath
int mlx5_query_port_oper_mtu(struct mlx5_core_dev *dev, int *oper_mtu)
{
	return mlx5_query_port_mtu(dev, NULL, NULL, oper_mtu);
}
예제 #4
0
파일: port.c 프로젝트: Dyoed/ath
int mlx5_query_port_max_mtu(struct mlx5_core_dev *dev, int *max_mtu)
{
	return mlx5_query_port_mtu(dev, NULL, max_mtu, NULL);
}
예제 #5
0
파일: port.c 프로젝트: galvinli/ath
int mlx5_query_port_oper_mtu(struct mlx5_core_dev *dev, int *oper_mtu,
			     u8 local_port)
{
	return mlx5_query_port_mtu(dev, NULL, NULL, oper_mtu, local_port);
}
예제 #6
0
파일: port.c 프로젝트: galvinli/ath
int mlx5_query_port_max_mtu(struct mlx5_core_dev *dev, int *max_mtu,
			    u8 local_port)
{
	return mlx5_query_port_mtu(dev, NULL, max_mtu, NULL, local_port);
}