Skip to content

Commit 96b0e52

Browse files
committed
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux
Pull s390 fixes from Martin Schwidefsky: "Two bug fixes: - A fix for cputime accounting vs CPU hotplug - Add two options to zfcpdump_defconfig to make SCSI dump work again" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux: s390: fix zfcpdump-config s390/cputime: fix guest/irq/softirq times after CPU hotplug
2 parents 503f7e2 + 0015a97 commit 96b0e52

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

arch/s390/configs/zfcpdump_defconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ CONFIG_NET=y
2727
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
2828
CONFIG_DEVTMPFS=y
2929
# CONFIG_FIRMWARE_IN_KERNEL is not set
30+
CONFIG_BLK_DEV_RAM=y
3031
# CONFIG_BLK_DEV_XPRAM is not set
3132
# CONFIG_DCSSBLK is not set
3233
# CONFIG_DASD is not set
@@ -59,6 +60,7 @@ CONFIG_CONFIGFS_FS=y
5960
# CONFIG_NETWORK_FILESYSTEMS is not set
6061
CONFIG_PRINTK_TIME=y
6162
CONFIG_DEBUG_INFO=y
63+
CONFIG_DEBUG_FS=y
6264
CONFIG_DEBUG_KERNEL=y
6365
CONFIG_PANIC_ON_OOPS=y
6466
# CONFIG_SCHED_DEBUG is not set

arch/s390/kernel/smp.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,10 @@ static void pcpu_attach_task(struct pcpu *pcpu, struct task_struct *tsk)
293293
lc->lpp = LPP_MAGIC;
294294
lc->current_pid = tsk->pid;
295295
lc->user_timer = tsk->thread.user_timer;
296+
lc->guest_timer = tsk->thread.guest_timer;
296297
lc->system_timer = tsk->thread.system_timer;
298+
lc->hardirq_timer = tsk->thread.hardirq_timer;
299+
lc->softirq_timer = tsk->thread.softirq_timer;
297300
lc->steal_timer = 0;
298301
}
299302

0 commit comments

Comments
 (0)