The previous applied patch introduced an error that was not present in the submitted patch here: https://patchwork.kernel.org/patch/11599123/ In particular MGMT_SET_DEF_SYSTEM_CONFIG_SIZE was introduced but MGMT_SET_DEF_SYSTEM_CONFIG was used. Signed-off-by: Alain Michaud <alainm@xxxxxxxxxxxx> --- net/bluetooth/mgmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 2e0f976e7e04..99fbfd467d04 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -7303,7 +7303,7 @@ static const struct hci_mgmt_handler mgmt_handlers[] = { HCI_MGMT_HDEV_OPTIONAL }, { read_def_system_config, MGMT_READ_DEF_SYSTEM_CONFIG_SIZE, HCI_MGMT_UNTRUSTED }, - { set_def_system_config, MGMT_SET_DEF_SYSTEM_CONFIG, + { set_def_system_config, MGMT_SET_DEF_SYSTEM_CONFIG_SIZE, HCI_MGMT_VAR_LEN }, }; -- 2.27.0.290.gba653c62da-goog