1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-30 10:22:13 +00:00

Kernel: Set file size for smbios_entry_point and DMI blobs in ProcFS

This is needed to support dmidecode version 3.3, so it can read the 2
blobs in ProcFS.
This commit is contained in:
Liav A 2021-01-29 21:01:56 +02:00 committed by Andreas Kling
parent 338c6eec65
commit 65c27bfe52
3 changed files with 19 additions and 0 deletions

View file

@ -1176,6 +1176,14 @@ InodeMetadata ProcFSInode::metadata() const
case FI_PID_stacks:
metadata.mode = S_IFDIR | S_IRUSR | S_IXUSR;
break;
case FI_Root_smbios_entry_point:
metadata.mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH;
metadata.size = DMIExpose::the().entry_point_length();
break;
case FI_Root_dmi:
metadata.mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH;
metadata.size = DMIExpose::the().structure_table_length();
break;
default:
metadata.mode = S_IFREG | S_IRUSR | S_IRGRP | S_IROTH;
break;