aboutsummaryrefslogtreecommitdiffstats
path: root/net/9p/protocol.c
blob: fc70147c771e15c2542a92e7286560f7faa1b98a (plain) (blame)
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
/*
 * net/9p/protocol.c
 *
 * 9P Protocol Support Code
 *
 *  Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
 *
 *  Base on code from Anthony Liguori <aliguori@us.ibm.com>
 *  Copyright (C) 2008 by IBM, Corp.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2
 *  as published by the Free Software Foundation.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to:
 *  Free Software Foundation
 *  51 Franklin Street, Fifth Floor
 *  Boston, MA  02111-1301  USA
 *
 */

#include <linux/module.h>
#include <linux/errno.h>
#include <linux/uaccess.h>
#include <linux/sched.h>
#include <linux/types.h>
#include <net/9p/9p.h>
#include <net/9p/client.h>
#include "protocol.h"

#ifndef MIN
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif

#ifndef MAX
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#endif

#ifndef offset_of
#define offset_of(type, memb) \
	((unsigned long)(&((type *)0)->memb))
#endif
#ifndef container_of
#define container_of(obj, type, memb) \
	((type *)(((char *)obj) - offset_of(type, memb)))
#endif

static int
p9pdu_writef(struct p9_fcall *pdu, int optional, const char *fmt, ...);

#ifdef CONFIG_NET_9P_DEBUG
void
p9pdu_dump(int way, struct p9_fcall *pdu)
{
	int i, n;
	u8 *data = pdu->sdata;
	int datalen = pdu->size;
	char buf[255];
	int buflen = 255;

	i = n = 0;
	if (datalen > (buflen-16))
		datalen = buflen-16;
	while (i < datalen) {
		n += scnprintf(buf + n, buflen - n, "%02x ", data[i]);
		if (i%4 == 3)
			n += scnprintf(buf + n, buflen - n, " ");
		if (i%32 == 31)
			n += scnprintf(buf + n, buflen - n, "\n");

		i++;
	}
	n += scnprintf(buf + n, buflen - n, "\n");

	if (way)
		P9_DPRINTK(P9_DEBUG_PKT, "[[[(%d) %s\n", datalen, buf);
	else
		P9_DPRINTK(P9_DEBUG_PKT, "]]](%d) %s\n", datalen, buf);
}
#else
void
p9pdu_dump(int way, struct p9_fcall *pdu)
{
}
#endif
EXPORT_SYMBOL(p9pdu_dump);

void p9stat_free(struct p9_wstat *stbuf)
{
	kfree(stbuf->name);
	kfree(stbuf->uid);
	kfree(stbuf->gid);
	kfree(stbuf->muid);
	kfree(stbuf->extension);
}
EXPORT_SYMBOL(p9stat_free);

static size_t pdu_read(struct p9_fcall *pdu, void *data, size_t size)
{
	size_t len = MIN(pdu->size - pdu->offset, size);
	memcpy(data, &pdu->sdata[pdu->offset], len);
	pdu->offset += len;
	return size - len;
}

static size_t pdu_write(struct p9_fcall *pdu, const void *data, size_t size)
{
	size_t len = MIN(pdu->capacity - pdu->size, size);
	memcpy(&pdu->sdata[pdu->size], data, len);
	pdu->size += len;
	return size - len;
}

static size_t
pdu_write_u(struct p9_fcall *pdu, const char __user *udata, size_t size)
{
	size_t len = MIN(pdu->capacity - pdu->size, size);
	int err = copy_from_user(&pdu->sdata[pdu->size], udata, len);
	if (err)
		printk(KERN_WARNING "pdu_write_u returning: %d\n", err);

	pdu->size += len;
	return size - len;
}

/*
	b - int8_t
	w - int16_t
	d - int32_t
	q - int64_t
	s - string
	S - stat
	Q - qid
	D - data blob (int32_t size followed by void *, results are not freed)
	T - array of strings (int16_t count, followed by strings)
	R - array of qids (int16_t count, followed by qids)
	? - if optional = 1, continue parsing
*/

static int
p9pdu_vreadf(struct p9_fcall *pdu, int optional, const char *fmt, va_list ap)
{
	const char *ptr;
	int errcode = 0;

	for (ptr = fmt; *ptr; ptr++) {
		switch (*ptr) {
		case 'b':{
				int8_t *val = va_arg(ap, int8_t *);
				if (pdu_read(pdu, val, sizeof(*val))) {
					errcode = -EFAULT;
					break;
				}
			}
			break;
		case 'w':{
				int16_t *val = va_arg(ap, int16_t *);
				__le16 le_val;
				if (pdu_read(pdu, &le_val, sizeof(le_val))) {
					errcode = -EFAULT;
					break;
				}
				*val = le16_to_cpu(le_val);
			}
			break;
		case 'd':{
				int32_t *val = va_arg(ap, int32_t *);
				__le32 le_val;
				if (pdu_read(pdu, &le_val, sizeof(le_val))) {
					errcode = -EFAULT;
					break;
				}
				*val = le32_to_cpu(le_val);
			}
			break;
		case 'q':{
				int64_t *val = va_arg(ap, int64_t *);
				__le64 le_val;
				if (pdu_read(pdu, &le_val, sizeof(le_val))) {
					errcode = -EFAULT;
					break;
				}
				*val = le64_to_cpu(le_val);
			}
			break;
		case 's':{
				char **sptr = va_arg(ap, char **);
				int16_t len;
				int size;

				errcode = p9pdu_readf(pdu, optional, "w", &len);
				if (errcode)
					break;

				size = MAX(len, 0);

				*sptr = kmalloc(size + 1, GFP_KERNEL);
				if (*sptr == NULL) {
					errcode = -EFAULT;
					break;
				}
				if (pdu_read(pdu, *sptr, size)) {
					errcode = -EFAULT;
					kfree(*sptr);
					*sptr = NULL;
				} else
					(*sptr)[size] = 0;
			}
			break;
		case 'Q':{
				struct p9_qid *qid =
				    va_arg(ap, struct p9_qid *);

				errcode = p9pdu_readf(pdu, optional, "bdq",
						      &qid->type, &qid->version,
						      &qid->path);
			}
			break;
		case 'S':{
				struct p9_wstat *stbuf =
				    va_arg(ap, struct p9_wstat *);

				memset(stbuf, 0, sizeof(struct p9_wstat));
				stbuf->n_uid = stbuf->n_gid = stbuf->n_muid =
									-1;
				errcode =
				    p9pdu_readf(pdu, optional,
						"wwdQdddqssss?sddd",
						&stbuf->size, &stbuf->type,
						&stbuf->dev, &stbuf->qid,
						&stbuf->mode, &stbuf->atime,
						&stbuf->mtime, &stbuf->length,
						&stbuf->name, &stbuf->uid,
						&stbuf->gid, &stbuf->muid,
						&stbuf->extension,
						&stbuf->n_uid, &stbuf->n_gid,
						&stbuf->n_muid);
				if (errcode)
					p9stat_free(stbuf);
			}
			break;
		case 'D':{
				int32_t *count = va_arg(ap, int32_t *);
				void **data = va_arg(ap, void **);

				errcode =
				    p9pdu_readf(pdu, optional, "d", count);
				if (!errcode) {
					*count =
					    MIN(*count,
						pdu->size - pdu->offset);
					*data = &pdu->sdata[pdu->offset];
				}
			}
			break;
		case 'T':{
				int16_t *nwname = va_arg(ap, int16_t *);
				char ***wnames = va_arg(ap, char ***);

				errcode =
				    p9pdu_readf(pdu, optional, "w", nwname);
				if (!errcode) {
					*wnames =
					    kmalloc(sizeof(char *) * *nwname,
						    GFP_KERNEL);
					if (!*wnames)
						errcode = -ENOMEM;
				}

				if (!errcode) {
					int i;

					for (i = 0; i < *nwname; i++) {
						errcode =
						    p9pdu_readf(pdu, optional,
								"s",
								&(*wnames)[i]);
						if (errcode)
							break;
					}
				}

				if (errcode) {
					if (*wnames) {
						int i;

						for (i = 0; i < *nwname; i++)
							kfree((*wnames)[i]);
					}
					kfree(*wnames);
					*wnames = NULL;
				}
			}
			break;
		case 'R':{
				int16_t *nwqid = va_arg(ap, int16_t *);
				struct p9_qid **wqids =
				    va_arg(ap, struct p9_qid **);

				*wqids = NULL;

				errcode =
				    p9pdu_readf(pdu, optional, "w", nwqid);
				if (!errcode) {
					*wqids =
					    kmalloc(*nwqid *
						    sizeof(struct p9_qid),
						    GFP_KERNEL);
					if (*wqids == NULL)
						errcode = -ENOMEM;
				}

				if (!errcode) {
					int i;

					for (i = 0; i < *nwqid; i++) {
						errcode =
						    p9pdu_readf(pdu, optional,
								"Q",
								&(*wqids)[i]);
						if (errcode)
							break;
					}
				}

				if (errcode) {
					kfree(*wqids);
					*wqids = NULL;
				}
			}
			break;
		case '?':
			if (!optional)
				return 0;
			break;
		default:
			BUG();
			break;
		}

		if (errcode)
			break;
	}

	return errcode;
}

int
p9pdu_vwritef(struct p9_fcall *pdu, int optional, const char *fmt, va_list ap)
{
	const char *ptr;
	int errcode = 0;

	for (ptr = fmt; *ptr; ptr++) {
		switch (*ptr) {
		case 'b':{
				int8_t val = va_arg(ap, int);
				if (pdu_write(pdu, &val, sizeof(val)))
					errcode = -EFAULT;
			}
			break;
		case 'w':{
				__le16 val = cpu_to_le16(va_arg(ap, int));
				if (pdu_write(pdu, &val, sizeof(val)))
					errcode = -EFAULT;
			}
			break;
		case 'd':{
				__le32 val = cpu_to_le32(va_arg(ap, int32_t));
				if (pdu_write(pdu, &val, sizeof(val)))
					errcode = -EFAULT;
			}
			break;
		case 'q':{
				__le64 val = cpu_to_le64(va_arg(ap, int64_t));
				if (pdu_write(pdu, &val, sizeof(val)))
					errcode = -EFAULT;
			}
			break;
		case 's':{
				const char *sptr = va_arg(ap, const char *);
				int16_t len = 0;
				if (sptr)
					len = MIN(strlen(sptr), USHORT_MAX);

				errcode = p9pdu_writef(pdu, optional, "w", len);
				if (!errcode && pdu_write(pdu, sptr, len))
					errcode = -EFAULT;
			}
			break;
		case 'Q':{
				const struct p9_qid *qid =
				    va_arg(ap, const struct p9_qid *);
				errcode =
				    p9pdu_writef(pdu, optional, "bdq",
						 qid->type, qid->version,
						 qid->path);
			} break;
		case 'S':{
				const struct p9_wstat *stbuf =
				    va_arg(ap, const struct p9_wstat *);
				errcode =
				    p9pdu_writef(pdu, optional,
						 "wwdQdddqssss?sddd",
						 stbuf->size, stbuf->type,
						 stbuf->dev, &stbuf->qid,
						 stbuf->mode, stbuf->atime,
						 stbuf->mtime, stbuf->length,
						 stbuf->name, stbuf->uid,
						 stbuf->gid, stbuf->muid,
						 stbuf->extension, stbuf->n_uid,
						 stbuf->n_gid, stbuf->n_muid);
			} break;
		case 'D':{
				int32_t count = va_arg(ap, int32_t);
				const void *data = va_arg(ap, const void *);

				errcode =
				    p9pdu_writef(pdu, optional, "d", count);
				if (!errcode && pdu_write(pdu, data, count))
					errcode = -EFAULT;
			}
			break;
		case 'U':{
				int32_t count = va_arg(ap, int32_t);
				const char __user *udata =
						va_arg(ap, const void __user *);
				errcode =
				    p9pdu_writef(pdu, optional, "d", count);
				if (!errcode && pdu_write_u(pdu, udata, count))
					errcode = -EFAULT;
			}
			break;
		case 'T':{
				int16_t nwname = va_arg(ap, int);
				const char **wnames = va_arg(ap, const char **);

				errcode =
				    p9pdu_writef(pdu, optional, "w", nwname);
				if (!errcode) {
					int i;

					for (i = 0; i < nwname; i++) {
						errcode =
						    p9pdu_writef(pdu, optional,
								 "s",
								 wnames[i]);
						if (errcode)
							break;
					}
				}
			}
			break;
		case 'R':{
				int16_t nwqid = va_arg(ap, int);
				struct p9_qid *wqids =
				    va_arg(ap, struct p9_qid *);

				errcode =
				    p9pdu_writef(pdu, optional, "w", nwqid);
				if (!errcode) {
					int i;

					for (i = 0; i < nwqid; i++) {
						errcode =
						    p9pdu_writef(pdu, optional,
								 "Q",
								 &wqids[i]);
						if (errcode)
							break;
					}
				}
			}
			break;
		case '?':
			if (!optional)
				return 0;
			break;
		default:
			BUG();
			break;
		}

		if (errcode)
			break;
	}

	return errcode;
}

int p9pdu_readf(struct p9_fcall *pdu, int optional, const char *fmt, ...)
{
	va_list ap;
	int ret;

	va_start(ap, fmt);
	ret = p9pdu_vreadf(pdu, optional, fmt, ap);
	va_end(ap);

	return ret;
}

static int
p9pdu_writef(struct p9_fcall *pdu, int optional, const char *fmt, ...)
{
	va_list ap;
	int ret;

	va_start(ap, fmt);
	ret = p9pdu_vwritef(pdu, optional, fmt, ap);
	va_end(ap);

	return ret;
}

int p9stat_read(char *buf, int len, struct p9_wstat *st, int dotu)
{
	struct p9_fcall fake_pdu;
	int ret;

	fake_pdu.size = len;
	fake_pdu.capacity = len;
	fake_pdu.sdata = buf;
	fake_pdu.offset = 0;

	ret = p9pdu_readf(&fake_pdu, dotu, "S", st);
	if (ret) {
		P9_DPRINTK(P9_DEBUG_9P, "<<< p9stat_read failed: %d\n", ret);
		p9pdu_dump(1, &fake_pdu);
	}

	return ret;
}
EXPORT_SYMBOL(p9stat_read);

int p9pdu_prepare(struct p9_fcall *pdu, int16_t tag, int8_t type)
{
	return p9pdu_writef(pdu, 0, "dbw", 0, type, tag);
}

int p9pdu_finalize(struct p9_fcall *pdu)
{
	int size = pdu->size;
	int err;

	pdu->size = 0;
	err = p9pdu_writef(pdu, 0, "d", size);
	pdu->size = size;

#ifdef CONFIG_NET_9P_DEBUG
	if ((p9_debug_level & P9_DEBUG_PKT) == P9_DEBUG_PKT)
		p9pdu_dump(0, pdu);
#endif

	P9_DPRINTK(P9_DEBUG_9P, ">>> size=%d type: %d tag: %d\n", pdu->size,
							pdu->id, pdu->tag);

	return err;
}

void p9pdu_reset(struct p9_fcall *pdu)
{
	pdu->offset = 0;
	pdu->size = 0;
}
.org> 2005-04-16 18:20:36 -0400 committer Linus Torvalds <torvalds@ppc970.osdl.org> 2005-04-16 18:20:36 -0400 Linux-2.6.12-rc2' href='/cgit/cgit.cgi/litmus-rt-tegra.git/commit/MAINTAINERS?id=1da177e4c3f41524e886b7f1b8a0c1fc7321cac2'>1da177e4c3f
679655daffd

1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d

679655daffd

e2d1d6c0a5d
1da177e4c3f
8b58be884a9
6372594ac17
1da177e4c3f

679655daffd

1da177e4c3f
272f133afb2
8b58be884a9
08fcb7208c4
679655daffd
272f133afb2
4a4e5787e0b
8b58be884a9
846557d3ceb
4a4e5787e0b
679655daffd

4a4e5787e0b
1da177e4c3f
8b58be884a9
8b58be884a9
abd4d609057
a94066992b3
679655daffd
1da177e4c3f
167a675a8ca
8b58be884a9
67d7671036e
167a675a8ca
679655daffd
167a675a8ca
f90b8116032
ce00f85c45d
67d7671036e
f90b8116032

679655daffd



f90b8116032
919ee7dd9a6
8b58be884a9
919ee7dd9a6
54e5881d0cd
919ee7dd9a6
679655daffd

919ee7dd9a6
e7f5b309c9b
8b58be884a9
7d2c86b5a04

679655daffd
e7f5b309c9b
284f42b627c
8b58be884a9

284f42b627c
679655daffd
284f42b627c
f94b533d091
8b58be884a9

e6cc0fd1e31
f94b533d091
679655daffd
f94b533d091
42269063611
8b58be884a9
42269063611
93711660086
42269063611
679655daffd
42269063611
1da177e4c3f
8b58be884a9
1da177e4c3f


679655daffd

1da177e4c3f
bd7aa4b2daf
8b58be884a9
bd7aa4b2daf

679655daffd
bd7aa4b2daf
6f2fad748cc
d618540fb3e

6f2fad748cc
679655daffd
6f2fad748cc
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
1154ea7dcd8
8b58be884a9
1154ea7dcd8
679655daffd

1154ea7dcd8
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
d4275354993
8b58be884a9
efc03ecb9d6
d4275354993



cefbf4ea629















2761f5c2ea8
6d79947a2d3
679655daffd
2761f5c2ea8
cefbf4ea629





2b7a52a459c
8b58be884a9
efc03ecb9d6
2b7a52a459c
679655daffd

2b7a52a459c

8b58be884a9
efc03ecb9d6
2b7a52a459c

9c784f958d0
8b58be884a9
efc03ecb9d6
9c784f958d0

2b7a52a459c
8b58be884a9
efc03ecb9d6
2b7a52a459c

d4a89c7d278
8b58be884a9
efc03ecb9d6
795fb7e74df

d4a89c7d278
57a473f2f97
ddd559b13f6

efc03ecb9d6
57a473f2f97



ddd559b13f6

57a473f2f97






d94f944e108





2b7a52a459c
ddd559b13f6

efc03ecb9d6
2b7a52a459c
d19d36672ee

2b7a52a459c

8b58be884a9
efc03ecb9d6
2b7a52a459c

d4275354993
8b58be884a9
efc03ecb9d6
d4275354993


d48134e709d
8b58be884a9
efc03ecb9d6
a9da4f7ed6a

94150095447




1da177e4c3f
8b58be884a9
1da177e4c3f

881a95f976e
083c88fcf1a
efc03ecb9d6
54e5881d0cd
083c88fcf1a
f49afbb572d
881a95f976e
d4275354993
8b58be884a9
efc03ecb9d6
d4275354993




a9da4f7ed6a
8b58be884a9


a9da4f7ed6a


cafc22658e8

a9da4f7ed6a
6a915af99fc
083c88fcf1a
efc03ecb9d6
083c88fcf1a
f49afbb572d
6a915af99fc
d4275354993
8b58be884a9
efc03ecb9d6
d4275354993




86183a5fd0c
8b58be884a9
efc03ecb9d6
86183a5fd0c
b16533d3331


86183a5fd0c
3d48e1d0e87





2b7a52a459c
8b58be884a9
efc03ecb9d6
2b7a52a459c

90b8fc34968
8b58be884a9
efc03ecb9d6
90b8fc34968

ef47d5f0240
8b58be884a9
ef47d5f0240



21f37bc3e51
8b58be884a9
795fb7e74df

084bad91afd


21f37bc3e51
2b7a52a459c
8b58be884a9

efc03ecb9d6
f00f510ab33
e2bdb176ffa

8b58be884a9
efc03ecb9d6
f00f510ab33
2b7a52a459c

8b58be884a9

efc03ecb9d6
f00f510ab33
2b7a52a459c

8b58be884a9

efc03ecb9d6
f00f510ab33
2b7a52a459c

8b58be884a9
efc03ecb9d6
2b7a52a459c


8b58be884a9
efc03ecb9d6
2b7a52a459c


8b58be884a9
efc03ecb9d6
2b7a52a459c

dfdd8cc9032


baea7b946f0
dfdd8cc9032


7f49a7f7011












2b7a52a459c
8b58be884a9

efc03ecb9d6
f00f510ab33
2b7a52a459c

8b58be884a9
efc03ecb9d6
2b7a52a459c


8b58be884a9
efc03ecb9d6
2b7a52a459c

3b8861715a9
8b58be884a9
3b8861715a9

54a246ff21b
18e2842b85a

efc03ecb9d6
18e2842b85a
54a246ff21b




3b8861715a9
d78ff0a50aa
8b58be884a9
efc03ecb9d6
d78ff0a50aa


9624dfe6165
8b58be884a9
9624dfe6165

e0ee98513d1
28b8e8d4e2e





e0ee98513d1
9d76295ac60
8b58be884a9
9d76295ac60



0c19d21e801



c68af41d2db
0c19d21e801








8459c159f7d
8b58be884a9

8459c159f7d

5d783a2d592
933d35f00cf
752807871ad
b5e4ad57eef

933d35f00cf









b5e4ad57eef
b57fe924740
8b58be884a9
752807871ad
90af5811eb1

b57fe924740

90af5811eb1
c49e1e63a9c
8b58be884a9
752807871ad
7d2c86b5a04

933d35f00cf

c49e1e63a9c
1da177e4c3f
8b58be884a9
1da177e4c3f



8b58be884a9
efc03ecb9d6
1da177e4c3f


2b7a52a459c
8b58be884a9
efc03ecb9d6
2b7a52a459c

d4275354993
8b58be884a9
efc03ecb9d6
d4275354993










1da177e4c3f
8b58be884a9
1da177e4c3f


b21477f9d25
8b58be884a9
482ce512c54
efc03ecb9d6
b21477f9d25

482ce512c54
b21477f9d25
482ce512c54
b21477f9d25
1da177e4c3f
8b58be884a9
efc03ecb9d6
1da177e4c3f

3a45c9e4b19
1da177e4c3f

8b58be884a9
efc03ecb9d6
1da177e4c3f

3a45c9e4b19
1da177e4c3f
b21477f9d25
8b58be884a9
efc03ecb9d6
b21477f9d25




8b58be884a9
efc03ecb9d6
b21477f9d25




8b58be884a9
efc03ecb9d6
b21477f9d25




8b58be884a9
efc03ecb9d6
b21477f9d25


1da177e4c3f
d48d38e87c2









2b7a52a459c
8b58be884a9
efc03ecb9d6
2b7a52a459c


8b58be884a9
efc03ecb9d6
2b7a52a459c

98ad6e3b1f5
8b58be884a9
efc03ecb9d6
7d2c86b5a04

4e89e8f61bc











98ad6e3b1f5
54274d71d93









870725d9fcd





d4275354993
8b58be884a9
efc03ecb9d6
d4275354993



e66b6d8e86a













d58de038728






1da177e4c3f
8b58be884a9

1da177e4c3f
d094485323a
76593d6fb0a
85091b71896
679655daffd
85091b71896
6ea884dbc6e
8b58be884a9
6ea884dbc6e

679655daffd
6ea884dbc6e
85091b71896
8b58be884a9
85091b71896
d094485323a
76593d6fb0a
1da177e4c3f
679655daffd
1da177e4c3f
953a64798d8
8b58be884a9
b3e5f2634ad

679655daffd




b3e5f2634ad
a1867d36b3b






e7839f25df8
8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f
fa1c114fdaa
8b58be884a9



fa1c114fdaa

72c706b7757
fa1c114fdaa
fa451753b6b
fa1c114fdaa
f078f209704
8b58be884a9




f078f209704

72c706b7757
f078f209704
fa451753b6b
f078f209704
75ca88c9701
8b58be884a9
75ca88c9701


fa451753b6b
75ca88c9701
2c2a6172afa





6f69a6d776f
8b58be884a9
6f69a6d776f
679655daffd
6f69a6d776f
7ae115b4f50
8b58be884a9
cb2f33e9596
8b58be884a9
8d5ca6ec4e5



679655daffd
8d5ca6ec4e5
1da177e4c3f
8b58be884a9
476604de5a9
44ae98b5396
1da177e4c3f

679655daffd

1da177e4c3f
272f133afb2
8b58be884a9
efc03ecb9d6
81764fa9a47


679655daffd
272f133afb2
04ac2f46d6e
8b58be884a9
04ac2f46d6e



a1cfac48ba4
a02875a67d7
a1cfac48ba4
679655daffd
a1cfac48ba4
8f4c79ce79d
8b58be884a9
c69f677cc85
8f4c79ce79d
679655daffd

8f4c79ce79d
89e5785fc8a
a02875a67d7
89e5785fc8a
679655daffd
89e5785fc8a
754ce4f2993
a02875a67d7
754ce4f2993
679655daffd
754ce4f2993
914a3f3b375
a02875a67d7

914a3f3b375

679655daffd
914a3f3b375
1da177e4c3f
8b58be884a9
724c6b35ecf
1da177e4c3f


679655daffd
1da177e4c3f
a92b7b80579
8b58be884a9

b9a0620779d
ad3f9a2238e
54e5881d0cd
a92b7b80579
679655daffd

a92b7b80579
70e840499aa
8b58be884a9
450c622e9ff

70e840499aa
679655daffd

70e840499aa
5f97f7f9400
8b58be884a9
5f97f7f9400



679655daffd
5f97f7f9400

8b58be884a9
5f97f7f9400
679655daffd
5f97f7f9400
1da177e4c3f
8b58be884a9
1da177e4c3f
d34cb28a371
1da177e4c3f
679655daffd


1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d


679655daffd
e2d1d6c0a5d

8b58be884a9

e2d1d6c0a5d


679655daffd
e2d1d6c0a5d
300abeb5490
8b58be884a9
300abeb5490
679655daffd

300abeb5490
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d


679655daffd
e2d1d6c0a5d

8b58be884a9
e2d1d6c0a5d
679655daffd

e2d1d6c0a5d

8b58be884a9
e2d1d6c0a5d
679655daffd


e2d1d6c0a5d
1394f032217
8b58be884a9
5b93e13ffa8
e3b2d3f33b3

679655daffd
566da5b2666
e190d6b1400
8b58be884a9
49afa60948f
e190d6b1400

679655daffd
e190d6b1400
566da5b2666
8b58be884a9
49afa60948f
566da5b2666

679655daffd
1394f032217
936ed49a540






1394f032217
8b58be884a9
49afa60948f
e3b2d3f33b3

679655daffd
1394f032217
1e6d320f406
8b58be884a9
49afa60948f
1e6d320f406

679655daffd
1e6d320f406
d24ecfcc395
8b58be884a9
49afa60948f
d24ecfcc395

679655daffd
d24ecfcc395
1da177e4c3f
8b58be884a9
54e5881d0cd
1da177e4c3f
679655daffd
1da177e4c3f
2b54aaef7a3
8b58be884a9
2b54aaef7a3

679655daffd
2b54aaef7a3
63fbd24e510
8b58be884a9
781c2844845
63fbd24e510
1da177e4c3f
679655daffd
1da177e4c3f
63fbd24e510
8b58be884a9
63fbd24e510

54e5881d0cd
1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
ce00f85c45d


679655daffd

1da177e4c3f
39105890516
8b58be884a9
39105890516

679655daffd
39105890516
948c51e6a8d
8b58be884a9
948c51e6a8d

679655daffd

948c51e6a8d
4d9d2cb026c
8b58be884a9
4d9d2cb026c

49efec1eaf1
4d9d2cb026c
948c51e6a8d
8b58be884a9

948c51e6a8d

679655daffd
948c51e6a8d
7725ccfda59
455518e7b5f



7725ccfda59
5cdf7f76784
8b58be884a9
5cdf7f76784

679655daffd

5cdf7f76784
ff1d5c2f026
8b58be884a9
ff1d5c2f026

679655daffd
ff1d5c2f026
eb1eb04fdfb
8b58be884a9
eb1eb04fdfb

8a6e25357d5
54e5881d0cd
eb1eb04fdfb
679655daffd

eb1eb04fdfb
1da177e4c3f
8b58be884a9
661263b55d5
96b6aba0876
54e5881d0cd
96b6aba0876
679655daffd

1da177e4c3f
a5432f5ad43
8b58be884a9
a5432f5ad43




77d5140fe78
8b58be884a9
661263b55d5
54e5881d0cd
77d5140fe78
679655daffd

77d5140fe78
77dac90fe4c
8b58be884a9

77dac90fe4c

679655daffd



77dac90fe4c
e2d1d6c0a5d
8d15d3864a7
8b58be884a9
8d15d3864a7

42d38041a94
e2d1d6c0a5d

8d15d3864a7
679655daffd
8d15d3864a7


e2d1d6c0a5d
4261a2043f1
8b58be884a9
8d15d3864a7
42d38041a94
4261a2043f1

8d15d3864a7




4261a2043f1
b8154542216
8b58be884a9
b8154542216



679655daffd
679655daffd


b8154542216
9030aaf9bf0

82593f87b6c
9030aaf9bf0
fb99f881096
9030aaf9bf0



18332a80c3e
8b58be884a9
18332a80c3e

679655daffd

355ffe69cb3

679655daffd

18332a80c3e
70e840499aa
8b58be884a9
450c622e9ff

70e840499aa
679655daffd

70e840499aa

8b58be884a9
450c622e9ff

70e840499aa
679655daffd

70e840499aa
704232c2718
8b58be884a9
704232c2718

679655daffd



704232c2718
0a920b5b666
8b58be884a9
0a920b5b666
679655daffd
0a920b5b666
641cb85e689
8b58be884a9
641cb85e689

7063fbf2261
679655daffd
7063fbf2261
2b7a52a459c
8b58be884a9
2b7a52a459c

679655daffd
2b7a52a459c
2b7a52a459c
8b58be884a9
6372594ac17
2b7a52a459c
679655daffd
2b7a52a459c
d9e9d82c24e
8b58be884a9
93711660086
d9e9d82c24e
679655daffd
d9e9d82c24e
d4275354993
8b58be884a9
d4275354993

5df6d737dd4
8b58be884a9

5df6d737dd4

2a99921a557
5df6d737dd4
529aa8cb0a5


d094485323a
529aa8cb0a5


74425eee71e









1da177e4c3f
8b58be884a9
1da177e4c3f



679655daffd


1da177e4c3f
e2d1d6c0a5d
8b58be884a9
51223df6c33
d1f28953ca3
e2d1d6c0a5d
8a6e25357d5
54e5881d0cd
e2d1d6c0a5d
679655daffd

e2d1d6c0a5d
1da177e4c3f
8b58be884a9
64dab204501
82c4dfc7620
679655daffd
1da177e4c3f

8b58be884a9
64dab204501
82c4dfc7620
679655daffd
1da177e4c3f

8b58be884a9
64dab204501
82c4dfc7620
679655daffd
1da177e4c3f
5411552c707
8b58be884a9
d094485323a
5411552c707
679655daffd
5411552c707
1da177e4c3f
8b58be884a9
1da177e4c3f
07d46de415f
679655daffd

1da177e4c3f
949be0f7be8
8b58be884a9
9ae5e3bc316

949be0f7be8
679655daffd
949be0f7be8
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
679655daffd

e2d1d6c0a5d
acb9c1b2f40
8b58be884a9
acb9c1b2f40



fb3a0fb6fd3
8b58be884a9

fb3a0fb6fd3

679655daffd

8ca739e3694
fb3a0fb6fd3
bebe467823c
8b58be884a9
57784dfa82f
bebe467823c

679655daffd

bebe467823c
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
4371ee353c3
8b58be884a9
4371ee353c3



1da177e4c3f
8b58be884a9
bc5f65d42e6
1da177e4c3f
54e5881d0cd
1da177e4c3f
679655daffd


1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
ed90fb4a199
8b58be884a9
ed90fb4a199
551e172a20c
ed90fb4a199
679655daffd


ed90fb4a199
1da177e4c3f
ce00f85c45d

679655daffd

1da177e4c3f

8b58be884a9

9937ac0cc08
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9

1da177e4c3f
54e5881d0cd
1da177e4c3f
679655daffd




1da177e4c3f
5b07bd57016
8b58be884a9
5b07bd57016


9b4ffa48ae8
8b58be884a9
9b4ffa48ae8
679655daffd
9b4ffa48ae8
6d8425b1e38
6afdeaf865b
c42405096bd
661263b55d5
54e5881d0cd
6d8425b1e38
30e10993512
6d8425b1e38
679655daffd

6d8425b1e38
e5ec3789c16
8b58be884a9
e5ec3789c16


679655daffd
e5ec3789c16

8b58be884a9
e6cc0fd1e31
e5ec3789c16

679655daffd
e5ec3789c16
be4c9bad9d0













5c20a5c7105






1da177e4c3f
8b58be884a9
efc03ecb9d6
1da177e4c3f

679655daffd
9fa68eae9f8
1da177e4c3f
8b58be884a9
926554c4b74
1da177e4c3f
679655daffd
1da177e4c3f

1da177e4c3f
d459883e6c5
679655daffd

1da177e4c3f

1da177e4c3f
d459883e6c5
679655daffd
1da177e4c3f
1da177e4c3f
8b58be884a9
1da177e4c3f



679655daffd






1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d

679655daffd

e2d1d6c0a5d

8b58be884a9
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
679655daffd
e2d1d6c0a5d
1da177e4c3f
8b58be884a9


1da177e4c3f
f5df5881e2a
1da177e4c3f

679655daffd

1da177e4c3f
eb8edb08571
8b58be884a9
eb8edb08571
f3b84ec2a67
eb8edb08571
679655daffd


eb8edb08571
1da177e4c3f
1da177e4c3f

f546444d0b4
679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f
ad8f07ccadd
8b58be884a9
d094485323a
ad8f07ccadd
679655daffd
ad8f07ccadd
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f
90563ec4129
8b58be884a9
90563ec4129
679655daffd

90563ec4129
0b3f6109f0c
8b58be884a9
0b3f6109f0c

1da177e4c3f
8b58be884a9
1da177e4c3f
1da177e4c3f

e2d1d6c0a5d



8a6e25357d5
e2d1d6c0a5d
679655daffd



e2d1d6c0a5d
1da177e4c3f
8b58be884a9
1da177e4c3f

baaea1dc0be
679655daffd


1da177e4c3f
e7839f25df8
8b58be884a9
3c5119c05d6
679655daffd


1da177e4c3f

8b58be884a9
1da177e4c3f




4480f15b330
8b58be884a9
1da177e4c3f
679655daffd


1da177e4c3f
e7839f25df8
8b58be884a9

a4644184251
5be7b50f322
54e5881d0cd
5be7b50f322
679655daffd
5be7b50f322
b3e5f2634ad
8b58be884a9
b3e5f2634ad
679655daffd

248a9dc32a2
b825037d185
8b58be884a9
b825037d185

679655daffd

b825037d185
ba483d574b4
8b58be884a9
ba483d574b4

5b9c9bf6c92
8b58be884a9
5b9c9bf6c92
8b59a454c42
679655daffd
5b9c9bf6c92
7d2c86b5a04
8b58be884a9
795fb7e74df

679655daffd
abbaeff38c0
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d


679655daffd

e2d1d6c0a5d
b411b3637fa
28b8e8d4e2e










b411b3637fa
1da177e4c3f
8b58be884a9
6fb0425b99e
1da177e4c3f
679655daffd
7cfc51b9d37
679655daffd


1da177e4c3f

8b58be884a9
4c6a3999651
54e5881d0cd
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
01f2073411e
1da177e4c3f
679655daffd
1da177e4c3f
789c7048bfa
8b58be884a9
789c7048bfa
679655daffd
789c7048bfa
1da177e4c3f
8b58be884a9
7d2c86b5a04

1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9
7d2c86b5a04

1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f



679655daffd

1da177e4c3f
237fead6199
8b58be884a9

6dc7516eba9

237fead6199
679655daffd

237fead6199
da9bb1d27b2
8b58be884a9
7b102d034c0
0e438e3f008
8c2a6a40902
679655daffd


0e438e3f008
c476c23b45a
8b58be884a9

c476c23b45a




0e438e3f008
8b58be884a9

7b102d034c0
0e438e3f008

679655daffd
0e438e3f008

8b58be884a9
7b102d034c0
0e438e3f008

679655daffd
0e438e3f008
6bc7840411b
8b58be884a9
7b102d034c0
6bc7840411b

679655daffd
6bc7840411b

8b58be884a9
7b102d034c0
6bc7840411b

679655daffd
6bc7840411b

8b58be884a9
7b102d034c0
ba9a5918c86

679655daffd
ba9a5918c86
44c12cb2f56
8b58be884a9
67c89316770
44c12cb2f56

679655daffd
44c12cb2f56
67c89316770




70aff0ce210


67c89316770
ba9a5918c86
8b58be884a9

7b102d034c0
ba9a5918c86

679655daffd
ba9a5918c86

8b58be884a9
7b102d034c0
6bc7840411b

679655daffd
6bc7840411b
0e438e3f008
8b58be884a9
7b102d034c0
0e438e3f008

679655daffd
da9bb1d27b2
e59f87966ad
8b58be884a9
e59f87966ad
d094485323a
76593d6fb0a
e59f87966ad
679655daffd
e59f87966ad
0bee8d28496


679655daffd
0bee8d28496
4480f15b330
8b58be884a9

e6cc0fd1e31
fab97220c9e
679655daffd
fab97220c9e
3e3a7d666d6
8b58be884a9


3e3a7d666d6


3a1c1d446b7
8b58be884a9
ce00f85c45d


679655daffd
3a1c1d446b7
5f5bac8272b
8b58be884a9
5f5bac8272b




1da177e4c3f
8b58be884a9

1da177e4c3f
679655daffd
1da177e4c3f
d5ca9006032
8b58be884a9
d5ca9006032
084bad91afd
679655daffd

d5ca9006032
1da177e4c3f
8b58be884a9
979b6c135fc
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
f318a63ba01
4c32531324b
57c511d8d47
1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f

72be2ccfff0
1da177e4c3f
679655daffd


1da177e4c3f

8b58be884a9

72be2ccfff0

679655daffd


72be2ccfff0

8b58be884a9

72be2ccfff0
08a225f143b
8a6e25357d5
1da177e4c3f
679655daffd

1da177e4c3f
e53004e20a5
8b58be884a9
e53004e20a5

679655daffd

e53004e20a5
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
c5408b88ecb
8b58be884a9
c5408b88ecb
679655daffd

c5408b88ecb
cae727db30e










e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
1da177e4c3f
679655daffd



1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
173acc7ce85
679655daffd
173acc7ce85
b26e0ed4936
05576a1e38e
b26e0ed4936

d5ca6918bc9

b26e0ed4936
7d2c86b5a04
8b58be884a9
e2d1d6c0a5d
958a29cb1c9
54e5881d0cd
e2d1d6c0a5d
679655daffd

e2d1d6c0a5d

e2d1d6c0a5d
679655daffd


e2d1d6c0a5d

8b58be884a9
e769980feee
e2d1d6c0a5d
679655daffd
e2d1d6c0a5d

8b58be884a9
e2d1d6c0a5d

679655daffd

e2d1d6c0a5d

c69f677cc85
e2d1d6c0a5d
36025a812ee
679655daffd


e2d1d6c0a5d

8b58be884a9

0899d6349c6
e2d1d6c0a5d
679655daffd
e2d1d6c0a5d

8b58be884a9
e2d1d6c0a5d
846557d3ceb
0d2b405a628
679655daffd
0d2b405a628
60e8c5ab0b0
8b58be884a9
c69f677cc85
efc03ecb9d6
60e8c5ab0b0
679655daffd

60e8c5ab0b0
4689a6b1d49
8b58be884a9

88de3cab98f
4689a6b1d49

679655daffd

4689a6b1d49
d9e9d82c24e
8b58be884a9
d9e9d82c24e

679655daffd

d9e9d82c24e
b55ef929cb0
8b58be884a9
6372594ac17
88de3cab98f
a7205b30106
5429c731657
a7205b30106
beaf53bff79
8b58be884a9
beaf53bff79
88de3cab98f
beaf53bff79
679655daffd
beaf53bff79
d9e9d82c24e
8b58be884a9
d9e9d82c24e

679655daffd
d9e9d82c24e

8b58be884a9
93711660086
d9e9d82c24e

69aefcead5d

d9e9d82c24e
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
71038f527f3
8b58be884a9

71038f527f3

679655daffd


71038f527f3
a5432f5ad43
8b58be884a9
a5432f5ad43





5ab7ffea520
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f
20b937343e5
8b58be884a9
d094485323a
20b937343e5
679655daffd
20b937343e5
04578f174f4
8b58be884a9
04578f174f4


679655daffd

04578f174f4
1da177e4c3f
8b58be884a9
1da177e4c3f
baaea1dc0be
679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f


679655daffd
1da177e4c3f
1c23af90dc4
8b58be884a9
1c23af90dc4
679655daffd

1c23af90dc4
9251ce959ca
8b58be884a9
1da177e4c3f

679655daffd






1da177e4c3f
1527aab617a
8b58be884a9
1527aab617a




ccb86a6907c
bda2562c34c
ccb86a6907c
ccb86a6907c


5be7b50f322
8b58be884a9
a4644184251
5be7b50f322
54e5881d0cd

5be7b50f322
679655daffd


5be7b50f322
0a34eb8f55a
8b58be884a9

0a34eb8f55a


679655daffd


0a34eb8f55a
d4c41139df6





e2d1d6c0a5d
8b58be884a9
211e3e0e1b1

e2d1d6c0a5d
679655daffd
e2d1d6c0a5d
7bc98b97ed5








c90bfeb80f0

c90bfeb80f0


c4d1409bbed





e8deeae24f8
8b58be884a9
661263b55d5
54e5881d0cd
e8deeae24f8
679655daffd
e8deeae24f8
4b3fa3c486f






e8deeae24f8
8b58be884a9
661263b55d5
54e5881d0cd
e8deeae24f8
679655daffd
e8deeae24f8

8b58be884a9
661263b55d5
54e5881d0cd
e8deeae24f8
679655daffd
e8deeae24f8
261982f1705
d95c5b0b905
261982f1705




e8deeae24f8
8b58be884a9
661263b55d5
54e5881d0cd
e8deeae24f8
679655daffd
e8deeae24f8

8b58be884a9
e8deeae24f8
661263b55d5
54e5881d0cd
e8deeae24f8
679655daffd
e8deeae24f8
5b5439652af
5b5439652af
595142e0490
baaea1dc0be
047f4ec2945
679655daffd
047f4ec2945
5b5439652af
844dd05fec1
c0d0787b6d4


679655daffd


844dd05fec1
1da177e4c3f
8b58be884a9
ac6aecbf054
1da177e4c3f
679655daffd
1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d

679655daffd

e2d1d6c0a5d
9257aa49638







e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d

679655daffd


e2d1d6c0a5d
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f


679655daffd
1da177e4c3f
4480f15b330
8b58be884a9

e2d1d6c0a5d

679655daffd





679655daffd
e2d1d6c0a5d
4ef4caad416
8b58be884a9
eb76c5c03ca
54e5881d0cd
4ef4caad416
679655daffd

4ef4caad416
38bed542998
8b58be884a9
38bed542998
679655daffd


38bed542998
1da177e4c3f
8b58be884a9
1da177e4c3f


679655daffd

1da177e4c3f
ede1e6f8b43
8b58be884a9
ede1e6f8b43

679655daffd

ede1e6f8b43
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd


1da177e4c3f
ff1d2767d5a
8b58be884a9
85d32e7b0ea
724c6b35ecf
ff1d2767d5a

679655daffd
ff1d2767d5a
dd8cd779378
8b58be884a9
d094485323a
dd8cd779378
679655daffd
dd8cd779378
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
679655daffd
e2d1d6c0a5d
7d2c86b5a04
8b58be884a9
b9b0332fcf1
679655daffd


b9b0332fcf1
e07b5d795ae
9c5fb19adbe
b9b0332fcf1
679655daffd

b9b0332fcf1
7d2c86b5a04
8b58be884a9
b9b0332fcf1
679655daffd
b9b0332fcf1
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
7d2c86b5a04
8b58be884a9
11cd29b028b

679655daffd
11cd29b028b
5a18c343a6b
8b58be884a9
5a18c343a6b

679655daffd
5a18c343a6b
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f
6ea884dbc6e
8b58be884a9
846557d3ceb
6ea884dbc6e
679655daffd
6ea884dbc6e
5b5439652af
8b58be884a9

846557d3ceb
a01064a92a1

0e53300818b
1da177e4c3f
679655daffd


03b70d625c1
1da177e4c3f
e8c76eed2ec
8b58be884a9
846557d3ceb
932d18729dd
e8c76eed2ec
679655daffd
e8c76eed2ec
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
54e5881d0cd
1da177e4c3f

1da177e4c3f
8b58be884a9

1da177e4c3f

54e5881d0cd
1da177e4c3f
679655daffd
1da177e4c3f
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f


8b58be884a9
1da177e4c3f
b7eee616ad8
679655daffd
1da177e4c3f
1e7106fc7ea
8b58be884a9
1da177e4c3f
8a6e25357d5
920d44ed965
1da177e4c3f
679655daffd


1da177e4c3f
0f861e8c47e
8b58be884a9
9c5b0ce43d0
c404c199f71
679655daffd

1da177e4c3f
27471fdb32e
8b58be884a9
27471fdb32e

679655daffd
27471fdb32e
7d2c86b5a04
8b58be884a9
1da177e4c3f
958a29cb1c9
54e5881d0cd
958a29cb1c9
544df55d6c1
679655daffd
1da177e4c3f
02cf2286392
8b58be884a9

e0af6062aa4
02cf2286392
a060330e261
02cf2286392

a26c4463f69
02cf2286392
aa7168f47d9
8b58be884a9
aa7168f47d9
679655daffd
aa7168f47d9
1da177e4c3f
c69f677cc85
843393d304e
679655daffd
1da177e4c3f

8b58be884a9


e6cc0fd1e31
1da177e4c3f
8a6e25357d5
54e5881d0cd
1da177e4c3f
679655daffd


1da177e4c3f
c9f04f5847c
8b58be884a9


c9f04f5847c
679655daffd


c9f04f5847c
e2d1d6c0a5d
8b58be884a9

e2d1d6c0a5d
8a6e25357d5
54e5881d0cd
e2d1d6c0a5d
679655daffd
e2d1d6c0a5d
3267a87f9dc






2671717265a






9eb8ef7479b
55a23c4af83
c69f677cc85
ce00f85c45d
679655daffd

9eb8ef7479b
1da177e4c3f
8b58be884a9
c69f677cc85
ce00f85c45d
679655daffd
1da177e4c3f
f4a9bc4c7de
8b58be884a9
d094485323a
f4a9bc4c7de

679655daffd
f4a9bc4c7de
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
248a9dc32a2
9fe3b691282
248a9dc32a2
679655daffd
248a9dc32a2
6c8909b42fe
8b58be884a9
6c8909b42fe
54e5881d0cd
6c8909b42fe
679655daffd

6c8909b42fe
b3e5f2634ad
8b58be884a9
f00f510ab33
679655daffd
b3e5f2634ad
9251ce959ca
8b58be884a9
9251ce959ca
679655daffd





9251ce959ca
844dd05fec1
8b58be884a9
844dd05fec1
679655daffd
844dd05fec1
2b7a52a459c
8b58be884a9
2b7a52a459c

679655daffd
2b7a52a459c
de4fc07aff7
8b58be884a9


de4fc07aff7
8b58be884a9

dcd01faf663
d94e6fed6ed
1da177e4c3f
679655daffd



de4fc07aff7
679655daffd

1da177e4c3f
826d2abe994
724c6b35ecf
e7fdc95ef8e
679655daffd

826d2abe994

724c6b35ecf
e7fdc95ef8e
679655daffd

826d2abe994
4bd96a7a818










8a70da82edc
8b58be884a9
8a70da82edc



679655daffd


8a70da82edc
b481de9ca07
8b58be884a9
9edc71b746e
a0bf797ff10
b481de9ca07
b481de9ca07
54e5881d0cd
b481de9ca07
679655daffd
b481de9ca07
f6cd53c6a42

f6cd53c6a42





cb109a0eb44
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
cb109a0eb44
8b58be884a9
6650e0a517b
cb109a0eb44
679655daffd
cb109a0eb44
4480f15b330
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f
1202d6ff356
8b58be884a9

1202d6ff356

3365a2934cc
1202d6ff356
4480f15b330
8b58be884a9
e6cc0fd1e31
f42b6471e9e
77d8798b554
679655daffd
77d8798b554
4409ebe9afa
8b58be884a9
b0c9065324b
4409ebe9afa

679655daffd


4409ebe9afa
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d


679655daffd
e2d1d6c0a5d

8b58be884a9


979b6c135fc
e2d1d6c0a5d
1da177e4c3f
679655daffd
b61d4a71e48

679655daffd
1da177e4c3f
e7839f25df8
8b58be884a9

099dc4fb626
54e5881d0cd
679655daffd
099dc4fb626
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d

679655daffd


e2d1d6c0a5d
1da177e4c3f
8b58be884a9
a2ac953d7c5
1da177e4c3f
f353976dc2f
e0057975e09
679655daffd



1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
679655daffd


e2d1d6c0a5d
14816b1e2b0
8b58be884a9
14816b1e2b0

54e5881d0cd
14816b1e2b0
679655daffd

14816b1e2b0
1da177e4c3f
8b58be884a9
d5d52273b92
3da0ae6298f
1da177e4c3f
54e5881d0cd
1da177e4c3f
679655daffd



1da177e4c3f

8b58be884a9
d5d52273b92
1da177e4c3f

679655daffd
1da177e4c3f
d624870ffe6






91821ff3f95
6afdeaf865b
c42405096bd
661263b55d5
54e5881d0cd
91821ff3f95

679655daffd


91821ff3f95
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d

54e5881d0cd
8f8f0134781
679655daffd

e2d1d6c0a5d
95252236e73
8b58be884a9
95252236e73

679655daffd
95252236e73
1da177e4c3f
8b58be884a9
6d85d06673d

1da177e4c3f
679655daffd

1da177e4c3f
de456d371d1
8b58be884a9
19003c18e9b
72be2ccfff0
ae0718f8e3f
679655daffd


ae0718f8e3f
4660cb354a1
8b58be884a9
4660cb354a1
ae0718f8e3f
679655daffd

ae0718f8e3f
1da177e4c3f
8b58be884a9
347d12d727d
8a6e25357d5
1da177e4c3f
679655daffd

1da177e4c3f
ea6c20891eb
8b58be884a9

346339938ba
ea6c20891eb

80811493329
ea6c20891eb
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
70fb7ba652e
5ce45962b26
3631d9a2e50

347d12d727d
5ce45962b26
679655daffd


70fb7ba652e


1da177e4c3f

c3000e031cf
ee709b0c62b

1da177e4c3f
e8b43555a2a
8b58be884a9

16141c0288f
1da177e4c3f
98fac23f332
679655daffd






1da177e4c3f
426d62e2158
8b58be884a9
8e616fc8d34
1fc9d2bf75b

426d62e2158
679655daffd




426d62e2158
ad8003d33ef
8b58be884a9
1fc9d2bf75b

426d62e2158
679655daffd
679655daffd
426d62e2158
513014b7172
ddf0289db22
1fc9d2bf75b

513014b7172
679655daffd

513014b7172
1fc9d2bf75b
8b58be884a9
1fc9d2bf75b

920ed9f194e
679655daffd


920ed9f194e
85f8fffe3c2
8b58be884a9

85f8fffe3c2



679655daffd

80811493329
a968cd3ef1d
85f8fffe3c2
dc009d92435
8b58be884a9
b7c698f755c
346339938ba
dc009d92435
679655daffd

dc009d92435
e971461fc59









5b778dadcde
8b58be884a9
4063eb5fa4e
e3e2aaf7dc0

679655daffd


5b778dadcde
679655daffd
4063eb5fa4e
e3e2aaf7dc0
456db8cc450
8b58be884a9
410d7a979e0
b9ce08c0102
410d7a979e0




b9ce08c0102
c3bb4d24ab4
8b58be884a9
c3bb4d24ab4





b9ce08c0102
8b58be884a9
b9ce08c0102
dc8c7f8919a
898f96fd505
679655daffd
b9ce08c0102
89559a6119e
8b58be884a9


97c29e74739
89559a6119e
679655daffd


89559a6119e
70e840499aa
8b58be884a9
450c622e9ff

70e840499aa
679655daffd


70e840499aa
1da177e4c3f
1da177e4c3f
bf9915cc55c
679655daffd


1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f
263de9b582b
8b58be884a9
263de9b582b
679655daffd

263de9b582b
1da177e4c3f
8b58be884a9
1da177e4c3f


679655daffd
1da177e4c3f
568a17ffce2
8b58be884a9
568a17ffce2


679655daffd




568a17ffce2
1da177e4c3f
8b58be884a9
1da177e4c3f

11c34c7deae
1da177e4c3f
852bb9f594e
8b58be884a9

1da177e4c3f

8a6e25357d5
54e5881d0cd
1da177e4c3f
11c34c7deae

1da177e4c3f

8b58be884a9
1da177e4c3f


11c34c7deae

1da177e4c3f
77a76369475
8b58be884a9
1da177e4c3f
9d37a90f9c5
1da177e4c3f
11c34c7deae

1da177e4c3f

8b58be884a9

1da177e4c3f
88de3cab98f
9ae2ccf2641
1da177e4c3f
11c34c7deae

1da177e4c3f
260c02a9bed
8b58be884a9
f210d43ce1a
260c02a9bed
9d37a90f9c5
1da177e4c3f
11c34c7deae

1da177e4c3f
e93adf1e655
8b58be884a9

e93adf1e655
88de3cab98f
e93adf1e655

1da177e4c3f
8b58be884a9
ce00f85c45d
88de3cab98f
ce00f85c45d
11c34c7deae
1da177e4c3f
ab06ff3af34
8b58be884a9
ab06ff3af34
92e197095e0
11c34c7deae


ab06ff3af34
1da177e4c3f
8b58be884a9
1a4520bea65
54e5881d0cd
1da177e4c3f

e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
679655daffd


e2d1d6c0a5d
455fbdd376c
8b58be884a9
455fbdd376c
679655daffd

455fbdd376c
4e233cbed24





1da177e4c3f
8b58be884a9
cc0b07ed479
1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
cc0b07ed479
1da177e4c3f
679655daffd

1da177e4c3f
512e67f991c
8b58be884a9

54e5881d0cd
512e67f991c
679655daffd



512e67f991c
dde33348e53
8b58be884a9
dde33348e53

1da177e4c3f
679655daffd

1da177e4c3f
ef6ada3de49






c87e34efaec
8b58be884a9
d8a82d7b0a2
cec744fb2b7
c87e34efaec


679655daffd
c87e34efaec
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
81365c31afc
763458e0dbf

28b8e8d4e2e

81365c31afc

54e5881d0cd
81365c31afc

c12a54b3af7
8b58be884a9
c12a54b3af7



679655daffd
c12a54b3af7
1da177e4c3f
8b58be884a9

1da177e4c3f

54e5881d0cd
1da177e4c3f
679655daffd
9db35182b95
1da177e4c3f

8b58be884a9
1da177e4c3f
9bb9f2220e6
1da177e4c3f
9db35182b95
1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
64a327a7029
8b58be884a9
64a327a7029

54e5881d0cd
64a327a7029
679655daffd


64a327a7029
1036d8642b6
8b58be884a9

1036d8642b6

54e5881d0cd
1036d8642b6
679655daffd
1036d8642b6
b863ceb7ddc
8b58be884a9
b863ceb7ddc

679655daffd

b863ceb7ddc
faf1668c954
8b58be884a9
795fb7e74df
bd7ebec64d6
1b53dc74ef9
faf1668c954
74cda169fe6
8b58be884a9
74cda169fe6

679655daffd
74cda169fe6
b60d6975e80
f5ca8502f70
979b6c135fc
f5ca8502f70
679655daffd

1da177e4c3f
a2c3f6567c9
a040d532b91
a2c3f6567c9
16345910d92
a2c3f6567c9

2a69567b875
2f82af08fcc
18e2842b85a

2a69567b875
e2d1d6c0a5d
8b58be884a9

e2d1d6c0a5d


1da177e4c3f
8b58be884a9
c69f677cc85
1da177e4c3f
679655daffd

1da177e4c3f
d20620de0c3
8b58be884a9
d20620de0c3

679655daffd

d20620de0c3
127c49ae097
8b58be884a9
127c49ae097


8a6e25357d5
127c49ae097







d20620de0c3
757e0108473
8b58be884a9
baaea1dc0be
ce00f85c45d

679655daffd


757e0108473
70ea91f17f7

70ea91f17f7

679655daffd

70ea91f17f7
938a9204e0d
8b58be884a9
a38374b8bd4
8b58be884a9
938a9204e0d
938a9204e0d
679655daffd
938a9204e0d
f4e9ce66c70
8b58be884a9
1da177e4c3f
8a6e25357d5

f4e9ce66c70
1da177e4c3f
679655daffd


1da177e4c3f
c6375b0a800
8b58be884a9
c6375b0a800



0a8c791437d
1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
d50f7ec9d2c
1da177e4c3f
54e5881d0cd
7425b340313
679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd



1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd


1da177e4c3f
c58ff04ad10
8b58be884a9
efc03ecb9d6
c58ff04ad10
679655daffd
c58ff04ad10
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
b9705b603d1
8b58be884a9
d735410a275
679655daffd

d735410a275
8c4c731a89e
8b58be884a9
d094485323a
04bdfb9191e
8c4c731a89e

679655daffd
8c4c731a89e
0f1006b1f2b

d094485323a
0f1006b1f2b


4e0d13cbb71
8b58be884a9
54e5881d0cd
4e0d13cbb71
679655daffd
4e0d13cbb71
5c4e6f13016
3822a0e38c3
b2503a9408e
679655daffd

baca2da4c9c
15a0580ced0
8b58be884a9
baaea1dc0be
679655daffd

15a0580ced0
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
d735410a275
8b58be884a9
d735410a275
679655daffd

d735410a275
550a7375fe7
8b58be884a9
795fb7e74df
8a700f3d0d3
795fb7e74df
679655daffd
550a7375fe7
2d3cf588e9b
8b58be884a9

2d3cf588e9b


679655daffd
2d3cf588e9b
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
3c2d774cad5
8b58be884a9

e6cc0fd1e31
3c2d774cad5



be2f2e84549
8b58be884a9
f318a63ba01
be2f2e84549
679655daffd
be2f2e84549
b2f5a0514ce




4a58448b0a3
b136d1cbd4b

4a58448b0a3
679655daffd

b2f5a0514ce

4a58448b0a3
1da177e4c3f





8b58be884a9
1a03b81db96

82b985434c5
1da177e4c3f

34693710601
1da177e4c3f
679655daffd





1da177e4c3f
4cc67735082
8b58be884a9
4cc67735082


80811493329
679655daffd

4cc67735082
1da177e4c3f
8b58be884a9
1da177e4c3f
d34cb28a371
1da177e4c3f
679655daffd


1da177e4c3f
5ddb88c0ab6
8b58be884a9
1da177e4c3f
679655daffd


1da177e4c3f
6e43650cee6






1da177e4c3f
8b58be884a9
979b6c135fc
b1e8fd54af7
d1f6803a58e
b1e8fd54af7
dffc14365bb
1da177e4c3f
679655daffd

018d21ed807


1da177e4c3f

8b58be884a9





979b6c135fc
54e5881d0cd
1da177e4c3f
679655daffd


1da177e4c3f
10e2ff1c39e
8b58be884a9
10e2ff1c39e


29f8f63272b
8b58be884a9
2cb4abd12ba
8a6e25357d5
54e5881d0cd
29f8f63272b
34b921cf6fb

679655daffd

cc8b4a2b71b
740c2679396
34b921cf6fb
29f8f63272b
788873ac70a



3af26f58d19
788873ac70a

018d21ed807

788873ac70a
3d396eb17e9
9c2b5bdee12
3d396eb17e9
9c2b5bdee12
3d396eb17e9
679655daffd
3d396eb17e9
e8b43555a2a
8b58be884a9
78f58153688


1da177e4c3f
679655daffd






1da177e4c3f

8b58be884a9

979b6c135fc
1da177e4c3f
679655daffd
1da177e4c3f
85ef9cea028
8b58be884a9
6aff43f817d
85ef9cea028

679655daffd


85ef9cea028
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f

8b58be884a9

1da177e4c3f

679655daffd

1da177e4c3f
1da177e4c3f
8b58be884a9
1da177e4c3f
169ccbd44eb
54e5881d0cd
1da177e4c3f
679655daffd

1da177e4c3f
9eb8ef7479b
8b58be884a9
c69f677cc85
ce00f85c45d
679655daffd

1da177e4c3f
f5525786b0c
0e24bdd49d3
f5525786b0c


8a6e25357d5
f5525786b0c

4e04d5a3d57
f5525786b0c

8b58be884a9
f5525786b0c




8b58be884a9
f5525786b0c




8b58be884a9
f5525786b0c





3043c10a7e6
c69f677cc85
f5525786b0c



676eec0daf8
178ff4c9175

676eec0daf8
178ff4c9175
676eec0daf8
178ff4c9175

f5525786b0c
8b58be884a9
f5525786b0c

653f41b52df






f5525786b0c

8b58be884a9
f5525786b0c



8b58be884a9

f5525786b0c



0ad122d9019
8b58be884a9
0ad122d9019

679655daffd

0ad122d9019
c1986ee9bea
8b58be884a9
c1986ee9bea
679655daffd

c1986ee9bea
77c44ab1d8e
8b58be884a9
77c44ab1d8e
679655daffd
77c44ab1d8e
77d5140fe78
8b58be884a9
661263b55d5
54e5881d0cd
77d5140fe78
679655daffd
77d5140fe78
431bca73f7b
8b58be884a9
431bca73f7b

679655daffd

431bca73f7b
1da177e4c3f
8b58be884a9
1da177e4c3f


679655daffd

1da177e4c3f
e2d1d6c0a5d
8b58be884a9
846557d3ceb
e2d1d6c0a5d
679655daffd

e2d1d6c0a5d
860c44c1968



3bbf9b9b0fe
860c44c1968




1da177e4c3f
8b58be884a9
1da177e4c3f

81c4a8a6733
679655daffd


1da177e4c3f
e2d1d6c0a5d
8b58be884a9

e2d1d6c0a5d

2191aebaf9a
e2d1d6c0a5d
679655daffd


e2d1d6c0a5d
1da177e4c3f
8b58be884a9

724c6b35ecf
ecffdde68eb


1da177e4c3f
679655daffd
1da177e4c3f
42c55aa838b
8b58be884a9

68274794c69

54e5881d0cd
68274794c69
42c55aa838b
6b6f0b6c131
42c55aa838b
68274794c69
e2d1d6c0a5d
084cb0fe773
e2d1d6c0a5d
084cb0fe773
e2d1d6c0a5d
679655daffd
e2d1d6c0a5d
f5cd7872768
8b58be884a9
f5cd7872768

679655daffd
f5cd7872768
beb58aa39e6
8b58be884a9
846557d3ceb
beb58aa39e6
679655daffd
beb58aa39e6
709ee531c15
8b58be884a9
d094485323a
709ee531c15
679655daffd
709ee531c15
4fa971811cd
8b58be884a9

4fa971811cd


679655daffd

4fa971811cd
1da177e4c3f
3dd1a32968d
5fdc2abe39b
679655daffd



1da177e4c3f
4cdf6bc2476
8b58be884a9



4cdf6bc2476
4cdf6bc2476
679655daffd


4cdf6bc2476
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d


679655daffd

e2d1d6c0a5d

8b58be884a9

b8828770826
e2d1d6c0a5d

8a6e25357d5
54e5881d0cd
e2d1d6c0a5d
679655daffd

e2d1d6c0a5d
1662d32cea9
8b58be884a9
1662d32cea9

679655daffd

1662d32cea9

8b58be884a9
1662d32cea9
679655daffd
1662d32cea9
b26e0ed4936
8b58be884a9
b26e0ed4936
d5ca6918bc9

b26e0ed4936
a1867d36b3b








065c6359071
8b58be884a9
c1f69db7825
065c6359071
679655daffd

065c6359071
1da177e4c3f
8b58be884a9
2905474d384
8a6e25357d5
54e5881d0cd
1da177e4c3f
679655daffd


1da177e4c3f
be3652b8a25

64dab204501
8b59a454c42
be3652b8a25
8cf4c19523b
1da177e4c3f
4230dfc9c3f
f5df5881e2a
6650e0a517b
54e5881d0cd
4230dfc9c3f
679655daffd


1da177e4c3f

8b58be884a9
979b6c135fc
1da177e4c3f
679655daffd
1da177e4c3f
ad4ecbcba72
8b58be884a9
ad4ecbcba72
679655daffd

ad4ecbcba72
57c0c15b524
8b58be884a9


cfb581bcd4f
6c0b324435f
141c4296cb6
a003236c327
141c4296cb6


a003236c327
141c4296cb6
a003236c327

6c0b324435f
dd49d0f5625
8b58be884a9
dd49d0f5625

679655daffd
dd49d0f5625
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
249a6771afc
8b58be884a9
249a6771afc
679655daffd

249a6771afc
89a36810415
076cfaaece1
89a36810415




dbf9bfe6157






1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd


1da177e4c3f
3be86148e7b
8b58be884a9

54e5881d0cd
3be86148e7b
679655daffd

3be86148e7b
1da177e4c3f
8b58be884a9

1da177e4c3f
679655daffd
1da177e4c3f
999445d4372
8b58be884a9
846557d3ceb
999445d4372
679655daffd
999445d4372
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
a6d2370b083
8b58be884a9
a6d2370b083
679655daffd

a6d2370b083
eae9d2ba0cf
8b58be884a9
eae9d2ba0cf


cabaaf415cc


eae9d2ba0cf
1da177e4c3f
8b58be884a9
1da177e4c3f


679655daffd

1da177e4c3f

8b58be884a9
724c6b35ecf
1da177e4c3f
1d89cae1b47
679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f


b3277dfaf02
8b58be884a9
b3277dfaf02

679655daffd
b3277dfaf02
02c1889166b
b809b9ca3e6
02c1889166b

b809b9ca3e6
679655daffd
02c1889166b
f58a9d171a3
b809b9ca3e6
f58a9d171a3

b809b9ca3e6
679655daffd





fec629b8273
679655daffd
fec629b8273
f58a9d171a3
cffb4add03b
8b58be884a9
cffb4add03b


cf94a4d116f
8b58be884a9

cf94a4d116f






8320204ab49
8b58be884a9
16e9495d8bd
661263b55d5
8320204ab49
54e5881d0cd
8320204ab49
679655daffd

8320204ab49
30ec261e5f9
8b58be884a9

efc03ecb9d6
1da177e4c3f
679655daffd




bec4c99e863

1da177e4c3f
a6bb4bab1cd
8b58be884a9

efc03ecb9d6
54e5881d0cd
7517b3fbe40
a6bb4bab1cd
5fa82eb8ff0
8b58be884a9
efc03ecb9d6
54e5881d0cd
7517b3fbe40
5fa82eb8ff0
e8e6cb32567






272f133afb2


57f63bc8fe7
8b58be884a9
57f63bc8fe7


5e9772b95ba





1da177e4c3f
8b58be884a9
95e6a856772
1da177e4c3f

679655daffd

1da177e4c3f
883c98feaab







5a4faa87378
8b58be884a9
5a4faa87378


679655daffd

5a4faa87378
0ec00f0392b

7b39f90fabc
0ec00f0392b




c4e84bde1d5
8b58be884a9
4cbfbe256dc
c4e84bde1d5

679655daffd
c4e84bde1d5
1da177e4c3f
8b58be884a9
1da177e4c3f

80811493329
679655daffd

1da177e4c3f

8b58be884a9
c69f677cc85
1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
c69f677cc85
1da177e4c3f
679655daffd
1da177e4c3f
e7839f25df8
95ea36275f3
e1a6542f24f
4a7bd3ec7aa
95ea36275f3
83fc9c8938c
95ea36275f3

54e5881d0cd
95ea36275f3

9db5579be4b
6e57559022a
9db5579be4b
679655daffd

9db5579be4b
9e95ce279fa
8b58be884a9
9e95ce279fa
679655daffd
9e95ce279fa
394b701ce4f
8b58be884a9
394b701ce4f
679655daffd
394b701ce4f
e2d1d6c0a5d
e2d1d6c0a5d
f52a549082d
679655daffd
e2d1d6c0a5d

8b58be884a9

f9094d8e558
679655daffd

e2d1d6c0a5d
c1f766b5519
8b58be884a9
c1f766b5519

db17f395645
8b58be884a9
db17f395645

679655daffd
db17f395645
a09ed661f75
8b58be884a9
fbb5a558303
a09ed661f75
679655daffd
a09ed661f75
595182bcdf6
8b58be884a9

595182bcdf6
595182bcdf6
f9094d8e558





595182bcdf6
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd


1da177e4c3f
0c86edc0d49
8b58be884a9
76465493eea
8a6e25357d5
0c86edc0d49
679655daffd


0c86edc0d49
1da177e4c3f
76c4e5eafe9
1da177e4c3f
679655daffd
1da177e4c3f
e089764596c
8b58be884a9
19d337dff95
e089764596c
505c92470bd
80811493329
e089764596c
67e054e9192





e2d1d6c0a5d

679655daffd

e2d1d6c0a5d
1da177e4c3f

1da177e4c3f

679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f
d34cb28a371
1da177e4c3f
679655daffd


1da177e4c3f
59840488c20
8b58be884a9
605bebe23bf

54e5881d0cd
605bebe23bf
2b3daf58896
605bebe23bf
59840488c20
8b58be884a9


7d2c86b5a04

54e5881d0cd
7d2c86b5a04
679655daffd
59840488c20
9eb8ef7479b
8b58be884a9
c69f677cc85
ce00f85c45d
679655daffd
9eb8ef7479b
1da177e4c3f
8b58be884a9

1da177e4c3f
d58140cc18b
5238da45f34

679655daffd
a968cd3ef1d
3bfe68580a9


5238da45f34

8b58be884a9

5238da45f34
d58140cc18b
5238da45f34

679655daffd
5238da45f34
feed9b62da6
8b58be884a9

feed9b62da6

a968cd3ef1d
feed9b62da6
d5ca6918bc9
feed9b62da6
5238da45f34
8b58be884a9
07bbd0facdc
5238da45f34
d58140cc18b
5238da45f34
1da177e4c3f
679655daffd
1da177e4c3f
dd96df2cc25
8b58be884a9
dd96df2cc25



679655daffd


dd96df2cc25
4dde7f75521
8b58be884a9
efc03ecb9d6
4dde7f75521
679655daffd
4dde7f75521
1da177e4c3f
8b58be884a9
661263b55d5
54e5881d0cd
1da177e4c3f

679655daffd


1da177e4c3f
5b3f03f044a
d2fa2187614


5b3f03f044a


1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9

1da177e4c3f
679655daffd

1da177e4c3f
6bcf6737413
a2681a75426

6bcf6737413

a2681a75426
6bcf6737413
1da177e4c3f
8b58be884a9
1da177e4c3f


679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f


679655daffd

1da177e4c3f

60df75c169c
1da177e4c3f
54e5881d0cd


1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f

8b58be884a9

1a4187963e5
5f85813c33d
ce00f85c45d
679655daffd



1da177e4c3f

8b58be884a9
1662d32cea9
679655daffd





1662d32cea9

8b58be884a9
1662d32cea9
679655daffd

1662d32cea9

8b58be884a9
1662d32cea9
679655daffd
1da177e4c3f
6a36913a33c
8b58be884a9
6a36913a33c

679655daffd
6a36913a33c
e7839f25df8
7a241d6ecd3


e2d1d6c0a5d
3085e9c1b24
8b58be884a9
3085e9c1b24
7a241d6ecd3
e2d1d6c0a5d
7a241d6ecd3
e2d1d6c0a5d
0d1bb41ad4e
8b58be884a9
7a241d6ecd3
0d1bb41ad4e


c63b3cba4f4





8711cca2251
8b58be884a9
8711cca2251
df69f0da187
c8334dc8fb6
8711cca2251
7d2c86b5a04
8711cca2251
1da177e4c3f
8b58be884a9
1da177e4c3f


8b58be884a9


7d2c86b5a04
f058925b201
54e5881d0cd
1da177e4c3f
679655daffd

1da177e4c3f
c1c124e91e7







cef2cf07273
8b58be884a9
cef2cf07273
679655daffd

cef2cf07273
4480f15b330
8b58be884a9
1da177e4c3f
54e5881d0cd
1da177e4c3f
d5ca6918bc9


1da177e4c3f
6733b39a130
3387f656309




6733b39a130
6b7c5b947c6
8b58be884a9

f66d744d23d

7d2c86b5a04


679655daffd
6b7c5b947c6
8ceee660aac
c06f51eab8e



8ceee660aac
679655daffd
8ceee660aac
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
679655daffd
e2d1d6c0a5d

8b58be884a9
e2d1d6c0a5d

679655daffd


e2d1d6c0a5d
1da177e4c3f
8b58be884a9
1da177e4c3f


679655daffd
1da177e4c3f
75312619e8c
8b58be884a9
75312619e8c
679655daffd
75312619e8c
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
efc03ecb9d6
e2d1d6c0a5d
679655daffd




e2d1d6c0a5d
6349d9979be
2bf822d79f8
6349d9979be


e2d1d6c0a5d
6349d9979be


e2d1d6c0a5d
1da177e4c3f

8b58be884a9
1da177e4c3f




8b58be884a9
1da177e4c3f

679655daffd


1da177e4c3f
4c5adde7943


8a6e25357d5
4c5adde7943


92aab3c08ec
8b58be884a9
92aab3c08ec

679655daffd
92aab3c08ec
1da177e4c3f
8b58be884a9
1da177e4c3f
979b6c135fc
1da177e4c3f
679655daffd
1da177e4c3f
6ea884dbc6e
8b58be884a9
846557d3ceb
6ea884dbc6e
679655daffd

6ea884dbc6e
1da177e4c3f
8b58be884a9
1da177e4c3f
b7eee616ad8
679655daffd


1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d

679655daffd

e2d1d6c0a5d
415ad26d8c8
8b58be884a9


415ad26d8c8

679655daffd

415ad26d8c8
1da177e4c3f
2f82af08fcc
18e2842b85a
679655daffd
1da177e4c3f
6ea884dbc6e
8b58be884a9
6ea884dbc6e

679655daffd

6ea884dbc6e
fd9abb3d97c
8b58be884a9
2cb377283f3

679655daffd

2cb377283f3

8b58be884a9
fd9abb3d97c

679655daffd
fd9abb3d97c
b54f2863a26
8b58be884a9
b54f2863a26
679655daffd
b54f2863a26
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d



679655daffd
e2d1d6c0a5d
668acf32dfa
8b58be884a9
661263b55d5
54e5881d0cd
795fb7e74df
679655daffd

668acf32dfa
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d
679655daffd
e2d1d6c0a5d
1da177e4c3f
8b58be884a9
1da177e4c3f
524418bb8ec
679655daffd

1da177e4c3f
1da177e4c3f
8b58be884a9
979b6c135fc
1da177e4c3f
679655daffd
1da177e4c3f
61e115a56d1
8b58be884a9
61e115a56d1

679655daffd

61e115a56d1
1da177e4c3f
8b58be884a9
d094485323a
5b18167d6b7
1da177e4c3f
679655daffd



1da177e4c3f
baf8532a147
8b58be884a9
baf8532a147

679655daffd
baf8532a147
1da177e4c3f
8b58be884a9

93711660086
3126a1790e8


1da177e4c3f
3126a1790e8

679655daffd
1da177e4c3f
bd903bde7e0
8b58be884a9

bb74a6e5c55
93711660086
b0b8daf7849
eb1a6af39b7
679655daffd
e6e55122a54
eb1a6af39b7
473321fc373
8b58be884a9
1da177e4c3f
8a6e25357d5
54e5881d0cd

1da177e4c3f
679655daffd
7765b8bbee8
1da177e4c3f
6404fccafa3














fc0c195aa88







































1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
e2d1d6c0a5d
8b58be884a9
d33c861e71c
e2d1d6c0a5d
8a6e25357d5
3bbf9b9b0fe
e2d1d6c0a5d
679655daffd


e2d1d6c0a5d
2752e401148
8b58be884a9

2752e401148

679655daffd

2752e401148
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d



679655daffd

e2d1d6c0a5d
fc555841755
8b58be884a9
fc555841755


679655daffd

fc555841755
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f
26e9a397774
8b58be884a9

e2d1d6c0a5d


26e9a397774
8b58be884a9
dbc6c2ccb9f
1c6ccf62706
dbc6c2ccb9f
679655daffd
dbc6c2ccb9f
1da177e4c3f
8b58be884a9
b4f90189dc2
679655daffd
1da177e4c3f

baaea1dc0be
931812cb1b4
679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
e2d1d6c0a5d
8b58be884a9
e2d1d6c0a5d

679655daffd


e2d1d6c0a5d
2cbb12a4ee0
8b58be884a9
2cbb12a4ee0
1da177e4c3f
8a6e25357d5
54e5881d0cd
5c806b208b3
066069e14f6
679655daffd
066069e14f6
1da177e4c3f
4480f15b330
8b58be884a9


e2d1d6c0a5d

679655daffd






1da177e4c3f

8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f

8b58be884a9
1da177e4c3f
679655daffd


1da177e4c3f
4e68852dca7
8b58be884a9
4e68852dca7
679655daffd


4e68852dca7
781b456a980
8b58be884a9
781b456a980

679655daffd


781b456a980
5067f08abad
8b58be884a9

5067f08abad

679655daffd
5067f08abad
1a348ccc104
8b58be884a9

1a348ccc104

679655daffd
1a348ccc104
4e68852dca7
8b58be884a9
4e68852dca7
679655daffd
4e68852dca7
4480f15b330
8b58be884a9
4e68852dca7
679655daffd
4e68852dca7

8b58be884a9
4e68852dca7
d094485323a
4e68852dca7

54e5881d0cd
4e68852dca7
679655daffd
4e68852dca7
4020f2d7f0b
8b58be884a9
795fb7e74df
679655daffd


4020f2d7f0b
dd5e8e6b1d4
8b58be884a9
dd5e8e6b1d4



e86eaa3abc2
8b58be884a9

e86eaa3abc2


54e5881d0cd
e86eaa3abc2
679655daffd


e86eaa3abc2
1da177e4c3f
8b58be884a9
88c07ddec8c
1da177e4c3f

679655daffd

1da177e4c3f
d74db3b22a7
8b58be884a9

d74db3b22a7



e6f6a4cc955
d74db3b22a7
679655daffd
d74db3b22a7
9caeb532442

d094485323a
9caeb532442


1da177e4c3f
d094485323a
15065531c1c
679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f


679655daffd

1da177e4c3f
d719f9006e0
8b58be884a9
d719f9006e0
d5ca6918bc9
d719f9006e0
98f32602d42
bfcc6e2eca5
98f32602d42




4e68852dca7
8b58be884a9

4e68852dca7
8b58be884a9
7dcce1334fa
63a10dfdda0
4e68852dca7
679655daffd
4e68852dca7
d6f005a1089













1da177e4c3f
8b58be884a9
54e5881d0cd
1da177e4c3f

4e68852dca7
57d7f282271


e3288775ff6




4e68852dca7
740db6d7f5b
8b58be884a9

740db6d7f5b

679655daffd
1da177e4c3f

8b58be884a9
1da177e4c3f


679655daffd

1da177e4c3f
b454cc6636d
8b58be884a9
b454cc6636d
679655daffd

b454cc6636d
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
e2d1d6c0a5d
949cb6232d5
8b58be884a9
e2d1d6c0a5d
e2966cbe890
e2d1d6c0a5d

679655daffd

e2d1d6c0a5d
cc2020e62dd
8b58be884a9
cc2020e62dd


679655daffd
cc2020e62dd
14fadca793e
8b58be884a9
cc2020e62dd


1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f
cc2020e62dd
8b58be884a9
cc2020e62dd
679655daffd

cc2020e62dd
18332a80c3e
8b58be884a9
18332a80c3e

355ffe69cb3



679655daffd

18332a80c3e
d8379ab1dde





1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd


1da177e4c3f
e2d1d6c0a5d
949cb6232d5
e2d1d6c0a5d

e2966cbe890
e2d1d6c0a5d
80811493329
679655daffd

e2d1d6c0a5d
1da177e4c3f
8b58be884a9
6372594ac17
1da177e4c3f
679655daffd

1da177e4c3f

8b58be884a9
795fb7e74df
1da177e4c3f
679655daffd
1da177e4c3f
1da177e4c3f
f0348d44a0a
795fb7e74df
1da177e4c3f
679655daffd

1da177e4c3f
b02b371e6d1
8b58be884a9
b02b371e6d1

679655daffd
b02b371e6d1
d0374f4f9c3
8b58be884a9
043600a62a4
d0374f4f9c3

679655daffd
d0374f4f9c3
cc2020e62dd
8b58be884a9
cc2020e62dd


679655daffd
cc2020e62dd
1da177e4c3f
8b58be884a9
795fb7e74df
23d8c90e569
679655daffd

1da177e4c3f
7ce08c93e38
8b58be884a9
795fb7e74df
661263b55d5
54e5881d0cd
7ce08c93e38

679655daffd
7ce08c93e38
69ae9e3ee4c
8b58be884a9
795fb7e74df
69ae9e3ee4c

679655daffd

69ae9e3ee4c
2dea64b4aac
8b58be884a9
795fb7e74df
54e5881d0cd
1da177e4c3f
679655daffd

1da177e4c3f
959eea2191e
8b58be884a9
795fb7e74df
959eea2191e
679655daffd

959eea2191e
1da177e4c3f
8b58be884a9
795fb7e74df
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
795fb7e74df
8836aeb8615
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9
795fb7e74df
23d8c90e569
679655daffd

1da177e4c3f
ba460e48064
8b58be884a9
795fb7e74df
ba460e48064
679655daffd
ba460e48064
1da177e4c3f
8b58be884a9
795fb7e74df
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9
795fb7e74df
043600a62a4
1da177e4c3f

679655daffd
1da177e4c3f
73e4fb3f709
8b58be884a9
795fb7e74df
73e4fb3f709
679655daffd
1da177e4c3f

8b58be884a9
795fb7e74df
043600a62a4
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9
795fb7e74df
1da177e4c3f

679655daffd

1da177e4c3f
4e68852dca7
8b58be884a9
795fb7e74df
4e68852dca7
679655daffd
4e68852dca7

8b58be884a9
795fb7e74df
4e68852dca7


679655daffd
4e68852dca7
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9

795fb7e74df
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
795fb7e74df
1da177e4c3f
679655daffd



1da177e4c3f
1da177e4c3f
8b58be884a9
795fb7e74df
1da177e4c3f
679655daffd
1da177e4c3f

8b58be884a9
795fb7e74df
1da177e4c3f

679655daffd
1da177e4c3f

8b58be884a9
795fb7e74df
1da177e4c3f

679655daffd
1da177e4c3f
2f7ca802bda
8b58be884a9
2f7ca802bda

679655daffd
2f7ca802bda
f423b9a86a6
8b58be884a9
795fb7e74df
661263b55d5
54e5881d0cd
1da177e4c3f

679655daffd

1da177e4c3f

8b58be884a9
795fb7e74df
1da177e4c3f
6fb0425b99e
1da177e4c3f
679655daffd




1da177e4c3f

8b58be884a9
795fb7e74df
1da177e4c3f
679655daffd
1da177e4c3f
69ae9e3ee4c
8b58be884a9
043600a62a4
69ae9e3ee4c
1da177e4c3f
679655daffd

1da177e4c3f
c0efd232929
8b58be884a9
a67534a7824
661263b55d5
54e5881d0cd
57c6d2e999e
c0efd232929
679655daffd
c0efd232929
1da177e4c3f
8b58be884a9
795fb7e74df
661263b55d5
54e5881d0cd
1da177e4c3f

679655daffd

1da177e4c3f
bf164cc054d
8b58be884a9
bf164cc054d

679655daffd
bf164cc054d
eb6bab138d8
36d0344c254
eb6bab138d8

36d0344c254

eb6bab138d8
60f780528f3
8b58be884a9
795fb7e74df
661263b55d5
54e5881d0cd
60f780528f3

679655daffd

60f780528f3
1da177e4c3f
4086b9cad8f
1da177e4c3f
4086b9cad8f
679655daffd
1da177e4c3f
b7eee616ad8
8b58be884a9
795fb7e74df
661263b55d5
54e5881d0cd
b7eee616ad8

679655daffd

b7eee616ad8
e7839f25df8
8b58be884a9
1da177e4c3f



679655daffd



b7eee616ad8
e5f114e97d6
8b58be884a9

e5f114e97d6
679655daffd


e5f114e97d6
f899b0adc6f
8b58be884a9
f899b0adc6f

54e5881d0cd
f899b0adc6f

c1fd1c0764e
8b58be884a9
c69f677cc85
c1fd1c0764e

679655daffd

c1fd1c0764e
4480f15b330
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
9a82446bd26






3a4d5c94e95








1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f
32c0a520f50
8b58be884a9
846557d3ceb
32c0a520f50
679655daffd

32c0a520f50
f0bf7f61b84
8b58be884a9

f0bf7f61b84


69e4a7c27c1
8b58be884a9

c69f677cc85
69e4a7c27c1
679655daffd
69e4a7c27c1
01f2073411e
8b58be884a9
01f2073411e

679655daffd
1da177e4c3f
be7f827360b
8b58be884a9
be7f827360b

679655daffd


be7f827360b
55e331cf7eb
8b58be884a9
55e331cf7eb




d1a890fa37f
65c8bb5b9f2




d1a890fa37f
851b164231d







e53e86c7ae1
8b58be884a9

e53e86c7ae1
1dd68f01886
54e5881d0cd
e53e86c7ae1
679655daffd

e53e86c7ae1
ab41319eab3
8b58be884a9
ab41319eab3

679655daffd

ab41319eab3
1de9e371b89
8b58be884a9
1de9e371b89

679655daffd
1de9e371b89
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd

1da177e4c3f
1392707977d
8b58be884a9
1392707977d
25845c22647
679655daffd

1392707977d
61db011d403
8b58be884a9
61db011d403

679655daffd

61db011d403
1da177e4c3f
8b58be884a9
1da177e4c3f
679655daffd
1da177e4c3f
3527761cb40
8b58be884a9
230a5cef481

54e5881d0cd
3527761cb40
679655daffd


3527761cb40
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd
1da177e4c3f
e258b80e691
364e9e1887d
e258b80e691


8a70da82edc
8b58be884a9
8a70da82edc




18332a80c3e
8b58be884a9
355ffe69cb3
18332a80c3e
679655daffd

355ffe69cb3

18332a80c3e
5fc1468029e
8b58be884a9
5fc1468029e
679655daffd
5fc1468029e
834da346041
54f2d7361da
834da346041



5e68ff6563e









834da346041
1da177e4c3f
8b58be884a9
724c6b35ecf
926554c4b74
1da177e4c3f
679655daffd
1da177e4c3f
febf1dff119
8b58be884a9

febf1dff119



679655daffd

febf1dff119
b75ea16ae74
27480ccc29c
b75ea16ae74


3768f0b1d18
b75ea16ae74




3860e6c4b93
b75ea16ae74
3860e6c4b93
b75ea16ae74
3768f0b1d18


b75ea16ae74
1da177e4c3f
8bf2805918e
1da177e4c3f
8bf2805918e
679655daffd


1da177e4c3f
e2d1d6c0a5d
8b58be884a9


bcde563c43f
54e5881d0cd
e2d1d6c0a5d
679655daffd

e2d1d6c0a5d
d094485323a


28b8e8d4e2e
d094485323a


4cdf6bc2476
8b58be884a9

4cdf6bc2476


679655daffd




4cdf6bc2476
1da177e4c3f

f08a59f1467
1da177e4c3f
d7ede1aa5df
1da177e4c3f
54e5881d0cd
1da177e4c3f
679655daffd

1da177e4c3f
c9d3d8ecf67
8b58be884a9
c9d3d8ecf67
c9d3d8ecf67
679655daffd
c9d3d8ecf67
238b8721a55
8b58be884a9
238b8721a55

679655daffd
238b8721a55
1da177e4c3f
8b58be884a9
1da177e4c3f

679655daffd

1da177e4c3f
af64a5ebb81
8b58be884a9
af64a5ebb81

679655daffd

af64a5ebb81
1da177e4c3f
8b58be884a9
1da177e4c3f



679655daffd


1da177e4c3f
7c0c3afb6e6
8b58be884a9

7c0c3afb6e6
724c6b35ecf
7c0c3afb6e6

679655daffd
7c0c3afb6e6
1da177e4c3f
1da177e4c3f
f63145e2893
1da177e4c3f
f63145e2893

679655daffd
1da177e4c3f
8b4a40809e5
8b58be884a9
8b4a40809e5
679655daffd
8b4a40809e5
1da177e4c3f
8b58be884a9
34d03cc16ad
8a6e25357d5
cfe81f76c83
1da177e4c3f
34d03cc16ad

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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482































                                                                          




                                                                 
 





                                                                       






                                                                      
                                                                     



                                                                      
 



                                                                         




                                                                        
 





                                                     
                                                         






























                                                                              




                                                                            
                                                           
 
                                                   
 
                    
                                       
                              
                  
                          
 
                    
                                                             

                              

                                           
 
                     
                                          
                              
                  
                            
 

                                                           
                                  
                          
                 
                         

                                
                                                                      

                                  
                            

                              
                                                    

                                  
                                    
 
                                        
                                              
                              
                  
                           

                                          

                                     
              

                                   

                                                                       
                                              
                              
                  

                             
 
              


                                              
                                            
                            
                                                            
                                                                         
                  

                                        
 
                         
                                   

                                       
                               
 
                        
                                                        

                                  
                 

                                      
 
                                      
                                            

                                 
                                 
 
                                    
                                                       

                                 
                                  
 
             
                                             

                               
                           
 
                                          
                                      
                                           


                                        
 
                      
                                                    
                                                    
                                           

                                         
                                       
 
    
                                   
                                  
                                               
                                                            
                                                                                 
                 


                            
                     

                    
                                                   
                                  
                                               
                 

                              

              
                                                   
                                  
                                               
                 
                         

               
                                       
                                  
                                               
                 
                          
 
                                
                                         




                                               
                   
                                       
                                  
                                               
                 
                              
 
                 
                                       
                                  
                                               
                 
                            
 
               
                                                    
                                           

                                               
                                  
 
                        

                                                


                                           
                          
 
                               
                                         
                                 
                  

                                   
 
                               
                                                   

                                 
                               
 
                       

                                      
              
                                      
 
                  
                                      
                  
                                         
 






                                         
                    
                                       

                                  

                                       
 
              
                                          
                  
                           

                
                                            
                  

                                          
 
                                       
                                           

                                     


                              
 
              
                                       
                                                                             
                  

                          

                   
                                                

                                  

                                    
 
                             
                                      
                                  
                  

                                 
 
   
                                         

                           

                             
 
                             
                                           
                                 

                                            

                                  
 
                         
                                             
                  
                                  
 
                  
                                           
                                 
                  

                                            
 
          
                                           
                                                  
                                        
                                   
                   
 
                                             
                                                  
                                                                       
                 
                                       
 
                                   
                     
                                                                       

                                                                                                       



                                          
 
                  
                                           
                                        
                                                                                  
                 

                                         
 
                            
                                                    

                                 
                                       
 
                                

                                                   
                 
                          
 
                    

                                                
                                  
                  
                                       
 
                                     
                                                 
                               
                                                                   
                  
                  
 
          
                                               


                                         

                                
 
                               
                                            

                                   
                                     
 
                

                                            
                  
                                
 
                       
                                                          
                  

                              
 
                      
                                        
                  

                                
 
                          
                                  
                  

                                     
 
        
                                             
                                                                            



                                    















                                             
                                 
              
                               
 





                                             
                                  
                                                 
                                                                            
                  

                                           

                              
                                                 
                                                                            

                  
                            
                                         
                                                                            

                  
                              
                                                 
                                                                            

                  
                                     
                                          
                                                                            

                                        
 
                            

                                             
                                                                            



                             

                                             






                                          





                                                                
                                        

                                                      
                                                                            
                  

                                          

                                         
                                                 
                                                                            

                  
                  
                                             
                                                                            


                                     
                                                        
                                           
                                                                            

                  




                                                     
                         
                                          

                  
                                           
                                                     
                                                                            
                                                         
                 
                             
 
                           
                                             
                                                                            




                                    
                                                                  


                                           


                                                          

                                                
 
                      
                                                     
                                                                            
                 
                         
 
                           
                                             
                                                                            




                                                
                                        
                                            
                                                                            
                  


                                                      
 





                                                                            
                                         
                                                 
                                                                            

                  
                           
                                         
                                                                            

                  
                                          
                                               



                                               
                                  
                                                         

                     


                                                                                  
 
                                 

                                                 
                                                                            
                  

                                 
                                               
                                                                            
                  

                                  

                                                 
                                                                            
                  

                                   

                                                 
                                                                            
                  

                                  
                                                 
                                                                            


                                  
                                                 
                                                                            


                                  
                                                 
                                                                            

                  


                                        
                                                                            


                             












                                                                            
                                 

                                                 
                                                                            
                  

                                              
                                                 
                                                                            


                                  
                                                 
                                                                            

                  
                            
                                               

                  
                                                   

                                                 
                                                                            
                 




                               
 
                           
                                               
                                                                            


                                   
                                       
                                                      

                  
                        





                                                                            
 
                                                   
                                                   



                                                             



                                              
                                     








                                                                  
                        

                                                      

                  
                                               
                                           
                                            

                           









                                                
 
                     
                                         
                                            

                           

                                                 
 
                   
                                         
                                            

                           

                                                
 
                
                                             



                                                     
                                                           
                                                                            


                                    
                                   
                                                 
                                                                            

                  
                       
                                             
                                                                            










                                                        
                         
                                              


                                            
                             
                                       
                                          
                                                                            

                                       
                              
                              
                          
 
                            
                                       
                                                                            

                                       
                              

                            
                                       
                                                                            

                                       
                              
 
                            
                                       
                                                                            




                                       
                                       
                                                                            




                                       
                                       
                                                                            




                                       
                                       
                                                                            


                                       
 









                                                                                
                                              
                                                 
                                                                            


                                
                                                 
                                                                            

                  
                                    
                                          
                                                                            

                            











                                               
 









                                                                            





                                                                            
               
                                             
                                                                            



                                    













                                                                            






                                                   
                       

                                                    
                                            
                                           
                               
                  
                                        
 
                                   
                                                  

                                 
                              
 
                         
                                              
                                            
                                           
                               
                  
                                          
 
                                            
                                               

                                                 




                                             
 






                                            
                              
                                           

                                           

                          
 
                             



                                                    

                                      
                                                         
                  
                                       
 
                             




                                                          

                                      
                                                         
                 
                                       
 
                              
                                             


                                                          
                                        
 





                                             
                  
                                      
                  
                                        
 
                     
                                        
                                           
                                       



                                            
                         
 
   
                                             
                                                                               
                              

                                        

                          
 
                     
                                               
                                                                            


                                           
                                   
 
                            
                                               



                                         
                               
                                               
                 
                                     
 
                  
                                               
                                   
                  

                                   
 
                          
                                               
                 
                          
 
                
                                               
                 
                               
 
                     

                                                                            

                                                                      
                                           
 
                     
                                              
                                      


                                               
                                   
 
               

                                         
                                                 
                                              
                                                                                
                  

                             
 
                         
                                                               

                                                         
                  

                                  
 
                  
                                                  



                                            
                   

                            
                                                  
                 
                               
 
                   
                                          
                                  
                                  
                  


                            
 
                   
                                                 


                                                     
                                 

                         

                                                 


                                                     
                                       
 
                         
                                          
                  

                                 
 
                                
                                               


                                               
                                    

                
                                                   
                  

                                          

               
                                                          
                  


                                         
 
                     
                                          
                                               

                                   
                      
 
                    
                                                        
                                               

                                   
                              
 
                   
                                             
                                               

                                   
                              
 






                                               
                      
                                            
                                               

                                   
                                 
 
                        
                                             
                                               

                                   
                                   
 
                       
                                            
                                               

                                    
                                         
 
           
                                    
                                                                                   
                  
              
 
                
                                           

                                     
                                       
 
                 
                                             
                                       
                             
                  
                          
 
                   
                                             

                                       
                                                                                    
                  

                              

              
                                       


                                                

                                  
 
                                   
                                             

                              
                         
 
                                     
                                         

                              

                          
 
                                         
                                              

                              
                          
 
                                    

                                            

                              
                         
 
                          



                                       
 
                                      
                                                       

                                  

                           
 
                
                                     

                                   
                                
 
                 
                                            

                                     
                                                             
                                                                                  
                  

                                           
 
                       
                                                     
                                   
                          
                                                                               
                  

                                       
 
                                                               
                                           




                                                        
                                             
                                        
                                   
                                                                               
                  

                                           
 
                    

                                         

                          



                                        
 
                 
                                                
                                                       

                                                   
                              

                                                       
                
                           


                                
 
                   
                                               
                                       
                              

                                                       




                                   
 
                                  
                                     



                                                     
                                        


                                       
 

                                     
                                  
                                 
                                                                              



                                          
                                        
                                           

                                 

                                                  

                                 

                               
 
                     
                                                               

                                                         
                  

                                       

                                   
                                                               

                                                         
                  

                                         
 
                    
                                                 

                                      



                               
 
          
                                          
                 
                             
 
                             
                                          

                                             
                 
                         
 
                                   
                                                 

                              
                                    
 
                                        
                                                 
                                 
                  
                                      
 
                                
                                        
                                                                   
                 
                                
 
       
                                             

                           
                     

                                              

                                  
                          
 


                                                               
                                           


                                               









                                                     
                
                                        



                                   


                                          
 
                                  
                                        
                                  
                                                                       
                                    
                                                                   
                                                                              
                 

                                          
 
                       
                                         
                                 
                  
                                         

                                        
                                         
                                 
                  
                                           

                                 
                                         
                                 
                  
                                            
 
                     
                                                       
                                           
                  
                                            
 
                                    
                                                
                                              
                  

                                          
 
                                
                                         

                                                  
                  
                                
 
        
                                            
                 

                                
 
         
                                          



                              
                        

                                       

                                             

                             
                   
 
                                   
                                           
                                       

                                 

                                    
 
                           
                                             

                                        
                             
 
                     
                                              



                              
                     
                                     
                               
                                                      
                                                                           
                  


                                    

                
                                        
                  

                               
 
       
                                       
                                             
                                            
                 


                                         
 
                 

                                               

                                            

         

                                                
                                  

                                 
                  

          

                                                
                                    
                                                                                
                  




                             
 
                                     
                                           


                                    
                        
                                             
                  
                              
 
                       
                                            
                                                                 
                                   
                                                                               
                          
                                                
                  

                                          
 
                             
                                      


                              
                          

                                  
                                      
                                  

                                  
                                    
 













                                             






                                         
                  
                                             
                                                                            

                                    
                                   
 
                            
                                                          
                                              
                  
                             

                         
                                
              

                                

                     
                                
              
                              
 
                    
                                       



                                  






                                  
 
                                           
                                               

                              

                                         

                          
                                      
                                               
                                                     
                  
                              
 
                  


                                           
                                       
                          

                                                         

                                     
 
             
                                                          
                            
                                                
                  


                            
 
                    

                                               
              

                                           

                         
                                                  
                  
                           
 
                  
                                             
                                           
                  
                                          
 
                      
                                         

                                      

                           
 
                                            
                                                 
                  

                                 
 
                      
                                             

                  
                      
                                            
                                                     

                  



                                    
                                                          
                  



                                     
 
                      
                                                      

                           
              


                                         
 
                                
                                          
                  


                                             

                                    
                                    




                                                                    
         
                               
                  


                                           
 
                              

                                                 
                                
                                          
                                                                          
                 
               
 
                                    
                                               
                 

                          
 
                               
                                          

                                 

                                   
 
                         
                                           

                  
                      
                                         
                                  
                 
                           
 
             
                                           

                                 
                      
 
                 
                                                  

                              

                            
 
                        
                                                        


                                  

                         
 
           










                                                      
 
                                
                                           
                                                                   
                 
                                 
                     


                           

           
                                       
                                       
                                                                             
                  
                        

            
                                              
                              
                  
                               
 
                                
                                                  
                  
                           
 
                    
                                            

                                  
                  
                          

                             
                                               

                                  
                           

                    
                                            

                                  
                  
                               

        
                                                      



                                            

                                              
 
                  

                                                

                                          
                 

                                              
 
         
                                                 
                                                                             
                                 
                 


                              
 
          

                                                 




                                                                             
          

                                                 
                                                                             

                                 
                                 

          
                                                 
                                                                             

                                 
                                 
 
               
                                        
                                                                             

                                 
                                      

          
                                             
                                                                             

                                 
                                 

          
                                                 
                                                                             

                                 
                                 
 
          
                                                  
                                  

                                 
                                 
 




                                                  


                                  
 
            

                                                       
                                                                             

                                 
                                   

           
                                          
                                                                             

                                 
                                  
 
           
                                        
                                                                             

                                 
                                  
 
                          
                                              
                                            
                                           
                               
                  
                                           
 


                                    
               
 
                                           

                                             
                                  
                 
                                   
 
              


                                                     


                                      
                          
                                            


                                                
                          
 
                                  
                                                   




                                    
                             

                                              
                  
                                   
 
                                 
                                                         
                  
                                                                                  

                                  
 
                              
                                       
                              
                  
                              

               
                                                           
                                         
                              
                                                     
                  

                                       

                    
                                   
                  
                            

                
                                  
                  


                                          

                

                                                 

                                  


                                          

                

                                        
                                  
                                   
                                                            
                  

                                          
 
                                  
                                         

                                 

                                   
 
                          
                                                 

                                 
                                 
 
                       
                                             
                 

                                      
 










                                             
                                          
                                       
                                     
                  



                             
 
                                    
                                                
                                     
                  
            
 
                                                         
                                        

                                 

                               
 
                  
                                                  
                                             
                                        
                                                                                    
                  

                                 

                                  
              


                                     

            
                                             
                                                                
                  
                          

                                           
                                             

                              

                              

                 
                                   
                                           
              


                          

                    

                                     
                               
                  
                            

                        
                                          
                               
                                 
                  
                                    
 
                                      
                                            
                                   
                                                                            
                  

                                              
 
                            

                                                       
                               

                              

                                  
 
                              
                                        

                               

                                      
 
                                
                                     
                                 
                               
                  
                               
 
                                          
                                     
                              
                               
                  
                             
 
                                      
                                        

                               
                                 

                           
                                        
                                                                   

                               

                                    
 
                   
                                             

                                                   
                    
 
       

                                         

                                           


                                                 
 
                                               
                                           





                                          
                       
                                           
                  
                 
 
                     
                                                         
                                           
                  
                                             
 
                             
                                          


                                        

                            
 
                                           
                                    
                                  
                                        
                              

                                     
                                                 


                                  
                         
 
                       
                                                  
                 

                                     
 
                          
                                        

                                                       






                                   
 
                                
                                     




                                                                              
                                  
                                             
                           


                                     
                
                                               
                                
                                          

                                                                                  
                 


                                           
 
                    

                                       


                                                


                                         
 





                                                  
                                                  
                                        

                                                                    
                  
                             
 








                                                                                       

                                 


                          





                                                 
                       
                                   
                                   
                                                                               
                  
                                           
 






                                                                               
                     
                                           
                                   
                                                                               
                  
                                        

                             
                                           
                                   
                                                                               
                  
                                          
 
                       
                                         




                                                                               
                    
                                                  
                                   
                                                                               
                  
                                        

                       
                                             
                              
                                   
                                                                               
                  
                                  
 
                   
                                 
                                  
              
                            
                      
                              
 
                                     


                                                


                                   
 
                    
                                        
                                    
                  
                              
 
                                  
                                                  

                             

                                           
 







                                                        
                                              
                                        

                             


                                        
 
              
                                            
                  

                                         

                      
                                                  


                                                             
                             
 
                                              

                                         

                                           





                               
                                     
 
              
                                     
                                   
                                                                       
                  

                          
 
                                             
                                            
                  


                               
 
                               
                                                


                                                   

                                     
 
                                     
                                                       

                                     

                                     
 
     
                                             

                              


                                   
 
              
                               
                                           
                                      

                                 
                                    
 
                                         
                                                    
                                           
                 
                                         
 
                                                                      
                                        
                  
                           
 
                                          
                                            
                  


                                     
 
           
                                                        
                  

                                   
 
            
                                    
                  
                           
 
               
                                                          

                                                                         
                
 
                   
                                      

                                
                             
 
                         
                                       

                                   
                                          
 
                  
                                          
                  
                     
 
                     
                                                  
                                 
                  
                                     
 
             

                                                              
                                 

                                                                                 
                                                 
                  


                           
                             
 
                   
                                       
                                 
                                                
                  
                                         
 
              
                                        
                  
                      

                                        
                                        
                                                                                    

                  
                       

                                         

                                  
                                                                            
                  
                  
 
                             
                                              

                                                    
                             

                            
                                      
                 
                          


                         
                                           
                                                                     
                 
                          
 
             
                                               
                                 
                                                           
                                                                           
                  


                           
 
                 
                                            
                                 
                  

                                  
 
          
                                                 

                                           
                                 
 
                   
                                                  
                                             
                                        
                                                                                    
                
                                                
                         
 
                       

                                                      
                                                                                
                                                     
                                                                           

                       
                           
 
                                        
                                     
                 
                               
 
                                
                                   
              
                               

                    


                                                 
                                  
                              
                                                            
                                                                               
                 


                                     
 
       


                                               
                  


                                             
 
                                                      

                                                   
                                   
                                                             
                                                                        
                  
                      
 






                                                    






                                                                                 
                                                
                                             
                                   
                  

                                    
 
                                
                                           
                                   
                  
                           
 
                           
                                               
                                           

                                               
                                           
 
                                   
                                                     
                  

                                         
 
                      
                                               
                 
                         
 
                  
                                             
                                        
                                                 
                 

                                   
 
                         
                                               
                  
                              
 
                                                
                                        
                  





                                                
 
                                            
                                           
                  
                                           
 
                             
                                                 

                              
                            
 
                                                               


                                                     
                                                

                                                       
                                         
                                     
                 



                           
                          

                          
 
                                                  
                                      
              

                                               

                                                     
                                      
              

                                               
 










                                                          
                                    
                                                             



                             


                                         
 
                                  
                                                   
                                           
                                                  
                                      
                                     
                                                                                 
                 
                                     
 

                                                 





                                                                
                    
                                          

                                 
                              
 
                  
                               
                                 
                  
                                    
 
               
                                                    
                  
                                           
 
                                           

                                              

                              
                         
 
            
                                              
                                  
                                                
                 
                                    
 
              
                                       
                                                                                

                                        


                              
 
                    
                                                        


                                  
                         

    


                                            
                              
                                 
                  
                                                

                             
                           
 
                 

                                      
                  
                                                                                 
                                       
 
                 
                                                          

                              


                           
 
              
                                        
                                                           
                                    
                  
                                                                            



                                         
 
      
                                        
                  


                                
 
     
                                            

                                   
                                                                                 
                  

                            
 
              
                                          
                                                            
                              
                                
                                                                            
                  



                            

                                         
                                        
                                                            

                             
                                    
 






                                         
                       
                                            
                                                                 
                                   
                                                                               

                                 


                                        
 
              
                                                 

                                            
                                                                            
                  

                                         
 
                  
                                              

                              
                         
 
                                        
                                             

                                                         
                  

                             
 
                                         
                                                 
                               
                                  
                  


                                
 
                                 
                                           
                                 
                  

                                  
 
       
                                            
                                    
                                                              
                  

                                                 
 
     

                                       
                                 

                                         
                            
 
                           
                                        

                               
                  

                               
                                   

                               
                   
 
                                                                 
                                     

                                                                                        
                                    
                  


                             


                        

               
                                       

                                         
 
                                      

                                                
                                 
                                   
                 






                             
 
                            
                                   
                                             

                               
                 




                               
 
                                      
                                           

                               
                 
                                  
                          
 
                                        
                                      

                               
                 

                                     
 
                                             
                                               

                                
                 


                                  
 
                                          

                                                      



                                                         

                                  
                      
                         
 
     
                                              
                                                                        
                                 
                  

                             
 









                                           
                      
                                                 
                                    

                                            


                                       
                           
                            
                     
 
         
                                           
                                             
                  




                                        
 
        
                                                 





                                  
         
                                                               
                  
                                         
                                 
                                
 
       


                                                             
                                                          
                  


                                 
 
                            
                                                               

                                                         
                  


                                       
 
           
                                 
              


                                                

                             
                                                                      

                                  

                                     
 
             
                                          
                  

                            
 
                     
                                                       


                                           
                                       
 
      
                                             


                                 




                                      
 
                               
                                          

                                                 
                                  
 
                                     

                                                         

                                  
                                                              
                                                                          
                 

                              

                         
                                                         


                                  

                                        
 
                                  
                                                
                               
                                                    
                  

                                    

                                 

                                                 
                                  
                               
                                                                                 
                  

                                   
 
                                        
                                                
                                                                 
                               
                                                    
                  

                                 
 
                                 

                                                
                                  
                               

                  
                                              
                                              
                                  
                               
                  
                                    
 
                                    
                                       
                               
                  


                                      
 
                                     
                                          
                                             
                                                                            

                 
           
                                                          
                  


                           
 
                              
                                              
                  

                                     
 





                                                       
                            
                                         
                                 
                  

                                

                            
                                         
                                 
                  

                                
 
                    

                                             
                                                                                      
                  



                                  
 
                                                                       
                                                    

                                                     
                  

                             
 






                                     
                                        
                                       
                       
                                 


                                       
                               
 
                                                        
                                       

                                  
                                 
 
                        

                                                       

                                                  

                                                         
                                                                       

                  
                 
                                               



                                                     
                  
 
                 

                                                 

                                       
                                                                              
                  
                  
                      

                       
                                          
                                      
                                       
                  
                      

                  
                                       

                                                    
                        
 
        
                                                 

                                      
                                                                                   
                  


                                                       
 
                         

                                                 

                                                                                     
                                                                                   
                  
                                 
 
              
                                         

                              

                                  
 
                                                               
                                                
                                           
                                 
                  
 
                                
                                      

                                        
                                      
 
                               
                                                  
                              
                  

                                 
 
                             
                                                  
                                      
                 

                                    
                                         
                                        

                            
 
                                 

                                              


                                 
                         
                                            
                                   
                  

                                       
 
                                                  
                                          

                                 

                                   
 
                                    
                                                     


                                   
                                                             







                                                                               
 
                     
                                                
                                  

                                    


                                       
 

                          

                               

                          
 
                          
                                                
                                                       
                                                          
                          
                  
                       
 
                               
                                             
                                     

                                                           
                                               
                  


                          
 
                       
                                       



                                                        
                        

                   
                                          
                  
                                    

    
                                          
                                  
                                 
                                                      
                 

                           

                         
                                                               
                  



                                  

              
                                             
                  

                              

                                         
                                        

                               


                                          
 
                                                    
                                     
                                                                            
                  
                                 
 
                                
                                                  
                  

                                  
 
                                          
                                        
                  

                                         
 
                  
                                                 
                                           
                                                             

                                              
                                         
 

                                        
                                           


                                      
                           
                                            
                                                                           
                 
                    
 
                                                             
              
                                 

                          
 
                                   
                                                        
                 

                                   
 
                       
                                         
                  

                                          
 
                                 
                                        
                  

                              
 
                                               
                                             
                                 
                                           
                  
                         
 
                                        

                                           


                                                      
                             
 
                                 
                                       
                  
                             

              
                                            
                  
                 

                                       
                                                                      

                                  
                               
 
                                    

                                             
                                  



                                  
                      
                                                           
                                        
                  
                             
 




                                                          
                              

                                                                           
                 

                                         

                                         
 





                           
                                         

                                       
                              

                                 
                                                                          
                 





                                
 
        
                                      


                              
                               

                              
 
                    
                                          
                                  
                                  
                  


                              
 
                          
                                                  
                  


                                      
 






                                           
                    
                                               
                              
                                             
                                                        
                                                                           
                                                                                
                  

                    


                                 

                      





                                                   
                              
                                                                           
                  


                       
 
                                                              
                                      


                              
                     
                                                   
                                      
                                                                
                                                                                   
                  

                     

                              
                                
                                  
                             
 



                                                                           
                                                                                

                    

                               
 
                         
                                                    
                              
                             
                 
                           
 
                              
                                                    


                                                         
                  






                             

                     

                                                   
                              
                  
                            
 
                 
                                                       
                                   

                                


                                            
 
                                                                              
                                                       

                                                               

                                        

                                                        

                                                       

                                                               

                                        
 
               
                                             
                                            
                                  
                                                                            
                  

                                          
 
                                               
                                           
                                   
                  

                             
 
            
                                        


                                       
                                                            

                                                                                   
                        

                            
                                      




                                  
                                                  




                                  
                                          





                                                      
                                                 
                                   



                                  
                                                     

                                                 
                                   
                  
                            

                                  
                
                                                 

                                  






                                                

                                    
                                           



                                         

                                                        



                                  
               
                                         

                                               

                                          
 
                           
                                           
                  

                                       
 
                           
                                           
                  
                                       
 
                               
                                        
                                   
                                                                               
                  
                                    
 
                    
                                                 

                                     

                                    
 
                         
                                     


                                        

                          
 
                        
                                           
                                 
                  

                                           
 



                                                
                                                    




                           
        
                                               

                                  
                                      


                                
 
                                   

                                            

                                                                  
                                                                         
                 


                                           
 
              

                                                   
                                      


                                           
                  
                                     
 
                          

                                           

                            
                                               
                  
                         
                          
                 
 
                   
                                                     
                                      
                                                       
                  
                                 
 
                       
                                       

                              
                                
 
                    
                                       
                                 
                  
                                       
 
                                   
                                           
                                           
                  
                                               
 
                           

                                                          


                                                                  

                              
 
                     
                                                            
              



                                
 
                      



                                                  
                                     
                 


                                           
 
                                            
                                    


                                                            

                                         

                   

                                        
                                                      

                                    
                                                              
                                                                             
                  

                       
 
                                  
                                         

                                 

                                   

                   
                                         
                  
                                   
 
                  
                                        
                  

                                    
 








                                            
                  
                                            
                                 
                 

                                                        
 
             
                                               
                                 
                                                           
                                                                             
                 


                          
 

                                               
                                 
                 
                           
 
                
                         
                                        
                                                                
                                                                              
                  


                             

                      
                                     
                              
                  
                             
 
                         
                                                
                  

                                 
 
                            


                                               
                                                  
                 
                            
                                  


                                       
                                       
                                

                                      
 
                    
                                             

                                             
                                   
 
                
                                           

                                     
                                   
 
              
                                           
                  

                               
 
                         
                                                            




                                  






                                  
                       
                                            
                 


                            
 
                                        

                                             
                                                   
                  

                                    
 
           

                                            
                  
                    
 
                  
                                          
                                 
                  
                                    
 
                                    
                                         

                                 
                         

                       
                                            
                  

                              

                 
                                                 
                  

                           
 
             
                                            
                  

                                   
 
           
                                                


                                                           


                            
 
                  
                                   


                                                                       

                                         

                       
                                              
                                      
                          
                
                                     

                                             
                                                  


                                              
                                             
                                          

                                 
                                  
 
                   
                                          

                              
                  
                                   
 
                    
                                          

                               
                  





                                          
                             
                               
                          
 
              
                                


                              
              

                                          






                                     
                          
                                    
                                                  
                                   
                                     
                                                                               
                  

                                                
 
                     

                                             
                                                                            
                  




                                  

                      
 
              

                                               
                                                                            
                                                                                  
                  
 
              
                                         
                                                                            
                                                                                  
                  
 






                                                                                  


               
              
                                               


                                  





                                  
                             
                                                  
                               

                                  

                                          
 







                                                    
                             
                                          


                               

                                                
 

                                                    
                                                            




                               
                                
                                          
                               

                              
                         
 
               
                                      

                                            
                

                                

                                 
                                                         
                                   
                  

                                 

                                  
                                         
                                   
                  
                                    
 
                                 
                      
                                         
                                                  
                                      
                                                                     

                                       
                                                                        

                                    
                               
                                       
                  

                                          
 
                    
                                      
                  
                             
 
                 
                                                 
                  
                        
 
                                          
                                      
              
                                 

                 

                                                       
                 

                                     
 
              
                                              

                  
                              
                                              

                              
                           
 
                               
                                            
                                                                
                 
                
 
                      

                                                       
                                                  
                 





                           
 
                      
                                              
                  


                             
 
                               
                                               
                                  
                                                           
                  


                             
 
                    
                                      
                 
                    
 
      
                                                 
                                      
                  
                                
                   
 





                                                

              

                                        
 

                     

                              

                                       

                  
                                          
                                  
                                  
                  


                            
 
                       
                                                   

                                      
                                                                                       
                  
                                             
 
                       


                                                          

                                      
                                                                                       
                  
                                             
 
                            
                                           
                                   
                  
                             
 
    

                                                   
                           
                                  

                                                         
                  
                     


                                   

                    

                                                    
                           
                                  

                                                         
                         
 
                  

                                                    

                                  
                                                         
                 
                            
 
                
                                                      
                                         
                           
                                  
                                                         
                 
                                
 
                       
                                              



                                                         


                               
 
                     
                                       
                                                                            
                 
                                 
 
                            
                                        
                                   
                                                                               

                                        


                                     
 
                            


                                             


                                   
                 
                                                
                  
                                    

         

                                             
                  

                             
 
                  

                                             

                                
                   
 
                 
                                    


                                  
                        

              
                                            


                                  

                         

              
                                                        
                                  


                                                                                    
                  

                     

                
                                                

                                  

                                 

             

                                                 
                                  
                                     
                 



                                         

                  
                                         
                 





                                           

                  
                                         
                  

                                   

                             
                                         
                  
                                        
 
                                                  
                                               

                                                                
                                     
 
                                                       


                                 
 
                                                                           
                                                  
                               
                                 
                  
                                   
 
                                                               
                                       
                                 


                                    





                                                                
                  
                                        
                                                             
                                                                                          
                                        
                 
                 
 
                
                                               


                       


                                           
                                                                    
                                 
                                                                                          
                 

                              
 







                                                                             
                
                                        
                  

                               
 
                           
                                       
                                 
                                                                                
                 


                              
 
                                                  




                                                          
 
                                                

                                                    

                                                        


                                    
                          
 
                  



                                                                       
                 
                        
 
              
                                      
                  
                             

                                         
                               

                                  


                                     
 
                                  
                                      


                                      
                                   
 
                       
                                 
                  
                            
 
                                    
                                   
                                     
                                                                            
                  




                                                      
 
                               
                                   


                                                                                
                 


                             
 

                              
                                              




                                                  
                                              

                                                   


                              
 


                                                      
                                                               


                             
                       
                                              

                              
                            
 
                                 
                                            
                                           
                              
                  
                            
 
                        
                                                  
                                 
                  

                                           
 
                      
                                                     
                                                     
                  


                                  

                  
                                                     

                                                       
                                   
 
                                               
                                                           

                              

                          
 
              


                                                   

                          

                             
 
                      
                                        
                 
                            
 
                                  
                                                  

                                 

                                      
 
                        
                                                      

                              

                                

                            
                                                      

                              
                              
 
                 
                                        
                  
                             
 
                              
                                  



                                  
                     
 
                         
                                                     
                                   
                                                                               
                  

                                 
 
                           
                                    
                  
                                   
 
                                      
                                  
                                  
                 

                           
 
                    
                                                       
                              
                  
                           
 
                                     
                                     

                              

                          
 
                               
                                          
                                           
                                                                 
                  



                                             
 
                             
                                    

                                 
                                       
 
     

                                        
                                                                   


                                                                             
                  

                            
              
 
                                                         

                                                        
                                                                               
                                                                   
                                                   
                 
                  
                          
 
                                  
                                               
                                  
                                                            

                                                                                  
                  
                   
                     
 














                                                                                  







































                                                             
                                           
                                            
                 

                                          
 
             
                                                        
                                                
                                               
                                                                   
                                                    
                  


                          
 
                                 

                                                 

                              

                                               
 
               
                                   



                                                     

                                           
 
                    
                                                     


                                                               

                                              
 
                              
                                             
                  
                                   
 
             

                                           


                         
                 
                                           
                                                                   
                                  
                  
                        
 
                               
                                        
                 
                             

                                         
              
                                     
                                

                             
                                      

                               
                                     
 
       
                                     

                              


                                   
 
      
                                        
                                
                               
                                                          
                                                                           
                 
                         
                
                   
 
              


                                         

                                           






                               

             
                                

                                            

                              

               
                                             
                  


                                             
 
                              
                                                
                  


                                           
 
             
                                          

                              


                               
 
                       

                                                    

                                          
                         
 
                      

                                                     

                              
                           
 
                                 
                                         
                 
                            
 
                              
                                       
                  
                    

                           
                                                         
                                            
                                           

                                          
                                                                      
                  
                                            
 
                               
                                    
                  


                                  
 
                                  
                                                 



                                                                   
                  

                                                     


                                             
                                                          
                  


                             
 
                   
                                          
                                                           

                                             

                                         
 
                      

                                                         



                                                                                                    
                                                                                      
                  
                        
 

                                                          
                                           


                                             
                          
                                           
              
                                           

                  
                                                  


                                          

                               
 
               
                                       
                  
                                   
 
                        
                                       




                                
                 

                                                  
                                    
                                               
                             
                                                                         
                  
                         
 













                                                                                            
               
                                        
                                                                           

                  
         


                                                                   




                                    
 
                     

                                                  

                              
                          

              
                                             


                                       

                                           
 
                      
                                                  
                  

                          
 
                   
                                               

                                  
                              
 
                       
                                              
                                               
                                     
                                                 

                                                         

                                           
 
                       
                                       


                                                   
                       
 
                                  
                                                   


                                         
              
                               

                                        

                                         
 
              
                                             
                  

                                         
 
                               
                                           

                                 



                                     

                           
 





                                    
                    
                                    

                            


                             
 
                           
                                              

                                           
                                               
                  
                        

                               
 
              
                                          
                                 
                  

                                   

                        
                                         
                                 
                 
                          
 
                       
                                          
                                 
                  

                               
 
                         
                                           

                                 
                           
 
                         
                                           
                              

                                       
                                
 
                         
                                       


                                          
                                
 
               
                                                        
                                 
                 

                                  
 
                      
                                                   
                                 
                                   
                                                                               

                                     
                                     
 
                               
                                                        
                                 

                                       

                                 
 
                                                                 
                                     
                                 
                                                                       
                  

                                    
 
                  
                                       
                                 
                  

                                   
 
                       
                                          
                                 
                  
                                       

                       
                                                     
                                 
                                            

                                                        
                            

               
                                                        
                                 
                 

                                  
 
                      
                                               
                                 
                  
                                   
 
                
                                              
                                 

                                      
                                   

                  
                                                    
                                 
                              

                                        
                                 
 
                          
                                         
                                 
                 
                                 

                  
                                                    
                                 
                              

                                        
                                 

                
                                         
                                 

                                              

                                           
 
                               
                                                 
                                 
                  
                                      

                            
                                         
                                 


                                    
                                       
 
                           
                                                                   

                                                              
                                      

                                 

                                                 
                                 
                  
                                            

                 
                                           
                                 
                 



                                        
 
                                           
                                            
                                 
                  
                                  

                         
                                           
                                 

                                   
                                    

                           
                                                    
                                 

                                  
                                     
 
                            
                                                      

                              
                                  
 
                  
                                                   
                                 
                                   
                                                                               

                                     

                                             

             
                                           
                                 
                                
                                                                   
                 




                           

               
                                              
                                 
                  
                              
 
                             
                                                        
                              
                                       
                  

                                  
 
               
                                                     
                                                           
                                   
                                                                               
                                        
                  
                                
 
                     
                                                   
                                 
                                   
                                                                               

                                     

                                             
 
                                      
                                                  

                                      
                                         
 
               
                                                   

                                 

                                    
 
                 
                                                   
                                 
                                   
                                                                               

                                     

                                            
 
                 
                                      
                                             
              
                                     
 
                  
                                           
                                 
                                   
                                                                               

                                         

                                             
 
                     
                                     



                                                   



                          
 
                   

                                           
                  


                                            
 
                     
                                   

                                              
                                                                              

                  
              
                                             
                                   

                                                      

                                    
 
                         
                                                    
                  

                                          
 






                                                 








                                             
                        
                                     
                  
                               
 
                   
                                         
                                 
                  

                                           
 
                                 

                                              


                                    
                                             

                                             
                                   
                  
                          
 
                           
                                              

                              
                                  
 
             
                                         

                              


                                
 
         
                                              




                                       
                              




                                                 
 







                                                 
                                       

                                                        
                                                  
                                        
                                                                             
                 

                                
 
                              
                                          

                                 

                                  
 
                              
                                               

                                 
                              
 
                      
                                              
                  

                         
 
                                  
                                           
                                 
                  

                                   
 
                                 
                                           

                                 

                                  
 
                                     
                                        
                  
                               
 
                       
                                        

                                      
                                                                                    
                  


                                
 
                  
                                             

                                  
                             
 
                  
                                           


                                        
           
                                                             




                             
                                    
                                           
                              
                  

                           

                                     
 
                            
                                      
                  
                                         
 
                      
                                      



                                                                                       









                                                                                       
 
                                  
                                                          
                                      
                                              
                  
                                    
 
                          

                                                        



                                                             

                                        
 
                                     
                                                        


                                                                 
                                  




                                 
                                          
                                    
                                 
                                 


                                 
 
                  
                                               
                                 
                 


                                     
 
                                    


                                            
                      
                                                                               
                  

                          
 


                                           
                                                                                        


                            
                        

                                                  


                                     




                                 
 

                            
                                   
                               
                       
                                       
                                         
                 

                                         
 
                       
                                                
                                
                  
                               
 
                             
                                           

                                    
                                 
 
                    
                                          

                                  

                                 
 
                    
                                               

                                 

                                       
 
                      
                                       



                                  


                                             
 
                        

                                           
                                               
                                      

                                                            
                                      
 
                              
                                         
                                   
                                                  

                                               
                                  
 
                                  
                                                  
                  
                           
 
        
                                                      
                                    
                                                      
                                                                                
                                 

          

	List of maintainers and how to submit kernel changes

Please try to follow the guidelines below.  This will make things
easier on the maintainers.  Not all of these guidelines matter for every
trivial patch so apply some common sense.

1.	Always _test_ your changes, however small, on at least 4 or
	5 people, preferably many more.

2.	Try to release a few ALPHA test versions to the net. Announce
	them onto the kernel channel and await results. This is especially
	important for device drivers, because often that's the only way
	you will find things like the fact version 3 firmware needs
	a magic fix you didn't know about, or some clown changed the
	chips on a board and not its name.  (Don't laugh!  Look at the
	SMC etherpower for that.)

3.	Make sure your changes compile correctly in multiple
	configurations. In particular check that changes work both as a
	module and built into the kernel.

4.	When you are happy with a change make it generally available for
	testing and await feedback.

5.	Make a patch available to the relevant maintainer in the list. Use
	'diff -u' to make the patch easy to merge. Be prepared to get your
	changes sent back with seemingly silly requests about formatting
	and variable names.  These aren't as silly as they seem. One
	job the maintainers (and especially Linus) do is to keep things
	looking the same. Sometimes this means that the clever hack in
	your driver to get around a problem actually needs to become a
	generalized kernel feature ready for next time.

	PLEASE check your patch with the automated style checker
	(scripts/checkpatch.pl) to catch trival style violations.
	See Documentation/CodingStyle for guidance here.

	PLEASE CC: the maintainers and mailing lists that are generated
	by scripts/get_maintainer.pl.  The results returned by the
	script will be best if you have git installed and are making
	your changes in a branch derived from Linus' latest git tree.
	See Documentation/SubmittingPatches for details.

	PLEASE try to include any credit lines you want added with the
	patch. It avoids people being missed off by mistake and makes
	it easier to know who wants adding and who doesn't.

	PLEASE document known bugs. If it doesn't work for everything
	or does something very odd once a month document it.

	PLEASE remember that submissions must be made under the terms
	of the OSDL certificate of contribution and should include a
	Signed-off-by: line.  The current version of this "Developer's
	Certificate of Origin" (DCO) is listed in the file
	Documentation/SubmittingPatches.

6.	Make sure you have the right to send any changes you make. If you
	do changes at work you may find your employer owns the patch
	not you.

7.	When sending security related changes or reports to a maintainer
	please Cc: security@kernel.org, especially if the maintainer
	does not respond.

8.	Happy hacking.

Descriptions of section entries:

	P: Person (obsolete)
	M: Mail patches to: FullName <address@domain>
	L: Mailing list that is relevant to this area
	W: Web-page with status/info
	Q: Patchwork web based patch tracking system site
	T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit.
	S: Status, one of the following:
	   Supported:	Someone is actually paid to look after this.
	   Maintained:	Someone actually looks after it.
	   Odd Fixes:	It has a maintainer but they don't have time to do
			much other than throw the odd patch in. See below..
	   Orphan:	No current maintainer [but maybe you could take the
			role as you write your new code].
	   Obsolete:	Old code. Something tagged obsolete generally means
			it has been replaced by a better system and you
			should be using that.
	F: Files and directories with wildcard patterns.
	   A trailing slash includes all files and subdirectory files.
	   F:	drivers/net/	all files in and below drivers/net
	   F:	drivers/net/*	all files in drivers/net, but not below
	   F:	*/net/*		all files in "any top level directory"/net
	   One pattern per line.  Multiple F: lines acceptable.
	X: Files and directories that are NOT maintained, same rules as F:
	   Files exclusions are tested before file matches.
	   Can be useful for excluding a specific subdirectory, for instance:
	   F:	net/
	   X:	net/ipv6/
	   matches all files in and below net excluding net/ipv6/
	K: Keyword perl extended regex pattern to match content in a
	   patch or file.  For instance:
	   K: of_get_profile
	      matches patches or files that contain "of_get_profile"
	   K: \b(printk|pr_(info|err))\b
	      matches patches or files that contain one or more of the words
	      printk, pr_info or pr_err
	   One regex pattern per line.  Multiple K: lines acceptable.

Note: For the hard of thinking, this list is meant to remain in alphabetical
order. If you could add yourselves to it in alphabetical order that would be
so much easier [Ed]

Maintainers List (try to look for most precise areas first)

		-----------------------------------

3C505 NETWORK DRIVER
M:	Philip Blundell <philb@gnu.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/3c505*

3C59X NETWORK DRIVER
M:	Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
L:	netdev@vger.kernel.org
S:	Maintained
F:	Documentation/networking/vortex.txt
F:	drivers/net/3c59x.c

3CR990 NETWORK DRIVER
M:	David Dillow <dave@thedillows.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/typhoon*

3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
M:	Adam Radford <linuxraid@lsi.com>
L:	linux-scsi@vger.kernel.org
W:	http://www.lsi.com
S:	Supported
F:	drivers/scsi/3w-*

53C700 AND 53C700-66 SCSI DRIVER
M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/53c700*

6PACK NETWORK DRIVER FOR AX.25
M:	Andreas Koensgen <ajk@comnets.uni-bremen.de>
L:	linux-hams@vger.kernel.org
S:	Maintained
F:	drivers/net/hamradio/6pack.c

8169 10/100/1000 GIGABIT ETHERNET DRIVER
M:	Francois Romieu <romieu@fr.zoreil.com>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/r8169.c

8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
L:	linux-serial@vger.kernel.org
W:	http://serial.sourceforge.net
S:	Orphan
F:	drivers/serial/8250*
F:	include/linux/serial_8250.h

8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
M:	Paul Gortmaker <p_gortmaker@yahoo.com>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/*8390*
F:	drivers/net/ax88796.c

9P FILE SYSTEM
M:	Eric Van Hensbergen <ericvh@gmail.com>
M:	Ron Minnich <rminnich@sandia.gov>
M:	Latchesar Ionkov <lucho@ionkov.net>
L:	v9fs-developer@lists.sourceforge.net
W:	http://swik.net/v9fs
Q:	http://patchwork.kernel.org/project/v9fs-devel/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
S:	Maintained
F:	Documentation/filesystems/9p.txt
F:	fs/9p/

A2232 SERIAL BOARD DRIVER
M:	Enver Haase <A2232@gmx.net>
L:	linux-m68k@lists.linux-m68k.org
S:	Maintained
F:	drivers/char/ser_a2232*

AACRAID SCSI RAID DRIVER
M:	Adaptec OEM Raid Solutions <aacraid@adaptec.com>
L:	linux-scsi@vger.kernel.org
W:	http://www.adaptec.com/
S:	Supported
F:	Documentation/scsi/aacraid.txt
F:	drivers/scsi/aacraid/

ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
M:	Hans de Goede <j.w.r.degoede@hhs.nl>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/abituguru.c

ABIT UGURU 3 HARDWARE MONITOR DRIVER
M:	Alistair John Strachan <alistair@devzero.co.uk>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/abituguru3.c

ACENIC DRIVER
M:	Jes Sorensen <jes@trained-monkey.org>
L:	linux-acenic@sunsite.dk
S:	Maintained
F:	drivers/net/acenic*

ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
M:	Peter Feuerer <peter@piie.net>
L:	platform-driver-x86@vger.kernel.org
W:	http://piie.net/?section=acerhdf
S:	Maintained
F:	drivers/platform/x86/acerhdf.c

ACER WMI LAPTOP EXTRAS
M:	Carlos Corbacho <carlos@strangeworlds.co.uk>
L:	aceracpi@googlegroups.com (subscribers-only)
L:	platform-driver-x86@vger.kernel.org
W:	http://code.google.com/p/aceracpi
S:	Maintained
F:	drivers/platform/x86/acer-wmi.c

ACPI
M:	Len Brown <lenb@kernel.org>
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
Q:	http://patchwork.kernel.org/project/linux-acpi/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git
S:	Supported
F:	drivers/acpi/
F:	drivers/pnp/pnpacpi/
F:	include/linux/acpi.h
F:	include/acpi/

ACPI BATTERY DRIVERS
M:	Alexey Starikovskiy <astarikovskiy@suse.de>
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Supported
F:	drivers/acpi/battery.c
F:	drivers/acpi/*sbs*

ACPI EC DRIVER
M:	Alexey Starikovskiy <astarikovskiy@suse.de>
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Supported
F:	drivers/acpi/ec.c

ACPI FAN DRIVER
M:	Zhang Rui <rui.zhang@intel.com>
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Supported
F:	drivers/acpi/fan.c

ACPI PROCESSOR AGGREGATOR DRIVER
M:	Shaohua Li <shaohua.li@intel.com>
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Supported
F:	drivers/acpi/acpi_pad.c

ACPI THERMAL DRIVER
M:	Zhang Rui <rui.zhang@intel.com>
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Supported
F:	drivers/acpi/*thermal*

ACPI VIDEO DRIVER
M:	Zhang Rui <rui.zhang@intel.com>
L:	linux-acpi@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Supported
F:	drivers/acpi/video.c

ACPI WMI DRIVER
M:	Carlos Corbacho <carlos@strangeworlds.co.uk>
L:	platform-driver-x86@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Maintained
F:	drivers/platform/x86/wmi.c

AD1889 ALSA SOUND DRIVER
M:	Kyle McMartin <kyle@mcmartin.ca>
M:	Thibaut Varene <T-Bone@parisc-linux.org>
W:	http://wiki.parisc-linux.org/AD1889
L:	linux-parisc@vger.kernel.org
S:	Maintained
F:	sound/pci/ad1889.*

ADM1025 HARDWARE MONITOR DRIVER
M:	Jean Delvare <khali@linux-fr.org>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/adm1025
F:	drivers/hwmon/adm1025.c

ADM1029 HARDWARE MONITOR DRIVER
M:	Corentin Labbe <corentin.labbe@geomatys.fr>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/adm1029.c

ADM8211 WIRELESS DRIVER
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/
S:	Orphan
F:	drivers/net/wireless/adm8211.*

ADT746X FAN DRIVER
M:	Colin Leroy <colin@colino.net>
S:	Maintained
F:	drivers/macintosh/therm_adt746x.c

ADT7475 HARDWARE MONITOR DRIVER
M:	Jean Delvare <khali@linux-fr.org>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/adt7475
F:	drivers/hwmon/adt7475.c

ADVANSYS SCSI DRIVER
M:	Matthew Wilcox <matthew@wil.cx>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	Documentation/scsi/advansys.txt
F:	drivers/scsi/advansys.c

AEDSP16 DRIVER
M:	Riccardo Facchetti <fizban@tin.it>
S:	Maintained
F:	sound/oss/aedsp16.c

AFFS FILE SYSTEM
M:	Roman Zippel <zippel@linux-m68k.org>
S:	Maintained
F:	Documentation/filesystems/affs.txt
F:	fs/affs/

AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
M:	David Howells <dhowells@redhat.com>
L:	linux-afs@lists.infradead.org
S:	Supported
F:	fs/afs/
F:	include/net/af_rxrpc.h
F:	net/rxrpc/af_rxrpc.c

AGPGART DRIVER
M:	David Airlie <airlied@linux.ie>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
S:	Maintained
F:	drivers/char/agp/
F:	include/linux/agp*

AHA152X SCSI DRIVER
M:	"Juergen E. Fischer" <fischer@norbit.de>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/aha152x*
F:	drivers/scsi/pcmcia/aha152x*

AIC7XXX / AIC79XX SCSI DRIVER
M:	Hannes Reinecke <hare@suse.de>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/aic7xxx/
F:	drivers/scsi/aic7xxx_old/

AIO
M:	Benjamin LaHaise <bcrl@kvack.org>
L:	linux-aio@kvack.org
S:	Supported
F:	fs/aio.c
F:	include/linux/*aio*.h

ALCATEL SPEEDTOUCH USB DRIVER
M:	Duncan Sands <duncan.sands@free.fr>
L:	linux-usb@vger.kernel.org
W:	http://www.linux-usb.org/SpeedTouch/
S:	Maintained
F:	drivers/usb/atm/speedtch.c
F:	drivers/usb/atm/usbatm.c

ALCHEMY AU1XX0 MMC DRIVER
M:	Manuel Lauss <manuel.lauss@gmail.com>
S:	Maintained
F:	drivers/mmc/host/au1xmmc.c

ALI1563 I2C DRIVER
M:	Rudolf Marek <r.marek@assembler.cz>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	Documentation/i2c/busses/i2c-ali1563
F:	drivers/i2c/busses/i2c-ali1563.c

ALPHA PORT
M:	Richard Henderson <rth@twiddle.net>
M:	Ivan Kokshaysky <ink@jurassic.park.msu.ru>
M:	Matt Turner <mattst88@gmail.com>
L:	linux-alpha@vger.kernel.org
F:	arch/alpha/

AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
M:	Thomas Dahlmann <dahlmann.thomas@arcor.de>
L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
S:	Supported
F:	drivers/usb/gadget/amd5536udc.*

AMD GEODE PROCESSOR/CHIPSET SUPPORT
P:	Jordan Crouse
L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
W:	http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
S:	Supported
F:	drivers/char/hw_random/geode-rng.c
F:	drivers/crypto/geode*
F:	drivers/video/geode/
F:	arch/x86/include/asm/geode.h

AMD IOMMU (AMD-VI)
M:	Joerg Roedel <joerg.roedel@amd.com>
L:	iommu@lists.linux-foundation.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git
S:	Supported
F:	arch/x86/kernel/amd_iommu*.c
F:	arch/x86/include/asm/amd_iommu*.h

AMD MICROCODE UPDATE SUPPORT
M:	Andreas Herrmann <andreas.herrmann3@amd.com>
L:	amd64-microcode@amd64.org
S:	Supported
F:	arch/x86/kernel/microcode_amd.c

AMS (Apple Motion Sensor) DRIVER
M:	Stelian Pop <stelian@popies.net>
M:	Michael Hanselmann <linux-kernel@hansmi.ch>
S:	Supported
F:	drivers/hwmon/ams/

AMSO1100 RNIC DRIVER
M:	Tom Tucker <tom@opengridcomputing.com>
M:	Steve Wise <swise@opengridcomputing.com>
L:	linux-rdma@vger.kernel.org
S:	Maintained
F:	drivers/infiniband/hw/amso1100/

AOA (Apple Onboard Audio) ALSA DRIVER
M:	Johannes Berg <johannes@sipsolutions.net>
L:	linuxppc-dev@ozlabs.org
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
S:	Maintained
F:	sound/aoa/

APM DRIVER
M:	Stephen Rothwell <sfr@canb.auug.org.au>
L:	linux-laptop@vger.kernel.org
W:	http://www.canb.auug.org.au/~sfr/
S:	Supported
F:	arch/x86/kernel/apm_32.c
F:	include/linux/apm_bios.h

APPLE BCM5974 MULTITOUCH DRIVER
M:	Henrik Rydberg <rydberg@euromail.se>
L:	linux-input@vger.kernel.org
S:	Maintained
F:	drivers/input/mouse/bcm5974.c

APPLE SMC DRIVER
M:	Henrik Rydberg <rydberg@euromail.se>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/applesmc.c

APPLETALK NETWORK LAYER
M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
S:	Maintained
F:	drivers/net/appletalk/
F:	net/appletalk/

ARC FRAMEBUFFER DRIVER
M:	Jaya Kumar <jayalk@intworks.biz>
S:	Maintained
F:	drivers/video/arcfb.c
F:	drivers/video/fb_defio.c

ARM MFM AND FLOPPY DRIVERS
M:	Ian Molton <spyro@f2s.com>
S:	Maintained
F:	arch/arm/lib/floppydma.S
F:	arch/arm/include/asm/floppy.h

ARM PORT
M:	Russell King <linux@arm.linux.org.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/

ARM PRIMECELL AACI PL041 DRIVER
M:	Russell King <linux@arm.linux.org.uk>
S:	Maintained
F:	sound/arm/aaci.*

ARM PRIMECELL CLCD PL110 DRIVER
M:	Russell King <linux@arm.linux.org.uk>
S:	Maintained
F:	drivers/video/amba-clcd.*

ARM PRIMECELL KMI PL050 DRIVER
M:	Russell King <linux@arm.linux.org.uk>
S:	Maintained
F:	drivers/input/serio/ambakmi.*
F:	include/linux/amba/kmi.h

ARM PRIMECELL MMCI PL180/1 DRIVER
S:	Orphan
F:	drivers/mmc/host/mmci.*

ARM PRIMECELL BUS SUPPORT
M:	Russell King <linux@arm.linux.org.uk>
S:	Maintained
F:	drivers/amba/
F:	include/linux/amba/bus.h

ARM/ADI ROADRUNNER MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-ixp23xx/
F:	arch/arm/mach-ixp23xx/include/mach/

ARM/ADS SPHERE MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/AFEB9260 MACHINE SUPPORT
M:	Sergey Lapin <slapin@ossfans.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/AJECO 1ARM MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/ATMEL AT91RM9200 ARM ARCHITECTURE
M:	Andrew Victor <linux@maxim.org.za>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://maxim.org.za/at91_26.html
S:	Maintained

ARM/BCMRING ARM ARCHITECTURE
M:	Leo Chen <leochen@broadcom.com>
M:	Scott Branden <sbranden@broadcom.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-bcmring

ARM/BCMRING MTD NAND DRIVER
M:	Leo Chen <leochen@broadcom.com>
M:	Scott Branden <sbranden@broadcom.com>
L:	linux-mtd@lists.infradead.org
S:	Maintained
F:	drivers/mtd/nand/bcm_umi_nand.c
F:	drivers/mtd/nand/bcm_umi_bch.c
F:	drivers/mtd/nand/bcm_umi_hamming.c
F:	drivers/mtd/nand/nand_bcm_umi.h

ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
M:	Anton Vorontsov <avorontsov@mvista.com>
S:	Maintained
F:	arch/arm/mach-cns3xxx/
T:	git git://git.infradead.org/users/cbou/linux-cns3xxx.git

ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
M:	Hartley Sweeten <hsweeten@visionengravers.com>
M:	Ryan Mallon <ryan@bluewatersys.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-ep93xx/
F:	arch/arm/mach-ep93xx/include/mach/

ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/CLKDEV SUPPORT
M:	Russell King <linux@arm.linux.org.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
F:	arch/arm/common/clkdev.c
F:	arch/arm/include/asm/clkdev.h

ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
M:	Mike Rapoport <mike@compulab.co.il>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/CONTEC MICRO9 MACHINE SUPPORT
M:	Hubert Feurstein <hubert.feurstein@contec.at>
S:	Maintained
F:	arch/arm/mach-ep93xx/micro9.c

ARM/CORGI MACHINE SUPPORT
M:	Richard Purdie <rpurdie@rpsys.net>
S:	Maintained

ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
M:	Paulius Zaleckas <paulius.zaleckas@gmail.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
T:	git git://gitorious.org/linux-gemini/mainline.git
S:	Odd Fixes
F:	arch/arm/mach-gemini/

ARM/EBSA110 MACHINE SUPPORT
M:	Russell King <linux@arm.linux.org.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/mach-ebsa110/
F:	drivers/net/arm/am79c961a.*

ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
M:	Daniel Ribeiro <drwyrm@gmail.com>
M:	Stefan Schmidt <stefan@openezx.org>
M:	Harald Welte <laforge@openezx.org>
L:	openezx-devel@lists.openezx.org (subscribers-only)
W:	http://www.openezx.org/
S:	Maintained
T:	topgit git://git.openezx.org/openezx.git
F:	arch/arm/mach-pxa/ezx.c

ARM/FARADAY FA526 PORT
M:	Paulius Zaleckas <paulius.zaleckas@gmail.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Odd Fixes
F:	arch/arm/mm/*-fa*

ARM/FOOTBRIDGE ARCHITECTURE
M:	Russell King <linux@arm.linux.org.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/include/asm/hardware/dec21285.h
F:	arch/arm/mach-footbridge/

ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
M:	Sascha Hauer <kernel@pengutronix.de>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
T:	git://git.pengutronix.de/git/imx/linux-2.6.git
F:	arch/arm/mach-mx*/
F:	arch/arm/plat-mxc/

ARM/FREESCALE IMX51
M:	Amit Kucheria <amit.kucheria@canonical.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-mx5/

ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/GUMSTIX MACHINE SUPPORT
M:	Steve Sakoman <sakoman@gmail.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
M:	Philipp Zabel <philipp.zabel@gmail.com>
S:	Maintained
F:	arch/arm/mach-pxa/hx4700.c
F:	arch/arm/mach-pxa/include/mach/hx4700.h

ARM/HP JORNADA 7XX MACHINE SUPPORT
M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
W:	www.jlime.com
S:	Maintained
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
F:	arch/arm/mach-sa1100/jornada720.c
F:	arch/arm/mach-sa1100/include/mach/jornada720.h

ARM/INTEL IOP32X ARM ARCHITECTURE
M:	Lennert Buytenhek <kernel@wantstofly.org>
M:	Dan Williams <dan.j.williams@intel.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/INTEL IOP33X ARM ARCHITECTURE
M:	Dan Williams <dan.j.williams@intel.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/INTEL IOP13XX ARM ARCHITECTURE
M:	Lennert Buytenhek <kernel@wantstofly.org>
M:	Dan Williams <dan.j.williams@intel.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/INTEL IQ81342EX MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
M:	Dan Williams <dan.j.williams@intel.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/INTEL IXP2000 ARM ARCHITECTURE
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/INTEL IXDP2850 MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/INTEL IXP23XX ARM ARCHITECTURE
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/INTEL IXP4XX ARM ARCHITECTURE
M:	Imre Kaloz <kaloz@openwrt.org>
M:	Krzysztof Halasa <khc@pm.waw.pl>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-ixp4xx/

ARM/INTEL RESEARCH IMOTE 2 MACHINE SUPPORT
M:	Jonathan Cameron <jic23@cam.ac.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-pxa/imote2.c

ARM/INTEL RESEARCH STARGATE 2 MACHINE SUPPORT
M:	Jonathan Cameron <jic23@cam.ac.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-pxa/stargate2.c
F:	drivers/pcmcia/pxa2xx_stargate2.c

ARM/INTEL XSC3 (MANZANO) ARM CORE
M:	Lennert Buytenhek <kernel@wantstofly.org>
M:	Dan Williams <dan.j.williams@intel.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/LOGICPD PXA270 MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/MAGICIAN MACHINE SUPPORT
M:	Philipp Zabel <philipp.zabel@gmail.com>
S:	Maintained

ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support
M:	Lennert Buytenhek <kernel@wantstofly.org>
M:	Nicolas Pitre <nico@fluxnic.net>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Odd Fixes
F:	arch/arm/mach-loki/
F:	arch/arm/mach-kirkwood/
F:	arch/arm/mach-mv78xx0/
F:	arch/arm/mach-orion5x/
F:	arch/arm/plat-orion/

ARM/MIOA701 MACHINE SUPPORT
M:	Robert Jarzmik <robert.jarzmik@free.fr>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
F:	arch/arm/mach-pxa/mioa701.c
S:	Maintained

ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
M:	Michael Petchkovsky <mkpetch@internode.on.net>
S:	Maintained

ARM/NOMADIK ARCHITECTURE
M:	Alessandro Rubini <rubini@unipv.it>
M:	STEricsson <STEricsson_nomadik_linux@list.st.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-nomadik/
F:	arch/arm/plat-nomadik/

ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
M:	Nelson Castillo <arhuaco@freaks-unidos.net>
L:	openmoko-kernel@lists.openmoko.org (subscribers-only)
W:	http://wiki.openmoko.org/wiki/Neo_FreeRunner
S:	Supported

ARM/QUALCOMM MSM MACHINE SUPPORT
M:	David Brown <davidb@codeaurora.org>
M:	Daniel Walker <dwalker@codeaurora.org>
M:	Bryan Huntsman <bryanh@codeaurora.org>
L:	linux-arm-msm@vger.kernel.org
F:	arch/arm/mach-msm/
F:	drivers/video/msm/
F:	drivers/mmc/host/msm_sdcc.c
F:	drivers/mmc/host/msm_sdcc.h
F:	drivers/serial/msm_serial.h
F:	drivers/serial/msm_serial.c
T:	git git://codeaurora.org/quic/kernel/dwalker/linux-msm.git
S:	Maintained

ARM/TOSA MACHINE SUPPORT
M:	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
M:	Dirk Opfer <dirk@opfer-online.de>
S:	Maintained

ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
M:	Marek Vasut <marek.vasut@gmail.com>
L:	linux-arm-kernel@lists.infradead.org
W:	http://hackndev.com
S:	Maintained
F:	arch/arm/mach-pxa/include/mach/palmtx.h
F:	arch/arm/mach-pxa/palmtx.c
F:	arch/arm/mach-pxa/include/mach/palmt5.h
F:	arch/arm/mach-pxa/palmt5.c
F:	arch/arm/mach-pxa/include/mach/palmld.h
F:	arch/arm/mach-pxa/palmld.c
F:	arch/arm/mach-pxa/include/mach/palmte2.h
F:	arch/arm/mach-pxa/palmte2.c
F:	arch/arm/mach-pxa/include/mach/palmtc.h
F:	arch/arm/mach-pxa/palmtc.c

ARM/PALM TREO SUPPORT
M:	Tomas Cech <sleep_walker@suse.cz>
L:	linux-arm-kernel@lists.infradead.org
W:	http://hackndev.com
S:	Maintained
F:	arch/arm/mach-pxa/include/mach/palmtreo.h
F:	arch/arm/mach-pxa/palmtreo.c

ARM/PALMZ72 SUPPORT
M:	Sergey Lapin <slapin@ossfans.org>
L:	linux-arm-kernel@lists.infradead.org
W:	http://hackndev.com
S:	Maintained
F:	arch/arm/mach-pxa/include/mach/palmz72.h
F:	arch/arm/mach-pxa/palmz72.c

ARM/PLEB SUPPORT
M:	Peter Chubb <pleb@gelato.unsw.edu.au>
W:	http://www.disy.cse.unsw.edu.au/Hardware/PLEB
S:	Maintained

ARM/PT DIGITAL BOARD PORT
M:	Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.arm.linux.org.uk/
S:	Maintained

ARM/RADISYS ENP2611 MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/RISCPC ARCHITECTURE
M:	Russell King <linux@arm.linux.org.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/common/time-acorn.c
F:	arch/arm/include/asm/hardware/entry-macro-iomd.S
F:	arch/arm/include/asm/hardware/ioc.h
F:	arch/arm/include/asm/hardware/iomd.h
F:	arch/arm/include/asm/hardware/memc.h
F:	arch/arm/mach-rpc/
F:	drivers/net/arm/ether*
F:	drivers/scsi/arm/

ARM/SHARK MACHINE SUPPORT
M:	Alexander Schulz <alex@shark-linux.de>
W:	http://www.shark-linux.de/shark.html
S:	Maintained

ARM/SAMSUNG ARM ARCHITECTURES
M:	Ben Dooks <ben-linux@fluff.org>
M:	Kukjin Kim <kgene.kim@samsung.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.fluff.org/ben/linux/
S:	Maintained
F:	arch/arm/plat-samsung/
F:	arch/arm/plat-s3c24xx/
F:	arch/arm/plat-s5p/

ARM/S3C2410 ARM ARCHITECTURE
M:	Ben Dooks <ben-linux@fluff.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.fluff.org/ben/linux/
S:	Maintained
F:	arch/arm/mach-s3c2410/

ARM/S3C2440 ARM ARCHITECTURE
M:	Ben Dooks <ben-linux@fluff.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.fluff.org/ben/linux/
S:	Maintained
F:	arch/arm/mach-s3c2440/

ARM/S3C2442 ARM ARCHITECTURE
M:	Ben Dooks <ben-linux@fluff.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.fluff.org/ben/linux/
S:	Maintained
F:	arch/arm/mach-s3c2442/

ARM/S3C2443 ARM ARCHITECTURE
M:	Ben Dooks <ben-linux@fluff.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.fluff.org/ben/linux/
S:	Maintained
F:	arch/arm/mach-s3c2443/

ARM/S3C6400 ARM ARCHITECTURE
M:	Ben Dooks <ben-linux@fluff.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.fluff.org/ben/linux/
S:	Maintained
F:	arch/arm/mach-s3c6400/

ARM/S3C6410 ARM ARCHITECTURE
M:	Ben Dooks <ben-linux@fluff.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.fluff.org/ben/linux/
S:	Maintained
F:	arch/arm/mach-s3c6410/

ARM/SHMOBILE ARM ARCHITECTURE
M:	Paul Mundt <lethal@linux-sh.org>
M:	Magnus Damm <magnus.damm@gmail.com>
L:	linux-sh@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/genesis-2.6.git
W:	http://oss.renesas.com
S:	Supported
F:	arch/arm/mach-shmobile/
F:	drivers/sh/

ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/THECUS N2100 MACHINE SUPPORT
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained

ARM/NUVOTON W90X900 ARM ARCHITECTURE
M:	Wan ZongShun <mcuos.com@gmail.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.mcuos.com
S:	Maintained
F:	arch/arm/mach-w90x900/
F:	arch/arm/mach-nuc93x/
F:	drivers/input/keyboard/w90p910_keypad.c
F:	drivers/input/touchscreen/w90p910_ts.c
F:	drivers/watchdog/nuc900_wdt.c
F:	drivers/net/arm/w90p910_ether.c
F:	drivers/mtd/nand/w90p910_nand.c
F:	drivers/rtc/rtc-nuc900.c
F:	drivers/spi/spi_nuc900.c
F:	drivers/usb/host/ehci-w90x900.c
F:	drivers/video/nuc900fb.c
F:	drivers/sound/soc/nuc900/

ARM/U300 MACHINE SUPPORT
M:	Linus Walleij <linus.walleij@stericsson.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Supported
F:	arch/arm/mach-u300/
F:	drivers/i2c/busses/i2c-stu300.c
F:	drivers/rtc/rtc-coh901331.c
F:	drivers/watchdog/coh901327_wdt.c
F:	drivers/dma/coh901318*

ARM/U8500 ARM ARCHITECTURE
M:	Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-ux500/

ARM/VFP SUPPORT
M:	Russell King <linux@arm.linux.org.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	arch/arm/vfp/

ARM/VOIPAC PXA270 SUPPORT
M:	Marek Vasut <marek.vasut@gmail.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-pxa/vpac270.c
F:	arch/arm/mach-pxa/include/mach-pxa/vpac270.h

ARM/ZIPIT Z2 SUPPORT
M:	Marek Vasut <marek.vasut@gmail.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-pxa/z2.c
F:	arch/arm/mach-pxa/include/mach-pxa/z2.h

ASC7621 HARDWARE MONITOR DRIVER
M:	George Joseph <george.joseph@fairview5.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/asc7621
F:	drivers/hwmon/asc7621.c

ASUS ACPI EXTRAS DRIVER
M:	Corentin Chary <corentincj@iksaif.net>
M:	Karol Kozimor <sziwan@users.sourceforge.net>
L:	acpi4asus-user@lists.sourceforge.net
L:	platform-driver-x86@vger.kernel.org
W:	http://acpi4asus.sf.net
S:	Maintained
F:	drivers/platform/x86/asus_acpi.c

ASUS ASB100 HARDWARE MONITOR DRIVER
M:	"Mark M. Hoffman" <mhoffman@lightlink.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/asb100.c

ASUS LAPTOP EXTRAS DRIVER
M:	Corentin Chary <corentincj@iksaif.net>
L:	acpi4asus-user@lists.sourceforge.net
L:	platform-driver-x86@vger.kernel.org
W:	http://acpi4asus.sf.net
S:	Maintained
F:	drivers/platform/x86/asus-laptop.c

ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
M:	Dan Williams <dan.j.williams@intel.com>
W:	http://sourceforge.net/projects/xscaleiop
S:	Supported
F:	Documentation/crypto/async-tx-api.txt
F:	crypto/async_tx/
F:	drivers/dma/
F:	include/linux/dmaengine.h
F:	include/linux/async_tx.h

AT24 EEPROM DRIVER
M:	Wolfram Sang <w.sang@pengutronix.de>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	drivers/misc/eeprom/at24.c
F:	include/linux/i2c/at24.h

ATA OVER ETHERNET (AOE) DRIVER
M:	"Ed L. Cashin" <ecashin@coraid.com>
W:	http://www.coraid.com/support/linux
S:	Supported
F:	Documentation/aoe/
F:	drivers/block/aoe/

ATHEROS ATH5K WIRELESS DRIVER
M:	Jiri Slaby <jirislaby@gmail.com>
M:	Nick Kossifidis <mickflemm@gmail.com>
M:	"Luis R. Rodriguez" <lrodriguez@atheros.com>
M:	Bob Copeland <me@bobcopeland.com>
L:	linux-wireless@vger.kernel.org
L:	ath5k-devel@lists.ath5k.org
W:	http://wireless.kernel.org/en/users/Drivers/ath5k
S:	Maintained
F:	drivers/net/wireless/ath/ath5k/

ATHEROS ATH9K WIRELESS DRIVER
M:	"Luis R. Rodriguez" <lrodriguez@atheros.com>
M:	Jouni Malinen <jmalinen@atheros.com>
M:	Sujith Manoharan <Sujith.Manoharan@atheros.com>
M:	Vasanthakumar Thiagarajan <vasanth@atheros.com>
M:	Senthil Balasubramanian <senthilkumar@atheros.com>
L:	linux-wireless@vger.kernel.org
L:	ath9k-devel@lists.ath9k.org
W:	http://wireless.kernel.org/en/users/Drivers/ath9k
S:	Supported
F:	drivers/net/wireless/ath/ath9k/

ATHEROS AR9170 WIRELESS DRIVER
M:	Christian Lamparter <chunkeey@web.de>
L:	linux-wireless@vger.kernel.org
W:	http://wireless.kernel.org/en/users/Drivers/ar9170
S:	Maintained
F:	drivers/net/wireless/ath/ar9170/

ATK0110 HWMON DRIVER
M:	Luca Tettamanti <kronos.it@gmail.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/asus_atk0110.c

ATI_REMOTE2 DRIVER
M:	Ville Syrjala <syrjala@sci.fi>
S:	Maintained
F:	drivers/input/misc/ati_remote2.c

ATLX ETHERNET DRIVERS
M:	Jay Cliburn <jcliburn@gmail.com>
M:	Chris Snook <chris.snook@gmail.com>
M:	Jie Yang <jie.yang@atheros.com>
L:	atl1-devel@lists.sourceforge.net
W:	http://sourceforge.net/projects/atl1
W:	http://atl1.sourceforge.net
S:	Maintained
F:	drivers/net/atlx/

ATM
M:	Chas Williams <chas@cmf.nrl.navy.mil>
L:	linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
L:	netdev@vger.kernel.org
W:	http://linux-atm.sourceforge.net
S:	Maintained
F:	drivers/atm/
F:	include/linux/atm*

ATMEL AT91 MCI DRIVER
M:	Nicolas Ferre <nicolas.ferre@atmel.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.atmel.com/products/AT91/
W:	http://www.at91.com/
S:	Maintained
F:	drivers/mmc/host/at91_mci.c

ATMEL AT91 / AT32 MCI DRIVER
M:	Nicolas Ferre <nicolas.ferre@atmel.com>
S:	Maintained
F:	drivers/mmc/host/atmel-mci.c
F:	drivers/mmc/host/atmel-mci-regs.h

ATMEL AT91 / AT32 SERIAL DRIVER
M:	Nicolas Ferre <nicolas.ferre@atmel.com>
S:	Supported
F:	drivers/serial/atmel_serial.c

ATMEL LCDFB DRIVER
M:	Nicolas Ferre <nicolas.ferre@atmel.com>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/atmel_lcdfb.c
F:	include/video/atmel_lcdc.h

ATMEL MACB ETHERNET DRIVER
M:	Nicolas Ferre <nicolas.ferre@atmel.com>
S:	Supported
F:	drivers/net/macb.*

ATMEL SPI DRIVER
M:	Nicolas Ferre <nicolas.ferre@atmel.com>
S:	Supported
F:	drivers/spi/atmel_spi.*

ATMEL USBA UDC DRIVER
M:	Nicolas Ferre <nicolas.ferre@atmel.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver
S:	Supported
F:	drivers/usb/gadget/atmel_usba_udc.*

ATMEL WIRELESS DRIVER
M:	Simon Kelley <simon@thekelleys.org.uk>
L:	linux-wireless@vger.kernel.org
W:	http://www.thekelleys.org.uk/atmel
W:	http://atmelwlandriver.sourceforge.net/
S:	Maintained
F:	drivers/net/wireless/atmel*

AUDIT SUBSYSTEM
M:	Al Viro <viro@zeniv.linux.org.uk>
M:	Eric Paris <eparis@redhat.com>
L:	linux-audit@redhat.com (subscribers-only)
W:	http://people.redhat.com/sgrubb/audit/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
S:	Maintained
F:	include/linux/audit.h
F:	kernel/audit*

AUXILIARY DISPLAY DRIVERS
M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
W:	http://miguelojeda.es/auxdisplay.htm
W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
S:	Maintained
F:	drivers/auxdisplay/
F:	include/linux/cfag12864b.h

AVR32 ARCHITECTURE
M:	Haavard Skinnemoen <hskinnemoen@atmel.com>
W:	http://www.atmel.com/products/AVR32/
W:	http://avr32linux.org/
W:	http://avrfreaks.net/
S:	Supported
F:	arch/avr32/

AVR32/AT32AP MACHINE SUPPORT
M:	Haavard Skinnemoen <hskinnemoen@atmel.com>
S:	Supported
F:	arch/avr32/mach-at32ap/

AX.25 NETWORK LAYER
M:	Ralf Baechle <ralf@linux-mips.org>
L:	linux-hams@vger.kernel.org
W:	http://www.linux-ax25.org/
S:	Maintained
F:	include/linux/ax25.h
F:	include/net/ax25.h
F:	net/ax25/

B43 WIRELESS DRIVER
M:	Stefano Brivio <stefano.brivio@polimi.it>
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/en/users/Drivers/b43
S:	Maintained
F:	drivers/net/wireless/b43/

B43LEGACY WIRELESS DRIVER
M:	Larry Finger <Larry.Finger@lwfinger.net>
M:	Stefano Brivio <stefano.brivio@polimi.it>
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/en/users/Drivers/b43
S:	Maintained
F:	drivers/net/wireless/b43legacy/

BACKLIGHT CLASS/SUBSYSTEM
M:	Richard Purdie <rpurdie@rpsys.net>
S:	Maintained
F:	drivers/video/backlight/
F:	include/linux/backlight.h

BAYCOM/HDLCDRV DRIVERS FOR AX.25
M:	Thomas Sailer <t.sailer@alumni.ethz.ch>
L:	linux-hams@vger.kernel.org
W:	http://www.baycom.org/~tom/ham/ham.html
S:	Maintained
F:	drivers/net/hamradio/baycom*

BEFS FILE SYSTEM
M:	"Sergey S. Kostyliov" <rathamahata@php4.ru>
S:	Maintained
F:	Documentation/filesystems/befs.txt
F:	fs/befs/

BFS FILE SYSTEM
M:	"Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
S:	Maintained
F:	Documentation/filesystems/bfs.txt
F:	fs/bfs/
F:	include/linux/bfs_fs.h

BLACKFIN ARCHITECTURE
M:	Mike Frysinger <vapier@gentoo.org>
L:	uclinux-dist-devel@blackfin.uclinux.org
W:	http://blackfin.uclinux.org
S:	Supported
F:	arch/blackfin/

BLACKFIN EMAC DRIVER
M:	Michael Hennerich <michael.hennerich@analog.com>
L:	uclinux-dist-devel@blackfin.uclinux.org
W:	http://blackfin.uclinux.org
S:	Supported
F:	drivers/net/bfin_mac.*

BLACKFIN RTC DRIVER
M:	Mike Frysinger <vapier.adi@gmail.com>
L:	uclinux-dist-devel@blackfin.uclinux.org
W:	http://blackfin.uclinux.org
S:	Supported
F:	drivers/rtc/rtc-bfin.c

BLACKFIN SDH DRIVER
M:	Cliff Cai <cliff.cai@analog.com>
L:	uclinux-dist-devel@blackfin.uclinux.org
W:	http://blackfin.uclinux.org
S:	Supported
F:	drivers/mmc/host/bfin_sdh.c

BLACKFIN SERIAL DRIVER
M:	Sonic Zhang <sonic.zhang@analog.com>
L:	uclinux-dist-devel@blackfin.uclinux.org
W:	http://blackfin.uclinux.org
S:	Supported
F:	drivers/serial/bfin_5xx.c

BLACKFIN WATCHDOG DRIVER
M:	Mike Frysinger <vapier.adi@gmail.com>
L:	uclinux-dist-devel@blackfin.uclinux.org
W:	http://blackfin.uclinux.org
S:	Supported
F:	drivers/watchdog/bfin_wdt.c

BLACKFIN I2C TWI DRIVER
M:	Sonic Zhang <sonic.zhang@analog.com>
L:	uclinux-dist-devel@blackfin.uclinux.org
W:	http://blackfin.uclinux.org/
S:	Supported
F:	drivers/i2c/busses/i2c-bfin-twi.c

BLOCK LAYER
M:	Jens Axboe <axboe@kernel.dk>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git
S:	Maintained
F:	block/

BLOCK2MTD DRIVER
M:	Joern Engel <joern@lazybastard.org>
L:	linux-mtd@lists.infradead.org
S:	Maintained
F:	drivers/mtd/devices/block2mtd.c

BLUETOOTH DRIVERS
M:	Marcel Holtmann <marcel@holtmann.org>
L:	linux-bluetooth@vger.kernel.org
W:	http://www.bluez.org/
S:	Maintained
F:	drivers/bluetooth/

BLUETOOTH SUBSYSTEM
M:	Marcel Holtmann <marcel@holtmann.org>
L:	linux-bluetooth@vger.kernel.org
W:	http://www.bluez.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.git
S:	Maintained
F:	net/bluetooth/
F:	include/net/bluetooth/

BONDING DRIVER
M:	Jay Vosburgh <fubar@us.ibm.com>
L:	bonding-devel@lists.sourceforge.net
W:	http://sourceforge.net/projects/bonding/
S:	Supported
F:	drivers/net/bonding/
F:	include/linux/if_bonding.h

BROADCOM B44 10/100 ETHERNET DRIVER
M:	Gary Zambrano <zambrano@broadcom.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/b44.*

BROADCOM BNX2 GIGABIT ETHERNET DRIVER
M:	Michael Chan <mchan@broadcom.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/bnx2.*
F:	drivers/net/bnx2_*

BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
M:	Eilon Greenstein <eilong@broadcom.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/bnx2x/

BROADCOM TG3 GIGABIT ETHERNET DRIVER
M:	Matt Carlson <mcarlson@broadcom.com>
M:	Michael Chan <mchan@broadcom.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/tg3.*

BROCADE BFA FC SCSI DRIVER
M:	Jing Huang <huangj@brocade.com>
L:	linux-scsi@vger.kernel.org
S:	Supported
F:	drivers/scsi/bfa/

BSG (block layer generic sg v4 driver)
M:	FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
L:	linux-scsi@vger.kernel.org
S:	Supported
F:	block/bsg.c
F:	include/linux/bsg.h

BT8XXGPIO DRIVER
M:	Michael Buesch <mb@bu3sch.de>
W:	http://bu3sch.de/btgpio.php
S:	Maintained
F:	drivers/gpio/bt8xxgpio.c

BTRFS FILE SYSTEM
M:	Chris Mason <chris.mason@oracle.com>
L:	linux-btrfs@vger.kernel.org
W:	http://btrfs.wiki.kernel.org/
Q:	http://patchwork.kernel.org/project/linux-btrfs/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git
S:	Maintained
F:	Documentation/filesystems/btrfs.txt
F:	fs/btrfs/

BTTV VIDEO4LINUX DRIVER
M:	Mauro Carvalho Chehab <mchehab@infradead.org>
L:	linux-media@vger.kernel.org
W:	http://linuxtv.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	Documentation/video4linux/bttv/
F:	drivers/media/video/bt8xx/bttv*

CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
M:	David Howells <dhowells@redhat.com>
L:	linux-cachefs@redhat.com
S:	Supported
F:	Documentation/filesystems/caching/cachefiles.txt
F:	fs/cachefiles/

CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
M:	Jonathan Corbet <corbet@lwn.net>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	Documentation/video4linux/cafe_ccic
F:	drivers/media/video/cafe_ccic*

CALGARY x86-64 IOMMU
M:	Muli Ben-Yehuda <muli@il.ibm.com>
M:	"Jon D. Mason" <jdmason@kudzu.us>
L:	discuss@x86-64.org
S:	Maintained
F:	arch/x86/kernel/pci-calgary_64.c
F:	arch/x86/kernel/tce_64.c
F:	arch/x86/include/asm/calgary.h
F:	arch/x86/include/asm/tce.h

CAN NETWORK LAYER
M:	Oliver Hartkopp <socketcan@hartkopp.net>
M:	Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
M:	Urs Thuermann <urs.thuermann@volkswagen.de>
L:	socketcan-core@lists.berlios.de
L:	netdev@vger.kernel.org
W:	http://developer.berlios.de/projects/socketcan/
S:	Maintained
F:	net/can/
F:	include/linux/can.h
F:	include/linux/can/core.h
F:	include/linux/can/bcm.h
F:	include/linux/can/raw.h

CAN NETWORK DRIVERS
M:	Wolfgang Grandegger <wg@grandegger.com>
L:	socketcan-core@lists.berlios.de
L:	netdev@vger.kernel.org
W:	http://developer.berlios.de/projects/socketcan/
S:	Maintained
F:	drivers/net/can/
F:	include/linux/can/dev.h
F:	include/linux/can/error.h
F:	include/linux/can/netlink.h
F:	include/linux/can/platform/

CELL BROADBAND ENGINE ARCHITECTURE
M:	Arnd Bergmann <arnd@arndb.de>
L:	linuxppc-dev@ozlabs.org
L:	cbe-oss-dev@ozlabs.org
W:	http://www.ibm.com/developerworks/power/cell/
S:	Supported
F:	arch/powerpc/include/asm/cell*.h
F:	arch/powerpc/include/asm/spu*.h
F:	arch/powerpc/oprofile/*cell*
F:	arch/powerpc/platforms/cell/

CEPH DISTRIBUTED FILE SYSTEM CLIENT
M:	Sage Weil <sage@newdream.net>
L:	ceph-devel@vger.kernel.org
W:	http://ceph.newdream.net/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
S:	Supported
F:	Documentation/filesystems/ceph.txt
F:	fs/ceph

CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
M:	David Vrabel <david.vrabel@csr.com>
L:	linux-usb@vger.kernel.org
S:	Supported
F:	Documentation/usb/WUSB-Design-overview.txt
F:	Documentation/usb/wusb-cbaf
F:	drivers/usb/host/hwa-hc.c
F:	drivers/usb/host/whci/
F:	drivers/usb/wusbcore/
F:	include/linux/usb/wusb*

CFAG12864B LCD DRIVER
M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
W:	http://miguelojeda.es/auxdisplay.htm
W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
S:	Maintained
F:	drivers/auxdisplay/cfag12864b.c
F:	include/linux/cfag12864b.h

CFAG12864BFB LCD FRAMEBUFFER DRIVER
M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
W:	http://miguelojeda.es/auxdisplay.htm
W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
S:	Maintained
F:	drivers/auxdisplay/cfag12864bfb.c
F:	include/linux/cfag12864b.h

CFG80211 and NL80211
M:	Johannes Berg <johannes@sipsolutions.net>
L:	linux-wireless@vger.kernel.org
S:	Maintained
F:	include/linux/nl80211.h
F:	include/net/cfg80211.h
F:	net/wireless/*
X:	net/wireless/wext*

CHECKPATCH
M:	Andy Whitcroft <apw@canonical.com>
S:	Supported
F:	scripts/checkpatch.pl

CISCO VIC ETHERNET NIC DRIVER
M:	Scott Feldman <scofeldm@cisco.com>
M:	Vasanthy Kolluri <vkolluri@cisco.com>
M:	Roopa Prabhu <roprabhu@cisco.com>
S:	Supported
F:	drivers/net/enic/

CIRRUS LOGIC EP93XX ETHERNET DRIVER
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/arm/ep93xx_eth.c

CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/host/ohci-ep93xx.c

CIRRUS LOGIC CS4270 SOUND DRIVER
M:	Timur Tabi <timur@freescale.com>
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
S:	Supported
F:	sound/soc/codecs/cs4270*

CLK API
M:	Russell King <linux@arm.linux.org.uk>
F:	include/linux/clk.h

CISCO FCOE HBA DRIVER
M:	Abhijeet Joglekar <abjoglek@cisco.com>
M:	Joe Eykholt <jeykholt@cisco.com>
L:	linux-scsi@vger.kernel.org
S:	Supported
F:	drivers/scsi/fnic/

CMPC ACPI DRIVER
M:	Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
M:	Daniel Oliveira Nascimento <don@syst.com.br>
L:	platform-driver-x86@vger.kernel.org
S:	Supported
F:	drivers/platform/x86/classmate-laptop.c

COCCINELLE/Semantic Patches (SmPL)
M:	Julia Lawall <julia@diku.dk>
M:	Gilles Muller <Gilles.Muller@lip6.fr>
M:	Nicolas Palix <npalix@diku.dk>
L:	cocci@diku.dk (moderated for non-subscribers)
W:	http://coccinelle.lip6.fr/
S:	Supported
F:	scripts/coccinelle/
F:	scripts/coccicheck

CODA FILE SYSTEM
M:	Jan Harkes <jaharkes@cs.cmu.edu>
M:	coda@cs.cmu.edu
L:	codalist@coda.cs.cmu.edu
W:	http://www.coda.cs.cmu.edu/
S:	Maintained
F:	Documentation/filesystems/coda.txt
F:	fs/coda/
F:	include/linux/coda*.h

COMMON INTERNET FILE SYSTEM (CIFS)
M:	Steve French <sfrench@samba.org>
L:	linux-cifs@vger.kernel.org
L:	samba-technical@lists.samba.org (moderated for non-subscribers)
W:	http://linux-cifs.samba.org/
Q:	http://patchwork.ozlabs.org/project/linux-cifs-client/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
S:	Supported
F:	Documentation/filesystems/cifs.txt
F:	fs/cifs/

COMPACTPCI HOTPLUG CORE
M:	Scott Murray <scott@spiteful.org>
L:	linux-pci@vger.kernel.org
S:	Maintained
F:	drivers/pci/hotplug/cpci_hotplug*

COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
M:	Scott Murray <scott@spiteful.org>
L:	linux-pci@vger.kernel.org
S:	Maintained
F:	drivers/pci/hotplug/cpcihp_zt5550.*

COMPACTPCI HOTPLUG GENERIC DRIVER
M:	Scott Murray <scott@spiteful.org>
L:	linux-pci@vger.kernel.org
S:	Maintained
F:	drivers/pci/hotplug/cpcihp_generic.c

COMPAL LAPTOP SUPPORT
M:	Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
L:	platform-driver-x86@vger.kernel.org
S:	Maintained
F:	drivers/platform/x86/compal-laptop.c

COMPUTONE INTELLIPORT MULTIPORT CARD
M:	"Michael H. Warfield" <mhw@wittsend.com>
W:	http://www.wittsend.com/computone.html
S:	Maintained
F:	Documentation/serial/computone.txt
F:	drivers/char/ip2/

CONEXANT ACCESSRUNNER USB DRIVER
M:	Simon Arlott <cxacru@fire.lp0.eu>
L:	accessrunner-general@lists.sourceforge.net
W:	http://accessrunner.sourceforge.net/
S:	Maintained
F:	drivers/usb/atm/cxacru.c

CONFIGFS
M:	Joel Becker <joel.becker@oracle.com>
S:	Supported
F:	fs/configfs/
F:	include/linux/configfs.h

CONNECTOR
M:	Evgeniy Polyakov <zbr@ioremap.net>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/connector/

CONTROL GROUPS (CGROUPS)
M:	Paul Menage <menage@google.com>
M:	Li Zefan <lizf@cn.fujitsu.com>
L:	containers@lists.linux-foundation.org
S:	Maintained
F:	include/linux/cgroup*
F:	kernel/cgroup*
F:	mm/*cgroup*

CORETEMP HARDWARE MONITORING DRIVER
M:	Rudolf Marek <r.marek@assembler.cz>
M:	Huaxu Wan <huaxu.wan@intel.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/coretemp
F:	drivers/hwmon/coretemp.c

COSA/SRP SYNC SERIAL DRIVER
M:	Jan "Yenya" Kasprzak <kas@fi.muni.cz>
W:	http://www.fi.muni.cz/~kas/cosa/
S:	Maintained
F:	drivers/net/wan/cosa*

CPMAC ETHERNET DRIVER
M:	Florian Fainelli <florian@openwrt.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/cpmac.c

CPU FREQUENCY DRIVERS
M:	Dave Jones <davej@redhat.com>
L:	cpufreq@vger.kernel.org
W:	http://www.codemonkey.org.uk/projects/cpufreq/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git
S:	Maintained
F:	arch/x86/kernel/cpu/cpufreq/
F:	drivers/cpufreq/
F:	include/linux/cpufreq.h

CPUID/MSR DRIVER
M:	"H. Peter Anvin" <hpa@zytor.com>
S:	Maintained
F:	arch/x86/kernel/cpuid.c
F:	arch/x86/kernel/msr.c

CPUSETS
M:	Paul Menage <menage@google.com>
W:	http://www.bullopensource.org/cpuset/
W:	http://oss.sgi.com/projects/cpusets/
S:	Supported
F:	Documentation/cgroups/cpusets.txt
F:	include/linux/cpuset.h
F:	kernel/cpuset.c

CRAMFS FILESYSTEM
W:	http://sourceforge.net/projects/cramfs/
S:	Orphan
F:	Documentation/filesystems/cramfs.txt
F:	fs/cramfs/

CRIS PORT
M:	Mikael Starvik <starvik@axis.com>
M:	Jesper Nilsson <jesper.nilsson@axis.com>
L:	linux-cris-kernel@axis.com
W:	http://developer.axis.com
S:	Maintained
F:	arch/cris/

CRYPTO API
M:	Herbert Xu <herbert@gondor.apana.org.au>
M:	"David S. Miller" <davem@davemloft.net>
L:	linux-crypto@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
S:	Maintained
F:	Documentation/crypto/
F:	arch/*/crypto/
F:	crypto/
F:	drivers/crypto/
F:	include/crypto/

CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
M:	Neil Horman <nhorman@tuxdriver.com>
L:	linux-crypto@vger.kernel.org
S:	Maintained

CS5535 Audio ALSA driver
M:	Jaya Kumar <jayakumar.alsa@gmail.com>
S:	Maintained
F:	sound/pci/cs5535audio/

CX18 VIDEO4LINUX DRIVER
M:	Andy Walls <awalls@md.metrocast.net>
L:	ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://linuxtv.org
W:	http://www.ivtvdriver.org/index.php/Cx18
S:	Maintained
F:	Documentation/video4linux/cx18.txt
F:	drivers/media/video/cx18/

CXGB3 ETHERNET DRIVER (CXGB3)
M:	Divy Le Ray <divy@chelsio.com>
L:	netdev@vger.kernel.org
W:	http://www.chelsio.com
S:	Supported
F:	drivers/net/cxgb3/

CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
M:	Steve Wise <swise@chelsio.com>
L:	linux-rdma@vger.kernel.org
W:	http://www.openfabrics.org
S:	Supported
F:	drivers/infiniband/hw/cxgb3/

CXGB4 ETHERNET DRIVER (CXGB4)
M:	Dimitris Michailidis <dm@chelsio.com>
L:	netdev@vger.kernel.org
W:	http://www.chelsio.com
S:	Supported
F:	drivers/net/cxgb4/

CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
M:	Steve Wise <swise@chelsio.com>
L:	linux-rdma@vger.kernel.org
W:	http://www.openfabrics.org
S:	Supported
F:	drivers/infiniband/hw/cxgb4/

CXGB4VF ETHERNET DRIVER (CXGB4VF)
M:	Casey Leedom <leedom@chelsio.com>
L:	netdev@vger.kernel.org
W:	http://www.chelsio.com
S:	Supported
F:	drivers/net/cxgb4vf/

CYBERPRO FB DRIVER
M:	Russell King <linux@arm.linux.org.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
W:	http://www.arm.linux.org.uk/
S:	Maintained
F:	drivers/video/cyber2000fb.*

CYCLADES 2X SYNC CARD DRIVER
M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
W:	http://oops.ghostprotocols.net:81/blog
S:	Maintained
F:	drivers/net/wan/cycx*

CYCLADES ASYNC MUX DRIVER
W:	http://www.cyclades.com/
S:	Orphan
F:	drivers/char/cyclades.c
F:	include/linux/cyclades.h

CYCLADES PC300 DRIVER
W:	http://www.cyclades.com/
S:	Orphan
F:	drivers/net/wan/pc300*

DAMA SLAVE for AX.25
M:	Joerg Reuter <jreuter@yaina.de>
W:	http://yaina.de/jreuter/
W:	http://www.qsl.net/dl1bke/
L:	linux-hams@vger.kernel.org
S:	Maintained
F:	net/ax25/af_ax25.c
F:	net/ax25/ax25_dev.c
F:	net/ax25/ax25_ds_*
F:	net/ax25/ax25_in.c
F:	net/ax25/ax25_out.c
F:	net/ax25/ax25_timer.c
F:	net/ax25/sysctl_net_ax25.c

DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
M:	Tobias Ringstrom <tori@unhappy.mine.nu>
L:	netdev@vger.kernel.org
S:	Maintained
F:	Documentation/networking/dmfe.txt
F:	drivers/net/tulip/dmfe.c

DC390/AM53C974 SCSI driver
M:	Kurt Garloff <garloff@suse.de>
W:	http://www.garloff.de/kurt/linux/dc390/
M:	Guennadi Liakhovetski <g.liakhovetski@gmx.de>
S:	Maintained
F:	drivers/scsi/tmscsim.*

DC395x SCSI driver
M:	Oliver Neukum <oliver@neukum.name>
M:	Ali Akcaagac <aliakc@web.de>
M:	Jamie Lenehan <lenehan@twibble.org>
W:	http://twibble.org/dist/dc395x/
L:	dc395x@twibble.org
L:	http://lists.twibble.org/mailman/listinfo/dc395x/
S:	Maintained
F:	Documentation/scsi/dc395x.txt
F:	drivers/scsi/dc395x.*

DCCP PROTOCOL
M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
L:	dccp@vger.kernel.org
W:	http://linux-net.osdl.org/index.php/DCCP
S:	Maintained
F:	include/linux/dccp.h
F:	include/linux/tfrc.h
F:	net/dccp/

DECnet NETWORK LAYER
W:	http://linux-decnet.sourceforge.net
L:	linux-decnet-user@lists.sourceforge.net
S:	Orphan
F:	Documentation/networking/decnet.txt
F:	net/decnet/

DEFXX FDDI NETWORK DRIVER
M:	"Maciej W. Rozycki" <macro@linux-mips.org>
S:	Maintained
F:	drivers/net/defxx.*

DELL LAPTOP DRIVER
M:	Matthew Garrett <mjg59@srcf.ucam.org>
L:	platform-driver-x86@vger.kernel.org
S:	Maintained
F:	drivers/platform/x86/dell-laptop.c

DELL LAPTOP SMM DRIVER
M:	Massimo Dal Zotto <dz@debian.org>
W:	http://www.debian.org/~dz/i8k/
S:	Maintained
F:	drivers/char/i8k.c
F:	include/linux/i8k.h

DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
M:	Doug Warzecha <Douglas_Warzecha@dell.com>
S:	Maintained
F:	Documentation/dcdbas.txt
F:	drivers/firmware/dcdbas.*

DELL WMI EXTRAS DRIVER
M:	Matthew Garrett <mjg59@srcf.ucam.org>
S:	Maintained

DEVICE NUMBER REGISTRY
M:	Torben Mathiasen <device@lanana.org>
W:	http://lanana.org/docs/device-list/index.html
S:	Maintained

DEVICE-MAPPER  (LVM)
P:	Alasdair Kergon
L:	dm-devel@redhat.com
W:	http://sources.redhat.com/dm
Q:	http://patchwork.kernel.org/project/dm-devel/list/
S:	Maintained
F:	Documentation/device-mapper/
F:	drivers/md/dm*
F:	include/linux/device-mapper.h
F:	include/linux/dm-*.h

DIGI INTL. EPCA DRIVER
M:	"Digi International, Inc" <Eng.Linux@digi.com>
L:	Eng.Linux@digi.com
W:	http://www.digi.com
S:	Orphan
F:	Documentation/serial/digiepca.txt
F:	drivers/char/epca*
F:	drivers/char/digi*

DIRECTORY NOTIFICATION (DNOTIFY)
M:	Eric Paris <eparis@parisplace.org>
S:	Maintained
F:	Documentation/filesystems/dnotify.txt
F:	fs/notify/dnotify/
F:	include/linux/dnotify.h

DISK GEOMETRY AND PARTITION HANDLING
M:	Andries Brouwer <aeb@cwi.nl>
W:	http://www.win.tue.nl/~aeb/linux/Large-Disk.html
W:	http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
W:	http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
S:	Maintained

DISKQUOTA
M:	Jan Kara <jack@suse.cz>
S:	Maintained
F:	Documentation/filesystems/quota.txt
F:	fs/quota/
F:	include/linux/quota*.h

DISTRIBUTED LOCK MANAGER (DLM)
M:	Christine Caulfield <ccaulfie@redhat.com>
M:	David Teigland <teigland@redhat.com>
L:	cluster-devel@redhat.com
W:	http://sources.redhat.com/cluster/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
S:	Supported
F:	fs/dlm/

DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
M:	Dan Williams <dan.j.williams@intel.com>
S:	Supported
F:	drivers/dma/
F:	include/linux/dma*

DME1737 HARDWARE MONITOR DRIVER
M:	Juerg Haefliger <juergh@gmail.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/dme1737
F:	drivers/hwmon/dme1737.c

DOCBOOK FOR DOCUMENTATION
M:	Randy Dunlap <rdunlap@xenotime.net>
S:	Maintained

DOCKING STATION DRIVER
M:	Shaohua Li <shaohua.li@intel.com>
L:	linux-acpi@vger.kernel.org
S:	Supported
F:	drivers/acpi/dock.c

DOCUMENTATION
M:	Randy Dunlap <rdunlap@xenotime.net>
L:	linux-doc@vger.kernel.org
S:	Maintained
F:	Documentation/

DOUBLETALK DRIVER
M:	"James R. Van Zandt" <jrv@vanzandt.mv.com>
L:	blinux-list@redhat.com
S:	Maintained
F:	drivers/char/dtlk.c
F:	include/linux/dtlk.h

DPT_I2O SCSI RAID DRIVER
M:	Adaptec OEM Raid Solutions <aacraid@adaptec.com>
L:	linux-scsi@vger.kernel.org
W:	http://www.adaptec.com/
S:	Maintained
F:	drivers/scsi/dpt*
F:	drivers/scsi/dpt/

DRBD DRIVER
P:	Philipp Reisner
P:	Lars Ellenberg
M:	drbd-dev@lists.linbit.com
L:	drbd-user@lists.linbit.com
W:	http://www.drbd.org
T:	git git://git.drbd.org/linux-2.6-drbd.git drbd
T:	git git://git.drbd.org/drbd-8.3.git
S:	Supported
F:	drivers/block/drbd/
F:	lib/lru_cache.c
F:	Documentation/blockdev/drbd/

DRIVER CORE, KOBJECTS, AND SYSFS
M:	Greg Kroah-Hartman <gregkh@suse.de>
T:	quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
S:	Supported
F:	Documentation/kobject.txt
F:	drivers/base/
F:	fs/sysfs/
F:	include/linux/kobj*
F:	lib/kobj*

DRM DRIVERS
M:	David Airlie <airlied@linux.ie>
L:	dri-devel@lists.freedesktop.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
S:	Maintained
F:	drivers/gpu/drm/

DSCC4 DRIVER
M:	Francois Romieu <romieu@fr.zoreil.com>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/wan/dscc4.c

DZ DECSTATION DZ11 SERIAL DRIVER
M:	"Maciej W. Rozycki" <macro@linux-mips.org>
S:	Maintained
F:	drivers/serial/dz.*

EATA-DMA SCSI DRIVER
M:	Michael Neuffer <mike@i-Connect.Net>
L:	linux-eata@i-connect.net
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/eata*

EATA ISA/EISA/PCI SCSI DRIVER
M:	Dario Ballabio <ballabio_dario@emc.com>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/eata.c

EATA-PIO SCSI DRIVER
M:	Michael Neuffer <mike@i-Connect.Net>
L:	linux-eata@i-connect.net
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/eata_pio.*

EBTABLES
M:	Bart De Schuymer <bart.de.schuymer@pandora.be>
L:	ebtables-user@lists.sourceforge.net
L:	ebtables-devel@lists.sourceforge.net
W:	http://ebtables.sourceforge.net/
S:	Maintained
F:	include/linux/netfilter_bridge/ebt_*.h
F:	net/bridge/netfilter/ebt*.c

ECRYPT FILE SYSTEM
M:	Tyler Hicks <tyhicks@linux.vnet.ibm.com>
M:	Dustin Kirkland <kirkland@canonical.com>
L:	ecryptfs-devel@lists.launchpad.net
W:	https://launchpad.net/ecryptfs
S:	Supported
F:	Documentation/filesystems/ecryptfs.txt
F:	fs/ecryptfs/

EDAC-CORE
M:	Doug Thompson <dougthompson@xmission.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Supported
F:	Documentation/edac.txt
F:	drivers/edac/edac_*
F:	include/linux/edac.h

EDAC-AMD64
M:	Doug Thompson <dougthompson@xmission.com>
M:	Borislav Petkov <borislav.petkov@amd.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Supported
F:	drivers/edac/amd64_edac*

EDAC-E752X
M:	Mark Gross <mark.gross@intel.com>
M:	Doug Thompson <dougthompson@xmission.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/e752x_edac.c

EDAC-E7XXX
M:	Doug Thompson <dougthompson@xmission.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/e7xxx_edac.c

EDAC-I82443BXGX
M:	Tim Small <tim@buttersideup.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/i82443bxgx_edac.c

EDAC-I3000
M:	Jason Uhlenkott <juhlenko@akamai.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/i3000_edac.c

EDAC-I5000
M:	Doug Thompson <dougthompson@xmission.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/i5000_edac.c

EDAC-I5400
M:	Mauro Carvalho Chehab <mchehab@redhat.com>
L:	linux-edac@vger.kernel.org
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/i5400_edac.c

EDAC-I7CORE
M:	Mauro Carvalho Chehab <mchehab@redhat.com>
L:	linux-edac@vger.kernel.org
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/i7core_edac.c
F:	drivers/edac/edac_mce.c
F:	include/linux/edac_mce.h

EDAC-I82975X
M:	Ranganathan Desikan <ravi@jetztechnologies.com>
M:	"Arvind R." <arvind@jetztechnologies.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/i82975x_edac.c

EDAC-PASEMI
M:	Egor Martovetsky <egor@pasemi.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/pasemi_edac.c

EDAC-R82600
M:	Tim Small <tim@buttersideup.com>
L:	bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	bluesmoke.sourceforge.net
S:	Maintained
F:	drivers/edac/r82600_edac.c

EEEPC LAPTOP EXTRAS DRIVER
M:	Corentin Chary <corentincj@iksaif.net>
L:	acpi4asus-user@lists.sourceforge.net
L:	platform-driver-x86@vger.kernel.org
W:	http://acpi4asus.sf.net
S:	Maintained
F:	drivers/platform/x86/eeepc-laptop.c

EFS FILESYSTEM
W:	http://aeschi.ch.eu.org/efs/
S:	Orphan
F:	fs/efs/

EHCA (IBM GX bus InfiniBand adapter) DRIVER
M:	Hoang-Nam Nguyen <hnguyen@de.ibm.com>
M:	Christoph Raisch <raisch@de.ibm.com>
L:	linux-rdma@vger.kernel.org
S:	Supported
F:	drivers/infiniband/hw/ehca/

EMBEDDED LINUX
M:	Paul Gortmaker <paul.gortmaker@windriver.com>
M:	Matt Mackall <mpm@selenic.com>
M:	David Woodhouse <dwmw2@infradead.org>
L:	linux-embedded@vger.kernel.org
S:	Maintained

EMULEX LPFC FC SCSI DRIVER
M:	James Smart <james.smart@emulex.com>
L:	linux-scsi@vger.kernel.org
W:	http://sourceforge.net/projects/lpfcxxxx
S:	Supported
F:	drivers/scsi/lpfc/

ENE CB710 FLASH CARD READER DRIVER
M:	Michał Mirosław <mirq-linux@rere.qmqm.pl>
S:	Maintained
F:	drivers/misc/cb710/
F:	drivers/mmc/host/cb710-mmc.*
F:	include/linux/cb710.h

EPSON 1355 FRAMEBUFFER DRIVER
M:	Christopher Hoover <ch@murgatroid.com>
M:	Christopher Hoover <ch@hpl.hp.com>
S:	Maintained
F:	drivers/video/epson1355fb.c

EPSON S1D13XXX FRAMEBUFFER DRIVER
M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
S:	Maintained
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
F:	drivers/video/s1d13xxxfb.c
F:	include/video/s1d13xxxfb.h

ETHEREXPRESS-16 NETWORK DRIVER
M:	Philip Blundell <philb@gnu.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/eexpress.*

ETHERNET BRIDGE
M:	Stephen Hemminger <shemminger@linux-foundation.org>
L:	bridge@lists.linux-foundation.org
L:	netdev@vger.kernel.org
W:	http://www.linux-foundation.org/en/Net:Bridge
S:	Maintained
F:	include/linux/netfilter_bridge/
F:	net/bridge/

ETHERTEAM 16I DRIVER
M:	Mika Kuoppala <miku@iki.fi>
S:	Maintained
F:	drivers/net/eth16i.c

EXT2 FILE SYSTEM
L:	linux-ext4@vger.kernel.org
S:	Maintained
F:	Documentation/filesystems/ext2.txt
F:	fs/ext2/
F:	include/linux/ext2*

EXT3 FILE SYSTEM
M:	Andrew Morton <akpm@linux-foundation.org>
M:	Andreas Dilger <adilger@sun.com>
L:	linux-ext4@vger.kernel.org
S:	Maintained
F:	Documentation/filesystems/ext3.txt
F:	fs/ext3/
F:	include/linux/ext3*

EXT4 FILE SYSTEM
M:	"Theodore Ts'o" <tytso@mit.edu>
M:	Andreas Dilger <adilger@sun.com>
L:	linux-ext4@vger.kernel.org
W:	http://ext4.wiki.kernel.org
Q:	http://patchwork.ozlabs.org/project/linux-ext4/list/
S:	Maintained
F:	Documentation/filesystems/ext4.txt
F:	fs/ext4/

F71805F HARDWARE MONITORING DRIVER
M:	Jean Delvare <khali@linux-fr.org>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/f71805f
F:	drivers/hwmon/f71805f.c

FARSYNC SYNCHRONOUS DRIVER
M:	Kevin Curtis <kevin.curtis@farsite.co.uk>
W:	http://www.farsite.co.uk/
S:	Supported
F:	drivers/net/wan/farsync.*

FAULT INJECTION SUPPORT
M:	Akinobu Mita <akinobu.mita@gmail.com>
S:	Supported
F:	Documentation/fault-injection/
F:	lib/fault-inject.c

FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
M:	Robert Love <robert.w.love@intel.com>
L:	devel@open-fcoe.org
W:	www.Open-FCoE.org
S:	Supported
F:	drivers/scsi/libfc/
F:	drivers/scsi/fcoe/
F:	include/scsi/fc/
F:	include/scsi/libfc.h
F:	include/scsi/libfcoe.h

FILE LOCKING (flock() and fcntl()/lockf())
M:	Matthew Wilcox <matthew@wil.cx>
L:	linux-fsdevel@vger.kernel.org
S:	Maintained
F:	include/linux/fcntl.h
F:	include/linux/fs.h
F:	fs/fcntl.c
F:	fs/locks.c

FILESYSTEMS (VFS and infrastructure)
M:	Alexander Viro <viro@zeniv.linux.org.uk>
L:	linux-fsdevel@vger.kernel.org
S:	Maintained
F:	fs/*

FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
M:	Riku Voipio <riku.voipio@iki.fi>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/f75375s.c
F:	include/linux/f75375s.h

FIREWIRE SUBSYSTEM
M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
L:	linux1394-devel@lists.sourceforge.net
W:	http://ieee1394.wiki.kernel.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
S:	Maintained
F:	drivers/firewire/
F:	include/linux/firewire*.h

FIRMWARE LOADER (request_firmware)
S:	Orphan
F:	Documentation/firmware_class/
F:	drivers/base/firmware*.c
F:	include/linux/firmware.h

FPU EMULATOR
M:	Bill Metzenthen <billm@melbpc.org.au>
W:	http://floatingpoint.sourceforge.net/emulator/index.html
S:	Maintained
F:	arch/x86/math-emu/

FRAME RELAY DLCI/FRAD (Sangoma drivers too)
M:	Mike McLagan <mike.mclagan@linux.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/wan/dlci.c
F:	drivers/net/wan/sdla.c

FRAMEBUFFER LAYER
L:	linux-fbdev@vger.kernel.org
W:	http://linux-fbdev.sourceforge.net/
S:	Orphan
F:	Documentation/fb/
F:	drivers/video/fb*
F:	include/linux/fb.h

FREESCALE DMA DRIVER
M:	Li Yang <leoli@freescale.com>
M:	Zhang Wei <zw@zh-kernel.org>
L:	linuxppc-dev@ozlabs.org
S:	Maintained
F:	drivers/dma/fsldma.*

FREESCALE I2C CPM DRIVER
M:	Jochen Friedrich <jochen@scram.de>
L:	linuxppc-dev@ozlabs.org
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	drivers/i2c/busses/i2c-cpm.c

FREESCALE IMX / MXC FRAMEBUFFER DRIVER
M:	Sascha Hauer <kernel@pengutronix.de>
L:	linux-fbdev@vger.kernel.org
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/plat-mxc/include/mach/imxfb.h
F:	drivers/video/imxfb.c

FREESCALE SOC FS_ENET DRIVER
M:	Pantelis Antoniou <pantelis.antoniou@gmail.com>
M:	Vitaly Bordug <vbordug@ru.mvista.com>
L:	linuxppc-dev@ozlabs.org
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/fs_enet/
F:	include/linux/fs_enet_pd.h

FREESCALE QUICC ENGINE LIBRARY
M:	Timur Tabi <timur@freescale.com>
L:	linuxppc-dev@ozlabs.org
S:	Supported
F:	arch/powerpc/sysdev/qe_lib/
F:	arch/powerpc/include/asm/*qe.h

FREESCALE USB PERIPHERAL DRIVERS
M:	Li Yang <leoli@freescale.com>
L:	linux-usb@vger.kernel.org
L:	linuxppc-dev@ozlabs.org
S:	Maintained
F:	drivers/usb/gadget/fsl*

FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
M:	Li Yang <leoli@freescale.com>
L:	netdev@vger.kernel.org
L:	linuxppc-dev@ozlabs.org
S:	Maintained
F:	drivers/net/ucc_geth*

FREESCALE QUICC ENGINE UCC UART DRIVER
M:	Timur Tabi <timur@freescale.com>
L:	linuxppc-dev@ozlabs.org
S:	Supported
F:	drivers/serial/ucc_uart.c

FREESCALE SOC SOUND DRIVERS
M:	Timur Tabi <timur@freescale.com>
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
L:	linuxppc-dev@ozlabs.org
S:	Supported
F:	sound/soc/fsl/fsl*
F:	sound/soc/fsl/mpc8610_hpcd.c

FREEVXFS FILESYSTEM
M:	Christoph Hellwig <hch@infradead.org>
W:	ftp://ftp.openlinux.org/pub/people/hch/vxfs
S:	Maintained
F:	fs/freevxfs/

FREEZER
M:	Pavel Machek <pavel@ucw.cz>
M:	"Rafael J. Wysocki" <rjw@sisk.pl>
L:	linux-pm@lists.linux-foundation.org
S:	Supported
F:	Documentation/power/freezing-of-tasks.txt
F:	include/linux/freezer.h
F:	kernel/freezer.c

FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
M:	David Howells <dhowells@redhat.com>
L:	linux-cachefs@redhat.com
S:	Supported
F:	Documentation/filesystems/caching/
F:	fs/fscache/
F:	include/linux/fscache*.h

FUJITSU FR-V (FRV) PORT
M:	David Howells <dhowells@redhat.com>
S:	Maintained
F:	arch/frv/

FUJITSU LAPTOP EXTRAS
M:	Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
L:	platform-driver-x86@vger.kernel.org
S:	Maintained
F:	drivers/platform/x86/fujitsu-laptop.c

FUSE: FILESYSTEM IN USERSPACE
M:	Miklos Szeredi <miklos@szeredi.hu>
L:	fuse-devel@lists.sourceforge.net
W:	http://fuse.sourceforge.net/
S:	Maintained
F:	fs/fuse/
F:	include/linux/fuse.h

FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
M:	Rik Faith <faith@cs.unc.edu>
L:	linux-scsi@vger.kernel.org
S:	Odd Fixes (e.g., new signatures)
F:	drivers/scsi/fdomain.*

GDT SCSI DISK ARRAY CONTROLLER DRIVER
M:	Achim Leubner <achim_leubner@adaptec.com>
L:	linux-scsi@vger.kernel.org
W:	http://www.icp-vortex.com/
S:	Supported
F:	drivers/scsi/gdt*

GENERIC GPIO I2C DRIVER
M:	Haavard Skinnemoen <hskinnemoen@atmel.com>
S:	Supported
F:	drivers/i2c/busses/i2c-gpio.c
F:	include/linux/i2c-gpio.h

GENERIC HDLC (WAN) DRIVERS
M:	Krzysztof Halasa <khc@pm.waw.pl>
W:	http://www.kernel.org/pub/linux/utils/net/hdlc/
S:	Maintained
F:	drivers/net/wan/c101.c
F:	drivers/net/wan/hd6457*
F:	drivers/net/wan/hdlc*
F:	drivers/net/wan/n2.c
F:	drivers/net/wan/pc300too.c
F:	drivers/net/wan/pci200syn.c
F:	drivers/net/wan/wanxl*

GENERIC INCLUDE/ASM HEADER FILES
M:	Arnd Bergmann <arnd@arndb.de>
L:	linux-arch@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
S:	Maintained
F:	include/asm-generic

GENERIC UIO DRIVER FOR PCI DEVICES
M:	"Michael S. Tsirkin" <mst@redhat.com>
L:	kvm@vger.kernel.org
S:	Supported
F:	drivers/uio/uio_pci_generic.c

GFS2 FILE SYSTEM
M:	Steven Whitehouse <swhiteho@redhat.com>
L:	cluster-devel@redhat.com
W:	http://sources.redhat.com/cluster/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git
S:	Supported
F:	Documentation/filesystems/gfs2*.txt
F:	fs/gfs2/
F:	include/linux/gfs2_ondisk.h

GIGASET ISDN DRIVERS
M:	Hansjoerg Lipp <hjlipp@web.de>
M:	Tilman Schmidt <tilman@imap.cc>
L:	gigaset307x-common@lists.sourceforge.net
W:	http://gigaset307x.sourceforge.net/
S:	Maintained
F:	Documentation/isdn/README.gigaset
F:	drivers/isdn/gigaset/
F:	include/linux/gigaset_dev.h

GRETH 10/100/1G Ethernet MAC device driver
M:	Kristoffer Glembo <kristoffer@gaisler.com>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/greth*

HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
M:	Frank Seidel <frank@f-seidel.de>
L:	lm-sensors@lm-sensors.org
W:	http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
S:	Maintained
F:	drivers/hwmon/hdaps.c

HWPOISON MEMORY FAILURE HANDLING
M:	Andi Kleen <andi@firstfloor.org>
L:	linux-mm@kvack.org
L:	linux-kernel@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
S:	Maintained
F:	mm/memory-failure.c
F:	mm/hwpoison-inject.c

HYPERVISOR VIRTUAL CONSOLE DRIVER
L:	linuxppc-dev@ozlabs.org
S:	Odd Fixes
F:	drivers/char/hvc_*

iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
M:	Peter Jones <pjones@redhat.com>
M:	Konrad Rzeszutek Wilk <konrad@kernel.org>
S:	Maintained
F:	drivers/firmware/iscsi_ibft*

GSPCA FINEPIX SUBDRIVER
M:	Frank Zago <frank@zago.net>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	drivers/media/video/gspca/finepix.c

GSPCA GL860 SUBDRIVER
M:	Olivier Lorin <o.lorin@laposte.net>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	drivers/media/video/gspca/gl860/

GSPCA M5602 SUBDRIVER
M:	Erik Andren <erik.andren@gmail.com>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	drivers/media/video/gspca/m5602/

GSPCA PAC207 SONIXB SUBDRIVER
M:	Hans de Goede <hdegoede@redhat.com>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	drivers/media/video/gspca/pac207.c

GSPCA SN9C20X SUBDRIVER
M:	Brian Johnson <brijohn@gmail.com>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	drivers/media/video/gspca/sn9c20x.c

GSPCA T613 SUBDRIVER
M:	Leandro Costantino <lcostantino@gmail.com>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	drivers/media/video/gspca/t613.c

GSPCA USB WEBCAM DRIVER
M:	Jean-Francois Moine <moinejf@free.fr>
W:	http://moinejf.free.fr
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	drivers/media/video/gspca/

HARDWARE MONITORING
L:	lm-sensors@lm-sensors.org
W:	http://www.lm-sensors.org/
S:	Orphan
F:	Documentation/hwmon/
F:	drivers/hwmon/
F:	include/linux/hwmon*.h

HARDWARE RANDOM NUMBER GENERATOR CORE
M:	Matt Mackall <mpm@selenic.com>
M:	Herbert Xu <herbert@gondor.apana.org.au>
S:	Odd fixes
F:	Documentation/hw_random.txt
F:	drivers/char/hw_random/
F:	include/linux/hw_random.h

HARMONY SOUND DRIVER
M:	Kyle McMartin <kyle@mcmartin.ca>
L:	linux-parisc@vger.kernel.org
S:	Maintained
F:	sound/parisc/harmony.*

HEWLETT-PACKARD SMART2 RAID DRIVER
M:	Chirag Kantharia <chirag.kantharia@hp.com>
L:	iss_storagedev@hp.com
S:	Maintained
F:	Documentation/blockdev/cpqarray.txt
F:	drivers/block/cpqarray.*

HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
M:	Stephen M. Cameron <scameron@beardog.cce.hp.com>
L:	iss_storagedev@hp.com
S:	Supported
F:	Documentation/scsi/hpsa.txt
F:	drivers/scsi/hpsa*.[ch]
F:	include/linux/cciss*.h

HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
M:	Mike Miller <mike.miller@hp.com>
L:	iss_storagedev@hp.com
S:	Supported
F:	Documentation/blockdev/cciss.txt
F:	drivers/block/cciss*
F:	include/linux/cciss_ioctl.h

HFS FILESYSTEM
M:	Roman Zippel <zippel@linux-m68k.org>
S:	Maintained
F:	Documentation/filesystems/hfs.txt
F:	fs/hfs/

HGA FRAMEBUFFER DRIVER
M:	Ferenc Bakonyi <fero@drama.obuda.kando.hu>
L:	linux-nvidia@lists.surfsouth.com
W:	http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
S:	Maintained
F:	drivers/video/hgafb.c

HIBERNATION (aka Software Suspend, aka swsusp)
M:	Pavel Machek <pavel@ucw.cz>
M:	"Rafael J. Wysocki" <rjw@sisk.pl>
L:	linux-pm@lists.linux-foundation.org
S:	Supported
F:	arch/x86/power/
F:	drivers/base/power/
F:	kernel/power/
F:	include/linux/suspend.h
F:	include/linux/freezer.h
F:	include/linux/pm.h
F:	arch/*/include/asm/suspend*.h

HID CORE LAYER
M:	Jiri Kosina <jkosina@suse.cz>
L:	linux-input@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
S:	Maintained
F:	drivers/hid/
F:	include/linux/hid*

HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
M:	Thomas Gleixner <tglx@linutronix.de>
S:	Maintained
F:	Documentation/timers/
F:	kernel/hrtimer.c
F:	include/linux/hrtimer.h

HIGH-SPEED SCC DRIVER FOR AX.25
M:	Klaus Kudielka <klaus.kudielka@ieee.org>
L:	linux-hams@vger.kernel.org
W:	http://www.nt.tuwien.ac.at/~kkudielk/Linux/
S:	Maintained
F:	drivers/net/hamradio/dmascc.c
F:	drivers/net/hamradio/scc.c

HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
M:	HighPoint Linux Team <linux@highpoint-tech.com>
W:	http://www.highpoint-tech.com
S:	Supported
F:	Documentation/scsi/hptiop.txt
F:	drivers/scsi/hptiop.c

HIPPI
M:	Jes Sorensen <jes@trained-monkey.org>
L:	linux-hippi@sunsite.dk
S:	Maintained
F:	include/linux/hippidevice.h
F:	include/linux/if_hippi.h
F:	net/802/hippi.c

HOST AP DRIVER
M:	Jouni Malinen <j@w1.fi>
L:	hostap@shmoo.com (subscribers-only)
L:	linux-wireless@vger.kernel.org
W:	http://hostap.epitest.fi/
S:	Maintained
F:	drivers/net/wireless/hostap/

HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
M:	Carlos Corbacho <carlos@strangeworlds.co.uk>
L:	platform-driver-x86@vger.kernel.org
S:	Odd Fixes
F:	drivers/platform/x86/tc1100-wmi.c

HP100:	Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
M:	Jaroslav Kysela <perex@perex.cz>
S:	Maintained
F:	drivers/net/hp100.*

HPET:	High Precision Event Timers driver
M:	Clemens Ladisch <clemens@ladisch.de>
S:	Maintained
F:	Documentation/timers/hpet.txt
F:	drivers/char/hpet.c
F:	include/linux/hpet.h

HPET:	x86
M:	"Venkatesh Pallipadi (Venki)" <venki@google.com>
S:	Maintained
F:	arch/x86/kernel/hpet.c
F:	arch/x86/include/asm/hpet.h

HPET:	ACPI
M:	Bob Picco <bob.picco@hp.com>
S:	Maintained
F:	drivers/char/hpet.c

HPFS FILESYSTEM
M:	Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
W:	http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
S:	Maintained
F:	fs/hpfs/

HSO 3G MODEM DRIVER
M:	Jan Dumon <j.dumon@option.com>
W:	http://www.pharscape.org
S:	Maintained
F:	drivers/net/usb/hso.c

HTCPEN TOUCHSCREEN DRIVER
M:	Pau Oliva Fora <pof@eslack.org>
L:	linux-input@vger.kernel.org
S:	Maintained
F:	drivers/input/touchscreen/htcpen.c

HUGETLB FILESYSTEM
M:	William Irwin <wli@holomorphy.com>
S:	Maintained
F:	fs/hugetlbfs/

I2C/SMBUS STUB DRIVER
M:	"Mark M. Hoffman" <mhoffman@lightlink.com>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	drivers/i2c/busses/i2c-stub.c

I2C SUBSYSTEM
M:	"Jean Delvare (PC drivers, core)" <khali@linux-fr.org>
M:	"Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
L:	linux-i2c@vger.kernel.org
W:	http://i2c.wiki.kernel.org/
T:	quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/
T:	git git://git.fluff.org/bjdooks/linux.git
S:	Maintained
F:	Documentation/i2c/
F:	drivers/i2c/
F:	include/linux/i2c.h
F:	include/linux/i2c-*.h

I2C-TINY-USB DRIVER
M:	Till Harbaum <till@harbaum.org>
L:	linux-i2c@vger.kernel.org
W:	http://www.harbaum.org/till/i2c_tiny_usb
S:	Maintained
F:	drivers/i2c/busses/i2c-tiny-usb.c

i386 BOOT CODE
M:	"H. Peter Anvin" <hpa@zytor.com>
S:	Maintained
F:	arch/x86/boot/

i386 SETUP CODE / CPU ERRATA WORKAROUNDS
M:	"H. Peter Anvin" <hpa@zytor.com>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
S:	Maintained

IA64 (Itanium) PLATFORM
M:	Tony Luck <tony.luck@intel.com>
M:	Fenghua Yu <fenghua.yu@intel.com>
L:	linux-ia64@vger.kernel.org
W:	http://www.ia64-linux.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git
S:	Maintained
F:	arch/ia64/

IBM MCA SCSI SUBSYSTEM DRIVER
M:	Michael Lang <langa2@kph.uni-mainz.de>
W:	http://www.uni-mainz.de/~langm000/linux.html
S:	Maintained
F:	drivers/scsi/ibmmca.c

IBM Power Linux RAID adapter
M:	Brian King <brking@us.ibm.com>
S:	Supported
F:	drivers/scsi/ipr.*

IBM ServeRAID RAID DRIVER
P:	Jack Hammer
M:	Dave Jeffery <ipslinux@adaptec.com>
W:	http://www.developer.ibm.com/welcome/netfinity/serveraid.html
S:	Supported
F:	drivers/scsi/ips.*

IDE SUBSYSTEM
M:	"David S. Miller" <davem@davemloft.net>
L:	linux-ide@vger.kernel.org
Q:	http://patchwork.ozlabs.org/project/linux-ide/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git
S:	Maintained
F:	Documentation/ide/
F:	drivers/ide/
F:	include/linux/ide.h

IDE/ATAPI DRIVERS
M:	Borislav Petkov <petkovbb@gmail.com>
L:	linux-ide@vger.kernel.org
S:	Maintained
F:	Documentation/cdrom/ide-cd
F:	drivers/ide/ide-cd*

IDLE-I7300
M:	Andy Henroid <andrew.d.henroid@intel.com>
L:	linux-pm@lists.linux-foundation.org
S:	Supported
F:	drivers/idle/i7300_idle.c

IEEE 1394 SUBSYSTEM
M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
L:	linux1394-devel@lists.sourceforge.net
W:	http://ieee1394.wiki.kernel.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git
S:	Obsolete
F:	Documentation/debugging-via-ohci1394.txt
F:	drivers/ieee1394/

IEEE 802.15.4 SUBSYSTEM
M:	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
M:	Sergey Lapin <slapin@ossfans.org>
L:	linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
W:	http://apps.sourceforge.net/trac/linux-zigbee
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
S:	Maintained
F:	net/ieee802154/
F:	drivers/ieee802154/

INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
M:	Mimi Zohar <zohar@us.ibm.com>
S:	Supported
F:	security/integrity/ima/

IMS TWINTURBO FRAMEBUFFER DRIVER
L:	linux-fbdev@vger.kernel.org
S:	Orphan
F:	drivers/video/imsttfb.c

INFINIBAND SUBSYSTEM
M:	Roland Dreier <rolandd@cisco.com>
M:	Sean Hefty <sean.hefty@intel.com>
M:	Hal Rosenstock <hal.rosenstock@gmail.com>
L:	linux-rdma@vger.kernel.org
W:	http://www.openib.org/
Q:	http://patchwork.kernel.org/project/linux-rdma/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
S:	Supported
F:	Documentation/infiniband/
F:	drivers/infiniband/
F:	include/linux/if_infiniband.h

INOTIFY
M:	John McCutchan <john@johnmccutchan.com>
M:	Robert Love <rlove@rlove.org>
M:	Eric Paris <eparis@parisplace.org>
S:	Maintained
F:	Documentation/filesystems/inotify.txt
F:	fs/notify/inotify/
F:	include/linux/inotify.h

INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
M:	Dmitry Torokhov <dmitry.torokhov@gmail.com>
M:	Dmitry Torokhov <dtor@mail.ru>
L:	linux-input@vger.kernel.org
Q:	http://patchwork.kernel.org/project/linux-input/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
S:	Maintained
F:	drivers/input/

INPUT MULTITOUCH (MT) PROTOCOL
M:	Henrik Rydberg <rydberg@euromail.se>
L:	linux-input@vger.kernel.org
S:	Maintained
F:	Documentation/input/multi-touch-protocol.txt
K:	\b(ABS|SYN)_MT_

INTEL IDLE DRIVER
M:	Len Brown <lenb@kernel.org>
L:	linux-pm@lists.linux-foundation.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git
S:	Supported
F:	drivers/idle/intel_idle.c

INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
M:	Maik Broemme <mbroemme@plusserver.de>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	Documentation/fb/intelfb.txt
F:	drivers/video/intelfb/

INTEL 810/815 FRAMEBUFFER DRIVER
M:	Antonino Daplas <adaplas@gmail.com>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/i810/

INTEL MENLOW THERMAL DRIVER
M:	Sujith Thomas <sujith.thomas@intel.com>
L:	platform-driver-x86@vger.kernel.org
W:	http://www.lesswatts.org/projects/acpi/
S:	Supported
F:	drivers/platform/x86/intel_menlow.c

INTEL IA32 MICROCODE UPDATE SUPPORT
M:	Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
S:	Maintained
F:	arch/x86/kernel/microcode_core.c
F:	arch/x86/kernel/microcode_intel.c

INTEL I/OAT DMA DRIVER
M:	Dan Williams <dan.j.williams@intel.com>
S:	Supported
F:	drivers/dma/ioat*

INTEL IOMMU (VT-d)
M:	David Woodhouse <dwmw2@infradead.org>
L:	iommu@lists.linux-foundation.org
T:	git git://git.infradead.org/iommu-2.6.git
S:	Supported
F:	drivers/pci/intel-iommu.c
F:	include/linux/intel-iommu.h

INTEL IOP-ADMA DMA DRIVER
M:	Dan Williams <dan.j.williams@intel.com>
S:	Maintained
F:	drivers/dma/iop-adma.c

INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
M:	Krzysztof Halasa <khc@pm.waw.pl>
S:	Maintained
F:	arch/arm/mach-ixp4xx/include/mach/qmgr.h
F:	arch/arm/mach-ixp4xx/include/mach/npe.h
F:	arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
F:	arch/arm/mach-ixp4xx/ixp4xx_npe.c
F:	drivers/net/arm/ixp4xx_eth.c
F:	drivers/net/wan/ixp4xx_hss.c

INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
M:	Deepak Saxena <dsaxena@plexity.net>
S:	Maintained
F:	drivers/char/hw_random/ixp4xx-rng.c

INTEL IXP2000 ETHERNET DRIVER
M:	Lennert Buytenhek <kernel@wantstofly.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/ixp2000/

INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe)
M:	Jeff Kirsher <jeffrey.t.kirsher@intel.com>
M:	Jesse Brandeburg <jesse.brandeburg@intel.com>
M:	Bruce Allan <bruce.w.allan@intel.com>
M:	Alex Duyck <alexander.h.duyck@intel.com>
M:	PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com>
M:	John Ronciak <john.ronciak@intel.com>
L:	e1000-devel@lists.sourceforge.net
W:	http://e1000.sourceforge.net/
S:	Supported
F:	drivers/net/e100.c
F:	drivers/net/e1000/
F:	drivers/net/e1000e/
F:	drivers/net/igb/
F:	drivers/net/igbvf/
F:	drivers/net/ixgb/
F:	drivers/net/ixgbe/

INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
L:	linux-wireless@vger.kernel.org
S:	Orphan
F:	Documentation/networking/README.ipw2100
F:	drivers/net/wireless/ipw2x00/ipw2100.*

INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
L:	linux-wireless@vger.kernel.org
S:	Orphan
F:	Documentation/networking/README.ipw2200
F:	drivers/net/wireless/ipw2x00/ipw2200.*

INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
M:	Joseph Cihula <joseph.cihula@intel.com>
M:	Shane Wang <shane.wang@intel.com>
L:	tboot-devel@lists.sourceforge.net
W:	http://tboot.sourceforge.net
T:	Mercurial http://www.bughost.org/repos.hg/tboot.hg
S:	Supported
F:	Documentation/intel_txt.txt
F:	include/linux/tboot.h
F:	arch/x86/kernel/tboot.c

INTEL WIRELESS WIMAX CONNECTION 2400
M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
M:	linux-wimax@intel.com
L:	wimax@linuxwimax.org
S:	Supported
W:	http://linuxwimax.org
F:	Documentation/wimax/README.i2400m
F:	drivers/net/wimax/i2400m/
F:	include/linux/wimax/i2400m.h

INTEL WIRELESS WIFI LINK (iwlwifi)
M:	Reinette Chatre <reinette.chatre@intel.com>
M:	Wey-Yi Guy <wey-yi.w.guy@intel.com>
M:	Intel Linux Wireless <ilw@linux.intel.com>
L:	linux-wireless@vger.kernel.org
W:	http://intellinuxwireless.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git
S:	Supported
F:	drivers/net/wireless/iwlwifi/

INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi)
M:	Samuel Ortiz <samuel.ortiz@intel.com>
M:	Intel Linux Wireless <ilw@linux.intel.com>
L:	linux-wireless@vger.kernel.org
S:	Supported
W:	http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi
F:	drivers/net/wireless/iwmc3200wifi/

IOC3 ETHERNET DRIVER
M:	Ralf Baechle <ralf@linux-mips.org>
L:	linux-mips@linux-mips.org
S:	Maintained
F:	drivers/net/ioc3-eth.c

IOC3 SERIAL DRIVER
M:	Pat Gefre <pfg@sgi.com>
L:	linux-mips@linux-mips.org
S:	Maintained
F:	drivers/serial/ioc3_serial.c

IP MASQUERADING
M:	Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
S:	Maintained
F:	net/ipv4/netfilter/ipt_MASQUERADE.c

IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
M:	Francois Romieu <romieu@fr.zoreil.com>
M:	Sorbica Shieh <sorbica@icplus.com.tw>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/ipg.*

IPATH DRIVER
M:	Ralph Campbell <infinipath@qlogic.com>
L:	linux-rdma@vger.kernel.org
T:	git git://git.qlogic.com/ipath-linux-2.6
S:	Supported
F:	drivers/infiniband/hw/ipath/

IPMI SUBSYSTEM
M:	Corey Minyard <minyard@acm.org>
L:	openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
W:	http://openipmi.sourceforge.net/
S:	Supported
F:	Documentation/IPMI.txt
F:	drivers/char/ipmi/
F:	include/linux/ipmi*

IPS SCSI RAID DRIVER
M:	Adaptec OEM Raid Solutions <aacraid@adaptec.com>
L:	linux-scsi@vger.kernel.org
W:	http://www.adaptec.com/
S:	Maintained
F:	drivers/scsi/ips*

IPVS
M:	Wensong Zhang <wensong@linux-vs.org>
M:	Simon Horman <horms@verge.net.au>
M:	Julian Anastasov <ja@ssi.bg>
L:	netdev@vger.kernel.org
L:	lvs-devel@vger.kernel.org
S:	Maintained
F:	Documentation/networking/ipvs-sysctl.txt
F:	include/net/ip_vs.h
F:	include/linux/ip_vs.h
F:	net/netfilter/ipvs/

IPWIRELESS DRIVER
M:	Jiri Kosina <jkosina@suse.cz>
M:	David Sterba <dsterba@suse.cz>
S:	Maintained
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git
F:	drivers/char/pcmcia/ipwireless/

IPX NETWORK LAYER
M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
L:	netdev@vger.kernel.org
S:	Maintained
F:	include/linux/ipx.h
F:	include/net/ipx.h
F:	net/ipx/

IRDA SUBSYSTEM
M:	Samuel Ortiz <samuel@sortiz.org>
L:	irda-users@lists.sourceforge.net (subscribers-only)
W:	http://irda.sourceforge.net/
S:	Maintained
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
F:	Documentation/networking/irda.txt
F:	drivers/net/irda/
F:	include/net/irda/
F:	net/irda/

ISAPNP
M:	Jaroslav Kysela <perex@perex.cz>
S:	Maintained
F:	Documentation/isapnp.txt
F:	drivers/pnp/isapnp/
F:	include/linux/isapnp.h

ISCSI
M:	Mike Christie <michaelc@cs.wisc.edu>
L:	open-iscsi@googlegroups.com
W:	www.open-iscsi.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
S:	Maintained
F:	drivers/scsi/*iscsi*
F:	include/scsi/*iscsi*

ISDN SUBSYSTEM
M:	Karsten Keil <isdn@linux-pingi.de>
L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
L:	netdev@vger.kernel.org
W:	http://www.isdn4linux.de
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
S:	Maintained
F:	Documentation/isdn/
F:	drivers/isdn/
F:	include/linux/isdn.h
F:	include/linux/isdn/

ISDN SUBSYSTEM (Eicon active card driver)
M:	Armin Schindler <mac@melware.de>
L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
W:	http://www.melware.de
S:	Maintained
F:	drivers/isdn/hardware/eicon/

IT87 HARDWARE MONITORING DRIVER
M:	Jean Delvare <khali@linux-fr.org>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/it87
F:	drivers/hwmon/it87.c

IVTV VIDEO4LINUX DRIVER
M:	Andy Walls <awalls@md.metrocast.net>
L:	ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://www.ivtvdriver.org
S:	Maintained
F:	Documentation/video4linux/*.ivtv
F:	drivers/media/video/ivtv/
F:	include/linux/ivtv*

JFS FILESYSTEM
M:	Dave Kleikamp <shaggy@linux.vnet.ibm.com>
L:	jfs-discussion@lists.sourceforge.net
W:	http://jfs.sourceforge.net/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
S:	Maintained
F:	Documentation/filesystems/jfs.txt
F:	fs/jfs/

JME NETWORK DRIVER
M:	Guo-Fu Tseng <cooldavid@cooldavid.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/jme.*

JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
M:	David Woodhouse <dwmw2@infradead.org>
L:	linux-mtd@lists.infradead.org
W:	http://www.linux-mtd.infradead.org/doc/jffs2.html
S:	Maintained
F:	fs/jffs2/
F:	include/linux/jffs2.h

JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
M:	Andrew Morton <akpm@linux-foundation.org>
M:	Jan Kara <jack@suse.cz>
L:	linux-ext4@vger.kernel.org
S:	Maintained
F:	fs/jbd*/
F:	include/linux/ext*jbd*.h
F:	include/linux/jbd*.h

K8TEMP HARDWARE MONITORING DRIVER
M:	Rudolf Marek <r.marek@assembler.cz>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/k8temp
F:	drivers/hwmon/k8temp.c

KCONFIG
M:	Roman Zippel <zippel@linux-m68k.org>
L:	linux-kbuild@vger.kernel.org
Q:	http://patchwork.kernel.org/project/linux-kbuild/list/
S:	Maintained
F:	Documentation/kbuild/kconfig-language.txt
F:	scripts/kconfig/

KDUMP
M:	Vivek Goyal <vgoyal@redhat.com>
M:	Haren Myneni <hbabu@us.ibm.com>
L:	kexec@lists.infradead.org
W:	http://lse.sourceforge.net/kdump/
S:	Maintained
F:	Documentation/kdump/

KERNEL AUTOMOUNTER (AUTOFS)
M:	"H. Peter Anvin" <hpa@zytor.com>
L:	autofs@linux.kernel.org
S:	Odd Fixes
F:	fs/autofs/

KERNEL AUTOMOUNTER v4 (AUTOFS4)
M:	Ian Kent <raven@themaw.net>
L:	autofs@linux.kernel.org
S:	Maintained
F:	fs/autofs4/

KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
M:	Michal Marek <mmarek@suse.cz>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes
L:	linux-kbuild@vger.kernel.org
S:	Maintained
F:	Documentation/kbuild/
F:	Makefile
F:	scripts/Makefile.*
F:	scripts/basic/
F:	scripts/mk*
F:	scripts/package/

KERNEL JANITORS
L:	kernel-janitors@vger.kernel.org
W:	http://janitor.kernelnewbies.org/
S:	Odd Fixes

KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
M:	"J. Bruce Fields" <bfields@fieldses.org>
M:	Neil Brown <neilb@suse.de>
L:	linux-nfs@vger.kernel.org
W:	http://nfs.sourceforge.net/
S:	Supported
F:	fs/nfsd/
F:	include/linux/nfsd/
F:	fs/lockd/
F:	fs/nfs_common/
F:	net/sunrpc/
F:	include/linux/lockd/
F:	include/linux/sunrpc/

KERNEL VIRTUAL MACHINE (KVM)
M:	Avi Kivity <avi@redhat.com>
M:	Marcelo Tosatti <mtosatti@redhat.com>
L:	kvm@vger.kernel.org
W:	http://kvm.qumranet.com
S:	Supported
F:	Documentation/*/kvm.txt
F:	arch/*/kvm/
F:	arch/*/include/asm/kvm*
F:	include/linux/kvm*
F:	virt/kvm/

KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
M:	Joerg Roedel <joerg.roedel@amd.com>
L:	kvm@vger.kernel.org
W:	http://kvm.qumranet.com
S:	Supported
F:	arch/x86/include/asm/svm.h
F:	arch/x86/kvm/svm.c

KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
M:	Alexander Graf <agraf@suse.de>
L:	kvm-ppc@vger.kernel.org
W:	http://kvm.qumranet.com
S:	Supported
F:	arch/powerpc/include/asm/kvm*
F:	arch/powerpc/kvm/

KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
M:	Xiantao Zhang <xiantao.zhang@intel.com>
L:	kvm-ia64@vger.kernel.org
W:	http://kvm.qumranet.com
S:	Supported
F:	Documentation/ia64/kvm.txt
F:	arch/ia64/include/asm/kvm*
F:	arch/ia64/kvm/

KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
M:	Carsten Otte <cotte@de.ibm.com>
M:	Christian Borntraeger <borntraeger@de.ibm.com>
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
F:	Documentation/s390/kvm.txt
F:	arch/s390/include/asm/kvm*
F:	arch/s390/kvm/
F:	drivers/s390/kvm/

KEXEC
M:	Eric Biederman <ebiederm@xmission.com>
W:	http://ftp.kernel.org/pub/linux/kernel/people/horms/kexec-tools/
L:	kexec@lists.infradead.org
S:	Maintained
F:	include/linux/kexec.h
F:	kernel/kexec.c

KEYS/KEYRINGS:
M:	David Howells <dhowells@redhat.com>
L:	keyrings@linux-nfs.org
S:	Maintained
F:	Documentation/keys.txt
F:	include/linux/key.h
F:	include/linux/key-type.h
F:	include/keys/
F:	security/keys/

KGDB / KDB /debug_core
M:	Jason Wessel <jason.wessel@windriver.com>
W:	http://kgdb.wiki.kernel.org/
L:	kgdb-bugreport@lists.sourceforge.net
S:	Maintained
F:	Documentation/DocBook/kgdb.tmpl
F:	drivers/misc/kgdbts.c
F:	drivers/serial/kgdboc.c
F:	include/linux/kdb.h
F:	include/linux/kgdb.h
F:	kernel/debug/

KMEMCHECK
M:	Vegard Nossum <vegardno@ifi.uio.no>
M:	Pekka Enberg <penberg@cs.helsinki.fi>
S:	Maintained
F:	Documentation/kmemcheck.txt
F:	arch/x86/include/asm/kmemcheck.h
F:	arch/x86/mm/kmemcheck/
F:	include/linux/kmemcheck.h
F:	mm/kmemcheck.c

KMEMLEAK
M:	Catalin Marinas <catalin.marinas@arm.com>
S:	Maintained
F:	Documentation/kmemleak.txt
F:	include/linux/kmemleak.h
F:	mm/kmemleak.c
F:	mm/kmemleak-test.c

KMEMTRACE
M:	Eduard - Gabriel Munteanu <eduard.munteanu@linux360.ro>
S:	Maintained
F:	Documentation/trace/kmemtrace.txt
F:	include/linux/kmemtrace.h
F:	kernel/trace/kmemtrace.c

KPROBES
M:	Ananth N Mavinakayanahalli <ananth@in.ibm.com>
M:	Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
M:	"David S. Miller" <davem@davemloft.net>
M:	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
S:	Maintained
F:	Documentation/kprobes.txt
F:	include/linux/kprobes.h
F:	kernel/kprobes.c

KS0108 LCD CONTROLLER DRIVER
M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
W:	http://miguelojeda.es/auxdisplay.htm
W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
S:	Maintained
F:	Documentation/auxdisplay/ks0108
F:	drivers/auxdisplay/ks0108.c
F:	include/linux/ks0108.h

LAPB module
L:	linux-x25@vger.kernel.org
S:	Orphan
F:	Documentation/networking/lapb-module.txt
F:	include/*/lapb.h
F:	net/lapb/

LASI 53c700 driver for PARISC
M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	Documentation/scsi/53c700.txt
F:	drivers/scsi/53c700*

LED SUBSYSTEM
M:	Richard Purdie <rpurdie@rpsys.net>
S:	Maintained
F:	drivers/leds/
F:	include/linux/leds.h

LEGO USB Tower driver
M:	Juergen Stuber <starblue@users.sourceforge.net>
L:	legousb-devel@lists.sourceforge.net
W:	http://legousb.sourceforge.net/
S:	Maintained
F:	drivers/usb/misc/legousbtower.c

LGUEST
M:	Rusty Russell <rusty@rustcorp.com.au>
L:	lguest@ozlabs.org
W:	http://lguest.ozlabs.org/
S:	Maintained
F:	Documentation/lguest/
F:	arch/x86/lguest/
F:	drivers/lguest/
F:	include/linux/lguest*.h
F:	arch/x86/include/asm/lguest*.h

LINUX FOR IBM pSERIES (RS/6000)
M:	Paul Mackerras <paulus@au.ibm.com>
W:	http://www.ibm.com/linux/ltc/projects/ppc
S:	Supported
F:	arch/powerpc/boot/rs6000.h

LINUX FOR POWERPC (32-BIT AND 64-BIT)
M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
M:	Paul Mackerras <paulus@samba.org>
W:	http://www.penguinppc.org/
L:	linuxppc-dev@ozlabs.org
Q:	http://patchwork.ozlabs.org/project/linuxppc-dev/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
S:	Supported
F:	Documentation/powerpc/
F:	arch/powerpc/

LINUX FOR POWER MACINTOSH
M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
W:	http://www.penguinppc.org/
L:	linuxppc-dev@ozlabs.org
S:	Maintained
F:	arch/powerpc/platforms/powermac/
F:	drivers/macintosh/

LINUX FOR POWERPC EMBEDDED MPC5XXX
M:	Grant Likely <grant.likely@secretlab.ca>
L:	linuxppc-dev@ozlabs.org
T:	git git://git.secretlab.ca/git/linux-2.6.git
S:	Maintained
F:	arch/powerpc/platforms/512x/
F:	arch/powerpc/platforms/52xx/

LINUX FOR POWERPC EMBEDDED PPC4XX
M:	Josh Boyer <jwboyer@linux.vnet.ibm.com>
M:	Matt Porter <mporter@kernel.crashing.org>
W:	http://www.penguinppc.org/
L:	linuxppc-dev@ozlabs.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
S:	Maintained
F:	arch/powerpc/platforms/40x/
F:	arch/powerpc/platforms/44x/

LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
M:	Grant Likely <grant.likely@secretlab.ca>
W:	http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
L:	linuxppc-dev@ozlabs.org
T:	git git://git.secretlab.ca/git/linux-2.6.git
S:	Maintained
F:	arch/powerpc/*/*virtex*
F:	arch/powerpc/*/*/*virtex*

LINUX FOR POWERPC EMBEDDED PPC8XX
M:	Vitaly Bordug <vitb@kernel.crashing.org>
M:	Marcelo Tosatti <marcelo@kvack.org>
W:	http://www.penguinppc.org/
L:	linuxppc-dev@ozlabs.org
S:	Maintained

LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
M:	Kumar Gala <galak@kernel.crashing.org>
W:	http://www.penguinppc.org/
L:	linuxppc-dev@ozlabs.org
S:	Maintained
F:	arch/powerpc/platforms/83xx/

LINUX FOR POWERPC PA SEMI PWRFICIENT
M:	Olof Johansson <olof@lixom.net>
L:	linuxppc-dev@ozlabs.org
S:	Maintained
F:	arch/powerpc/platforms/pasemi/
F:	drivers/*/*pasemi*
F:	drivers/*/*/*pasemi*

LINUX SECURITY MODULE (LSM) FRAMEWORK
M:	Chris Wright <chrisw@sous-sol.org>
L:	linux-security-module@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
S:	Supported

LLC (802.2)
M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
S:	Maintained
F:	include/linux/llc.h
F:	include/net/llc*
F:	net/llc/

LIS3LV02D ACCELEROMETER DRIVER
M:	Eric Piel <eric.piel@tremplin-utc.net>
S:	Maintained
F:	Documentation/hwmon/lis3lv02d
F:	drivers/hwmon/lis3lv02d.*

LM73 HARDWARE MONITOR DRIVER
M:	Guillaume Ligneul <guillaume.ligneul@gmail.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/lm73.c

LM83 HARDWARE MONITOR DRIVER
M:	Jean Delvare <khali@linux-fr.org>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/lm83
F:	drivers/hwmon/lm83.c

LM90 HARDWARE MONITOR DRIVER
M:	Jean Delvare <khali@linux-fr.org>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/lm90
F:	drivers/hwmon/lm90.c

LOCKDEP AND LOCKSTAT
M:	Peter Zijlstra <peterz@infradead.org>
M:	Ingo Molnar <mingo@redhat.com>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git
S:	Maintained
F:	Documentation/lockdep*.txt
F:	Documentation/lockstat.txt
F:	include/linux/lockdep.h
F:	kernel/lockdep*

LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
M:	"Richard Russon (FlatCap)" <ldm@flatcap.org>
L:	linux-ntfs-dev@lists.sourceforge.net
W:	http://www.linux-ntfs.org/content/view/19/37/
S:	Maintained
F:	Documentation/ldm.txt
F:	fs/partitions/ldm.*

LogFS
M:	Joern Engel <joern@logfs.org>
L:	logfs@logfs.org
W:	logfs.org
S:	Maintained
F:	fs/logfs/

LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
M:	Eric Moore <Eric.Moore@lsi.com>
M:	support@lsi.com
L:	DL-MPTFusionLinux@lsi.com
L:	linux-scsi@vger.kernel.org
W:	http://www.lsilogic.com/support
S:	Supported
F:	drivers/message/fusion/

LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
M:	Matthew Wilcox <matthew@wil.cx>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/sym53c8xx_2/

LTP (Linux Test Project)
M:	Rishikesh K Rajak <risrajak@linux.vnet.ibm.com>
M:	Garrett Cooper <yanegomi@gmail.com>
M:	Mike Frysinger <vapier@gentoo.org>
M:	Subrata Modak <subrata@linux.vnet.ibm.com>
L:	ltp-list@lists.sourceforge.net (subscribers-only)
W:	http://ltp.sourceforge.net/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/galak/ltp.git
S:	Maintained

M32R ARCHITECTURE
M:	Hirokazu Takata <takata@linux-m32r.org>
L:	linux-m32r@ml.linux-m32r.org
L:	linux-m32r-ja@ml.linux-m32r.org (in Japanese)
W:	http://www.linux-m32r.org/
S:	Maintained
F:	arch/m32r/

M68K ARCHITECTURE
M:	Geert Uytterhoeven <geert@linux-m68k.org>
M:	Roman Zippel <zippel@linux-m68k.org>
L:	linux-m68k@lists.linux-m68k.org
W:	http://www.linux-m68k.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
S:	Maintained
F:	arch/m68k/
F:	drivers/zorro/

M68K ON APPLE MACINTOSH
M:	Joshua Thompson <funaho@jurai.org>
W:	http://www.mac.linux-m68k.org/
L:	linux-m68k@lists.linux-m68k.org
S:	Maintained
F:	arch/m68k/mac/

M68K ON HP9000/300
M:	Philip Blundell <philb@gnu.org>
W:	http://www.tazenda.demon.co.uk/phil/linux-hp
S:	Maintained
F:	arch/m68k/hp300/

MAC80211
M:	Johannes Berg <johannes@sipsolutions.net>
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
S:	Maintained
F:	Documentation/networking/mac80211-injection.txt
F:	include/net/mac80211.h
F:	net/mac80211/

MAC80211 PID RATE CONTROL
M:	Stefano Brivio <stefano.brivio@polimi.it>
M:	Mattias Nissler <mattias.nissler@gmx.de>
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
S:	Maintained
F:	net/mac80211/rc80211_pid*

MACVLAN DRIVER
M:	Patrick McHardy <kaber@trash.net>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/macvlan.c
F:	include/linux/if_macvlan.h

MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
M:	Michael Kerrisk <mtk.manpages@gmail.com>
W:	http://www.kernel.org/doc/man-pages
L:	linux-man@vger.kernel.org
S:	Maintained

MARVELL LIBERTAS WIRELESS DRIVER
M:	Dan Williams <dcbw@redhat.com>
L:	libertas-dev@lists.infradead.org
S:	Maintained
F:	drivers/net/wireless/libertas/

MARVELL MV643XX ETHERNET DRIVER
M:	Lennert Buytenhek <buytenh@wantstofly.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/mv643xx_eth.*
F:	include/linux/mv643xx.h

MARVELL MWL8K WIRELESS DRIVER
M:	Lennert Buytenhek <buytenh@wantstofly.org>
L:	linux-wireless@vger.kernel.org
S:	Odd Fixes
F:	drivers/net/wireless/mwl8k.c

MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
M:	Nicolas Pitre <nico@fluxnic.net>
S:	Odd Fixes
F: drivers/mmc/host/mvsdio.*

MARVELL YUKON / SYSKONNECT DRIVER
M:	Mirko Lindner <mlindner@syskonnect.de>
M:	Ralph Roesler <rroesler@syskonnect.de>
W:	http://www.syskonnect.com
S:	Supported

MATROX FRAMEBUFFER DRIVER
M:	Petr Vandrovec <vandrove@vc.cvut.cz>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/matrox/matroxfb_*
F:	include/linux/matroxfb.h

MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
M:	"Hans J. Koch" <hjk@linutronix.de>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/max6650
F:	drivers/hwmon/max6650.c

MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
M:	Mauro Carvalho Chehab <mchehab@infradead.org>
P:	LinuxTV.org Project
L:	linux-media@vger.kernel.org
W:	http://linuxtv.org
Q:	http://patchwork.kernel.org/project/linux-media/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	Documentation/dvb/
F:	Documentation/video4linux/
F:	drivers/media/
F:	include/media/
F:	include/linux/dvb/
F:	include/linux/videodev*.h

MEGARAID SCSI DRIVERS
M:	Neela Syam Kolli <megaraidlinux@lsi.com>
L:	linux-scsi@vger.kernel.org
W:	http://megaraid.lsilogic.com
S:	Maintained
F:	Documentation/scsi/megaraid.txt
F:	drivers/scsi/megaraid.*
F:	drivers/scsi/megaraid/

MEMORY MANAGEMENT
L:	linux-mm@kvack.org
W:	http://www.linux-mm.org
S:	Maintained
F:	include/linux/mm.h
F:	mm/

MEMORY RESOURCE CONTROLLER
M:	Balbir Singh <balbir@linux.vnet.ibm.com>
M:	Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp>
M:	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
L:	linux-mm@kvack.org
S:	Maintained
F:	mm/memcontrol.c

MEMORY TECHNOLOGY DEVICES (MTD)
M:	David Woodhouse <dwmw2@infradead.org>
L:	linux-mtd@lists.infradead.org
W:	http://www.linux-mtd.infradead.org/
Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
T:	git git://git.infradead.org/mtd-2.6.git
S:	Maintained
F:	drivers/mtd/
F:	include/linux/mtd/
F:	include/mtd/

MICROBLAZE ARCHITECTURE
M:	Michal Simek <monstr@monstr.eu>
L:	microblaze-uclinux@itee.uq.edu.au
W:	http://www.monstr.eu/fdt/
T:	git git://git.monstr.eu/linux-2.6-microblaze.git
S:	Supported
F:	arch/microblaze/

MICROTEK X6 SCANNER
M:	Oliver Neukum <oliver@neukum.name>
S:	Maintained
F:	drivers/usb/image/microtek.*

MIPS
M:	Ralf Baechle <ralf@linux-mips.org>
W:	http://www.linux-mips.org/
L:	linux-mips@linux-mips.org
T:	git git://git.linux-mips.org/pub/scm/linux.git
S:	Supported
F:	Documentation/mips/
F:	arch/mips/

MISCELLANEOUS MCA-SUPPORT
M:	James Bottomley <James.Bottomley@HansenPartnership.com>
S:	Maintained
F:	Documentation/ia64/mca.txt
F:	Documentation/mca.txt
F:	drivers/mca/
F:	include/linux/mca*

MODULE SUPPORT
M:	Rusty Russell <rusty@rustcorp.com.au>
S:	Maintained
F:	include/linux/module.h
F:	kernel/module.c

MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
M:	Stelian Pop <stelian@popies.net>
W:	http://popies.net/meye/
S:	Maintained
F:	Documentation/video4linux/meye.txt
F:	drivers/media/video/meye.*
F:	include/linux/meye.h

MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER
M:	Pavel Pisa <ppisa@pikron.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	drivers/mmc/host/imxmmc.*

MOUSE AND MISC DEVICES [GENERAL]
M:	Alessandro Rubini <rubini@ipvvis.unipv.it>
S:	Maintained
F:	drivers/input/mouse/
F:	include/linux/gpio_mouse.h

MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
M:	Jiri Slaby <jirislaby@gmail.com>
S:	Maintained
F:	Documentation/serial/moxa-smartio
F:	drivers/char/mxser.*

MSI LAPTOP SUPPORT
M:	Lennart Poettering <mzxreary@0pointer.de>
L:	platform-driver-x86@vger.kernel.org
W:	https://tango.0pointer.de/mailman/listinfo/s270-linux
W:	http://0pointer.de/lennart/tchibo.html
S:	Maintained
F:	drivers/platform/x86/msi-laptop.c

MSI WMI SUPPORT
M:	Anisse Astier <anisse@astier.eu>
L:	platform-driver-x86@vger.kernel.org
S:	Supported
F:	drivers/platform/x86/msi-wmi.c

MULTIFUNCTION DEVICES (MFD)
M:	Samuel Ortiz <sameo@linux.intel.com>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
S:	Supported
F:	drivers/mfd/

MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
S:	Orphan
L:	linux-mmc@vger.kernel.org
F:	drivers/mmc/
F:	include/linux/mmc/

MULTIMEDIA CARD (MMC) ETC. OVER SPI
M:	David Brownell <dbrownell@users.sourceforge.net>
S:	Odd Fixes
F:	drivers/mmc/host/mmc_spi.c
F:	include/linux/spi/mmc_spi.h

MULTISOUND SOUND DRIVER
M:	Andrew Veliath <andrewtv@usa.net>
S:	Maintained
F:	Documentation/sound/oss/MultiSound
F:	sound/oss/msnd*

MULTITECH MULTIPORT CARD (ISICOM)
M:	Jiri Slaby <jirislaby@gmail.com>
S:	Maintained
F:	drivers/char/isicom.c
F:	include/linux/isicom.h

MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
M:	Felipe Balbi <felipe.balbi@nokia.com>
L:	linux-usb@vger.kernel.org
T:	git git://gitorious.org/usb/usb.git
S:	Maintained
F:	drivers/usb/musb/

MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
M:	Andrew Gallatin <gallatin@myri.com>
M:	Brice Goglin <brice@myri.com>
L:	netdev@vger.kernel.org
W:	http://www.myri.com/scs/download-Myri10GE.html
S:	Supported
F:	drivers/net/myri10ge/

NATSEMI ETHERNET DRIVER (DP8381x)
M:	Tim Hockin <thockin@hockin.org>
S:	Maintained
F:	drivers/net/natsemi.c

NCP FILESYSTEM
M:	Petr Vandrovec <vandrove@vc.cvut.cz>
S:	Maintained
F:	fs/ncpfs/

NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/NCR_D700.*

NETEFFECT IWARP RNIC DRIVER (IW_NES)
M:	Faisal Latif <faisal.latif@intel.com>
M:	Chien Tung <chien.tin.tung@intel.com>
L:	linux-rdma@vger.kernel.org
W:	http://www.neteffect.com
S:	Supported
F:	drivers/infiniband/hw/nes/

NETEM NETWORK EMULATOR
M:	Stephen Hemminger <shemminger@linux-foundation.org>
L:	netem@lists.linux-foundation.org
S:	Maintained
F:	net/sched/sch_netem.c

NETERION 10GbE DRIVERS (s2io/vxge)
M:	Ramkrishna Vepa <ramkrishna.vepa@exar.com>
M:	Sivakumar Subramani <sivakumar.subramani@exar.com>
M:	Sreenivasa Honnur <sreenivasa.honnur@exar.com>
M:	Jon Mason <jon.mason@exar.com>
L:	netdev@vger.kernel.org
W:	http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous
W:	http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous
S:	Supported
F:	Documentation/networking/s2io.txt
F:	drivers/net/s2io*
F:	Documentation/networking/vxge.txt
F:	drivers/net/vxge/

NETFILTER/IPTABLES/IPCHAINS
P:	Rusty Russell
P:	Marc Boucher
P:	James Morris
P:	Harald Welte
P:	Jozsef Kadlecsik
M:	Patrick McHardy <kaber@trash.net>
L:	netfilter-devel@vger.kernel.org
L:	netfilter@vger.kernel.org
L:	coreteam@netfilter.org
W:	http://www.netfilter.org/
W:	http://www.iptables.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git
S:	Supported
F:	include/linux/netfilter*
F:	include/linux/netfilter/
F:	include/net/netfilter/
F:	net/*/netfilter.c
F:	net/*/netfilter/
F:	net/netfilter/

NETLABEL
M:	Paul Moore <paul.moore@hp.com>
W:	http://netlabel.sf.net
L:	netdev@vger.kernel.org
S:	Supported
F:	Documentation/netlabel/
F:	include/net/netlabel.h
F:	net/netlabel/

NETROM NETWORK LAYER
M:	Ralf Baechle <ralf@linux-mips.org>
L:	linux-hams@vger.kernel.org
W:	http://www.linux-ax25.org/
S:	Maintained
F:	include/linux/netrom.h
F:	include/net/netrom.h
F:	net/netrom/

NETWORK BLOCK DEVICE (NBD)
M:	Paul Clements <Paul.Clements@steeleye.com>
S:	Maintained
F:	Documentation/blockdev/nbd.txt
F:	drivers/block/nbd.c
F:	include/linux/nbd.h

NETWORK DROP MONITOR
M:	Neil Horman <nhorman@tuxdriver.com>
L:	netdev@vger.kernel.org
S:	Maintained
W:	https://fedorahosted.org/dropwatch/
F:	net/core/drop_monitor.c

NETWORKING [GENERAL]
M:	"David S. Miller" <davem@davemloft.net>
L:	netdev@vger.kernel.org
W:	http://www.linuxfoundation.org/en/Net
W:	http://patchwork.ozlabs.org/project/netdev/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
S:	Maintained
F:	net/
F:	include/net/
F:	include/linux/in.h
F:	include/linux/net.h
F:	include/linux/netdevice.h

NETWORKING [IPv4/IPv6]
M:	"David S. Miller" <davem@davemloft.net>
M:	Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
M:	"Pekka Savola (ipv6)" <pekkas@netcore.fi>
M:	James Morris <jmorris@namei.org>
M:	Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
M:	Patrick McHardy <kaber@trash.net>
L:	netdev@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
S:	Maintained
F:	net/ipv4/
F:	net/ipv6/
F:	include/net/ip*

NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
M:	Paul Moore <paul.moore@hp.com>
L:	netdev@vger.kernel.org
S:	Maintained

NETWORKING [WIRELESS]
M:	"John W. Linville" <linville@tuxdriver.com>
L:	linux-wireless@vger.kernel.org
Q:	http://patchwork.kernel.org/project/linux-wireless/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git
S:	Maintained
F:	net/mac80211/
F:	net/rfkill/
F:	net/wireless/
F:	include/net/ieee80211*
F:	include/linux/wireless.h
F:	include/linux/iw_handler.h
F:	drivers/net/wireless/

NETWORKING DRIVERS
L:	netdev@vger.kernel.org
W:	http://www.linuxfoundation.org/en/Net
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git
S:	Odd Fixes
F:	drivers/net/
F:	include/linux/if_*
F:	include/linux/*device.h

NETXEN (1/10) GbE SUPPORT
M:	Amit Kumar Salecha <amit.salecha@qlogic.com>
L:	netdev@vger.kernel.org
W:	http://www.qlogic.com
S:	Supported
F:	drivers/net/netxen/

NFS, SUNRPC, AND LOCKD CLIENTS
M:	Trond Myklebust <Trond.Myklebust@netapp.com>
L:	linux-nfs@vger.kernel.org
W:	http://client.linux-nfs.org
T:	git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
S:	Maintained
F:	fs/lockd/
F:	fs/nfs/
F:	fs/nfs_common/
F:	net/sunrpc/
F:	include/linux/lockd/
F:	include/linux/nfs*
F:	include/linux/sunrpc/

NI5010 NETWORK DRIVER
M:	Jan-Pascal van Best <janpascal@vanbest.org>
M:	Andreas Mohr <andi@lisas.de>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/ni5010.*

NILFS2 FILESYSTEM
M:	KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
L:	linux-nilfs@vger.kernel.org
W:	http://www.nilfs.org/en/
S:	Supported
F:	Documentation/filesystems/nilfs2.txt
F:	fs/nilfs2/
F:	include/linux/nilfs2_fs.h

NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
S:	Maintained
F:	Documentation/scsi/NinjaSCSI.txt
F:	drivers/scsi/pcmcia/nsp_*

NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
M:	GOTO Masanori <gotom@debian.or.jp>
M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
S:	Maintained
F:	Documentation/scsi/NinjaSCSI.txt
F:	drivers/scsi/nsp32*

NTFS FILESYSTEM
M:	Anton Altaparmakov <aia21@cantab.net>
L:	linux-ntfs-dev@lists.sourceforge.net
W:	http://www.linux-ntfs.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git
S:	Maintained
F:	Documentation/filesystems/ntfs.txt
F:	fs/ntfs/

NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
M:	Antonino Daplas <adaplas@gmail.com>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/riva/
F:	drivers/video/nvidia/

OMAP SUPPORT
M:	Tony Lindgren <tony@atomide.com>
L:	linux-omap@vger.kernel.org
W:	http://www.muru.com/linux/omap/
W:	http://linux.omap.com/
Q:	http://patchwork.kernel.org/project/linux-omap/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git
S:	Maintained
F:	arch/arm/*omap*/

OMAP CLOCK FRAMEWORK SUPPORT
M:	Paul Walmsley <paul@pwsan.com>
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	arch/arm/*omap*/*clock*

OMAP POWER MANAGEMENT SUPPORT
M:	Kevin Hilman <khilman@deeprootsystems.com>
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	arch/arm/*omap*/*pm*

OMAP AUDIO SUPPORT
M:	Jarkko Nikula <jhnikula@gmail.com>
L:	alsa-devel@alsa-project.org (subscribers-only)
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	sound/soc/omap/

OMAP FRAMEBUFFER SUPPORT
M:	Tomi Valkeinen <tomi.valkeinen@nokia.com>
L:	linux-fbdev@vger.kernel.org
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	drivers/video/omap/

OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
M:	Tomi Valkeinen <tomi.valkeinen@nokia.com>
L:	linux-omap@vger.kernel.org
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/omap2/
F:	Documentation/arm/OMAP/DSS

OMAP MMC SUPPORT
M:	Jarkko Lavinen <jarkko.lavinen@nokia.com>
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	drivers/mmc/host/omap.c

OMAP HS MMC SUPPORT
M:	Madhusudhan Chikkature <madhu.cr@ti.com>
L:	linux-omap@vger.kernel.org
S:	Maintained
F:	drivers/mmc/host/omap_hsmmc.c

OMAP RANDOM NUMBER GENERATOR SUPPORT
M:	Deepak Saxena <dsaxena@plexity.net>
S:	Maintained
F:	drivers/char/hw_random/omap-rng.c

OMAP USB SUPPORT
M:	Felipe Balbi <felipe.balbi@nokia.com>
M:	David Brownell <dbrownell@users.sourceforge.net>
L:	linux-usb@vger.kernel.org
L:	linux-omap@vger.kernel.org
S:	Maintained

OMFS FILESYSTEM
M:	Bob Copeland <me@bobcopeland.com>
L:	linux-karma-devel@lists.sourceforge.net
S:	Maintained
F:	Documentation/filesystems/omfs.txt
F:	fs/omfs/

OMNIKEY CARDMAN 4000 DRIVER
M:	Harald Welte <laforge@gnumonks.org>
S:	Maintained
F:	drivers/char/pcmcia/cm4000_cs.c
F:	include/linux/cm4000_cs.h

OMNIKEY CARDMAN 4040 DRIVER
M:	Harald Welte <laforge@gnumonks.org>
S:	Maintained
F:	drivers/char/pcmcia/cm4040_cs.*

OMNIVISION OV7670 SENSOR DRIVER
M:	Jonathan Corbet <corbet@lwn.net>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	drivers/media/video/ov7670.c

ONENAND FLASH DRIVER
M:	Kyungmin Park <kyungmin.park@samsung.com>
L:	linux-mtd@lists.infradead.org
S:	Maintained
F:	drivers/mtd/onenand/
F:	include/linux/mtd/onenand*.h

ONSTREAM SCSI TAPE DRIVER
M:	Willem Riede <osst@riede.org>
L:	osst-users@lists.sourceforge.net
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/osst*
F:	drivers/scsi/st*

OPENCORES I2C BUS DRIVER
M:	Peter Korsgaard <jacmet@sunsite.dk>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	Documentation/i2c/busses/i2c-ocores
F:	drivers/i2c/busses/i2c-ocores.c

OPEN FIRMWARE AND FLATTENED DEVICE TREE
M:	Grant Likely <grant.likely@secretlab.ca>
L:	devicetree-discuss@lists.ozlabs.org
W:	http://fdt.secretlab.ca
T:	git git://git.secretlab.ca/git/linux-2.6.git
S:	Maintained
F:	drivers/of
F:	include/linux/of*.h
K:	of_get_property

OPROFILE
M:	Robert Richter <robert.richter@amd.com>
L:	oprofile-list@lists.sf.net
S:	Maintained
F:	arch/*/include/asm/oprofile*.h
F:	arch/*/oprofile/
F:	drivers/oprofile/
F:	include/linux/oprofile.h

ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
M:	Mark Fasheh <mfasheh@suse.com>
M:	Joel Becker <joel.becker@oracle.com>
L:	ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
W:	http://oss.oracle.com/projects/ocfs2/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
S:	Supported
F:	Documentation/filesystems/ocfs2.txt
F:	Documentation/filesystems/dlmfs.txt
F:	fs/ocfs2/

ORINOCO DRIVER
M:	Pavel Roskin <proski@gnu.org>
M:	David Gibson <hermes@gibson.dropbear.id.au>
L:	linux-wireless@vger.kernel.org
L:	orinoco-users@lists.sourceforge.net
L:	orinoco-devel@lists.sourceforge.net
W:	http://www.nongnu.org/orinoco/
S:	Maintained
F:	drivers/net/wireless/orinoco/

OSD LIBRARY and FILESYSTEM
M:	Boaz Harrosh <bharrosh@panasas.com>
M:	Benny Halevy <bhalevy@panasas.com>
L:	osd-dev@open-osd.org
W:	http://open-osd.org
T:	git git://git.open-osd.org/open-osd.git
S:	Maintained
F:	drivers/scsi/osd/
F:	include/scsi/osd_*
F:	fs/exofs/

P54 WIRELESS DRIVER
M:	Christian Lamparter <chunkeey@googlemail.com>
L:	linux-wireless@vger.kernel.org
W:	http://wireless.kernel.org/en/users/Drivers/p54
S:	Maintained
F:	drivers/net/wireless/p54/

PA SEMI ETHERNET DRIVER
M:	Olof Johansson <olof@lixom.net>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/pasemi_mac.*

PA SEMI SMBUS DRIVER
M:	Olof Johansson <olof@lixom.net>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	drivers/i2c/busses/i2c-pasemi.c

PANASONIC LAPTOP ACPI EXTRAS DRIVER
M:	Harald Welte <laforge@gnumonks.org>
L:	platform-driver-x86@vger.kernel.org
S:	Maintained
F:	drivers/platform/x86/panasonic-laptop.c

PANASONIC MN10300/AM33 PORT
M:	David Howells <dhowells@redhat.com>
M:	Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
L:	linux-am33-list@redhat.com (moderated for non-subscribers)
W:	ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
S:	Maintained
F:	Documentation/mn10300/
F:	arch/mn10300/

PARALLEL PORT SUPPORT
L:	linux-parport@lists.infradead.org (subscribers-only)
S:	Orphan
F:	drivers/parport/
F:	include/linux/parport*.h
F:	drivers/char/ppdev.c
F:	include/linux/ppdev.h

PARAVIRT_OPS INTERFACE
M:	Jeremy Fitzhardinge <jeremy@xensource.com>
M:	Chris Wright <chrisw@sous-sol.org>
M:	Alok Kataria <akataria@vmware.com>
M:	Rusty Russell <rusty@rustcorp.com.au>
L:	virtualization@lists.osdl.org
S:	Supported
F:	Documentation/ia64/paravirt_ops.txt
F:	arch/*/kernel/paravirt*
F:	arch/*/include/asm/paravirt.h

PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
M:	Tim Waugh <tim@cyberelk.net>
L:	linux-parport@lists.infradead.org (subscribers-only)
W:	http://www.torque.net/linux-pp.html
S:	Maintained
F:	Documentation/blockdev/paride.txt
F:	drivers/block/paride/

PARISC ARCHITECTURE
M:	Kyle McMartin <kyle@mcmartin.ca>
M:	Helge Deller <deller@gmx.de>
M:	"James E.J. Bottomley" <jejb@parisc-linux.org>
L:	linux-parisc@vger.kernel.org
W:	http://www.parisc-linux.org/
Q:	http://patchwork.kernel.org/project/linux-parisc/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git
S:	Maintained
F:	arch/parisc/
F:	drivers/parisc/

PC87360 HARDWARE MONITORING DRIVER
M:	Jim Cromie <jim.cromie@gmail.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/pc87360
F:	drivers/hwmon/pc87360.c

PC8736x GPIO DRIVER
M:	Jim Cromie <jim.cromie@gmail.com>
S:	Maintained
F:	drivers/char/pc8736x_gpio.c

PCA9532 LED DRIVER
M:	Riku Voipio <riku.voipio@iki.fi>
S:	Maintained
F:	drivers/leds/leds-pca9532.c
F:	include/linux/leds-pca9532.h

PCA9564/PCA9665 I2C BUS DRIVER
M:	Wolfram Sang <w.sang@pengutronix.de>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	drivers/i2c/algos/i2c-algo-pca.c
F:	drivers/i2c/busses/i2c-pca-*
F:	include/linux/i2c-algo-pca.h
F:	include/linux/i2c-pca-platform.h

PCI ERROR RECOVERY
M:	Linas Vepstas <linas@austin.ibm.com>
L:	linux-pci@vger.kernel.org
S:	Supported
F:	Documentation/PCI/pci-error-recovery.txt
F:	Documentation/powerpc/eeh-pci-error-recovery.txt

PCI SUBSYSTEM
M:	Jesse Barnes <jbarnes@virtuousgeek.org>
L:	linux-pci@vger.kernel.org
Q:	http://patchwork.kernel.org/project/linux-pci/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git
S:	Supported
F:	Documentation/PCI/
F:	drivers/pci/
F:	include/linux/pci*

PCI HOTPLUG
M:	Jesse Barnes <jbarnes@virtuousgeek.org>
L:	linux-pci@vger.kernel.org
S:	Supported
F:	drivers/pci/hotplug

PCMCIA SUBSYSTEM
P:	Linux PCMCIA Team
L:	linux-pcmcia@lists.infradead.org
W:	http://lists.infradead.org/mailman/listinfo/linux-pcmcia
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
S:	Maintained
F:	Documentation/pcmcia/
F:	drivers/pcmcia/
F:	include/pcmcia/

PCNET32 NETWORK DRIVER
M:	Don Fry <pcnet32@verizon.net>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/pcnet32.c

PER-TASK DELAY ACCOUNTING
M:	Balbir Singh <balbir@linux.vnet.ibm.com>
S:	Maintained
F:	include/linux/delayacct.h
F:	kernel/delayacct.c

PERFORMANCE EVENTS SUBSYSTEM
M:	Peter Zijlstra <a.p.zijlstra@chello.nl>
M:	Paul Mackerras <paulus@samba.org>
M:	Ingo Molnar <mingo@elte.hu>
M:	Arnaldo Carvalho de Melo <acme@redhat.com>
S:	Supported
F:	kernel/perf_event*.c
F:	include/linux/perf_event.h
F:	arch/*/kernel/perf_event*.c
F:	arch/*/kernel/*/perf_event*.c
F:	arch/*/kernel/*/*/perf_event*.c
F:	arch/*/include/asm/perf_event.h
F:	arch/*/lib/perf_event*.c
F:	arch/*/kernel/perf_callchain.c
F:	tools/perf/

PERSONALITY HANDLING
M:	Christoph Hellwig <hch@infradead.org>
L:	linux-abi-devel@lists.sourceforge.net
S:	Maintained
F:	include/linux/personality.h

PHRAM MTD DRIVER
M:	Joern Engel <joern@lazybastard.org>
L:	linux-mtd@lists.infradead.org
S:	Maintained
F:	drivers/mtd/devices/phram.c

PKTCDVD DRIVER
M:	Peter Osterlund <petero2@telia.com>
S:	Maintained
F:	drivers/block/pktcdvd.c
F:	include/linux/pktcdvd.h

PMC SIERRA MaxRAID DRIVER
M:	Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
L:	linux-scsi@vger.kernel.org
W:	http://www.pmc-sierra.com/
S:	Supported
F:	drivers/scsi/pmcraid.*

PMC SIERRA PM8001 DRIVER
M:	jack_wang@usish.com
M:	lindar_liu@usish.com
L:	linux-scsi@vger.kernel.org
S:	Supported
F:	drivers/scsi/pm8001/

POSIX CLOCKS and TIMERS
M:	Thomas Gleixner <tglx@linutronix.de>
S:	Supported
F:	fs/timerfd.c
F:	include/linux/timer*
F:	kernel/*timer*

POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
M:	Anton Vorontsov <cbou@mail.ru>
M:	David Woodhouse <dwmw2@infradead.org>
T:	git git://git.infradead.org/battery-2.6.git
S:	Maintained
F:	include/linux/power_supply.h
F:	drivers/power/power_supply*

PNP SUPPORT
M:	Adam Belay <abelay@mit.edu>
M:	Bjorn Helgaas <bjorn.helgaas@hp.com>
S:	Maintained
F:	drivers/pnp/

PNXxxxx I2C DRIVER
M:	Vitaly Wool <vitalywool@gmail.com>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	drivers/i2c/busses/i2c-pnx.c

PPP PROTOCOL DRIVERS AND COMPRESSORS
M:	Paul Mackerras <paulus@samba.org>
L:	linux-ppp@vger.kernel.org
S:	Maintained
F:	drivers/net/ppp_*

PPP OVER ATM (RFC 2364)
M:	Mitchell Blank Jr <mitch@sfgoth.com>
S:	Maintained
F:	net/atm/pppoatm.c
F:	include/linux/atmppp.h

PPP OVER ETHERNET
M:	Michal Ostrowski <mostrows@earthlink.net>
S:	Maintained
F:	drivers/net/pppoe.c
F:	drivers/net/pppox.c

PPP OVER L2TP
M:	James Chapman <jchapman@katalix.com>
S:	Maintained
F:	drivers/net/pppol2tp.c
F:	include/linux/if_pppol2tp.h

PPS SUPPORT
M:	Rodolfo Giometti <giometti@enneenne.com>
W:	http://wiki.enneenne.com/index.php/LinuxPPS_support
L:	linuxpps@ml.enneenne.com (subscribers-only)
S:	Maintained
F:	Documentation/pps/
F:	drivers/pps/
F:	include/linux/pps*.h

PREEMPTIBLE KERNEL
M:	Robert Love <rml@tech9.net>
L:	kpreempt-tech@lists.sourceforge.net
W:	ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
S:	Supported
F:	Documentation/preempt-locking.txt
F:	include/linux/preempt.h

PRISM54 WIRELESS DRIVER
M:	"Luis R. Rodriguez" <mcgrof@gmail.com>
L:	linux-wireless@vger.kernel.org
W:	http://prism54.org
S:	Obsolete
F:	drivers/net/wireless/prism54/

PROMISE DC4030 CACHING DISK CONTROLLER DRIVER
M:	Peter Denison <promise@pnd-pc.demon.co.uk>
W:	http://www.pnd-pc.demon.co.uk/promise/
S:	Maintained

PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
M:	Mikael Pettersson <mikpe@it.uu.se>
L:	linux-ide@vger.kernel.org
S:	Maintained
F:	drivers/ata/sata_promise.*

PS3 NETWORK SUPPORT
M:	Geoff Levand <geoff@infradead.org>
L:	netdev@vger.kernel.org
L:	cbe-oss-dev@ozlabs.org
S:	Maintained
F:	drivers/net/ps3_gelic_net.*

PS3 PLATFORM SUPPORT
M:	Geoff Levand <geoff@infradead.org>
L:	linuxppc-dev@ozlabs.org
L:	cbe-oss-dev@ozlabs.org
S:	Maintained
F:	arch/powerpc/boot/ps3*
F:	arch/powerpc/include/asm/lv1call.h
F:	arch/powerpc/include/asm/ps3*.h
F:	arch/powerpc/platforms/ps3/
F:	drivers/*/ps3*
F:	drivers/ps3/
F:	drivers/rtc/rtc-ps3.c
F:	drivers/usb/host/*ps3.c
F:	sound/ppc/snd_ps3*

PS3VRAM DRIVER
M:	Jim Paris <jim@jtan.com>
L:	cbe-oss-dev@ozlabs.org
S:	Maintained

PTRACE SUPPORT
M:	Roland McGrath <roland@redhat.com>
M:	Oleg Nesterov <oleg@redhat.com>
S:	Maintained
F:	include/asm-generic/syscall.h
F:	include/linux/ptrace.h
F:	include/linux/regset.h
F:	include/linux/tracehook.h
F:	kernel/ptrace.c

PVRUSB2 VIDEO4LINUX DRIVER
M:	Mike Isely <isely@pobox.com>
L:	pvrusb2@isely.net	(subscribers-only)
L:	linux-media@vger.kernel.org
W:	http://www.isely.net/pvrusb2/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	Documentation/video4linux/README.pvrusb2
F:	drivers/media/video/pvrusb2/

PXA2xx/PXA3xx SUPPORT
M:	Eric Miao <eric.y.miao@gmail.com>
M:	Russell King <linux@arm.linux.org.uk>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	arch/arm/mach-pxa/
F:	drivers/pcmcia/pxa2xx*
F:	drivers/spi/pxa2xx*
F:	drivers/usb/gadget/pxa2*
F:	include/sound/pxa2xx-lib.h
F:	sound/arm/pxa*
F:	sound/soc/pxa

PXA168 SUPPORT
M:	Eric Miao <eric.y.miao@gmail.com>
M:	Jason Chagas <jason.chagas@marvell.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
S:	Maintained

PXA910 SUPPORT
M:	Eric Miao <eric.y.miao@gmail.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
S:	Maintained

MMP2 SUPPORT (aka ARMADA610)
M:	Haojian Zhuang <haojian.zhuang@marvell.com>
M:	Eric Miao <eric.y.miao@gmail.com>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git
S:	Maintained

PXA MMCI DRIVER
S:	Orphan

PXA RTC DRIVER
M:	Robert Jarzmik <robert.jarzmik@free.fr>
L:	rtc-linux@googlegroups.com
S:	Maintained

QLOGIC QLA1280 SCSI DRIVER
M:	Michael Reed <mdr@sgi.com>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/qla1280.[ch]

QLOGIC QLA2XXX FC-SCSI DRIVER
M:	Andrew Vasquez <andrew.vasquez@qlogic.com>
M:	linux-driver@qlogic.com
L:	linux-scsi@vger.kernel.org
S:	Supported
F:	Documentation/scsi/LICENSE.qla2xxx
F:	drivers/scsi/qla2xxx/

QLOGIC QLA4XXX iSCSI DRIVER
M:	Ravi Anand <ravi.anand@qlogic.com>
M:	Vikas Chaudhary <vikas.chaudhary@qlogic.com>
M:	iscsi-driver@qlogic.com
L:	linux-scsi@vger.kernel.org
S:	Supported
F:	drivers/scsi/qla4xxx/

QLOGIC QLA3XXX NETWORK DRIVER
M:	Ron Mercer <ron.mercer@qlogic.com>
M:	linux-driver@qlogic.com
L:	netdev@vger.kernel.org
S:	Supported
F:	Documentation/networking/LICENSE.qla3xxx
F:	drivers/net/qla3xxx.*

QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
M:	Amit Kumar Salecha <amit.salecha@qlogic.com>
M:	Anirban Chakraborty <anirban.chakraborty@qlogic.com>
M:	linux-driver@qlogic.com
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/qlcnic/

QLOGIC QLGE 10Gb ETHERNET DRIVER
M:	Ron Mercer <ron.mercer@qlogic.com>
M:	linux-driver@qlogic.com
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/qlge/

QNX4 FILESYSTEM
M:	Anders Larsen <al@alarsen.net>
W:	http://www.alarsen.net/linux/qnx4fs/
S:	Maintained
F:	fs/qnx4/
F:	include/linux/qnx4_fs.h
F:	include/linux/qnxtypes.h

RADEON FRAMEBUFFER DISPLAY DRIVER
M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/aty/radeon*
F:	include/linux/radeonfb.h

RAGE128 FRAMEBUFFER DISPLAY DRIVER
M:	Paul Mackerras <paulus@samba.org>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/aty/aty128fb.c

RALINK RT2X00 WIRELESS LAN DRIVER
P:	rt2x00 project
M:	Ivo van Doorn <IvDoorn@gmail.com>
M:	Gertjan van Wingerde <gwingerde@gmail.com>
L:	linux-wireless@vger.kernel.org
L:	users@rt2x00.serialmonkey.com (moderated for non-subscribers)
W:	http://rt2x00.serialmonkey.com/
S:	Maintained
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
F:	drivers/net/wireless/rt2x00/

RAMDISK RAM BLOCK DEVICE DRIVER
M:	Nick Piggin <npiggin@kernel.dk>
S:	Maintained
F:	Documentation/blockdev/ramdisk.txt
F:	drivers/block/brd.c

RANDOM NUMBER DRIVER
M:	Matt Mackall <mpm@selenic.com>
S:	Maintained
F:	drivers/char/random.c

RAPIDIO SUBSYSTEM
M:	Matt Porter <mporter@kernel.crashing.org>
S:	Maintained
F:	drivers/rapidio/

RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
L:	linux-wireless@vger.kernel.org
S:	Orphan
F:	drivers/net/wireless/ray*

RCUTORTURE MODULE
M:	Josh Triplett <josh@freedesktop.org>
M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
S:	Supported
F:	Documentation/RCU/torture.txt
F:	kernel/rcutorture.c

RDC R-321X SoC
M:	Florian Fainelli <florian@openwrt.org>
S:	Maintained

RDC R6040 FAST ETHERNET DRIVER
M:	Florian Fainelli <florian@openwrt.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/r6040.c

RDS - RELIABLE DATAGRAM SOCKETS
M:	Andy Grover <andy.grover@oracle.com>
L:	rds-devel@oss.oracle.com (moderated for non-subscribers)
S:	Supported
F:	net/rds/

READ-COPY UPDATE (RCU)
M:	Dipankar Sarma <dipankar@in.ibm.com>
M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
W:	http://www.rdrop.com/users/paulmck/rclock/
S:	Supported
F:	Documentation/RCU/
F:	include/linux/rcu*
F:	include/linux/srcu*
F:	kernel/rcu*
F:	kernel/srcu*
X:	kernel/rcutorture.c

REAL TIME CLOCK DRIVER
M:	Paul Gortmaker <p_gortmaker@yahoo.com>
S:	Maintained
F:	Documentation/rtc.txt
F:	drivers/rtc/
F:	include/linux/rtc.h

REAL TIME CLOCK (RTC) SUBSYSTEM
M:	Alessandro Zummo <a.zummo@towertech.it>
L:	rtc-linux@googlegroups.com
Q:	http://patchwork.ozlabs.org/project/rtc-linux/list/
S:	Maintained
F:	Documentation/rtc.txt
F:	drivers/rtc/
F:	include/linux/rtc.h

REISERFS FILE SYSTEM
L:	reiserfs-devel@vger.kernel.org
S:	Supported
F:	fs/reiserfs/

RFKILL
M:	Johannes Berg <johannes@sipsolutions.net>
L:	linux-wireless@vger.kernel.org
S:	Maintained
F:	Documentation/rfkill.txt
F:	net/rfkill/

RICOH SMARTMEDIA/XD DRIVER
M:	Maxim Levitsky <maximlevitsky@gmail.com>
S:	Maintained
F:	drivers/mtd/nand/r822.c
F:	drivers/mtd/nand/r822.h

RISCOM8 DRIVER
S:	Orphan
F:	Documentation/serial/riscom8.txt
F:	drivers/char/riscom8*

ROCKETPORT DRIVER
P:	Comtrol Corp.
W:	http://www.comtrol.com
S:	Maintained
F:	Documentation/serial/rocket.txt
F:	drivers/char/rocket*

ROSE NETWORK LAYER
M:	Ralf Baechle <ralf@linux-mips.org>
L:	linux-hams@vger.kernel.org
W:	http://www.linux-ax25.org/
S:	Maintained
F:	include/linux/rose.h
F:	include/net/rose.h
F:	net/rose/

RTL8180 WIRELESS DRIVER
M:	"John W. Linville" <linville@tuxdriver.com>
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
S:	Maintained
F:	drivers/net/wireless/rtl818x/rtl8180*

RTL8187 WIRELESS DRIVER
M:	Herton Ronaldo Krzesinski <herton@mandriva.com.br>
M:	Hin-Tak Leung <htl10@users.sourceforge.net>
M:	Larry Finger <Larry.Finger@lwfinger.net>
L:	linux-wireless@vger.kernel.org
W:	http://linuxwireless.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
S:	Maintained
F:	drivers/net/wireless/rtl818x/rtl8187*

S3 SAVAGE FRAMEBUFFER DRIVER
M:	Antonino Daplas <adaplas@gmail.com>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/savage/

S390
M:	Martin Schwidefsky <schwidefsky@de.ibm.com>
M:	Heiko Carstens <heiko.carstens@de.ibm.com>
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
F:	arch/s390/
F:	drivers/s390/
F:	fs/partitions/ibm.c
F:	Documentation/s390/
F:	Documentation/DocBook/s390*

S390 NETWORK DRIVERS
M:	Ursula Braun <ursula.braun@de.ibm.com>
M:	Frank Blaschka <blaschka@linux.vnet.ibm.com>
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
F:	drivers/s390/net/

S390 ZCRYPT DRIVER
M:	Felix Beck <felix.beck@de.ibm.com>
M:	Ralph Wuerthner <ralph.wuerthner@de.ibm.com>
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
F:	drivers/s390/crypto/

S390 ZFCP DRIVER
M:	Christof Schmitt <christof.schmitt@de.ibm.com>
M:	Swen Schillig <swen@vnet.ibm.com>
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
F:	drivers/s390/scsi/zfcp_*

S390 IUCV NETWORK LAYER
M:	Ursula Braun <ursula.braun@de.ibm.com>
M:	linux390@de.ibm.com
L:	linux-s390@vger.kernel.org
W:	http://www.ibm.com/developerworks/linux/linux390/
S:	Supported
F:	drivers/s390/net/*iucv*
F:	include/net/iucv/
F:	net/iucv/

S3C24XX SD/MMC Driver
M:	Ben Dooks <ben-linux@fluff.org>
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Supported
F:	drivers/mmc/host/s3cmci.*

SAA7146 VIDEO4LINUX-2 DRIVER
M:	Michael Hunold <michael@mihu.de>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://www.mihu.de/linux/saa7146
S:	Maintained
F:	drivers/media/common/saa7146*
F:	drivers/media/video/*7146*
F:	include/media/*7146*

TLG2300 VIDEO4LINUX-2 DRIVER
M:	Huang Shijie <shijie8@gmail.com>
M:	Kang Yong <kangyong@telegent.com>
M:	Zhang Xiaobing <xbzhang@telegent.com>
S:	Supported
F:	drivers/media/video/tlg2300

SC1200 WDT DRIVER
M:	Zwane Mwaikambo <zwane@arm.linux.org.uk>
S:	Maintained
F:	drivers/watchdog/sc1200wdt.c

SCHEDULER
M:	Ingo Molnar <mingo@elte.hu>
M:	Peter Zijlstra <peterz@infradead.org>
S:	Maintained
F:	kernel/sched*
F:	include/linux/sched.h

SCORE ARCHITECTURE
M:	Chen Liqin <liqin.chen@sunplusct.com>
M:	Lennox Wu <lennox.wu@gmail.com>
W:	http://www.sunplusct.com
S:	Supported
F:	arch/score/

SCSI CDROM DRIVER
M:	Jens Axboe <axboe@kernel.dk>
L:	linux-scsi@vger.kernel.org
W:	http://www.kernel.dk
S:	Maintained
F:	drivers/scsi/sr*

SCSI SG DRIVER
M:	Doug Gilbert <dgilbert@interlog.com>
L:	linux-scsi@vger.kernel.org
W:	http://www.torque.net/sg
S:	Maintained
F:	drivers/scsi/sg.c
F:	include/scsi/sg.h

SCSI SUBSYSTEM
M:	"James E.J. Bottomley" <James.Bottomley@suse.de>
L:	linux-scsi@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
S:	Maintained
F:	drivers/scsi/
F:	include/scsi/

SCSI TAPE DRIVER
M:	Kai Mäkisara <Kai.Makisara@kolumbus.fi>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	Documentation/scsi/st.txt
F:	drivers/scsi/st*

SCTP PROTOCOL
M:	Vlad Yasevich <vladislav.yasevich@hp.com>
M:	Sridhar Samudrala <sri@us.ibm.com>
L:	linux-sctp@vger.kernel.org
W:	http://lksctp.sourceforge.net
S:	Supported
F:	Documentation/networking/sctp.txt
F:	include/linux/sctp.h
F:	include/net/sctp/
F:	net/sctp/

SCx200 CPU SUPPORT
M:	Jim Cromie <jim.cromie@gmail.com>
S:	Odd Fixes
F:	Documentation/i2c/busses/scx200_acb
F:	arch/x86/kernel/scx200_32.c
F:	drivers/watchdog/scx200_wdt.c
F:	drivers/i2c/busses/scx200*
F:	drivers/mtd/maps/scx200_docflash.c
F:	include/linux/scx200.h

SCx200 GPIO DRIVER
M:	Jim Cromie <jim.cromie@gmail.com>
S:	Maintained
F:	drivers/char/scx200_gpio.c
F:	include/linux/scx200_gpio.h

SCx200 HRT CLOCKSOURCE DRIVER
M:	Jim Cromie <jim.cromie@gmail.com>
S:	Maintained
F:	drivers/clocksource/scx200_hrt.c

SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
M:	Sascha Sommer <saschasommer@freenet.de>
L:	sdricohcs-devel@lists.sourceforge.net (subscribers-only)
S:	Maintained
F:	drivers/mmc/host/sdricoh_cs.c

SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
S:	Orphan
L:	linux-mmc@vger.kernel.org
F:	drivers/mmc/host/sdhci.*

SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
M:	Anton Vorontsov <avorontsov@ru.mvista.com>
L:	linuxppc-dev@ozlabs.org
L:	linux-mmc@vger.kernel.org
S:	Maintained
F:	drivers/mmc/host/sdhci-of.*

SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
M:	Ben Dooks <ben-linux@fluff.org>
L:	linux-mmc@vger.kernel.org
S:	Maintained
F:	drivers/mmc/host/sdhci-s3c.c

SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
M:	Viresh Kumar <viresh.kumar@st.com>
L:	linux-mmc@vger.kernel.org
S:	Maintained
F:	drivers/mmc/host/sdhci-spear.c

SECURITY SUBSYSTEM
M:	James Morris <jmorris@namei.org>
L:	linux-security-module@vger.kernel.org (suggested Cc:)
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
W:	http://security.wiki.kernel.org/
S:	Supported
F:	security/

SECURITY CONTACT
M:	Security Officers <security@kernel.org>
S:	Supported

SELINUX SECURITY MODULE
M:	Stephen Smalley <sds@tycho.nsa.gov>
M:	James Morris <jmorris@namei.org>
M:	Eric Paris <eparis@parisplace.org>
L:	selinux@tycho.nsa.gov (subscribers-only, general discussion)
W:	http://selinuxproject.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git
S:	Supported
F:	include/linux/selinux*
F:	security/selinux/

APPARMOR SECURITY MODULE
M:	John Johansen <john.johansen@canonical.com>
L:	apparmor@lists.ubuntu.com (subscribers-only, general discussion)
W:	apparmor.wiki.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
S:	Supported
F:	security/apparmor/

SENSABLE PHANTOM
M:	Jiri Slaby <jirislaby@gmail.com>
S:	Maintained
F:	drivers/misc/phantom.c
F:	include/linux/phantom.h

SERIAL ATA (SATA) SUBSYSTEM
M:	Jeff Garzik <jgarzik@pobox.com>
L:	linux-ide@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
S:	Supported
F:	drivers/ata/
F:	include/linux/ata.h
F:	include/linux/libata.h

SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
M:	Jayamohan Kallickal <jayamohank@serverengines.com>
L:	linux-scsi@vger.kernel.org
W:	http://www.serverengines.com
S:	Supported
F:	drivers/scsi/be2iscsi/

SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
M:	Sathya Perla <sathyap@serverengines.com>
M:	Subbu Seetharaman <subbus@serverengines.com>
M:	Sarveshwar Bandi <sarveshwarb@serverengines.com>
M:	Ajit Khaparde <ajitk@serverengines.com>
L:	netdev@vger.kernel.org
W:	http://www.serverengines.com
S:	Supported
F:	drivers/net/benet/

SFC NETWORK DRIVER
M:	Solarflare linux maintainers <linux-net-drivers@solarflare.com>
M:	Steve Hodgson <shodgson@solarflare.com>
M:	Ben Hutchings <bhutchings@solarflare.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/sfc/

SGI GRU DRIVER
M:	Jack Steiner <steiner@sgi.com>
S:	Maintained
F:	drivers/misc/sgi-gru/

SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
M:	Pat Gefre <pfg@sgi.com>
L:	linux-ia64@vger.kernel.org
S:	Supported
F:	Documentation/ia64/serial.txt
F:	drivers/serial/ioc?_serial.c
F:	include/linux/ioc?.h

SGI VISUAL WORKSTATION 320 AND 540
M:	Andrey Panin <pazke@donpac.ru>
L:	linux-visws-devel@lists.sf.net
W:	http://linux-visws.sf.net
S:	Maintained for 2.6.
F:	Documentation/sgi-visws.txt

SGI XP/XPC/XPNET DRIVER
M:	Robin Holt <holt@sgi.com>
S:	Maintained
F:	drivers/misc/sgi-xp/

SHARP LH SUPPORT (LH7952X & LH7A40X)
M:	Marc Singer <elf@buici.com>
W:	http://projects.buici.com/arm
L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
S:	Maintained
F:	Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen
F:	arch/arm/mach-lh7a40x/
F:	drivers/serial/serial_lh7a40x.c
F:	drivers/usb/gadget/lh7a40*
F:	drivers/usb/host/ohci-lh7a40*

SIMPLE FIRMWARE INTERFACE (SFI)
M:	Len Brown <lenb@kernel.org>
L:	sfi-devel@simplefirmware.org
W:	http://simplefirmware.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
S:	Supported
F:	arch/x86/kernel/*sfi*
F:	drivers/sfi/
F:	include/linux/sfi*.h

SIMTEC EB110ATX (Chalice CATS)
P:	Ben Dooks
M:	Vincent Sanders <support@simtec.co.uk>
W:	http://www.simtec.co.uk/products/EB110ATX/
S:	Supported

SIMTEC EB2410ITX (BAST)
P:	Ben Dooks
M:	Vincent Sanders <support@simtec.co.uk>
W:	http://www.simtec.co.uk/products/EB2410ITX/
S:	Supported
F:	arch/arm/mach-s3c2410/
F:	drivers/*/*s3c2410*
F:	drivers/*/*/*s3c2410*

TI DAVINCI MACHINE SUPPORT
P:	Kevin Hilman
M:	davinci-linux-open-source@linux.davincidsp.com
Q:	http://patchwork.kernel.org/project/linux-davinci/list/
S:	Supported
F:	arch/arm/mach-davinci

SIS 190 ETHERNET DRIVER
M:	Francois Romieu <romieu@fr.zoreil.com>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/sis190.c

SIS 900/7016 FAST ETHERNET DRIVER
M:	Daniele Venzano <venza@brownhat.org>
W:	http://www.brownhat.org/sis900.html
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/sis900.*

SIS 96X I2C/SMBUS DRIVER
M:	"Mark M. Hoffman" <mhoffman@lightlink.com>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	Documentation/i2c/busses/i2c-sis96x
F:	drivers/i2c/busses/i2c-sis96x.c

SIS FRAMEBUFFER DRIVER
M:	Thomas Winischhofer <thomas@winischhofer.net>
W:	http://www.winischhofer.net/linuxsisvga.shtml
S:	Maintained
F:	Documentation/fb/sisfb.txt
F:	drivers/video/sis/
F:	include/video/sisfb.h

SIS USB2VGA DRIVER
M:	Thomas Winischhofer <thomas@winischhofer.net>
W:	http://www.winischhofer.at/linuxsisusbvga.shtml
S:	Maintained
F:	drivers/usb/misc/sisusbvga/

SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS
M:	Stephen Hemminger <shemminger@linux-foundation.org>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/skge.*
F:	drivers/net/sky2.*

SLAB ALLOCATOR
M:	Christoph Lameter <cl@linux-foundation.org>
M:	Pekka Enberg <penberg@cs.helsinki.fi>
M:	Matt Mackall <mpm@selenic.com>
L:	linux-mm@kvack.org
S:	Maintained
F:	include/linux/sl?b*.h
F:	mm/sl?b.c

SMC91x ETHERNET DRIVER
M:	Nicolas Pitre <nico@fluxnic.net>
S:	Odd Fixes
F:	drivers/net/smc91x.*

SMSC47B397 HARDWARE MONITOR DRIVER
M:	"Mark M. Hoffman" <mhoffman@lightlink.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/smsc47b397
F:	drivers/hwmon/smsc47b397.c

SMSC911x ETHERNET DRIVER
M:	Steve Glendinning <steve.glendinning@smsc.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	include/linux/smsc911x.h
F:	drivers/net/smsc911x.*

SMSC9420 PCI ETHERNET DRIVER
M:	Steve Glendinning <steve.glendinning@smsc.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/smsc9420.*

SMX UIO Interface
M:	Ben Nizette <bn@niasdigital.com>
S:	Maintained
F:	drivers/uio/uio_smx.c

SN-IA64 (Itanium) SUB-PLATFORM
M:	Jes Sorensen <jes@sgi.com>
L:	linux-altix@sgi.com
L:	linux-ia64@vger.kernel.org
W:	http://www.sgi.com/altix
S:	Maintained
F:	arch/ia64/sn/

SOC-CAMERA V4L2 SUBSYSTEM
M:	Guennadi Liakhovetski <g.liakhovetski@gmx.de>
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
S:	Maintained
F:	include/media/v4l2*
F:	drivers/media/video/v4l2*

SOEKRIS NET48XX LED SUPPORT
M:	Chris Boot <bootc@bootc.net>
S:	Maintained
F:	drivers/leds/leds-net48xx.c

SOFTWARE RAID (Multiple Disks) SUPPORT
M:	Neil Brown <neilb@suse.de>
L:	linux-raid@vger.kernel.org
S:	Supported
F:	drivers/md/
F:	include/linux/raid/

SONIC NETWORK DRIVER
M:	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/sonic.*

SONICS SILICON BACKPLANE DRIVER (SSB)
M:	Michael Buesch <mb@bu3sch.de>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/ssb/
F:	include/linux/ssb/

SONY VAIO CONTROL DEVICE DRIVER
M:	Mattia Dongili <malattia@linux.it>
L:	platform-driver-x86@vger.kernel.org
W:	http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
S:	Maintained
F:	Documentation/laptops/sony-laptop.txt
F:	drivers/char/sonypi.c
F:	drivers/platform/x86/sony-laptop.c
F:	include/linux/sony-laptop.h

SONY MEMORYSTICK CARD SUPPORT
M:	Alex Dubov <oakad@yahoo.com>
W:	http://tifmxx.berlios.de/
S:	Maintained
F:	drivers/memstick/host/tifm_ms.c

SOUND
M:	Jaroslav Kysela <perex@perex.cz>
M:	Takashi Iwai <tiwai@suse.de>
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
W:	http://www.alsa-project.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git
T:	git git://git.alsa-project.org/alsa-kernel.git
S:	Maintained
F:	Documentation/sound/
F:	include/sound/
F:	sound/

SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
M:	Liam Girdwood <lrg@slimlogic.co.uk>
M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
W:	http://alsa-project.org/main/index.php/ASoC
S:	Supported
F:	sound/soc/
F:	include/sound/soc*

SPARC + UltraSPARC (sparc/sparc64)
M:	"David S. Miller" <davem@davemloft.net>
L:	sparclinux@vger.kernel.org
Q:	http://patchwork.ozlabs.org/project/sparclinux/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
S:	Maintained
F:	arch/sparc/
F:	drivers/sbus/

SPARC SERIAL DRIVERS
M:	"David S. Miller" <davem@davemloft.net>
L:	sparclinux@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git
S:	Maintained
F:	drivers/serial/suncore.c
F:	drivers/serial/suncore.h
F:	drivers/serial/sunhv.c
F:	drivers/serial/sunsab.c
F:	drivers/serial/sunsab.h
F:	drivers/serial/sunsu.c
F:	drivers/serial/sunzilog.c
F:	drivers/serial/sunzilog.h

SPEAR PLATFORM SUPPORT
M:	Viresh Kumar <viresh.kumar@st.com>
W:	http://www.st.com/spear
S:	Maintained
F:	arch/arm/plat-spear/

SPEAR3XX MACHINE SUPPORT
M:	Viresh Kumar <viresh.kumar@st.com>
W:	http://www.st.com/spear
S:	Maintained
F:	arch/arm/mach-spear3xx/

SPEAR6XX MACHINE SUPPORT
M:	Rajeev Kumar <rajeev-dlh.kumar@st.com>
W:	http://www.st.com/spear
S:	Maintained
F:	arch/arm/mach-spear6xx/

SPEAR CLOCK FRAMEWORK SUPPORT
M:	Viresh Kumar <viresh.kumar@st.com>
W:	http://www.st.com/spear
S:	Maintained
F:	arch/arm/mach-spear*/clock.c
F:	arch/arm/mach-spear*/include/mach/clkdev.h
F:	arch/arm/plat-spear/clock.c
F:	arch/arm/plat-spear/include/plat/clock.h and clkdev.h

SPEAR PAD MULTIPLEXING SUPPORT
M:	Viresh Kumar <viresh.kumar@st.com>
W:	http://www.st.com/spear
S:	Maintained
F:	arch/arm/plat-spear/include/plat/padmux.h
F:	arch/arm/plat-spear/padmux.c
F:	arch/arm/mach-spear*/spear*xx.c
F:	arch/arm/mach-spear*/include/mach/generic.h
F:	arch/arm/mach-spear3xx/spear3*0.c
F:	arch/arm/mach-spear3xx/spear3*0_evb.c
F:	arch/arm/mach-spear6xx/spear600.c
F:	arch/arm/mach-spear6xx/spear600_evb.c

SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER
M:	Roger Wolff <R.E.Wolff@BitWizard.nl>
S:	Supported
F:	Documentation/serial/specialix.txt
F:	drivers/char/specialix*

SPI SUBSYSTEM
M:	David Brownell <dbrownell@users.sourceforge.net>
M:	Grant Likely <grant.likely@secretlab.ca>
L:	spi-devel-general@lists.sourceforge.net
Q:	http://patchwork.kernel.org/project/spi-devel-general/list/
T:	git git://git.secretlab.ca/git/linux-2.6.git
S:	Maintained
F:	Documentation/spi/
F:	drivers/spi/
F:	include/linux/spi/

SPIDERNET NETWORK DRIVER for CELL
M:	Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
M:	Jens Osterkamp <jens@de.ibm.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	Documentation/networking/spider_net.txt
F:	drivers/net/spider_net*

SPU FILE SYSTEM
M:	Jeremy Kerr <jk@ozlabs.org>
L:	linuxppc-dev@ozlabs.org
L:	cbe-oss-dev@ozlabs.org
W:	http://www.ibm.com/developerworks/power/cell/
S:	Supported
F:	Documentation/filesystems/spufs.txt
F:	arch/powerpc/platforms/cell/spufs/

SQUASHFS FILE SYSTEM
M:	Phillip Lougher <phillip@lougher.demon.co.uk>
L:	squashfs-devel@lists.sourceforge.net (subscribers-only)
W:	http://squashfs.org.uk
S:	Maintained
F:	Documentation/filesystems/squashfs.txt
F:	fs/squashfs/

SRM (Alpha) environment access
M:	Jan-Benedict Glaw <jbglaw@lug-owl.de>
S:	Maintained
F:	arch/alpha/kernel/srm_env.c

STABLE BRANCH
M:	Greg Kroah-Hartman <greg@kroah.com>
M:	Chris Wright <chrisw@sous-sol.org>
L:	stable@kernel.org
S:	Maintained

STAGING SUBSYSTEM
M:	Greg Kroah-Hartman <gregkh@suse.de>
T:	quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
L:	devel@driverdev.osuosl.org
S:	Maintained
F:	drivers/staging/

STARFIRE/DURALAN NETWORK DRIVER
M:	Ion Badulescu <ionut@badula.org>
S:	Odd Fixes
F:	drivers/net/starfire*

STARMODE RADIO IP (STRIP) PROTOCOL DRIVER
S:	Orphan
F:	drivers/staging/strip/strip.c
F:	include/linux/if_strip.h

STRADIS MPEG-2 DECODER DRIVER
M:	Nathan Laredo <laredo@gnu.org>
W:	http://www.stradis.com/
S:	Maintained
F:	drivers/media/video/stradis.c

SUN3/3X
M:	Sam Creasey <sammy@sammy.net>
W:	http://sammy.net/sun3/
S:	Maintained
F:	arch/m68k/kernel/*sun3*
F:	arch/m68k/sun3*/
F:	arch/m68k/include/asm/sun3*

SUPERH
M:	Paul Mundt <lethal@linux-sh.org>
L:	linux-sh@vger.kernel.org
W:	http://www.linux-sh.org
Q:	http://patchwork.kernel.org/project/linux-sh/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git
S:	Supported
F:	Documentation/sh/
F:	arch/sh/
F:	drivers/sh/

SUSPEND TO RAM
M:	Len Brown <len.brown@intel.com>
M:	Pavel Machek <pavel@ucw.cz>
M:	"Rafael J. Wysocki" <rjw@sisk.pl>
L:	linux-pm@lists.linux-foundation.org
S:	Supported
F:	Documentation/power/
F:	arch/x86/kernel/acpi/
F:	drivers/base/power/
F:	kernel/power/
F:	include/linux/suspend.h
F:	include/linux/freezer.h
F:	include/linux/pm.h

SVGA HANDLING
M:	Martin Mares <mj@ucw.cz>
L:	linux-video@atrey.karlin.mff.cuni.cz
S:	Maintained
F:	Documentation/svga.txt
F:	arch/x86/boot/video*

SYSV FILESYSTEM
M:	Christoph Hellwig <hch@infradead.org>
S:	Maintained
F:	Documentation/filesystems/sysv-fs.txt
F:	fs/sysv/
F:	include/linux/sysv_fs.h

TASKSTATS STATISTICS INTERFACE
M:	Balbir Singh <balbir@linux.vnet.ibm.com>
S:	Maintained
F:	Documentation/accounting/taskstats*
F:	include/linux/taskstats*
F:	kernel/taskstats.c

TC CLASSIFIER
M:	Jamal Hadi Salim <hadi@cyberus.ca>
L:	netdev@vger.kernel.org
S:	Maintained
F:	include/linux/pkt_cls.h
F:	include/net/pkt_cls.h
F:	net/sched/

TCP LOW PRIORITY MODULE
M:	"Wong Hoi Sing, Edison" <hswong3i@gmail.com>
M:	"Hung Hing Lun, Mike" <hlhung3i@gmail.com>
W:	http://tcp-lp-mod.sourceforge.net/
S:	Maintained
F:	net/ipv4/tcp_lp.c

TEHUTI ETHERNET DRIVER
M:	Alexander Indenbaum <baum@tehutinetworks.net>
M:	Andy Gospodarek <andy@greyhouse.net>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/tehuti*

Telecom Clock Driver for MCPL0010
M:	Mark Gross <mark.gross@intel.com>
S:	Supported
F:	drivers/char/tlclk.c

TENSILICA XTENSA PORT (xtensa)
M:	Chris Zankel <chris@zankel.net>
S:	Maintained
F:	arch/xtensa/

THINKPAD ACPI EXTRAS DRIVER
M:	Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
L:	ibm-acpi-devel@lists.sourceforge.net
L:	platform-driver-x86@vger.kernel.org
W:	http://ibm-acpi.sourceforge.net
W:	http://thinkwiki.org/wiki/Ibm-acpi
T:	git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
S:	Maintained
F:	drivers/platform/x86/thinkpad_acpi.c

TI FLASH MEDIA INTERFACE DRIVER
M:	Alex Dubov <oakad@yahoo.com>
S:	Maintained
F:	drivers/misc/tifm*
F:	drivers/mmc/host/tifm_sd.c
F:	include/linux/tifm.h

TI TWL4030 SERIES SOC CODEC DRIVER
M:	Peter Ujfalusi <peter.ujfalusi@nokia.com>
L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
S:	Maintained
F:	sound/soc/codecs/twl4030*

TIPC NETWORK LAYER
M:	Jon Maloy <jon.maloy@ericsson.com>
M:	Allan Stephens <allan.stephens@windriver.com>
L:	tipc-discussion@lists.sourceforge.net
W:	http://tipc.sourceforge.net/
W:	http://tipc.cslab.ericsson.net/
T:	git git://tipc.cslab.ericsson.net/pub/git/tipc.git
S:	Maintained
F:	include/linux/tipc*.h
F:	include/net/tipc/
F:	net/tipc/

TLAN NETWORK DRIVER
M:	Samuel Chessman <chessman@tux.org>
L:	tlan-devel@lists.sourceforge.net (subscribers-only)
W:	http://sourceforge.net/projects/tlan/
S:	Maintained
F:	Documentation/networking/tlan.txt
F:	drivers/net/tlan.*

TOMOYO SECURITY MODULE
M:	Kentaro Takeda <takedakn@nttdata.co.jp>
M:	Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
L:	tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for developers and users in English)
L:	tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
L:	tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
W:	http://tomoyo.sourceforge.jp/
T:	quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.3.x/tomoyo-lsm/patches/
S:	Maintained
F:	security/tomoyo/

TOPSTAR LAPTOP EXTRAS DRIVER
M:	Herton Ronaldo Krzesinski <herton@mandriva.com.br>
L:	platform-driver-x86@vger.kernel.org
S:	Maintained
F:	drivers/platform/x86/topstar-laptop.c

TOSHIBA ACPI EXTRAS DRIVER
L:	platform-driver-x86@vger.kernel.org
S:	Orphan
F:	drivers/platform/x86/toshiba_acpi.c

TOSHIBA SMM DRIVER
M:	Jonathan Buzzard <jonathan@buzzard.org.uk>
L:	tlinux-users@tce.toshiba-dme.co.jp
W:	http://www.buzzard.org.uk/toshiba/
S:	Maintained
F:	drivers/char/toshiba.c
F:	include/linux/toshiba.h

TMIO MMC DRIVER
M:	Ian Molton <ian@mnementh.co.uk>
S:	Maintained
F:	drivers/mmc/host/tmio_mmc.*

TMPFS (SHMEM FILESYSTEM)
M:	Hugh Dickins <hughd@google.com>
L:	linux-mm@kvack.org
S:	Maintained
F:	include/linux/shmem_fs.h
F:	mm/shmem.c

TPM DEVICE DRIVER
M:	Debora Velarde <debora@linux.vnet.ibm.com>
M:	Rajiv Andrade <srajiv@linux.vnet.ibm.com>
W:	http://tpmdd.sourceforge.net
M:	Marcel Selhorst <m.selhorst@sirrix.com>
W:	http://www.sirrix.com
L:	tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
S:	Maintained
F:	drivers/char/tpm/

TRACING
M:	Steven Rostedt <rostedt@goodmis.org>
M:	Frederic Weisbecker <fweisbec@gmail.com>
M:	Ingo Molnar <mingo@redhat.com>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git tracing/core
S:	Maintained
F:	Documentation/trace/ftrace.txt
F:	arch/*/*/*/ftrace.h
F:	arch/*/kernel/ftrace.c
F:	include/*/ftrace.h
F:	include/linux/trace*.h
F:	include/trace/
F:	kernel/trace/

TRIVIAL PATCHES
M:	Jiri Kosina <trivial@kernel.org>
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
S:	Maintained

TTY LAYER
M:	Greg Kroah-Hartman <gregkh@suse.de>
S:	Maintained
T:	quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
F:	drivers/char/tty_*
F:	drivers/serial/serial_core.c
F:	include/linux/serial_core.h
F:	include/linux/serial.h
F:	include/linux/tty.h

TULIP NETWORK DRIVERS
M:	Grant Grundler <grundler@parisc-linux.org>
M:	Kyle McMartin <kyle@mcmartin.ca>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/tulip/

TUN/TAP driver
M:	Maxim Krasnyansky <maxk@qualcomm.com>
L:	vtun@office.satix.net
W:	http://vtun.sourceforge.net/tun
S:	Maintained
F:	Documentation/networking/tuntap.txt
F:	arch/um/os-Linux/drivers/

TURBOCHANNEL SUBSYSTEM
M:	"Maciej W. Rozycki" <macro@linux-mips.org>
S:	Maintained
F:	drivers/tc/
F:	include/linux/tc.h

U14-34F SCSI DRIVER
M:	Dario Ballabio <ballabio_dario@emc.com>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/u14-34f.c

UBI FILE SYSTEM (UBIFS)
M:	Artem Bityutskiy <dedekind1@gmail.com>
M:	Adrian Hunter <adrian.hunter@nokia.com>
L:	linux-mtd@lists.infradead.org
T:	git git://git.infradead.org/ubifs-2.6.git
W:	http://www.linux-mtd.infradead.org/doc/ubifs.html
S:	Maintained
F:	Documentation/filesystems/ubifs.txt
F:	fs/ubifs/

UCLINUX (AND M68KNOMMU)
M:	Greg Ungerer <gerg@uclinux.org>
W:	http://www.uclinux.org/
L:	uclinux-dev@uclinux.org  (subscribers-only)
S:	Maintained
F:	arch/m68knommu/

UCLINUX FOR RENESAS H8/300 (H8300)
M:	Yoshinori Sato <ysato@users.sourceforge.jp>
W:	http://uclinux-h8.sourceforge.jp/
S:	Supported

UDF FILESYSTEM
M:	Jan Kara <jack@suse.cz>
W:	http://linux-udf.sourceforge.net
S:	Maintained
F:	Documentation/filesystems/udf.txt
F:	fs/udf/

UFS FILESYSTEM
M:	Evgeniy Dushistov <dushistov@mail.ru>
S:	Maintained
F:	Documentation/filesystems/ufs.txt
F:	fs/ufs/

ULTRA-WIDEBAND (UWB) SUBSYSTEM:
M:	David Vrabel <david.vrabel@csr.com>
L:	linux-usb@vger.kernel.org
S:	Supported
F:	drivers/uwb/
X:	drivers/uwb/wlp/
X:	drivers/uwb/i1480/i1480u-wlp/
X:	drivers/uwb/i1480/i1480-wlp.h
F:	include/linux/uwb.h
F:	include/linux/uwb/

UNIFDEF
M:	Tony Finch <dot@dotat.at>
W:	http://dotat.at/prog/unifdef
S:	Maintained
F:	scripts/unifdef.c

UNIFORM CDROM DRIVER
M:	Jens Axboe <axboe@kernel.dk>
W:	http://www.kernel.dk
S:	Maintained
F:	Documentation/cdrom/
F:	drivers/cdrom/cdrom.c
F:	include/linux/cdrom.h

UNSORTED BLOCK IMAGES (UBI)
M:	Artem Bityutskiy <dedekind1@gmail.com>
W:	http://www.linux-mtd.infradead.org/
L:	linux-mtd@lists.infradead.org
T:	git git://git.infradead.org/ubi-2.6.git
S:	Maintained
F:	drivers/mtd/ubi/
F:	include/linux/mtd/ubi.h
F:	include/mtd/ubi-user.h

USB ACM DRIVER
M:	Oliver Neukum <oliver@neukum.name>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	Documentation/usb/acm.txt
F:	drivers/usb/class/cdc-acm.*

USB BLOCK DRIVER (UB ub)
M:	Pete Zaitcev <zaitcev@redhat.com>
L:	linux-usb@vger.kernel.org
S:	Supported
F:	drivers/block/ub.c

USB CDC ETHERNET DRIVER
M:	Oliver Neukum <oliver@neukum.name>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/net/usb/cdc_*.c
F:	include/linux/usb/cdc.h

USB CYPRESS C67X00 DRIVER
M:	Peter Korsgaard <jacmet@sunsite.dk>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/c67x00/

USB DAVICOM DM9601 DRIVER
M:	Peter Korsgaard <jacmet@sunsite.dk>
L:	netdev@vger.kernel.org
W:	http://www.linux-usb.org/usbnet
S:	Maintained
F:	drivers/net/usb/dm9601.c

USB DIAMOND RIO500 DRIVER
M:	Cesar Miquel <miquel@df.uba.ar>
L:	rio500-users@lists.sourceforge.net
W:	http://rio500.sourceforge.net
S:	Maintained
F:	drivers/usb/misc/rio500*

USB EHCI DRIVER
M:	David Brownell <dbrownell@users.sourceforge.net>
L:	linux-usb@vger.kernel.org
S:	Odd Fixes
F:	Documentation/usb/ehci.txt
F:	drivers/usb/host/ehci*

USB ET61X[12]51 DRIVER
M:	Luca Risolia <luca.risolia@studio.unibo.it>
L:	linux-usb@vger.kernel.org
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://www.linux-projects.org
S:	Maintained
F:	drivers/media/video/et61x251/

USB GADGET/PERIPHERAL SUBSYSTEM
M:	David Brownell <dbrownell@users.sourceforge.net>
L:	linux-usb@vger.kernel.org
W:	http://www.linux-usb.org/gadget
S:	Maintained
F:	drivers/usb/gadget/
F:	include/linux/usb/gadget*

USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
M:	Jiri Kosina <jkosina@suse.cz>
L:	linux-usb@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
S:	Maintained
F:	Documentation/usb/hiddev.txt
F:	drivers/hid/usbhid/

USB ISP116X DRIVER
M:	Olav Kongas <ok@artecdesign.ee>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/host/isp116x*
F:	include/linux/usb/isp116x.h

USB KAWASAKI LSI DRIVER
M:	Oliver Neukum <oliver@neukum.name>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/serial/kl5kusb105.*

USB MASS STORAGE DRIVER
M:	Matthew Dharm <mdharm-usb@one-eyed-alien.net>
L:	linux-usb@vger.kernel.org
L:	usb-storage@lists.one-eyed-alien.net
S:	Maintained
W:	http://www.one-eyed-alien.net/~mdharm/linux-usb/
F:	drivers/usb/storage/

USB OHCI DRIVER
M:	David Brownell <dbrownell@users.sourceforge.net>
L:	linux-usb@vger.kernel.org
S:	Odd Fixes
F:	Documentation/usb/ohci.txt
F:	drivers/usb/host/ohci*

USB OPTION-CARD DRIVER
M:	Matthias Urlichs <smurf@smurf.noris.de>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/serial/option.c

USB OV511 DRIVER
M:	Mark McClelland <mmcclell@bigfoot.com>
L:	linux-usb@vger.kernel.org
W:	http://alpha.dyndns.org/ov511/
S:	Maintained
F:	drivers/media/video/ov511.*

USB PEGASUS DRIVER
M:	Petko Manolov <petkan@users.sourceforge.net>
L:	linux-usb@vger.kernel.org
L:	netdev@vger.kernel.org
W:	http://pegasus2.sourceforge.net/
S:	Maintained
F:	drivers/net/usb/pegasus.*

USB PRINTER DRIVER (usblp)
M:	Pete Zaitcev <zaitcev@redhat.com>
L:	linux-usb@vger.kernel.org
S:	Supported
F:	drivers/usb/class/usblp.c

USB RTL8150 DRIVER
M:	Petko Manolov <petkan@users.sourceforge.net>
L:	linux-usb@vger.kernel.org
L:	netdev@vger.kernel.org
W:	http://pegasus2.sourceforge.net/
S:	Maintained
F:	drivers/net/usb/rtl8150.c

USB SE401 DRIVER
M:	Jeroen Vreeken <pe1rxq@amsat.org>
L:	linux-usb@vger.kernel.org
W:	http://www.chello.nl/~j.vreeken/se401/
S:	Maintained
F:	Documentation/video4linux/se401.txt
F:	drivers/media/video/se401.*

USB SERIAL BELKIN F5U103 DRIVER
M:	William Greathouse <wgreathouse@smva.com>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/serial/belkin_sa.*

USB SERIAL CYPRESS M8 DRIVER
M:	Lonnie Mendez <dignome@gmail.com>
L:	linux-usb@vger.kernel.org
S:	Maintained
W:	http://geocities.com/i0xox0i
W:	http://firstlight.net/cvs
F:	drivers/usb/serial/cypress_m8.*

USB SERIAL CYBERJACK DRIVER
M:	Matthias Bruestle and Harald Welte <support@reiner-sct.com>
W:	http://www.reiner-sct.de/support/treiber_cyberjack.php
S:	Maintained
F:	drivers/usb/serial/cyberjack.c

USB SERIAL DIGI ACCELEPORT DRIVER
M:	Peter Berger <pberger@brimson.com>
M:	Al Borchers <alborchers@steinerpoint.com>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/serial/digi_acceleport.c

USB SERIAL DRIVER
M:	Greg Kroah-Hartman <gregkh@suse.de>
L:	linux-usb@vger.kernel.org
S:	Supported
F:	Documentation/usb/usb-serial.txt
F:	drivers/usb/serial/generic.c
F:	drivers/usb/serial/usb-serial.c
F:	include/linux/usb/serial.h

USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
M:	Gary Brubaker <xavyer@ix.netcom.com>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/serial/empeg.c

USB SERIAL KEYSPAN DRIVER
M:	Greg Kroah-Hartman <greg@kroah.com>
L:	linux-usb@vger.kernel.org
W:	http://www.kroah.com/linux/
S:	Maintained
F:	drivers/usb/serial/*keyspan*

USB SERIAL WHITEHEAT DRIVER
M:	Support Department <support@connecttech.com>
L:	linux-usb@vger.kernel.org
W:	http://www.connecttech.com
S:	Supported
F:	drivers/usb/serial/whiteheat*

USB SMSC95XX ETHERNET DRIVER
M:	Steve Glendinning <steve.glendinning@smsc.com>
L:	netdev@vger.kernel.org
S:	Supported
F:	drivers/net/usb/smsc95xx.*

USB SN9C1xx DRIVER
M:	Luca Risolia <luca.risolia@studio.unibo.it>
L:	linux-usb@vger.kernel.org
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://www.linux-projects.org
S:	Maintained
F:	Documentation/video4linux/sn9c102.txt
F:	drivers/media/video/sn9c102/

USB SUBSYSTEM
M:	Greg Kroah-Hartman <gregkh@suse.de>
L:	linux-usb@vger.kernel.org
W:	http://www.linux-usb.org
T:	quilt kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/
S:	Supported
F:	Documentation/usb/
F:	drivers/net/usb/
F:	drivers/usb/
F:	include/linux/usb.h
F:	include/linux/usb/

USB UHCI DRIVER
M:	Alan Stern <stern@rowland.harvard.edu>
L:	linux-usb@vger.kernel.org
S:	Maintained
F:	drivers/usb/host/uhci*

USB "USBNET" DRIVER FRAMEWORK
M:	David Brownell <dbrownell@users.sourceforge.net>
L:	netdev@vger.kernel.org
W:	http://www.linux-usb.org/usbnet
S:	Maintained
F:	drivers/net/usb/usbnet.c
F:	include/linux/usb/usbnet.h

USB VIDEO CLASS
M:	Laurent Pinchart <laurent.pinchart@skynet.be>
L:	linux-uvc-devel@lists.berlios.de (subscribers-only)
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://www.ideasonboard.org/uvc/
S:	Maintained
F:	drivers/media/video/uvc/

USB W996[87]CF DRIVER
M:	Luca Risolia <luca.risolia@studio.unibo.it>
L:	linux-usb@vger.kernel.org
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://www.linux-projects.org
S:	Maintained
F:	Documentation/video4linux/w9968cf.txt
F:	drivers/media/video/w996*

USB WIRELESS RNDIS DRIVER (rndis_wlan)
M:	Jussi Kivilinna <jussi.kivilinna@mbnet.fi>
L:	linux-wireless@vger.kernel.org
S:	Maintained
F:	drivers/net/wireless/rndis_wlan.c

USB XHCI DRIVER
M:	Sarah Sharp <sarah.a.sharp@linux.intel.com>
L:	linux-usb@vger.kernel.org
S:	Supported
F:	drivers/usb/host/xhci*
F:	drivers/usb/host/pci-quirks*

USB ZC0301 DRIVER
M:	Luca Risolia <luca.risolia@studio.unibo.it>
L:	linux-usb@vger.kernel.org
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://www.linux-projects.org
S:	Maintained
F:	Documentation/video4linux/zc0301.txt
F:	drivers/media/video/zc0301/

USB ZD1201 DRIVER
L:	linux-wireless@vger.kernel.org
W:	http://linux-lc100020.sourceforge.net
S:	Orphan
F:	drivers/net/wireless/zd1201.*

USB ZR364XX DRIVER
M:	Antoine Jacquet <royale@zerezo.com>
L:	linux-usb@vger.kernel.org
L:	linux-media@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git
W:	http://royale.zerezo.com/zr364xx/
S:	Maintained
F:	Documentation/video4linux/zr364xx.txt
F:	drivers/media/video/zr364xx.c

USER-MODE LINUX (UML)
M:	Jeff Dike <jdike@addtoit.com>
L:	user-mode-linux-devel@lists.sourceforge.net
L:	user-mode-linux-user@lists.sourceforge.net
W:	http://user-mode-linux.sourceforge.net
S:	Maintained
F:	Documentation/uml/
F:	arch/um/
F:	fs/hostfs/
F:	fs/hppfs/

USERSPACE I/O (UIO)
M:	"Hans J. Koch" <hjk@linutronix.de>
M:	Greg Kroah-Hartman <gregkh@suse.de>
S:	Maintained
F:	Documentation/DocBook/uio-howto.tmpl
F:	drivers/uio/
F:	include/linux/uio*.h

UTIL-LINUX-NG PACKAGE
M:	Karel Zak <kzak@redhat.com>
L:	util-linux-ng@vger.kernel.org
W:	http://kernel.org/~kzak/util-linux-ng/
T:	git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
S:	Maintained

UVESAFB DRIVER
M:	Michal Januszewski <spock@gentoo.org>
L:	linux-fbdev@vger.kernel.org
W:	http://dev.gentoo.org/~spock/projects/uvesafb/
S:	Maintained
F:	Documentation/fb/uvesafb.txt
F:	drivers/video/uvesafb.*

VFAT/FAT/MSDOS FILESYSTEM
M:	OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
S:	Maintained
F:	Documentation/filesystems/vfat.txt
F:	fs/fat/

VIRTIO CONSOLE DRIVER
M:	Amit Shah <amit.shah@redhat.com>
L:	virtualization@lists.linux-foundation.org
S:	Maintained
F:	drivers/char/virtio_console.c
F:	include/linux/virtio_console.h

VIRTIO HOST (VHOST)
M:	"Michael S. Tsirkin" <mst@redhat.com>
L:	kvm@vger.kernel.org
L:	virtualization@lists.osdl.org
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/vhost/
F:	include/linux/vhost.h

VIA RHINE NETWORK DRIVER
M:	Roger Luethi <rl@hellgate.ch>
S:	Maintained
F:	drivers/net/via-rhine.c

VIAPRO SMBUS DRIVER
M:	Jean Delvare <khali@linux-fr.org>
L:	linux-i2c@vger.kernel.org
S:	Maintained
F:	Documentation/i2c/busses/i2c-viapro
F:	drivers/i2c/busses/i2c-viapro.c

VIA SD/MMC CARD CONTROLLER DRIVER
M:	Joseph Chan <JosephChan@via.com.tw>
M:	Harald Welte <HaraldWelte@viatech.com>
S:	Maintained
F:	drivers/mmc/host/via-sdmmc.c

VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
M:	Joseph Chan <JosephChan@via.com.tw>
M:	Scott Fang <ScottFang@viatech.com.cn>
L:	linux-fbdev@vger.kernel.org
S:	Maintained
F:	drivers/video/via/

VIA VELOCITY NETWORK DRIVER
M:	Francois Romieu <romieu@fr.zoreil.com>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/via-velocity.*

VLAN (802.1Q)
M:	Patrick McHardy <kaber@trash.net>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/macvlan.c
F:	include/linux/if_*vlan.h
F:	net/8021q/

VLYNQ BUS
M:	Florian Fainelli <florian@openwrt.org>
L:	openwrt-devel@lists.openwrt.org
S:	Maintained
F:	drivers/vlynq/vlynq.c
F:	include/linux/vlynq.h

VMWARE VMXNET3 ETHERNET DRIVER
M:	Shreyas Bhatewara <sbhatewara@vmware.com>
M:	"VMware, Inc." <pv-drivers@vmware.com>
L:	netdev@vger.kernel.org
S:	Maintained
F:	drivers/net/vmxnet3/

VMware PVSCSI driver
M:	Alok Kataria <akataria@vmware.com>
M:	VMware PV-Drivers <pv-drivers@vmware.com>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/vmw_pvscsi.c
F:	drivers/scsi/vmw_pvscsi.h

VOLTAGE AND CURRENT REGULATOR FRAMEWORK
M:	Liam Girdwood <lrg@slimlogic.co.uk>
M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
W:	http://opensource.wolfsonmicro.com/node/15
W:	http://www.slimlogic.co.uk/?p=48
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git
S:	Supported
F:	drivers/regulator/
F:	include/linux/regulator/

VT1211 HARDWARE MONITOR DRIVER
M:	Juerg Haefliger <juergh@gmail.com>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/vt1211
F:	drivers/hwmon/vt1211.c

VT8231 HARDWARE MONITOR DRIVER
M:	Roger Lucas <vt8231@hiddenengine.co.uk>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	drivers/hwmon/vt8231.c

W1 DALLAS'S 1-WIRE BUS
M:	Evgeniy Polyakov <johnpol@2ka.mipt.ru>
S:	Maintained
F:	Documentation/w1/
F:	drivers/w1/

W83791D HARDWARE MONITORING DRIVER
M:	Marc Hulsman <m.hulsman@tudelft.nl>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/w83791d
F:	drivers/hwmon/w83791d.c

W83793 HARDWARE MONITORING DRIVER
M:	Rudolf Marek <r.marek@assembler.cz>
L:	lm-sensors@lm-sensors.org
S:	Maintained
F:	Documentation/hwmon/w83793
F:	drivers/hwmon/w83793.c

W83L51xD SD/MMC CARD INTERFACE DRIVER
M:	Pierre Ossman <pierre@ossman.eu>
S:	Maintained
F:	drivers/mmc/host/wbsd.*

WATCHDOG DEVICE DRIVERS
M:	Wim Van Sebroeck <wim@iguana.be>
L:	linux-watchdog@vger.kernel.org
W:	http://www.linux-watchdog.org/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git
S:	Maintained
F:	Documentation/watchdog/
F:	drivers/watchdog/
F:	include/linux/watchdog.h

WD7000 SCSI DRIVER
M:	Miroslav Zagorac <zaga@fly.cc.fer.hr>
L:	linux-scsi@vger.kernel.org
S:	Maintained
F:	drivers/scsi/wd7000.c

WINBOND CIR DRIVER
M:	David Härdeman <david@hardeman.nu>
S:	Maintained
F:	drivers/input/misc/winbond-cir.c

WIMAX STACK
M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
M:	linux-wimax@intel.com
L:	wimax@linuxwimax.org
S:	Supported
W:	http://linuxwimax.org

WIMEDIA LLC PROTOCOL (WLP) SUBSYSTEM
M:	David Vrabel <david.vrabel@csr.com>
L:	netdev@vger.kernel.org
S:	Maintained
F:	include/linux/wlp.h
F:	drivers/uwb/wlp/
F:	drivers/uwb/i1480/i1480u-wlp/
F:	drivers/uwb/i1480/i1480-wlp.h

WISTRON LAPTOP BUTTON DRIVER
M:	Miloslav Trmac <mitr@volny.cz>
S:	Maintained
F:	drivers/input/misc/wistron_btns.c

WL1251 WIRELESS DRIVER
M:	Kalle Valo <kalle.valo@iki.fi>
L:	linux-wireless@vger.kernel.org
W:	http://wireless.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
S:	Maintained
F:	drivers/net/wireless/wl12xx/*
X:	drivers/net/wireless/wl12xx/wl1271*

WL1271 WIRELESS DRIVER
M:	Luciano Coelho <luciano.coelho@nokia.com>
L:	linux-wireless@vger.kernel.org
W:	http://wireless.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
S:	Maintained
F:	drivers/net/wireless/wl12xx/wl1271*

WL3501 WIRELESS PCMCIA CARD DRIVER
M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
L:	linux-wireless@vger.kernel.org
W:	http://oops.ghostprotocols.net:81/blog
S:	Maintained
F:	drivers/net/wireless/wl3501*

WM97XX TOUCHSCREEN DRIVERS
M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
M:	Liam Girdwood <lrg@slimlogic.co.uk>
L:	linux-input@vger.kernel.org
T:	git git://opensource.wolfsonmicro.com/linux-2.6-touch
W:	http://opensource.wolfsonmicro.com/node/7
S:	Supported
F:	drivers/input/touchscreen/*wm97*
F:	include/linux/wm97xx.h

WOLFSON MICROELECTRONICS PMIC DRIVERS
M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
T:	git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
W:	http://opensource.wolfsonmicro.com/node/8
S:	Supported
F:	Documentation/hwmon/wm83??
F:	drivers/leds/leds-wm83*.c
F:	drivers/mfd/wm8*.c
F:	drivers/power/wm83*.c
F:	drivers/rtc/rtc-wm83*.c
F:	drivers/regulator/wm8*.c
F:	drivers/video/backlight/wm83*_bl.c
F:	drivers/watchdog/wm83*_wdt.c
F:	include/linux/mfd/wm831x/
F:	include/linux/mfd/wm8350/
F:	include/linux/mfd/wm8400*
F:	sound/soc/codecs/wm8350.*
F:	sound/soc/codecs/wm8400.*

X.25 NETWORK LAYER
M:	Andrew Hendry <andrew.hendry@gmail.com>
L:	linux-x25@vger.kernel.org
S:	Odd Fixes
F:	Documentation/networking/x25*
F:	include/net/x25*
F:	net/x25/

X86 ARCHITECTURE (32-BIT AND 64-BIT)
M:	Thomas Gleixner <tglx@linutronix.de>
M:	Ingo Molnar <mingo@redhat.com>
M:	"H. Peter Anvin" <hpa@zytor.com>
M:	x86@kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git
S:	Maintained
F:	Documentation/x86/
F:	arch/x86/

X86 PLATFORM DRIVERS
M:	Matthew Garrett <mjg@redhat.com>
L:	platform-driver-x86@vger.kernel.org
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
S:	Maintained
F:	drivers/platform/x86

XEN HYPERVISOR INTERFACE
M:	Jeremy Fitzhardinge <jeremy@xensource.com>
M:	Chris Wright <chrisw@sous-sol.org>
L:	virtualization@lists.osdl.org
L:	xen-devel@lists.xensource.com
S:	Supported
F:	arch/x86/xen/
F:	drivers/*/xen-*front.c
F:	drivers/xen/
F:	arch/x86/include/asm/xen/
F:	include/xen/

XFS FILESYSTEM
P:	Silicon Graphics Inc
M:	Alex Elder <aelder@sgi.com>
M:	xfs-masters@oss.sgi.com
L:	xfs@oss.sgi.com
W:	http://oss.sgi.com/projects/xfs
T:	git git://oss.sgi.com/xfs/xfs.git
S:	Supported
F:	Documentation/filesystems/xfs.txt
F:	fs/xfs/

XILINX SYSTEMACE DRIVER
M:	Grant Likely <grant.likely@secretlab.ca>
W:	http://www.secretlab.ca/
S:	Maintained
F:	drivers/block/xsysace.c

XILINX UARTLITE SERIAL DRIVER
M:	Peter Korsgaard <jacmet@sunsite.dk>
L:	linux-serial@vger.kernel.org
S:	Maintained
F:	drivers/serial/uartlite.c

YAM DRIVER FOR AX.25
M:	Jean-Paul Roubelat <jpr@f6fbb.org>
L:	linux-hams@vger.kernel.org
S:	Maintained
F:	drivers/net/hamradio/yam*
F:	include/linux/yam.h

YEALINK PHONE DRIVER
M:	Henk Vergonet <Henk.Vergonet@gmail.com>
L:	usbb2k-api-dev@nongnu.org
S:	Maintained
F:	Documentation/input/yealink.txt
F:	drivers/input/misc/yealink.*

Z8530 DRIVER FOR AX.25
M:	Joerg Reuter <jreuter@yaina.de>
W:	http://yaina.de/jreuter/
W:	http://www.qsl.net/dl1bke/
L:	linux-hams@vger.kernel.org
S:	Maintained
F:	Documentation/networking/z8530drv.txt
F:	drivers/net/hamradio/*scc.c
F:	drivers/net/hamradio/z8530.h

ZD1211RW WIRELESS DRIVER
M:	Daniel Drake <dsd@gentoo.org>
M:	Ulrich Kunitz <kune@deine-taler.de>
W:	http://zd1211.ath.cx/wiki/DriverRewrite
L:	linux-wireless@vger.kernel.org
L:	zd1211-devs@lists.sourceforge.net (subscribers-only)
S:	Maintained
F:	drivers/net/wireless/zd1211rw/

ZR36067 VIDEO FOR LINUX DRIVER
L:	mjpeg-users@lists.sourceforge.net
L:	linux-media@vger.kernel.org
W:	http://mjpeg.sourceforge.net/driver-zoran/
T:	Mercurial http://linuxtv.org/hg/v4l-dvb
S:	Odd Fixes
F:	drivers/media/video/zoran/

ZS DECSTATION Z85C30 SERIAL DRIVER
M:	"Maciej W. Rozycki" <macro@linux-mips.org>
S:	Maintained
F:	drivers/serial/zs.*

THE REST
M:	Linus Torvalds <torvalds@linux-foundation.org>
L:	linux-kernel@vger.kernel.org
Q:	http://patchwork.kernel.org/project/LKML/list/
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
S:	Buried alive in reporters
F:	*
F:	*/