diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2024-11-04 09:40:29 +0800 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2024-11-05 13:32:20 +0100 |
commit | 6d8bac098e6e44b9a2768e38e9bf77626dc591b7 (patch) | |
tree | 880739f4218d9627f98a3e9b37bfd86d0ae56a6a /drivers/iommu/intel/dmar.c | |
parent | 2a32309345ef2977ceb4fba81600066474ac8581 (diff) | |
download | linux-6d8bac098e6e44b9a2768e38e9bf77626dc591b7.tar.gz linux-6d8bac098e6e44b9a2768e38e9bf77626dc591b7.tar.bz2 linux-6d8bac098e6e44b9a2768e38e9bf77626dc591b7.zip |
iommu/vt-d: Increase buffer size for device name
GCC is not happy with the current code, e.g.:
.../iommu/intel/dmar.c:1063:9: note: ‘sprintf’ output between 6 and 15 bytes into a destination of size 13
1063 | sprintf(iommu->name, "dmar%d", iommu->seq_id);
When `make W=1` is supplied, this prevents kernel building. Fix it by
increasing the buffer size for device name and use sizeoF() instead of
hard coded constants.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20241014104529.4025937-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/intel/dmar.c')
-rw-r--r-- | drivers/iommu/intel/dmar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/intel/dmar.c b/drivers/iommu/intel/dmar.c index eaf862e8dea1..e16c2b1d7633 100644 --- a/drivers/iommu/intel/dmar.c +++ b/drivers/iommu/intel/dmar.c @@ -1060,7 +1060,7 @@ static int alloc_iommu(struct dmar_drhd_unit *drhd) err = iommu->seq_id; goto error; } - sprintf(iommu->name, "dmar%d", iommu->seq_id); + snprintf(iommu->name, sizeof(iommu->name), "dmar%d", iommu->seq_id); err = map_iommu(iommu, drhd); if (err) { |