~dannf/ubuntu/+source/linux/+git/unstable:arm64-ipmi

Last commit made on 2016-07-21
Get this branch:
git clone -b arm64-ipmi https://git.launchpad.net/~dannf/ubuntu/+source/linux/+git/unstable
Only dann frazier can upload to this branch. If you are dann frazier please log in for upload directions.

Branch merges

Branch information

Name:
arm64-ipmi
Repository:
lp:~dannf/ubuntu/+source/linux/+git/unstable

Recent commits

51027c7... by dann frazier

UBUNTU: [Config] Enable IPMI drivers on arm64

Signed-off-by: dann frazier <email address hidden>

12d31e7... by Andy Whitcroft

UBUNTU: avoid duplicate CVE numbers in changelog

BugLink: http://bugs.launchpad.net/bugs/1604344
Signed-off-by: Andy Whitcroft <email address hidden>
Acked-by: Luis Henriques <email address hidden>
Signed-off-by: Kamal Mostafa <email address hidden>

f2889b1... by Andy Whitcroft

UBUNTU: use CVE numbers in changelog

BugLink: http://bugs.launchpad.net/bugs/1604344
Signed-off-by: Andy Whitcroft <email address hidden>
Acked-by: Luis Henriques <email address hidden>
Signed-off-by: Seth Forshee <email address hidden>

7009436... by Guilherme G. Piccoli

powerpc/pci: Assign fixed PHB number based on device-tree properties

BugLink: http://bugs.launchpad.net/bugs/1603574

The domain/PHB field of PCI addresses has its value obtained from a
global variable, incremented each time a new domain (represented by
struct pci_controller) is added on the system. The domain addition
process happens during boot or due to PHB hotplug add.

As recent kernels are using predictable naming for network interfaces,
the network stack is more tied to PCI naming. This can be a problem in
hotplug scenarios, because PCI addresses will change if devices are
removed and then re-added. This situation seems unusual, but it can
happen if a user wants to replace a NIC without rebooting the machine,
for example.

This patch changes the way PCI domain values are generated: now, we use
device-tree properties to assign fixed PHB numbers to PCI addresses
when available (meaning pSeries and PowerNV cases). We also use a bitmap
to allow dynamic PHB numbering when device-tree properties are not
used. This bitmap keeps track of used PHB numbers and if a PHB is
released (by hotplug operations for example), it allows the reuse of
this PHB number, avoiding PCI address to change in case of device remove
and re-add soon after. No functional changes were introduced.

Signed-off-by: Guilherme G. Piccoli <email address hidden>
Reviewed-by: Gavin Shan <email address hidden>
Reviewed-by: Ian Munsie <email address hidden>
Acked-by: Gavin Shan <email address hidden>
[mpe: Drop unnecessary machine_is(pseries) test]
Signed-off-by: Michael Ellerman <email address hidden>

(cherry picked from linux-next commit 63a72284b159c569ec52f380c9a8dd9342d43bb8)
Signed-off-by: Tim Gardner <email address hidden>

2929f4b... by Philippe Bergheaud

cxl: Ignore CAPI adapters misplaced in switched slots

BugLink: http://bugs.launchpad.net/bugs/1602785

One should not attempt to switch a PHB into CAPI mode if there is
a switch between the PHB and the adapter. This patch modifies the
cxl driver to ignore CAPI adapters misplaced in switched slots.

Signed-off-by: Philippe Bergheaud <email address hidden>
Reviewed-by: Frederic Barrat <email address hidden>
Acked-by: Ian Munsie <email address hidden>
Signed-off-by: Michael Ellerman <email address hidden>
(cherry picked from linux-next commit 3b3dcd61fa4e3604d8f1bdfd8471fca7b7c012e4)
Signed-off-by: Tim Gardner <email address hidden>

efd18b7... by dann frazier

UBUNTU: [Config] Enable THUNDER_NIC drivers on arm64

Signed-off-by: dann frazier <email address hidden>
Signed-off-by: Tim Gardner <email address hidden>

572877b... by Miguel Bernal Marin

UBUNTU: SAUCE: Clear Linux: init: do_mounts: recreate /dev/root

Rootfs shows as is mounted in /dev/root, but this devices is not present in
/dev directory.

Signed-off-by: Miguel Bernal Marin <email address hidden>
Signed-off-by: Tim Gardner <email address hidden>

c372a8a... by Jim Kukunas <email address hidden>

UBUNTU: SAUCE: Clear Linux: xor: skip benchmark/allocations for short-circuit path

We're only testing 1 algorithm ...

Signed-off-by: Jim Kukunas <email address hidden>
Signed-off-by: Tim Gardner <email address hidden>

1272520... by Arjan van de Ven <email address hidden>

UBUNTU: SAUCE: Clear Linux: reduce e1000e boot time by tightening sleep ranges

The e1000e driver is a great user of the usleep_range() API,
and has any nice ranges that in principle help power management.

However the ranges that are used only during system startup are
very long (and can add easily 100 msec to the boot time) while
the power savings of such long ranges is irrelevant due to the
one-off, boot only, nature of these functions.

This patch shrinks some of the longest ranges to be shorter
(while still using a power friendly 1 msec range); this saves
100msec+ of boot time on my BDW NUCs

Signed-off-by: Arjan van de Ven <email address hidden>
Signed-off-by: Tim Gardner <email address hidden>

d887ca9... by Arjan van de Ven <email address hidden>

UBUNTU: SAUCE: Clear Linux: Initialize ata before graphics

ATA init is the long pole in the boot process, and its asynchronous.
move the graphics init after it so that ata and graphics initialize
in parallel

Signed-off-by: Tim Gardner <email address hidden>