-
Notifications
You must be signed in to change notification settings - Fork 11
/
MAINTAINERS
513 lines (450 loc) · 13.8 KB
/
MAINTAINERS
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
List of maintainers and how to submit Lustre 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.
2. PLEASE remember that submissions must be made under the terms
of the Linux Foundation 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/process/submitting-patches.rst.
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. Add reviewers to the patch based on the get_maintainers.pl script.
5. PLEASE check your patch with the automated style checker
(contrib/scripts/checkpatch.pl) to catch trivial style violations.
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. Happy hacking.
Descriptions of section entries:
M: Mail patches to: FullName <address@domain>
R: Designated reviewer: FullName <address@domain>
These reviewers should be CCed on patches.
W: Web-page with status/info
B: URI for where to file bugs. A web-page with detailed bug
filing info, a direct bug tracker link, or a mailto: URI.
C: URI for chat protocol, server and channel where developers
usually hang out, for example irc://server/channel.
T: SCM tree type and location.
Type is one of: git, hg, quilt, stgit, topgit
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.
N: Files and directories with regex patterns.
N: [^a-z]tegra all files whose path contains the word tegra
One pattern per line. Multiple N: lines acceptable.
scripts/get_maintainer.pl has different behavior for files that
match F: pattern and matches of N: patterns. By default,
get_maintainer will not look at git log history when an F: pattern
match occurs. When an N: match occurs, git log history is used
to also notify the people that have git commit signatures.
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.
This list is meant to remain in alphabetical order. Please add yourselves
to it in alphabetical order. Please include "Lustre" in the subsystem
description, even though it is currently redundant, so that it is easier
to keep this in sync once the client is merged upstream.
Maintainers List (try to look for most precise areas first)
-----------------------------------
Lustre Build System
R: Minh Diep <[email protected]>
S: Supported
F: lustre.spec.in
F: lustre-dkms*
F: kmp-*
F: build/
F: contrib/lbuild/
F: libcfs/autoconf/
F: lnet/autoconf/
F: lustre/autoconf/
F: lustre/scripts/dkms.mkconf
F: */Makefile.am
F: */Makefile.in
Lustre Class Library
S: Supported
F: lustre/obdclass/
Lustre Client IO stack - CLIO
R: Bobijam Xu <[email protected]>
R: Patrick Farrell <[email protected]>
S: Supported
F: Documentation/clio.txt
F: lustre/include/cl_object.h
F: lustre/include/lustre_osc.h
F: lustre/llite/glimpse.c
F: lustre/llite/llite_mmap.c
F: lustre/llite/lcommon*.c
F: lustre/llite/range_lock.[ch]
F: lustre/llite/rw*.c
F: lustre/llite/vvp*.[ch]
F: lustre/obdclass/cl_*.c
F: lustre/osc/
Lustre Client MD stack
R: Lai Siyao <[email protected]>
S: Supported
F: lustre/include/lustre_mdc.h
F: lustre/mdc/
Lustre Client VFS Interface
R: Oleg Drokin <[email protected]>
M: Lai Siyao <[email protected]>
S: Supported
F: lustre/llite/dcache.c
F: lustre/llite/dir.c
F: lustre/llite/file.c
F: lustre/llite/llite_nfs.c
F: lustre/llite/namei.c
F: lustre/llite/statahead.c
F: lustre/llite/symlink.c
F: lustre/llite/xattr*.c
Lustre Configuration Management
M: James Simmons <[email protected]>
S: Maintained
F: lustre/mgc/
F: lustre/mgs/
F: lustre/utils/llapi_param.c
Lustre Data Checksums
R: Li Xi <[email protected]>
M: Andreas Dilger <[email protected]>
S: Supported
F: lustre/include/uapi/linux/lustre/lustre_idl.h
F: lustre/include/uapi/linux/lustre/lustre_user.h
F: lustre/ptlrpc/pack_generic.c
F: lustre/ptlrpc/layout.c
F: lustre/utils/wire*.c
F: lustre/ptlrpc/wire*.c
K: \b(OBD_CKSUM_|OBD_FL_CKSUM|OBD_CONNECT_CKSUM)
Lustre Data-on-MDT - DoM
R: Mikhail Pershin <[email protected]>
S: Supported
F: lustre/tests/sanity-dom.sh
K: DoM
K: _dom
K: _DOM
K: dom_
Lustre Distributed Lock Manager - LDLM
R: Oleg Drokin <[email protected]>
M: Patrick Farrell <[email protected]>
S: Supported
F: lustre/include/lustre_dlm.h
F: lustre/include/lustre_dlm_flags.h
F: lustre/ldlm/
F: lustre/llite/glimpse.c
F: lustre/mdc/mdc_locks.c
F: lustre/mdt/mdt_lvb.c
F: lustre/mdt/mdt_open.c
F: lustre/ofd/ofd_dlm.c
F: lustre/osc/osc_lock.c
Lustre Distributed Namespace - DNE
R: Lai Siyao <[email protected]>
S: Supported
F: lustre/doc/lfs-getdirstripe.1
F: lustre/doc/lfs-mkdir.1
F: lustre/doc/lfs-setdirstripe.1
F: lustre/include/lustre_lmv.h
F: lustre/lmv/
F: lustre/mdt/
Lustre File Identifiers - FID
F: lustre/fid/
F: lustre/fld/
F: lustre/include/lustre_fid.h
F: lustre/include/lustre_fld.h
F: lustre/include/uapi/linux/lustre/lustre_fid.h
K: FID_SEQ
K: FID_OID
Lustre File Heat
R: Li Xi <[email protected]>
F: lustre/doc/lfs-heat.1
F: lustre/doc/llapi_heat*.3
F: lustre/utils/liblustreapi_heat.c
K: (obd_heat|lu_heat)
K: OBD_HEAT
Lustre File Layout
R: Bobi Jam <[email protected]>
M: Jian Yu <[email protected]>
S: Supported
F: lustre/doc/lfs-getstripe.1
F: lustre/doc/lfs-setstripe.1
F: lustre/doc/lfs-mirror-*.1
F: lustre/doc/lfs_migrate.1
F: lustre/doc/llapi_file_*.3
F: lustre/doc/llapi_layout*.3
F: lustre/lov/
F: lustre/utils/liblustreapi_layout.c
Lustre File System Check - LFSCK
R: Hongchao Zhang <[email protected]>
S: Maintained
F: lustre/doc/lctl-lfsck*.8
F: lustre/include/lustre_lfsck.h
F: lustre/include/lustre/lustre_lfsck_user.h
F: lustre/lfsck/
F: lustre/osd-ldiskfs/osd_scrub.[ch]
F: lustre/osd-zfs/osd_scrub.c
F: lustre/tests/sanity-lfsck.sh
F: lustre/tests/sanity-scrub.sh
Lustre Grant Space
R: Patrick Farrell <[email protected]>
S: Supported
F: lustre/ofd/ofd_dev.c
F: lustre/ofd/ofd_io.c
F: lustre/ofd/ofd_obd.c
F: lustre/osc/osc_cache.c
F: lustre/osc/osc_request.c
F: lustre/target/tgt_grant.c
Lustre GSSAPI
M: Sebastien Buisson <[email protected]>
S: Maintained
F: lustre/conf/lgssc.conf
F: lustre/conf/lsvcgss
F: lustre/doc/lgss_sk.8
F: lustre/llite/xattr_security.c
F: lustre/ptlrpc/gss
F: lustre/ptlrpc/sec*.c
F: lustre/scripts/lsvgss
F: lustre/tests/sanity-sec.sh
F: lustre/utils/gss
Lustre GSSAPI - Kerberos
M: Sebastien Buisson <[email protected]>
S: Maintained
F: lustre/ptlrpc/gss/gss_krb5*.[ch]
Lustre GSSAPI - Shared Secret Key
M: Sebastien Buisson <[email protected]>
S: Maintained
F: lustre/conf/lgssc.conf
F: lustre/conf/lsvcgss
F: lustre/doc/lgss_sk.8
F: lustre/ptlrpc/gss/gss_sk_mech.c
F: lustre/utils/gss
Lustre High Availability
R: Nathaniel Clark <[email protected]>
S: Supported
F: contrib/scripts/pacemaker/
F: lustre/conf/Lustre/
Lustre HSM
S: Maintained
F: lustre/doc/lfs-hsm.1
F: lustre/doc/llapi_hsm*.3
F: lustre/include/lustre_kernelcomm.h
F: lustre/include/uapi/linux/lustre/lustre_kernelcomm.h
F: lustre/obdclass/kernelcomm.c
F: lustre/mdt/mdt_coordinator.c
F: lustre/mdt/mdt_hsm*.c
F: lustre/tests/llapi_hsm_test.c
F: lustre/tests/sanity-hsm.sh
F: lustre/utils/liblustreapi_hsm.c
F: lustre/utils/liblustreapi_kernelconn.c
Lustre HSM POSIX Copytool
M: Qian Yingjin <[email protected]>
S: Maintained
F: lustre/utils/lhsmtool_posix.c
Lustre Kernel Compatibility
R: James Simmons <[email protected]>
S: Maintained
F: libcfs/
F: lustre/include/lustre_compat.h
F: lustre/include/lustre_patchless_compat.h
Lustre Kernel Patches
R: Yang Sheng <[email protected]>
S: Supported
F: lustre/kernel_patches/
Lustre Kernel Patches for ldiskfs
R: Li Dongyang <[email protected]>
M: Artem Blagodarenko <[email protected]>
R: Yang Sheng <[email protected]>
S: Supported
F: ldiskfs/kernel_patches/
Lustre Log - llog
R: Mikhail Pershin <[email protected]>
M: Emoly Liu <[email protected]>
S: Supported
F: lustre/doc/lctl-llog*.8
F: lustre/doc/llog_reader.8
F: lustre/include/llog_*.h
F: lustre/obdclass/llog*.[ch]
F: lustre/ptlrpc/llog*.[ch]
F: lustre/utils/llog_reader.c
Lustre Metadata Target - MDT
R: Lai Siyao <[email protected]>
S: Supported
F: lustre/include/lustre_mds.h
F: lustre/mdd/
F: lustre/mdt/
Lustre Network Request Scheduler - NRS
R: Qian Yingjin <[email protected]>
R: Nikitas Angelinas <[email protected]>
S: Maintained
F: lustre/include/lustre_nrs*.c
F: lustre/ptlrpc/nrs*.c
Lustre Networking
R: Amir Shehata <[email protected]>
M: Sonia Sharma <[email protected]>
S: Supported
F: Documentation/dlc.txt
F: lustre/conf/ko2iblnd.conf
F: lustre/doc/lst.8
F: lustre/doc/lustre_routes_config.8
F: lustre/doc/lustre_routes_conversion.8
F: lustre/doc/nids.5
F: lustre/scripts/ko2iblnd-probe
F: lnet/
Lustre Networking GNILND
R: Chris Horn <[email protected]>
R: Chuck Fossen <[email protected]>
S: Supported
F: lnet/klnds/gnilnd/
Lustre Networking O2IBLND
R: Amir Shehata <[email protected]>
S: Supported
F: lnet/klnds/o2iblnd
Lustre Networking TCP Sockets LND
R: Amir Shehata <[email protected]>
S: Supported
F: lnet/klnds/socklnd
Lustre Nodemap
R: Sebastien Buisson <[email protected]>
S: Maintained
F: lustre/include/lustre_nodemap.h
F: lustre/include/lustre_idmap.h
F: lustre/ptlrpc/nodemap*.[ch]
F: lustre/doc/lctl-nodemap*.8
Lustre Object Storage Target - OST
R: Alex Zhuravlev <[email protected]>
S: Supported
F: lustre/ofd
F: lustre/ost
Lustre OSD API
R: Alex Zhuravlev <[email protected]>
S: Supported
F: include/lustre/dt_object.h
F: Documentation/osd-api.txt
Lustre OSD ldiskfs
R: Alex Zhuravlev <[email protected]>
M: Artem Blagodarenko <[email protected]>
S: Supported
F: lustre/osd-ldiskfs/
F: Documentation/osd-api.txt
Lustre OSD Proxy - OSP
R: Alex Zhuravlev <[email protected]>
S: Supported
F: lustre/osp/
F: Documentation/osd-api.txt
Lustre OSD ZFS
R: Alex Zhuravlev <[email protected]>
R: Tony Hutter <[email protected]>
R: Olaf Faaland <[email protected]>
S: Supported
F: lustre/osd-zfs/
Lustre Patch Commit Hooks
R: Andreas Dilger <[email protected]>
S: Odd Fixes
F: contrib/git-hooks/
F: contrib/scripts/checkpatch.pl
F: contrib/scripts/const_structs.checkpatch
F: contrib/scripts/get_maintainer.pl
F: contrib/scripts/spelling.txt
F: contrib/scripts/updatecw.sh
Lustre Persistent Client Cache - PCC
R: Qian Yingjin <[email protected]>
S: Supported
F: lustre/doc/lctl-pcc*.1
F: lustre/doc/lfs-pcc*.1
F: lustre/doc/llapi_pcc*.3
F: lustre/llite/pcc.[ch]
F: lustre/tests/sanity-pcc.sh
F: lustre/utils/liblustreapi_pcc.c
Lustre /proc and /sys
R: James Simmons <[email protected]>
S: Maintained
F: lustre/*/*lproc*.[ch]
F: lustre/obdclass/obdsysfs.c
Lustre Protocol Compatibility
R: Andreas Dilger <[email protected]>
S: Supported
F: lustre/include/uapi/linux/lustre/lustre_idl.h
F: lustre/include/uapi/linux/lustre/lustre_user.h
F: lustre/ptlrpc/pack_generic.c
F: lustre/ptlrpc/layout.c
F: lustre/utils/wire*.[ch]
F: lustre/ptlrpc/wire*.[ch]
K: OBD_CONNECT_.*
Lustre Quotas
R: Hongchao Zhang <[email protected]>
M: Wang Shilong <[email protected]>
S: Supported
F: lustre/doc/*quota*.[13]
F: lustre/doc/lfs-project.1
F: lustre/include/lustre_quota.h
F: lustre/osc/osc_quota.c
F: lustre/osd-ldiskfs/osd_quota*.[ch]
F: lustre/osd-zfs/osd_quota*.[ch]
F: lustre/quota/
F: lustre/tests/sanity-quota.sh
K: (quota|QUOTA)
Lustre Server Target
R: Mikhail Pershin <[email protected]>
S: Supported
F: lustre/target/
Lustre Snapshots
S: Maintained
F: lustre/doc/lctl-barrier.8
F: lustre/doc/lctl-snapshot*.8
F: lustre/doc/lctl-lcfg.8
F: lustre/mgs/mgs_barrier.c
F: lustre/tests/sanity-lsnapshot.sh
F: lustre/utils/lsnapshot.c
Lustre Tests
R: James Nunez <[email protected]>
M: Sarah Liu <[email protected]>
S: Supported
F: lustre/tests/
Lustre User Documentation
R: Andreas Dilger <[email protected]>
S: Supported
F: lustre/doc/*.[1-9]
Lustre User Library Interface
R: Andreas Dilger <[email protected]>
S: Supported
F: lustre/doc/llapi_*.3
F: lustre/doc/lustreapi.7
F: lustre/include/lustre/lustreapi.h
F: lustre/include/uapi/linux/lustre/lustre_user.h
F: lustre/utils/liblustreapi*.c
F: lustre/utils/lustreapi_internal.h
Lustre User Tools
R: Andreas Dilger <[email protected]>
R: Olaf Faaland <[email protected]>
S: Supported
F: lustre/doc/lfs*.1
F: lustre/doc/lctl*.8
F: lustre/doc/mkfs.lustre.8
F: lustre/doc/mount.lustre.8
F: lustre/doc/tunefs.lustre.8
F: lustre/scripts/lfs_migrate
F: lustre/scripts/lustre_rmmod
F: lustre/utils/
X: lustre/utils/gss/