diff mbox

[blktests] common/rc: allow 5-digit domains in _get_pci_dev_from_blkdev

Message ID 1511819345-18092-1-git-send-email-jonathan.derrick@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Jon Derrick Nov. 27, 2017, 9:49 p.m. UTC
At least one driver (VMD) uses 32-bit pci domains, but is effectively
limited to 5-digit domains. Allow tests to access devices with 4-5 digit
domains.

Signed-off-by: Jon Derrick <jonathan.derrick@intel.com>
---
 common/rc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Omar Sandoval Nov. 28, 2017, 12:24 a.m. UTC | #1
On Mon, Nov 27, 2017 at 02:49:05PM -0700, Jon Derrick wrote:
> At least one driver (VMD) uses 32-bit pci domains, but is effectively
> limited to 5-digit domains. Allow tests to access devices with 4-5 digit
> domains.
> 
> Signed-off-by: Jon Derrick <jonathan.derrick@intel.com>

Thanks, Jon, applied.
diff mbox

Patch

diff --git a/common/rc b/common/rc
index 6b29c2b..09ce4ef 100644
--- a/common/rc
+++ b/common/rc
@@ -138,7 +138,7 @@  _test_dev_is_pci() {
 
 _get_pci_dev_from_blkdev() {
 	readlink -f "$TEST_DEV_SYSFS/device" | \
-		grep -Eo '[0-9a-f]{4}:[0-9a-f]{2}:[0-9a-f]{2}\.[0-9a-f]' | \
+		grep -Eo '[0-9a-f]{4,5}:[0-9a-f]{2}:[0-9a-f]{2}\.[0-9a-f]' | \
 		tail -1
 }