Revision: 18575
http://sourceforge.net/p/edk2/code/18575
Author: lersek
Date: 2015-10-06 20:55:36 +0000 (Tue, 06 Oct 2015)
Log Message:
-----------
DuetPkg: exit pci function loops early if device is not multi-function
When looping through all PCI functions, code should not look for functions
1-7 if function 0 is not present or if function 0 indicates the device is
not multifunction. Prior to this fix the code would use stale data in a
buffer to determine if a device is multifunction even if function 0 is not
present. This fixes a code bug and provides very small performance
improvements.
PCI 2.3 Specification states: They [multifunction devices] are also
required to always implement function 0 in the device. Implementing other
functions is optional and may be assigned in any order.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Joseph Shifflett <[email protected]>
Reviewed-by: Ruiyu Ni <[email protected]>
Modified Paths:
--------------
trunk/edk2/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c
Modified: trunk/edk2/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c
===================================================================
--- trunk/edk2/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c
2015-10-06 20:55:31 UTC (rev 18574)
+++ trunk/edk2/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c
2015-10-06 20:55:36 UTC (rev 18575)
@@ -1,6 +1,7 @@
/*++
Copyright (c) 2005 - 2014, Intel Corporation. All rights reserved.<BR>
+(C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD
License
which accompanies this distribution. The full text of the license may be
found at
@@ -216,6 +217,13 @@
(UINT8) Func
);
+ if (EFI_ERROR (Status) && Func == 0) {
+ //
+ // go to next device if there is no Function 0
+ //
+ break;
+ }
+
if (!EFI_ERROR (Status)) {
//
------------------------------------------------------------------------------
_______________________________________________
edk2-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/edk2-commits