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

LTP: set LTP_TAINT_EXPECTED #507

Merged
merged 1 commit into from
Aug 22, 2024
Merged

Conversation

pevik
Copy link
Contributor

@pevik pevik commented Aug 22, 2024

It's needed for runtests: commands, syscalls, kernel_misc.

For all tests on o3 only 0x3000 is needed:

  • Out of tree module was loaded (0x1000, 1 << 12)
  • Unsigned module was loaded (0x2000, 1 << 13)

but we set: 0x13801

  • Proprietary module was loaded ( 0x1, 1 << 0)
  • Workaround for platform firmware bug (0x800, 1 << 11)
  • Out of tree module was loaded (0x1000, 1 << 12)
  • Unsigned module was loaded (0x2000, 1 << 13)
  • Externally supported module was loaded or auxiliary taint (0x10000, 1 << 16)

The additional modules might be needed in the future for PPC/s390x drivers (so far it's needed only for SLES, but that may change).

@mdoucha @DimStar77 @Avinesh FYI

It's needed for runtests: commands, syscalls, kernel_misc.

For all tests on o3 only 0x3000 is needed:

* Out of tree module was loaded (0x1000, 1 << 12)
* Unsigned module was loaded (0x2000, 1 << 13)

but we set: 0x13801
* Proprietary module was loaded ( 0x1, 1 << 0)
* Workaround for platform firmware bug (0x800, 1 << 11)
* Out of tree module was loaded (0x1000, 1 << 12)
* Unsigned module was loaded (0x2000, 1 << 13)
* Externally supported module was loaded or auxiliary taint (0x10000, 1 << 16)

The additional modules might be needed in the future for PPC/s390x drivers
(so far it's needed only for SLES, but that may change).

Signed-off-by: Petr Vorel <[email protected]>
Copy link

@mdoucha mdoucha left a comment

Choose a reason for hiding this comment

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

LGTM

@pevik pevik merged commit f47f71f into os-autoinst:master Aug 22, 2024
3 checks passed
@pevik
Copy link
Contributor Author

pevik commented Aug 22, 2024

Follow up fix: #508.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants