* arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo'
@ 2023-09-13 21:43 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2023-09-13 21:43 UTC (permalink / raw)
To: Arnd Bergmann
Cc: oe-kbuild-all, linux-kernel, Christian Brauner, Alexander Gordeev
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 23f108dc9ed26100b1489f6a9e99088d4064f56b
commit: ef104443bffa004f631729dfc924f0b84abbd602 procfs: consolidate arch_report_meminfo declaration
date: 4 months ago
config: parisc-randconfig-002-20230914 (https://download.01.org/0day-ci/archive/20230914/202309140530.CBISqBas-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20230914/202309140530.CBISqBas-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202309140530.CBISqBas-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' [-Wmissing-prototypes]
65 | void arch_report_meminfo(struct seq_file *m)
| ^~~~~~~~~~~~~~~~~~~
vim +/arch_report_meminfo +65 arch/parisc/kernel/pdt.c
c9c2877d08d9aa Helge Deller 2017-05-11 63
c9c2877d08d9aa Helge Deller 2017-05-11 64 /* report PDT entries via /proc/meminfo */
c9c2877d08d9aa Helge Deller 2017-05-11 @65 void arch_report_meminfo(struct seq_file *m)
c9c2877d08d9aa Helge Deller 2017-05-11 66 {
c9c2877d08d9aa Helge Deller 2017-05-11 67 if (pdt_type == PDT_NONE)
c9c2877d08d9aa Helge Deller 2017-05-11 68 return;
c9c2877d08d9aa Helge Deller 2017-05-11 69
c9c2877d08d9aa Helge Deller 2017-05-11 70 seq_printf(m, "PDT_max_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 71 pdt_status.pdt_size);
c9c2877d08d9aa Helge Deller 2017-05-11 72 seq_printf(m, "PDT_cur_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 73 pdt_status.pdt_entries);
c9c2877d08d9aa Helge Deller 2017-05-11 74 }
c9c2877d08d9aa Helge Deller 2017-05-11 75
:::::: The code at line 65 was first introduced by commit
:::::: c9c2877d08d9aa0ca0a5c227ac795fbb76269300 parisc: Add Page Deallocation Table (PDT) support
:::::: TO: Helge Deller <deller@gmx.de>
:::::: CC: Helge Deller <deller@gmx.de>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread* arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo'
@ 2024-01-07 20:35 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2024-01-07 20:35 UTC (permalink / raw)
To: Arnd Bergmann
Cc: oe-kbuild-all, linux-kernel, Christian Brauner, Alexander Gordeev
Hi Arnd,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 52b1853b080a082ec3749c3a9577f6c71b1d4a90
commit: ef104443bffa004f631729dfc924f0b84abbd602 procfs: consolidate arch_report_meminfo declaration
date: 8 months ago
config: parisc-randconfig-r062-20240107 (https://download.01.org/0day-ci/archive/20240108/202401080456.5qtlJuny-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 13.2.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240108/202401080456.5qtlJuny-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202401080456.5qtlJuny-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' [-Wmissing-prototypes]
65 | void arch_report_meminfo(struct seq_file *m)
| ^~~~~~~~~~~~~~~~~~~
vim +/arch_report_meminfo +65 arch/parisc/kernel/pdt.c
c9c2877d08d9aa Helge Deller 2017-05-11 63
c9c2877d08d9aa Helge Deller 2017-05-11 64 /* report PDT entries via /proc/meminfo */
c9c2877d08d9aa Helge Deller 2017-05-11 @65 void arch_report_meminfo(struct seq_file *m)
c9c2877d08d9aa Helge Deller 2017-05-11 66 {
c9c2877d08d9aa Helge Deller 2017-05-11 67 if (pdt_type == PDT_NONE)
c9c2877d08d9aa Helge Deller 2017-05-11 68 return;
c9c2877d08d9aa Helge Deller 2017-05-11 69
c9c2877d08d9aa Helge Deller 2017-05-11 70 seq_printf(m, "PDT_max_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 71 pdt_status.pdt_size);
c9c2877d08d9aa Helge Deller 2017-05-11 72 seq_printf(m, "PDT_cur_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 73 pdt_status.pdt_entries);
c9c2877d08d9aa Helge Deller 2017-05-11 74 }
c9c2877d08d9aa Helge Deller 2017-05-11 75
:::::: The code at line 65 was first introduced by commit
:::::: c9c2877d08d9aa0ca0a5c227ac795fbb76269300 parisc: Add Page Deallocation Table (PDT) support
:::::: TO: Helge Deller <deller@gmx.de>
:::::: CC: Helge Deller <deller@gmx.de>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread* arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo'
@ 2025-01-05 22:11 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2025-01-05 22:11 UTC (permalink / raw)
To: Arnd Bergmann
Cc: oe-kbuild-all, linux-kernel, Christian Brauner, Alexander Gordeev
Hi Arnd,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 9244696b34f2a626d7468864420ab6a47289bf10
commit: ef104443bffa004f631729dfc924f0b84abbd602 procfs: consolidate arch_report_meminfo declaration
date: 1 year, 8 months ago
config: parisc-randconfig-r016-20230411 (https://download.01.org/0day-ci/archive/20250106/202501060625.LbITrgvx-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 12.4.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250106/202501060625.LbITrgvx-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202501060625.LbITrgvx-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' [-Wmissing-prototypes]
65 | void arch_report_meminfo(struct seq_file *m)
| ^~~~~~~~~~~~~~~~~~~
vim +/arch_report_meminfo +65 arch/parisc/kernel/pdt.c
c9c2877d08d9aa Helge Deller 2017-05-11 63
c9c2877d08d9aa Helge Deller 2017-05-11 64 /* report PDT entries via /proc/meminfo */
c9c2877d08d9aa Helge Deller 2017-05-11 @65 void arch_report_meminfo(struct seq_file *m)
c9c2877d08d9aa Helge Deller 2017-05-11 66 {
c9c2877d08d9aa Helge Deller 2017-05-11 67 if (pdt_type == PDT_NONE)
c9c2877d08d9aa Helge Deller 2017-05-11 68 return;
c9c2877d08d9aa Helge Deller 2017-05-11 69
c9c2877d08d9aa Helge Deller 2017-05-11 70 seq_printf(m, "PDT_max_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 71 pdt_status.pdt_size);
c9c2877d08d9aa Helge Deller 2017-05-11 72 seq_printf(m, "PDT_cur_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 73 pdt_status.pdt_entries);
c9c2877d08d9aa Helge Deller 2017-05-11 74 }
c9c2877d08d9aa Helge Deller 2017-05-11 75
:::::: The code at line 65 was first introduced by commit
:::::: c9c2877d08d9aa0ca0a5c227ac795fbb76269300 parisc: Add Page Deallocation Table (PDT) support
:::::: TO: Helge Deller <deller@gmx.de>
:::::: CC: Helge Deller <deller@gmx.de>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread* arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo'
@ 2025-02-08 15:43 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2025-02-08 15:43 UTC (permalink / raw)
To: Arnd Bergmann
Cc: oe-kbuild-all, linux-kernel, Christian Brauner, Alexander Gordeev
Hi Arnd,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 8f6629c004b193d23612641c3607e785819e97ab
commit: ef104443bffa004f631729dfc924f0b84abbd602 procfs: consolidate arch_report_meminfo declaration
date: 1 year, 9 months ago
config: parisc-randconfig-r016-20230411 (https://download.01.org/0day-ci/archive/20250208/202502082315.IPaHaTyM-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 12.4.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250208/202502082315.IPaHaTyM-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202502082315.IPaHaTyM-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' [-Wmissing-prototypes]
65 | void arch_report_meminfo(struct seq_file *m)
| ^~~~~~~~~~~~~~~~~~~
vim +/arch_report_meminfo +65 arch/parisc/kernel/pdt.c
c9c2877d08d9aa Helge Deller 2017-05-11 63
c9c2877d08d9aa Helge Deller 2017-05-11 64 /* report PDT entries via /proc/meminfo */
c9c2877d08d9aa Helge Deller 2017-05-11 @65 void arch_report_meminfo(struct seq_file *m)
c9c2877d08d9aa Helge Deller 2017-05-11 66 {
c9c2877d08d9aa Helge Deller 2017-05-11 67 if (pdt_type == PDT_NONE)
c9c2877d08d9aa Helge Deller 2017-05-11 68 return;
c9c2877d08d9aa Helge Deller 2017-05-11 69
c9c2877d08d9aa Helge Deller 2017-05-11 70 seq_printf(m, "PDT_max_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 71 pdt_status.pdt_size);
c9c2877d08d9aa Helge Deller 2017-05-11 72 seq_printf(m, "PDT_cur_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 73 pdt_status.pdt_entries);
c9c2877d08d9aa Helge Deller 2017-05-11 74 }
c9c2877d08d9aa Helge Deller 2017-05-11 75
:::::: The code at line 65 was first introduced by commit
:::::: c9c2877d08d9aa0ca0a5c227ac795fbb76269300 parisc: Add Page Deallocation Table (PDT) support
:::::: TO: Helge Deller <deller@gmx.de>
:::::: CC: Helge Deller <deller@gmx.de>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread* arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo'
@ 2025-03-02 17:19 kernel test robot
0 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2025-03-02 17:19 UTC (permalink / raw)
To: Arnd Bergmann
Cc: oe-kbuild-all, linux-kernel, Christian Brauner, Alexander Gordeev
Hi Arnd,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 1973160c90d7886c523e52e1f56164e6a74f0474
commit: ef104443bffa004f631729dfc924f0b84abbd602 procfs: consolidate arch_report_meminfo declaration
date: 1 year, 10 months ago
config: parisc-randconfig-r016-20230411 (https://download.01.org/0day-ci/archive/20250303/202503030123.GrzZ1SpJ-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 12.4.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250303/202503030123.GrzZ1SpJ-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202503030123.GrzZ1SpJ-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' [-Wmissing-prototypes]
65 | void arch_report_meminfo(struct seq_file *m)
| ^~~~~~~~~~~~~~~~~~~
vim +/arch_report_meminfo +65 arch/parisc/kernel/pdt.c
c9c2877d08d9aa Helge Deller 2017-05-11 63
c9c2877d08d9aa Helge Deller 2017-05-11 64 /* report PDT entries via /proc/meminfo */
c9c2877d08d9aa Helge Deller 2017-05-11 @65 void arch_report_meminfo(struct seq_file *m)
c9c2877d08d9aa Helge Deller 2017-05-11 66 {
c9c2877d08d9aa Helge Deller 2017-05-11 67 if (pdt_type == PDT_NONE)
c9c2877d08d9aa Helge Deller 2017-05-11 68 return;
c9c2877d08d9aa Helge Deller 2017-05-11 69
c9c2877d08d9aa Helge Deller 2017-05-11 70 seq_printf(m, "PDT_max_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 71 pdt_status.pdt_size);
c9c2877d08d9aa Helge Deller 2017-05-11 72 seq_printf(m, "PDT_cur_entries: %7lu\n",
c9c2877d08d9aa Helge Deller 2017-05-11 73 pdt_status.pdt_entries);
c9c2877d08d9aa Helge Deller 2017-05-11 74 }
c9c2877d08d9aa Helge Deller 2017-05-11 75
:::::: The code at line 65 was first introduced by commit
:::::: c9c2877d08d9aa0ca0a5c227ac795fbb76269300 parisc: Add Page Deallocation Table (PDT) support
:::::: TO: Helge Deller <deller@gmx.de>
:::::: CC: Helge Deller <deller@gmx.de>
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-03-02 17:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-13 21:43 arch/parisc/kernel/pdt.c:65:6: warning: no previous prototype for 'arch_report_meminfo' kernel test robot
-- strict thread matches above, loose matches on Subject: below --
2024-01-07 20:35 kernel test robot
2025-01-05 22:11 kernel test robot
2025-02-08 15:43 kernel test robot
2025-03-02 17:19 kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox