~arges/ubuntu/+source/linux/+git/xenial:master

Last commit made on 2016-02-05
Get this branch:
git clone -b master https://git.launchpad.net/~arges/ubuntu/+source/linux/+git/xenial
Only Chris J Arges can upload to this branch. If you are Chris J Arges please log in for upload directions.

Branch merges

Branch information

Recent commits

5cd216f... by Andy Whitcroft

UBUNTU: Ubuntu-4.4.0-4.19

Signed-off-by: Andy Whitcroft <email address hidden>

52e65dc... by Andy Whitcroft

UBUNTU: [Config] reconstruct -- drop links for zfs userspace components -- restore spec links

These links are strictly wrong as they damage the tree, but without them
the build fails?

Signed-off-by: Andy Whitcroft <email address hidden>

df50691... by Andy Whitcroft

UBUNTU: Ubuntu-4.4.0-4.18

Signed-off-by: Andy Whitcroft <email address hidden>

5b7ccf8... by Andy Whitcroft

UBUNTU: [Config] reconstruct -- drop links for zfs userspace components

BugLink: http://bugs.launchpad.net/bugs/1542296
Signed-off-by: Andy Whitcroft <email address hidden>

914eed1... by Andy Whitcroft

Revert "af_unix: Revert 'lock_interruptible' in stream receive code"

This reverts commit 3822b5c2fc62e3de8a0f33806ff279fb7df92432.

BugLink: http://bugs.launchpad.net/bugs/1540731
Signed-off-by: Joseph Salisbury <email address hidden>
Signed-off-by: Andy Whitcroft <email address hidden>

f8b4782... by Andy Whitcroft

Revert "UBUNTU: SAUCE: apparmor: fix sleep from invalid context"

This reverts commit b7b19a9aeee7b85d8d94e263a08214872c706c58.

BugLink: http://bugs.launchpad.net/bugs/1542049
Signed-off-by: Andy Whitcroft <email address hidden>

2af5968... by Colin Ian King

UBUNTU: SAUCE: (noup) Update spl to 0.6.5.4-0ubuntu2, zfs to 0.6.5.4-0ubuntu1

BugLink: http://bugs.launchpad.net/bugs/1542296
Signed-off-by: Colin Ian King <email address hidden>
Signed-off-by: Tim Gardner <email address hidden>

55c7455... by Carol L Soto <email address hidden>

UBUNTU: SAUCE: IB/IPoIB: Do not set skb truesize since using one linearskb

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

This patch is being upstreamed.

We are seeing this warning: at net/core/skbuff.c:4174
and before commit a44878d10063 ("IB/ipoib: Use one linear skb in RX flow")
skb truesize was not being set when ipoib was using just one skb.
Removing this line avoids the warning when running tcp tests like iperf.

Fixes: a44878d10063 ("IB/ipoib: Use one linear skb in RX flow")
Signed-off-by: Carol L Soto <email address hidden>
Signed-off-by: Tim Gardner <email address hidden>

4e59d3e... by Allen Hung

HID: multitouch: enable palm rejection if device implements confidence usage

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

The usage Confidence is mandary to Windows Precision Touchpad devices. The
appearance of this usage is checked in hidinput_connect but the quirk
MT_QUIRK_VALID_IS_CONFIDENCE is not applied to device accordingly.
Apply this quirk and also remove quirk MT_QUIRK_ALWAYS_VALID to enable palm
rejection for the WIN 8 touchpad devices which have implemented usage
Confidence in its input reports.

Tested on Dell XPS 13 laptop.

Signed-off-by: Allen Hung <email address hidden>
Reviewed-by: Benjamin Tissoires <email address hidden>
Signed-off-by: Jiri Kosina <email address hidden>
(cherry picked from commit 25a84db15b3f3a24d3ea7d2baf90693bcff34b0c)
Signed-off-by: Tim Gardner <email address hidden>

43159d2... by Arnd Bergmann

scsi: qla2xxxx: avoid type mismatch in comparison

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

A recent bug fix added code that does

        bool logged_out = (status & 0xFFFF);
        if (logged_out == CTIO_PORT_LOGGED_OUT)
  ...

This looks wrong because we are comparing a boolean with an
integer constant, ang gcc warns about it accordingly:

drivers/scsi/qla2xxx/qla_target.c: In function 'qlt_do_ctio_completion':
drivers/scsi/qla2xxx/qla_target.c:3587:20: warning: comparison of constant '41' with boolean expression is always false [-Wbool-compare]
        (logged_out == CTIO_PORT_LOGGED_OUT) ?

The correct fix is presumably to make that variable an 'int'.

Signed-off-by: Arnd Bergmann <email address hidden>
Fixes: 71cdc0796465 ("qla2xxx: Delete session if initiator is gone from FW")
Signed-off-by: Nicholas Bellinger <email address hidden>
(cherry picked from commit fab683eb12e71ac6057dc42dc7d1e5e71e5cba5e)
Signed-off-by: Tim Gardner <email address hidden>