aboutsummaryrefslogtreecommitdiffstats
path: root/lib/parser.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-10-29 14:57:10 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-10-29 14:57:10 -0400
commitd506aa68c23db708ad45ca8c17f0d7f5d7029a37 (patch)
tree90c38b2938564e6486d51417ac51ecfed17b0d3d /lib/parser.c
parent7f474df0a7b7dadfc01ba778460a91f554ca1481 (diff)
parentcb1a5ab6ece7a37da4ac98ee26b0475b7c3ea79e (diff)
Merge branch 'for-linus' of git://git.kernel.dk/linux-block
Pull block layer fixes from Jens Axboe: "A small collection of fixes for the current kernel. This contains: - Two error handling fixes from Jan Kara. One for null_blk on failure to add a device, and the other for the block/scsi_ioctl SCSI_IOCTL_SEND_COMMAND fixing up the error jump point. - A commit added in the merge window for the bio integrity bits unfortunately disabled merging for all requests if CONFIG_BLK_DEV_INTEGRITY wasn't set. Reverse the logic, so that integrity checking wont disallow merges when not enabled. - A fix from Ming Lei for merging and generating too many segments. This caused a BUG in virtio_blk. - Two error handling printk() fixups from Robert Elliott, improving the information given when we rate limit. - Error handling fixup on elevator_init() failure from Sudip Mukherjee. - A fix from Tony Battersby, fixing up a memory leak in the scatterlist handling with scsi-mq" * 'for-linus' of git://git.kernel.dk/linux-block: block: Fix merge logic when CONFIG_BLK_DEV_INTEGRITY is not defined lib/scatterlist: fix memory leak with scsi-mq block: fix wrong error return in elevator_init() scsi: Fix error handling in SCSI_IOCTL_SEND_COMMAND null_blk: Cleanup error recovery in null_add_dev() blk-merge: recaculate segment if it isn't less than max segments fs: clarify rate limit suppressed buffer I/O errors fs: merge I/O error prints into one line
Diffstat (limited to 'lib/parser.c')
0 files changed, 0 insertions, 0 deletions
et.c?id=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2'>1da177e4c3f4
45194e4f89fb
1da177e4c3f4


45194e4f89fb


1da177e4c3f4

45194e4f89fb
1da177e4c3f4








45194e4f89fb
1da177e4c3f4
45194e4f89fb
1da177e4c3f4
45194e4f89fb
1da177e4c3f4

45194e4f89fb
1da177e4c3f4

45194e4f89fb
1da177e4c3f4
1da177e4c3f4
45194e4f89fb
1da177e4c3f4
1da177e4c3f4

1da177e4c3f4


45194e4f89fb
1da177e4c3f4

45194e4f89fb

1da177e4c3f4




45194e4f89fb
1da177e4c3f4

1da177e4c3f4

45194e4f89fb
1da177e4c3f4

45194e4f89fb
1da177e4c3f4

1da177e4c3f4


45194e4f89fb
1da177e4c3f4
1da177e4c3f4
45194e4f89fb

10d3bd09a3c2
1da177e4c3f4

45194e4f89fb
1da177e4c3f4

1da177e4c3f4





45194e4f89fb
1da177e4c3f4
38e1b257fd7b


55a62eef8d1b
38e1b257fd7b
1da177e4c3f4


45194e4f89fb
1da177e4c3f4



7de3ee57da4b
1da177e4c3f4



169e2cc279c4





1da177e4c3f4

169e2cc279c4
1da177e4c3f4


169e2cc279c4
1da177e4c3f4








10d3bd09a3c2
1da177e4c3f4



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160