Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1369460
| Path | csiph.com!news.mixmin.net!Xbb.tags.giganews.com!border2.nntp.ams1.giganews.com!nntp.giganews.com!goblin2!goblin.stu.neva.ru!gothmog.csi.it!bofh.it!news.nic.it!robomod |
|---|---|
| From | kbuild test robot <lkp@intel.com> |
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] x86: Add a turbo mode sysctl |
| Date | Fri, 01 Apr 2016 18:10:02 +0200 |
| Message-ID | <rj9O2-6S2-11@gated-at.bofh.it> (permalink) |
| References | <rj9Eo-6vF-25@gated-at.bofh.it> |
| X-Original-To | Andy Lutomirski <luto@kernel.org> |
| X-Extloop1 | 1 |
| X-Ironport-Av | E=Sophos;i="5.24,427,1455004800"; d="gz'50?scan'50,208,50";a="949720965" |
| MIME-Version | 1.0 |
| Content-Type | multipart/mixed; boundary="cWoXeonUoKmBZSoM" |
| Content-Disposition | inline |
| User-Agent | Mutt/1.5.23 (2014-03-12) |
| X-Sa-Exim-Connect-IP | <locally generated> |
| X-Sa-Exim-Mail-From | fengguang.wu@intel.com |
| X-Sa-Exim-Scanned | No (on bee); SAEximRunCond expanded to false |
| Sender | robomod@news.nic.it |
| List-ID | <linux-kernel.vger.kernel.org> |
| X-Mailing-List | linux-kernel@vger.kernel.org |
| Approved | robomod@news.nic.it |
| Lines | 565 |
| Organization | linux.* mail to news gateway |
| X-Original-Cc | kbuild-all@01.org, x86@kernel.org, Borislav Petkov <bp@alien8.de>, linux-kernel@vger.kernel.org, linux-api@vger.kernel.org, Andy Lutomirski <luto@kernel.org> |
| X-Original-Date | Sat, 2 Apr 2016 00:07:41 +0800 |
| X-Original-Message-ID | <201604020018.MTV0Ki8P%fengguang.wu@intel.com> |
| X-Original-References | <cd6157244ae75145e2529a1d73f6174cd829ac9c.1459525715.git.luto@kernel.org> |
| X-Original-Sender | linux-kernel-owner@vger.kernel.org |
| Xref | csiph.com linux.kernel:1369460 |
Show key headers only | View raw
[Multipart message — attachments visible in raw view] - view raw
Hi Andy,
[auto build test WARNING on tip/x86/core]
[also build test WARNING on v4.6-rc1 next-20160401]
[if your patch is applied to the wrong git tree, please drop us a note to help improving the system]
url: https://github.com/0day-ci/linux/commits/Andy-Lutomirski/x86-Add-a-turbo-mode-sysctl/20160401-235300
config: i386-randconfig-s1-201613 (attached as .config)
reproduce:
# save the attached .config to linux build tree
make ARCH=i386
All warnings (new ones prefixed by >>):
>> arch/x86/mm/pat.c:224:25: warning: 'turbo_mode_table' defined but not used [-Wunused-variable]
static struct ctl_table turbo_mode_table[] = {
^
vim +/turbo_mode_table +224 arch/x86/mm/pat.c
208 void __user *buffer, size_t *lenp,
209 loff_t *ppos)
210 {
211 int error;
212
213 error = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
214 if (error)
215 return error;
216
217 if (write)
218 update_turbo_mode();
219
220 return 0;
221 }
222
223 static int zero, one = 1;
> 224 static struct ctl_table turbo_mode_table[] = {
225 {
226 .procname = "turbo_mode",
227 .data = &turbo_mode,
228 .maxlen = sizeof(int),
229 .mode = 0644,
230 .proc_handler = turbo_mode_handler,
231 .extra1 = &zero,
232 .extra2 = &one,
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] x86: Add a turbo mode sysctl Andy Lutomirski <luto@kernel.org> - 2016-04-01 18:00 +0200 Re: [PATCH] x86: Add a turbo mode sysctl Borislav Petkov <bp@alien8.de> - 2016-04-01 18:10 +0200 Re: [PATCH] x86: Add a turbo mode sysctl kbuild test robot <lkp@intel.com> - 2016-04-01 18:10 +0200 Re: [PATCH] x86: Add a turbo mode sysctl Thomas Gleixner <tglx@linutronix.de> - 2016-04-01 18:20 +0200
csiph-web