]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
exec: Rename exec-vary.c as page-vary.c
authorRichard Henderson <richard.henderson@linaro.org>
Mon, 22 Mar 2021 11:24:24 +0000 (12:24 +0100)
committerRichard Henderson <richard.henderson@linaro.org>
Wed, 24 Mar 2021 01:36:36 +0000 (19:36 -0600)
exec-vary.c is about variable page size handling,
rename it page-vary.c. Currently this file is target
specific (built once for each target), comment this.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210322112427.4045204-2-f4bug@amsat.org>
[rth: Update MAINTAINERS]
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
MAINTAINERS
meson.build
page-vary.c [moved from exec-vary.c with 98% similarity]

index 9147e9a429a0be8daba43278a55d411ee7a67e60..ed68de3cec914805cdb0041a832665af66c38bd7 100644 (file)
@@ -117,6 +117,7 @@ R: Paolo Bonzini <pbonzini@redhat.com>
 S: Maintained
 F: softmmu/cpus.c
 F: cpus-common.c
+F: page-vary.c
 F: accel/tcg/
 F: accel/stubs/tcg-stub.c
 F: util/cacheinfo.c
index 5c85a15364d9c35ee3618796dd5b3d9fa0b96e3e..f0dd8aa0898bc4eb2a5820aea7f2e148d2016a0d 100644 (file)
@@ -1933,7 +1933,6 @@ subdir('softmmu')
 
 common_ss.add(capstone)
 specific_ss.add(files('cpu.c', 'disas.c', 'gdbstub.c'), capstone)
-specific_ss.add(files('exec-vary.c'))
 specific_ss.add(when: 'CONFIG_TCG', if_true: files(
   'fpu/softfloat.c',
   'tcg/optimize.c',
@@ -1945,6 +1944,8 @@ specific_ss.add(when: 'CONFIG_TCG', if_true: files(
 ))
 specific_ss.add(when: 'CONFIG_TCG_INTERPRETER', if_true: files('tcg/tci.c'))
 
+specific_ss.add(files('page-vary.c'))
+
 subdir('backends')
 subdir('disas')
 subdir('migration')
similarity index 98%
rename from exec-vary.c
rename to page-vary.c
index a603b1b4336cb004f3c68fc98994d90c1e7811f8..344f9fcf76a72b41e4c0380f4036b220891605d2 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Variable page size handling
+ * Variable page size handling -- target specific part.
  *
  *  Copyright (c) 2003 Fabrice Bellard
  *