Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
NvmExpressDxe: Request Number of Queues from Controller #1260
base: dev/202405
Are you sure you want to change the base?
NvmExpressDxe: Request Number of Queues from Controller #1260
Changes from all commits
d4535b9
22cd985
e7a7cc8
148407e
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Because BlockIo2 is not widely used, I would recommend trying to uninstall the other protocols first, since that's where real usage would be, then do BlockIo2 if required and not duplicate the OpenProtocol logic, just maintain if either uninstall failed
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.
Part of uninstallMultipleProtocols involves reinstalling all protocols if even one of them fails to uninstall. to not have a split state. @apop5 can you confirm?
#1260 (comment)
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.
That's not what I mean, what I mean is that you do the uninstall of BlockIo2 if required, if that fails open the protocol on the dummy interface, then go uninstall the more widely used protocols and then open the dummy interface if those fail. My suggestion is to not do the open protocol twice, but simply keep track of whether the BlockIo2 protocol uninstall failed and if either uninstall failed, then do the openprotocol. I.e. don't do that part twice.
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.
You are changing a previous MU_CHANGE, should this PR either be marked
[SQUASH ON REBASE]
or if completely superceding the previous commit(s), reverting that commit and applying this one as a[REBASE & FF]
?That might look like splitting this PR into multiple commits, one of which is squashed with the previous commit or reverting it.
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.
I might be misremembering this change, but if we are now querying the NVMe controller for the queue size supported, should we not just use that, regardless of a PCD? Or is this for the case where a controller is wrong about its queue size?
In either case, it either seems to me like we don't need the PCD (and just take what the controller supports or the max we support) or that the HW needs to be fixed, but failing that we would need a PCD that tells us what queue size to use (but again I am dubious of not doing what the HW tells us).
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.
The PCD essentially changes what the maximum size we (the driver) support is. By default, the driver has hard-coded maximum sizes that vary depending on the queue type/which queue pair it belongs to. With the PCD there is one maximum size used for all queues.
This PR's change is regarding the number of queue pairs, but the PCD is concerning the driver's supported "size" of each queue in the number of queue entries per queue.
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.
Again, I know there is history here, but I don't remember it, why not just change what size the driver supports to the uniform size?
I may be misunderstanding, but I thought part of the change is to query the HW for what queue size it supports? And then it doesn't matter what size the driver supports as long as we just do what the HW actually supports?
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.
For compatibility, we should keep the Pcd, and can contact the original requestors to see if it's still needed. For now, this change can be made independently.
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.
Sounds good to me, can you file an issue on mu_basecore to track removing the PCD (or at least finding out if it is still needed)?