Skip to content

Commit 512fb0a

Browse files
author
Alex Shi
committed
Merge tag 'v4.4.56' into linux-linaro-lsk-v4.4
This is the 4.4.56 stable release
2 parents 1c563c0 + 0136bca commit 512fb0a

40 files changed

Lines changed: 174 additions & 1221 deletions

Documentation/networking/netlink_mmap.txt

Lines changed: 0 additions & 332 deletions
This file was deleted.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION = 4
22
PATCHLEVEL = 4
3-
SUBLEVEL = 55
3+
SUBLEVEL = 56
44
EXTRAVERSION =
55
NAME = Blurry Fish Butt
66

arch/x86/kernel/cpu/perf_event.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1996,8 +1996,8 @@ static int x86_pmu_event_init(struct perf_event *event)
19961996

19971997
static void refresh_pce(void *ignored)
19981998
{
1999-
if (current->mm)
2000-
load_mm_cr4(current->mm);
1999+
if (current->active_mm)
2000+
load_mm_cr4(current->active_mm);
20012001
}
20022002

20032003
static void x86_pmu_event_mapped(struct perf_event *event)

arch/x86/kernel/head64.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
55
*/
66

7+
#define DISABLE_BRANCH_PROFILING
78
#include <linux/init.h>
89
#include <linux/linkage.h>
910
#include <linux/types.h>

arch/x86/mm/kasan_init_64.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#define DISABLE_BRANCH_PROFILING
12
#define pr_fmt(fmt) "kasan: " fmt
23
#include <linux/bootmem.h>
34
#include <linux/kasan.h>

drivers/net/vrf.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,14 +345,15 @@ static netdev_tx_t is_ip_tx_frame(struct sk_buff *skb, struct net_device *dev)
345345

346346
static netdev_tx_t vrf_xmit(struct sk_buff *skb, struct net_device *dev)
347347
{
348+
int len = skb->len;
348349
netdev_tx_t ret = is_ip_tx_frame(skb, dev);
349350

350351
if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
351352
struct pcpu_dstats *dstats = this_cpu_ptr(dev->dstats);
352353

353354
u64_stats_update_begin(&dstats->syncp);
354355
dstats->tx_pkts++;
355-
dstats->tx_bytes += skb->len;
356+
dstats->tx_bytes += len;
356357
u64_stats_update_end(&dstats->syncp);
357358
} else {
358359
this_cpu_inc(dev->dstats->tx_drps);

drivers/net/vxlan.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2600,7 +2600,7 @@ static int vxlan_validate(struct nlattr *tb[], struct nlattr *data[])
26002600

26012601
if (data[IFLA_VXLAN_ID]) {
26022602
__u32 id = nla_get_u32(data[IFLA_VXLAN_ID]);
2603-
if (id >= VXLAN_VID_MASK)
2603+
if (id >= VXLAN_N_VID)
26042604
return -ERANGE;
26052605
}
26062606

0 commit comments

Comments
 (0)