Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branches 'core-urgent-for-linus', 'irq-urgent-for-linus' and 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull objtool, irq and scheduler fixes from Ingo Molnar:
"One more objtool fixlet for GCC6 code generation patterns, an irq
DocBook fix and an unused variable warning fix in the scheduler"

* 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool: Fix rare switch jump table pattern detection

* 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
doc: Add missing parameter for msi_setup

* 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
sched/fair: Remove unused but set variable 'rq'

+3 -4
+2
drivers/pci/msi.c
··· 610 610 * msi_capability_init - configure device's MSI capability structure 611 611 * @dev: pointer to the pci_dev data structure of MSI device function 612 612 * @nvec: number of interrupts to allocate 613 + * @affinity: flag to indicate cpu irq affinity mask should be set 613 614 * 614 615 * Setup the MSI capability structure of the device with the requested 615 616 * number of interrupts. A return value of zero indicates the successful ··· 753 752 * @dev: pointer to the pci_dev data structure of MSI-X device function 754 753 * @entries: pointer to an array of struct msix_entry entries 755 754 * @nvec: number of @entries 755 + * @affinity: flag to indicate cpu irq affinity mask should be set 756 756 * 757 757 * Setup the MSI-X capability structure of device function with a 758 758 * single MSI-X irq. A return of zero indicates the successful setup of
-3
kernel/sched/fair.c
··· 8839 8839 { 8840 8840 struct sched_entity *se; 8841 8841 struct cfs_rq *cfs_rq; 8842 - struct rq *rq; 8843 8842 int i; 8844 8843 8845 8844 tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL); ··· 8853 8854 init_cfs_bandwidth(tg_cfs_bandwidth(tg)); 8854 8855 8855 8856 for_each_possible_cpu(i) { 8856 - rq = cpu_rq(i); 8857 - 8858 8857 cfs_rq = kzalloc_node(sizeof(struct cfs_rq), 8859 8858 GFP_KERNEL, cpu_to_node(i)); 8860 8859 if (!cfs_rq)
+1 -1
tools/objtool/builtin-check.c
··· 754 754 if (insn->type == INSN_JUMP_UNCONDITIONAL && 755 755 insn->jump_dest && 756 756 (insn->jump_dest->offset <= insn->offset || 757 - insn->jump_dest->offset >= orig_insn->offset)) 757 + insn->jump_dest->offset > orig_insn->offset)) 758 758 break; 759 759 760 760 text_rela = find_rela_by_dest_range(insn->sec, insn->offset,