-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UCT/API: Add new MD resource query API implementation #10161
Changes from all commits
1e716b3
dce5abb
dd27566
7d61d6f
5c65954
70def39
f872802
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -385,6 +385,7 @@ typedef struct uct_tl_device_resource { | |
(e.g. UCT_DEVICE_TYPE_NET for a network interface) */ | ||
ucs_sys_device_t sys_device; /**< The identifier associated with the device | ||
bus_id as captured in ucs_sys_bus_id_t struct */ | ||
uint64_t flags; /**< Associated flags to the resource */ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we need it to carry the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. double checked again, this is internal structure populated from |
||
} uct_tl_device_resource_t; | ||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems we can use old API here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
using the new one allows to dump the added
flags
content which can be helpful, so I'd keep it.