diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2019-09-09 22:19:19 +0200 |
---|---|---|
committer | Will Deacon <will@kernel.org> | 2019-10-01 12:36:10 +0100 |
commit | 9062c1d0bedacf68d9c92cbd62c62a6fe6f6cebc (patch) | |
tree | bfa45005403a5a03364d3af2b69897c9463fed99 /tools/perf/scripts/python/exported-sql-viewer.py | |
parent | 931a0ba638e09a707e9a905cb6bea1fb1c6d4183 (diff) |
iommu/io-pgtable: Move some initialization data to .init.rodata
The memory used by '__init' functions can be freed once the initialization
phase has been performed.
Mark some 'static const' array defined and used within some '__init'
functions as '__initconst', so that the corresponding data can also be
discarded.
Without '__initconst', the data are put in the .rodata section.
With the qualifier, they are put in the .init.rodata section.
With gcc 8.3.0, the following changes have been measured:
Without '__initconst':
section size
.rodata 00000720
.init.rodata 00000018
With '__initconst':
section size
.rodata 00000660
.init.rodata 00000058
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Will Deacon <will@kernel.org>
Diffstat (limited to 'tools/perf/scripts/python/exported-sql-viewer.py')
0 files changed, 0 insertions, 0 deletions