Skip to content

Commit 5238d89

Browse files
committed
2 parents 0a113cb + e043d23 commit 5238d89

431 files changed

Lines changed: 2846 additions & 1339 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Documentation/sphinx/parse-headers.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl
1+
#!/usr/bin/env perl
22
use strict;
33
use Text::Tabs;
44

Documentation/target/tcm_mod_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22
# The TCM v4 multi-protocol fabric module generation script for drivers/target/$NEW_MOD
33
#
44
# Copyright (c) 2010 Rising Tide Systems

Documentation/trace/postprocess/decode_msr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/env python
22
# add symbolic names to read_msr / write_msr in trace
33
# decode_msr msr-index.h < trace
44
import sys

Documentation/trace/postprocess/trace-pagealloc-postprocess.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl
1+
#!/usr/bin/env perl
22
# This is a POC (proof of concept or piece of crap, take your pick) for reading the
33
# text representation of trace output related to page allocation. It makes an attempt
44
# to extract some high-level information on what is going on. The accuracy of the parser

Documentation/trace/postprocess/trace-vmscan-postprocess.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/perl
1+
#!/usr/bin/env perl
22
# This is a POC for reading the text representation of trace output related to
33
# page reclaim. It makes an attempt to extract some high-level information on
44
# what is going on. The accuracy of the parser may vary

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
VERSION = 4
22
PATCHLEVEL = 9
3-
SUBLEVEL = 268
3+
SUBLEVEL = 272
44
EXTRAVERSION =
55
NAME = Roaring Lionus
66

arch/arc/kernel/entry.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ tracesys:
169169

170170
; Do the Sys Call as we normally would.
171171
; Validate the Sys Call number
172-
cmp r8, NR_syscalls
172+
cmp r8, NR_syscalls - 1
173173
mov.hi r0, -ENOSYS
174174
bhi tracesys_exit
175175

@@ -252,7 +252,7 @@ ENTRY(EV_Trap)
252252
;============ Normal syscall case
253253

254254
; syscall num shd not exceed the total system calls avail
255-
cmp r8, NR_syscalls
255+
cmp r8, NR_syscalls - 1
256256
mov.hi r0, -ENOSYS
257257
bhi .Lret_from_system_call
258258

arch/arm/boot/dts/exynos5250-smdk5250.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
compatible = "maxim,max77686";
135135
reg = <0x09>;
136136
interrupt-parent = <&gpx3>;
137-
interrupts = <2 IRQ_TYPE_NONE>;
137+
interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
138138
pinctrl-names = "default";
139139
pinctrl-0 = <&max77686_irq>;
140140
wakeup-source;

arch/arm/boot/dts/exynos5250-snow-common.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@
280280
max77686: max77686@09 {
281281
compatible = "maxim,max77686";
282282
interrupt-parent = <&gpx3>;
283-
interrupts = <2 IRQ_TYPE_NONE>;
283+
interrupts = <2 IRQ_TYPE_LEVEL_LOW>;
284284
pinctrl-names = "default";
285285
pinctrl-0 = <&max77686_irq>;
286286
wakeup-source;

arch/arm/kernel/hw_breakpoint.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,7 @@ static void breakpoint_handler(unsigned long unknown, struct pt_regs *regs)
891891
info->trigger = addr;
892892
pr_debug("breakpoint fired: address = 0x%x\n", addr);
893893
perf_bp_event(bp, regs);
894-
if (!bp->overflow_handler)
894+
if (is_default_overflow_handler(bp))
895895
enable_single_step(bp, addr);
896896
goto unlock;
897897
}

0 commit comments

Comments
 (0)