Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1583061 > unrolled thread

Re: [PATCH] nohz: Fix possible missing clock reprog after tick soft restart

Started bykbuild test robot <lkp@intel.com>
First post2017-02-17 04:30 +0100
Last post2017-02-17 04:30 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH] nohz: Fix possible missing clock reprog after tick soft  restart kbuild test robot <lkp@intel.com> - 2017-02-17 04:30 +0100

#1583061 — Re: [PATCH] nohz: Fix possible missing clock reprog after tick soft restart

Fromkbuild test robot <lkp@intel.com>
Date2017-02-17 04:30 +0100
SubjectRe: [PATCH] nohz: Fix possible missing clock reprog after tick soft restart
Message-ID<tbHp7-7b5-1@gated-at.bofh.it>

[Multipart message — attachments visible in raw view] — view raw

Hi Frederic,

[auto build test ERROR on tip/timers/core]
[cannot apply to v4.10-rc8 next-20170216]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]

url:    https://github.com/0day-ci/linux/commits/Frederic-Weisbecker/nohz-Fix-possible-missing-clock-reprog-after-tick-soft-restart/20170208-013019
config: i386-randconfig-c0-02171046 (attached as .config)
compiler: gcc-4.9 (Debian 4.9.4-2) 4.9.4
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All errors (new ones prefixed by >>):

   kernel/time/tick-sched.c: In function 'tick_nohz_stop_sched_tick':
>> kernel/time/tick-sched.c:732:6: error: 'struct tick_sched' has no member named 'next_tick'
       ts->next_tick = 0;
         ^

vim +732 kernel/time/tick-sched.c

   726			if (delta == 0) {
   727				tick_nohz_restart(ts, now);
   728				/*
   729				 * Make sure next tick stop doesn't get fooled by past
   730				 * clock deadline
   731				 */
 > 732				ts->next_tick = 0;
   733				goto out;
   734			}
   735		}

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web