mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-26 18:16:45 +00:00
add supoort for mellanox nic which name start with "p1*"
fixes: https://github.com/deepseek-ai/3FS/issues/263 Signed-off-by: lizhipeng <lizhipeng@kylinos.cn>
This commit is contained in:
parent
0033c5b0bb
commit
a32ce02917
@ -33,11 +33,11 @@ namespace hf3fs::net {
|
|||||||
static bool checkNicType(std::string_view nic, Address::Type type) {
|
static bool checkNicType(std::string_view nic, Address::Type type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case Address::TCP:
|
case Address::TCP:
|
||||||
return nic.starts_with("en") || nic.starts_with("eth") || nic.starts_with("bond") || nic.starts_with("xgbe");
|
return nic.starts_with("en") || nic.starts_with("eth") || nic.starts_with("bond") || nic.starts_with("xgbe") || nic.starts_with("p1");
|
||||||
case Address::IPoIB:
|
case Address::IPoIB:
|
||||||
return nic.starts_with("ib");
|
return nic.starts_with("ib");
|
||||||
case Address::RDMA:
|
case Address::RDMA:
|
||||||
return nic.starts_with("en") || nic.starts_with("eth") || nic.starts_with("bond") || nic.starts_with("xgbe");
|
return nic.starts_with("en") || nic.starts_with("eth") || nic.starts_with("bond") || nic.starts_with("xgbe") || nic.starts_with("p1");
|
||||||
case Address::LOCAL:
|
case Address::LOCAL:
|
||||||
return nic.starts_with("lo");
|
return nic.starts_with("lo");
|
||||||
default:
|
default:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user