-
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/VERBS/RC: Fix the macro that is supposed fill desc within uct rc. #10160
UCT/VERBS/RC: Fix the macro that is supposed fill desc within uct rc. #10160
Conversation
de202eb
to
7ae430b
Compare
@toorajtaraz can you please squash the commits? |
… verbs. UCT/VERBS/RC: wrapping _desc in ()
7ae430b
to
5c09579
Compare
@toorajtaraz have you or your organization signed the CLA https://openucx.org/license/? |
@yosefe I will sign it today! Is there a way to submit it online or does it have to be mailed to the address mentioned in the CLA? |
Hi, unfortunately there is no online form at this time, so kindly send it to the email address. Thank you! |
Hi, Thank you! I just emailed the signed CLA. @yosefe |
@yosefe Hey, I wanted to let you know that a few days ago my ucf consortium account was created. Thanks! |
approved |
Fix the macro that is supposed fill desc withing uct rc.
What
This change fixes a typo in the implementation of
UCT_RC_VERBS_FILL_DESC_WR
.Why
The assignment to
sge->addr
incorrectly usesdesc
instead of_desc
. While this won't cause a compilation error if the actual variable passed to the macro is nameddesc
, the macro should consistently use_desc
throughout its implementation.How
Since this is just a typo, the only change required was adding an underscore (
_
)!