Skip to content
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

DAOS-16300 cart: Parse domain properly for multi-interface case #14864

Merged
merged 7 commits into from
Aug 6, 2024

Conversation

frostedcmos
Copy link
Contributor

@frostedcmos frostedcmos commented Aug 1, 2024

  • parse out domain similarly to interface for multi-interface case
  • fix issue with multi-interface and cxi workaround
  • treat not set and set to empty as the same for domain/interface
  • update test
    Required-githooks: true

Before requesting gatekeeper:

  • Two review approvals and any prior change requests have been resolved.
  • Testing is complete and all tests passed or there is a reason documented in the PR why it should be force landed and forced-landing tag is set.
  • Features: (or Test-tag*) commit pragma was used or there is a reason documented that there are no appropriate tags for this PR.
  • Commit messages follows the guidelines outlined here.
  • Any tests skipped by the ticket being addressed have been run and passed in the PR.

Gatekeeper:

  • You are the appropriate gatekeeper to be landing the patch.
  • The PR has 2 reviews by people familiar with the code, including appropriate owners.
  • Githooks were used. If not, request that user install them and check copyright dates.
  • Checkpatch issues are resolved. Pay particular attention to ones that will show up on future PRs.
  • All builds have passed. Check non-required builds for any new compiler warnings.
  • Sufficient testing is done. Check feature pragmas and test tags and that tests skipped for the ticket are run and now pass with the changes.
  • If applicable, the PR has addressed any potential version compatibility issues.
  • Check the target branch. If it is master branch, should the PR go to a feature branch? If it is a release branch, does it have merge approval in the JIRA ticket.
  • Extra checks if forced landing is requested
    • Review comments are sufficiently resolved, particularly by prior reviewers that requested changes.
    • No new NLT or valgrind warnings. Check the classic view.
    • Quick-build or Quick-functional is not used.
  • Fix the commit message upon landing. Check the standard here. Edit it to create a single commit. If necessary, ask submitter for a new summary.

- parse out domain similarly to interface for multi-interface case

Required-githooks: true

Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
Copy link

github-actions bot commented Aug 1, 2024

Ticket title is 'cart: multi-interface case does not parse out D_DOMAIN correctly'
Status is 'In Progress'
https://daosio.atlassian.net/browse/DAOS-16300

@daosbuild1
Copy link
Collaborator

Test stage Build DEB on Ubuntu 20.04 completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-14864/1/execution/node/304/log

For cxi we use domain names and not interface names.
Create context on interface was not accounting for this, causing wrong
handling.

Required-githooks: true

Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
@frostedcmos frostedcmos force-pushed the aaoganez/DAOS-16300 branch from e65cecb to ab31b18 Compare August 2, 2024 18:21
@daosbuild1
Copy link
Collaborator

Test stage Build DEB on Ubuntu 20.04 completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-14864/2/execution/node/357/log

@daosbuild1
Copy link
Collaborator

Test stage Build RPM on Leap 15.5 completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-14864/2/execution/node/347/log

@daosbuild1
Copy link
Collaborator

Test stage Build RPM on EL 8 completed with status FAILURE. https://build.hpdd.intel.com//job/daos-stack/job/daos/view/change-requests/job/PR-14864/2/execution/node/356/log

Required-githooks: true

Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
Required-githooks: true

Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
for purposes of get_info string generation

Required-githooks: true

Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
Required-githooks: true

Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
Comment on lines 1077 to -1083

if (interface) {
if (provider == CRT_PROV_OFI_CXI) {
D_INFO("Interface '%s' ignored for CXI. Using domain '%s' instead\n",
interface, domain);

/* Note: crt_provider_iface_str_get() returns interface name */
Copy link
Contributor Author

@frostedcmos frostedcmos Aug 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Previously with CXI (as it uses domain names not interface names) we would overwrite interface with domain values, but this causes issues with multi-interface feature that uses interface names as identifiers.
Instead crt_get_info_string() now special case handles CXI provider and only uses domain names there for it.

Required-githooks: true

Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
@frostedcmos frostedcmos marked this pull request as ready for review August 3, 2024 06:49
@frostedcmos frostedcmos requested review from a team as code owners August 3, 2024 06:49
Copy link
Contributor

@daltonbohning daltonbohning left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ftest changes LGTM

@mchaarawi
Copy link
Contributor

I have tested those changes on aurora and with that PR, it works as expected.

/* treat not set and set to empty as the same */
no_iface = (iface_str == NULL || *iface_str == '\0') ? true : false;
no_domain = (domain_str == NULL || *domain_str == '\0') ? true : false;

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we'll have to simplify that, I don't really like that we have all this if (no_iface) and if (no_domain) etc :) it's just hard to understand.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sure. some of a mess here is due to us having to form a string from 4 parts, 3 of which are optional. It would have been simpler if we could just fill in 4 fields (provider, domain, interface, port) in a structure as an alternate way of specifying info to mercury:) i feel most providers map well to this 4, and for outliers like 'sm' users can still use string version.

/* CXI provider uses domain names for info string */
if (provider == CRT_PROV_OFI_CXI)
iface_str = NULL;
else
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we should improve that by separating init formats, cxi has its own format (cxi:) whereas other providers have IP format (<hostname/IP>:).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe we should improve that by separating init formats, cxi has its own format (cxi:) whereas other providers have IP format (<hostname/IP>:).

yeah there are few things we can improve here, lets discuss next cart wg meeting

@@ -34,10 +34,12 @@ struct crt_grp_gdata;
struct crt_na_config {
int32_t noc_port;
int noc_iface_total;
int noc_domain_total;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does not seem aligned

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does not seem aligned

yeah, i think whole struct is badly aligned and clangformat is now forcing the right formatting on 1 field only:) will reformat next patch

@frostedcmos frostedcmos merged commit 9221e7f into master Aug 6, 2024
55 checks passed
@frostedcmos frostedcmos deleted the aaoganez/DAOS-16300 branch August 6, 2024 08:31
frostedcmos added a commit that referenced this pull request Aug 6, 2024
- parse out domain similarly to interface for multi-interface case, as a coma-separated list
 of domains.

- Bugfix: new interface-specific context APIs segfaulted with CXI provider specified, due to 
interface being previously discarded (cxi uses domain names instead). test scenario
added to no_pmix_multi_ctx test case as well.

- treat not set and 'set to empty' as the same for purposes of info_string generation.

- add sanity check to make sure domain count matches interface count


Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
frostedcmos added a commit that referenced this pull request Aug 7, 2024
…) (#14880)

- parse out domain similarly to interface for multi-interface case, as a coma-separated list
 of domains.

- Bugfix: new interface-specific context APIs segfaulted with CXI provider specified, due to 
interface being previously discarded (cxi uses domain names instead). test scenario
added to no_pmix_multi_ctx test case as well.

- treat not set and 'set to empty' as the same for purposes of info_string generation.

- add sanity check to make sure domain count matches interface count

Signed-off-by: Alexander A Oganezov <alexander.a.oganezov@intel.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

6 participants