/* * Copyright (C) 2015 Josh Poimboeuf * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #ifndef _SPECIAL_H #define _SPECIAL_H #include #include "elf.h" struct special_alt { struct list_head list; bool group; bool skip_orig; bool jump_or_nop; struct section *orig_sec; unsigned long orig_off; struct section *new_sec; unsigned long new_off; unsigned int orig_len, new_len; /* group only */ }; int special_get_alts(struct elf *elf, struct list_head *alts); #endif /* _SPECIAL_H */ ion> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-06-25 06:38:42 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2016-06-25 06:38:42 -0700
commit57801c1b817128cbb3a4dc45e6a1e0e31a227a19 (patch)
treef4ed8d503aacd4c53bb04586044ebc58ca9b1a81
parente3b22bc3d705b4a265247a9e2a1dea9ecf01a0cd (diff)
parentfeb245e304f343cf5e4f9123db36354144dce8a4 (diff)
Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull scheduler fixes from Thomas Gleixner: "A couple of scheduler fixes: - force watchdog reset while processing sysrq-w - fix a deadlock when enabling trace events in the scheduler - fixes to the throttled next buddy logic - fixes for the average accounting (missing serialization and underflow handling) - allow kernel threads for fallback to online but not active cpus" * 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: sched/core: Allow kthreads to fall back to online && !active cpus sched/fair: Do not announce throttled next buddy in dequeue_task_fair() sched/fair: Initialize throttle_count for new task-groups lazily sched/fair: Fix cfs_rq avg tracking underflow kernel/sysrq, watchdog, sched/core: Reset watchdog on all CPUs while processing sysrq-w sched/debug: Fix deadlock when enabling sched events sched/fair: Fix post_init_entity_util_avg() serialization