-
Notifications
You must be signed in to change notification settings - Fork 36
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
scst_lib,scst_sysfs: Add aen_disabled setting #141
scst_lib,scst_sysfs: Add aen_disabled setting #141
Conversation
58a03c3
to
2242124
Compare
Hi Brian, Sorry for the long response, but I still need more time to review your patch. Thanks, |
Hi Gleb, No problem, I understand and appreciate all your effort & consideration! FWIW, as you may notice the new checkpatch requirement means that some code doesn't match the rest of the codebase, e.g.
so now this PR is using Best regards, |
Hi Brian,
The idea behind the new checkpatch requirement is to check new patches for errors/warnings. The current codebase still contains a lot of checkpatch errors/warnings, but I think I will fix them step by step wherever possible. Not every error/warning needs to be fixed, I have already added an ignore rule for some of them and will continue to do so, depending on the type. In your case, you did everything right: https://lkml.org/lkml/2021/9/4/55 |
Add a setting to scst_tgt that can prevent scst_gen_aen_or_ua from generating an AEN, even if the underlying transport is capable of transmitting them. It will instead generate a UA.
2242124
to
03cd04d
Compare
BTW, this PR deliberately does not include suppressing AENs from |
Hi Brian, Thank you for the patch! Thanks, |
Add a setting to
scst_tgt
that can preventscst_gen_aen_or_ua
from generating an AEN, even if the underlying transport is capable of transmitting them. It will instead generate a UA.This could prove useful in different situations, including when the target port is also a forward_dst.
(The new sysfs interface was modeled on the code for forward_dst.)