diff options
| author | Breno Leitao <[email protected]> | 2025-02-06 11:05:56 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2025-02-10 15:04:18 +0000 |
| commit | 2bae25b16aea249f0e96757b6cd28b03d2b4397f (patch) | |
| tree | 0569c962c509ef50a8f21fa1cbc481c7817085f3 | |
| parent | netconsole: Introduce configfs helpers for sysdata features (diff) | |
| download | kernel-2bae25b16aea249f0e96757b6cd28b03d2b4397f.tar.gz kernel-2bae25b16aea249f0e96757b6cd28b03d2b4397f.zip | |
netconsole: Include sysdata in extradata entry count
Modify count_extradata_entries() to include sysdata fields when
calculating the total number of extradata entries. This change ensures
that the sysdata feature, specifically the CPU number field, is
correctly counted against the MAX_EXTRADATA_ITEMS limit.
The modification adds a simple check for the CPU_NR flag in the
sysdata_fields, incrementing the entry count accordingly.
Signed-off-by: Breno Leitao <[email protected]>
Reviewed-by: Simon Horman <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | drivers/net/netconsole.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index 710330ae8ee4..50739c7dbfb6 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -694,7 +694,15 @@ out_unlock: */ static size_t count_extradata_entries(struct netconsole_target *nt) { - return list_count_nodes(&nt->userdata_group.cg_children); + size_t entries; + + /* Userdata entries */ + entries = list_count_nodes(&nt->userdata_group.cg_children); + /* Plus sysdata entries */ + if (nt->sysdata_fields & CPU_NR) + entries += 1; + + return entries; } static ssize_t remote_mac_store(struct config_item *item, const char *buf, |
