From 1b800e3f85ec986de93857724dc435b866587fe8 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 16 Feb 2022 17:21:18 -0500 Subject: [PATCH] Block FFDC data from FPC FPC does not implement this feature. Change-Id: I3aab4983ae48efe6655ccf20ae2cc2fc4e27498e --- pyghmi/ipmi/oem/lenovo/nextscale.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyghmi/ipmi/oem/lenovo/nextscale.py b/pyghmi/ipmi/oem/lenovo/nextscale.py index 65703783..d89f7686 100644 --- a/pyghmi/ipmi/oem/lenovo/nextscale.py +++ b/pyghmi/ipmi/oem/lenovo/nextscale.py @@ -688,6 +688,8 @@ class SMMClient(object): def get_diagnostic_data(self, savefile, progress=None, autosuffix=False, variant=None): + if variant == 6: + raise Exception('Service data not supported on FPC') rsp = self.ipmicmd.xraw_command(netfn=0x32, command=0xb1, data=[0]) if bytearray(rsp['data'])[0] != 0: raise Exception("Service data generation already in progress")