aboutsummaryrefslogtreecommitdiff
blob: 257e94a3f02eab17c0c03b3ad36af1d71e2dbd32 (plain)
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
# ChangeLog for sys-cluster/lustre
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $

  20 May 2014; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0004-LU-2096-lprocfs-symlinks-for-forward-compatibility.patch,
  +files/0005-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  +files/0006-LU-4416-mm-Backport-shrinker-changes-from-upstream.patch,
  -files/0004-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  -files/0005-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  -files/0006-LU-2096-lprocfs-symlinks-for-forward-compatibility.patch,
  -files/0007-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  -files/0008-LU-4416-mm-Backport-shrinker-changes-from-upstream.patch,
  files/0001-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch,
  files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  files/0003-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  lustre-9999.ebuild:
  Update patches

  22 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org>
  files/0006-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  files/0007-LU-4416-mm-Backport-shrinker-changes-from-upstream.patch:
  Update lustre patches

  22 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch,
  +files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  +files/0003-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  +files/0004-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  +files/0005-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  +files/0006-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  +files/0007-LU-4416-mm-Backport-shrinker-changes-from-upstream.patch,
  -files/0001-LU-3319-procfs-fix-symlink-handling.patch,
  -files/0002-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch,
  -files/0003-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  -files/0004-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  -files/0005-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  -files/0006-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  -files/0007-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  -files/0008-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  -files/0009-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  -files/0010-LU-4416-mm-Backport-shrinker-changes-from-upstream.patch,
  lustre-9999.ebuild:
  Update lustre patches

  02 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0010-LU-4416-mm-Backport-shrinker-changes-from-upstream.patch,
  +files/lustre-readline6.3_fix.patch,
  files/0001-LU-3319-procfs-fix-symlink-handling.patch,
  files/0002-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch,
  files/0003-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  files/0004-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  files/0005-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  files/0006-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  files/0007-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  files/0008-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  files/0009-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  lustre-9999.ebuild:
  Lustre with patches up to kernel v3.13

  02 Apr 2014; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-3319-procfs-fix-symlink-handling.patch,
  +files/0002-LU-3319-procfs-Move-NRS-TBF-proc-handling-to-seq_fil.patch,
  +files/0003-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  +files/0004-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  +files/0007-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  +files/0008-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  -files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  -files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  -files/0003-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  -files/0004-LU-3319-procfs-fix-symlink-handling.patch,
  -files/0007-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  -files/0008-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  -files/0010-LU-3319-lprocfs-client-side-cleanups.patch,
  -files/0011-LU-3974-llite-use-new-struct-dir_context.patch,
  -files/0012-LU-3974-llite-invalidatepage-api-changed.patch,
  files/0005-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  files/0006-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  files/0009-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  lustre-9999.ebuild:
  Lustre need more patches

  27 Feb 2014; Alexey Shvetsov <alexxy@gentoo.org>
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  files/0003-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  files/0004-LU-3319-procfs-fix-symlink-handling.patch,
  files/0005-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  files/0006-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  files/0007-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  files/0008-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  files/0009-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  files/0010-LU-3319-lprocfs-client-side-cleanups.patch,
  files/0011-LU-3974-llite-use-new-struct-dir_context.patch,
  files/0012-LU-3974-llite-invalidatepage-api-changed.patch:
  Update patches

  12 Feb 2014; Alexey Shvetsov <alexxy@gentoo.org>
  files/0011-LU-3974-llite-use-new-struct-dir_context.patch,
  files/0012-LU-3974-llite-invalidatepage-api-changed.patch:
  Fix build v2

  12 Feb 2014; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Drop unneded patch v2

  12 Feb 2014; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  +files/0002-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  +files/0003-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  +files/0004-LU-3319-procfs-fix-symlink-handling.patch,
  +files/0005-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  +files/0006-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  +files/0007-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  +files/0008-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  +files/0009-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  +files/0010-LU-3319-lprocfs-client-side-cleanups.patch,
  +files/0011-LU-3974-llite-use-new-struct-dir_context.patch,
  +files/0012-LU-3974-llite-invalidatepage-api-changed.patch,
  -files/0001-LU-4554-lfsck-old-single-OI-MDT-always-scrubbed.patch,
  -files/0002-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  -files/0003-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  -files/0004-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  -files/0005-LU-3319-procfs-fix-symlink-handling.patch,
  -files/0006-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  -files/0007-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  -files/0008-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  -files/0009-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  -files/0010-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  -files/0011-LU-3319-lprocfs-client-side-cleanups.patch,
  -files/0012-LU-3974-llite-use-new-struct-dir_context.patch,
  -files/0013-LU-3974-llite-invalidatepage-api-changed.patch:
  Drop unneded patch

  12 Feb 2014; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-4554-lfsck-old-single-OI-MDT-always-scrubbed.patch,
  +files/0002-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  +files/0003-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  +files/0005-LU-3319-procfs-fix-symlink-handling.patch,
  +files/0008-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  +files/0009-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  +files/0011-LU-3319-lprocfs-client-side-cleanups.patch,
  -files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  -files/0002-LU-3319-lprocfs-client-side-cleanups.patch,
  -files/0003-LU-3319-procfs-fix-symlink-handling.patch,
  -files/0005-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  -files/0008-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  -files/0009-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  -files/0011-LU-3373-osd-ldiskfs-readdir-replace-by-iterate.patch,
  files/0004-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  files/0006-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  files/0007-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  files/0010-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  files/0012-LU-3974-llite-use-new-struct-dir_context.patch,
  files/0013-LU-3974-llite-invalidatepage-api-changed.patch, lustre-9999.ebuild:
  Update lustre patches

  04 Feb 2014; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0002-LU-3319-lprocfs-client-side-cleanups.patch,
  +files/0003-LU-3319-procfs-fix-symlink-handling.patch,
  +files/0004-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  +files/0005-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  +files/0006-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  +files/0007-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  +files/0008-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  +files/0009-LU-3319-procfs-move-mdd-ofd-proc-handling-to-seq_fil.patch,
  +files/0010-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  +files/0011-LU-3373-osd-ldiskfs-readdir-replace-by-iterate.patch,
  +files/0012-LU-3974-llite-use-new-struct-dir_context.patch,
  +files/0013-LU-3974-llite-invalidatepage-api-changed.patch,
  -files/0002-LU-3373-ldiskfs-ldiskfs-patches-for-3.11.1-fc19.patch,
  -files/0003-LU-3974-llite-dentry-d_compare-changes-in-3.11.patch,
  -files/0004-LU-3974-llite-use-new-struct-dir_context.patch,
  -files/0005-LU-3974-llite-invalidatepage-api-changed.patch,
  -files/0006-LU-3319-procfs-move-llite-proc-handling-over-to-seq_.patch,
  -files/0007-LU-3319-procfs-move-lmv-proc-handling-over-to-seq_fi.patch,
  -files/0008-LU-3319-procfs-move-ldlm-proc-handling-over-to-seq_f.patch,
  -files/0009-LU-3319-procfs-move-ost-proc-handling-over-to-seq_fi.patch,
  -files/0010-LU-3319-procfs-update-shared-server-side-core-proc-h.patch,
  -files/0011-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  -files/0012-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  -files/0013-LU-3319-procfs-move-ofd-proc-handling-to-seq_files.patch,
  -files/0014-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  -files/0015-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  -files/0016-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  -files/0017-LU-3319-procfs-move-mdd-proc-handling-to-seq_files.patch,
  -files/0018-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  lustre-9999.ebuild:
  Make lustre build with 3.11 kernel

  06 Jan 2014; Justin Lecher <jlec@gentoo.org> lustre-9999.ebuild:
  Switch from git-2 to git-r3

  19 Dec 2013; Alexey Shvetsov <alexxy@gentoo.org>
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-3373-ldiskfs-ldiskfs-patches-for-3.11.1-fc19.patch,
  files/0003-LU-3974-llite-dentry-d_compare-changes-in-3.11.patch,
  files/0004-LU-3974-llite-use-new-struct-dir_context.patch,
  files/0005-LU-3974-llite-invalidatepage-api-changed.patch,
  files/0006-LU-3319-procfs-move-llite-proc-handling-over-to-seq_.patch,
  files/0007-LU-3319-procfs-move-lmv-proc-handling-over-to-seq_fi.patch,
  files/0008-LU-3319-procfs-move-ldlm-proc-handling-over-to-seq_f.patch,
  files/0009-LU-3319-procfs-move-ost-proc-handling-over-to-seq_fi.patch,
  files/0010-LU-3319-procfs-update-shared-server-side-core-proc-h.patch,
  files/0011-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  files/0012-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  files/0013-LU-3319-procfs-move-ofd-proc-handling-to-seq_files.patch,
  files/0014-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  files/0015-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  files/0016-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  files/0017-LU-3319-procfs-move-mdd-proc-handling-to-seq_files.patch,
  files/0018-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch:
  It moves..

  19 Dec 2013; Alexey Shvetsov <alexxy@gentoo.org>
  files/0016-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  files/0017-LU-3319-procfs-move-mdd-proc-handling-to-seq_files.patch,
  files/0018-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch:
  More... More.. Go^W patches

  19 Dec 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0010-LU-3319-procfs-update-shared-server-side-core-proc-h.patch,
  +files/0011-LU-3319-procfs-update-zfs-proc-handling-to-seq_files.patch,
  +files/0012-LU-3319-procfs-move-mgs-proc-handling-to-seq_files.patch,
  +files/0013-LU-3319-procfs-move-ofd-proc-handling-to-seq_files.patch,
  +files/0014-LU-3319-procfs-move-lod-proc-handling-to-seq_files.patch,
  +files/0015-LU-3319-procfs-move-osp-proc-handling-to-seq_files.patch,
  +files/0016-LU-3319-procfs-move-mdt-mds-proc-handling-to-seq_fil.patch,
  +files/0017-LU-3319-procfs-move-mdd-proc-handling-to-seq_files.patch,
  +files/0018-LU-3319-procfs-update-ldiskfs-proc-handling-to-seq_f.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-3373-ldiskfs-ldiskfs-patches-for-3.11.1-fc19.patch,
  files/0003-LU-3974-llite-dentry-d_compare-changes-in-3.11.patch,
  files/0004-LU-3974-llite-use-new-struct-dir_context.patch,
  files/0005-LU-3974-llite-invalidatepage-api-changed.patch,
  files/0006-LU-3319-procfs-move-llite-proc-handling-over-to-seq_.patch,
  files/0007-LU-3319-procfs-move-lmv-proc-handling-over-to-seq_fi.patch,
  files/0008-LU-3319-procfs-move-ldlm-proc-handling-over-to-seq_f.patch,
  files/0009-LU-3319-procfs-move-ost-proc-handling-over-to-seq_fi.patch,
  lustre-9999.ebuild:
  More...

  19 Dec 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0007-LU-3319-procfs-move-lmv-proc-handling-over-to-seq_fi.patch,
  +files/0008-LU-3319-procfs-move-ldlm-proc-handling-over-to-seq_f.patch,
  +files/0009-LU-3319-procfs-move-ost-proc-handling-over-to-seq_fi.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-3373-ldiskfs-ldiskfs-patches-for-3.11.1-fc19.patch,
  files/0003-LU-3974-llite-dentry-d_compare-changes-in-3.11.patch,
  files/0004-LU-3974-llite-use-new-struct-dir_context.patch,
  files/0005-LU-3974-llite-invalidatepage-api-changed.patch,
  files/0006-LU-3319-procfs-move-llite-proc-handling-over-to-seq_.patch,
  lustre-9999.ebuild:
  Give me more patches =D

  19 Dec 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0006-LU-3319-procfs-move-llite-proc-handling-over-to-seq_.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-3373-ldiskfs-ldiskfs-patches-for-3.11.1-fc19.patch,
  files/0003-LU-3974-llite-dentry-d_compare-changes-in-3.11.patch,
  files/0004-LU-3974-llite-use-new-struct-dir_context.patch,
  files/0005-LU-3974-llite-invalidatepage-api-changed.patch, lustre-9999.ebuild:
  Fix flag filtering and build

  19 Dec 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Dissalow unsafe flags for kernel build

  19 Dec 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0002-LU-3373-ldiskfs-ldiskfs-patches-for-3.11.1-fc19.patch,
  +files/0003-LU-3974-llite-dentry-d_compare-changes-in-3.11.patch,
  +files/0004-LU-3974-llite-use-new-struct-dir_context.patch,
  +files/0005-LU-3974-llite-invalidatepage-api-changed.patch,
  -files/0002-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  -files/0003-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0004-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  lustre-9999.ebuild:
  Update lustre build for 3.11 for workstations =D

  11 Jul 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  +files/0002-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  +files/0003-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  +files/0004-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  -files/0001-LU-1812-kernel-3.7-FC18-server-patches.patch,
  -files/0002-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  -files/0003-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  -files/0004-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  -files/0005-LU-2800-llite-introduce-local-getname.patch,
  -files/0006-LU-2987-llite-rcu-free-inode.patch,
  -files/0007-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  -files/0008-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  -files/0009-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  -files/0010-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0011-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  -files/0012-LU-3179-build-fix-compilation-error-with-gcc-4.7.2.patch,
  lustre-9999.ebuild:
  Update lustre patches

  13 Jun 2013; Justin Lecher <jlec@gentoo.org> lustre-9999.ebuild,
  metadata.xml:
  Move virtual/linux-sources to build deps

  07 May 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0009-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  +files/0010-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  +files/0011-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  +files/0012-LU-3179-build-fix-compilation-error-with-gcc-4.7.2.patch,
  -files/0009-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  -files/0010-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  -files/0011-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0012-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  files/0001-LU-1812-kernel-3.7-FC18-server-patches.patch,
  files/0002-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  files/0003-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  files/0004-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0005-LU-2800-llite-introduce-local-getname.patch,
  files/0006-LU-2987-llite-rcu-free-inode.patch,
  files/0007-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0008-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  lustre-9999.ebuild:
  Update lustre patches. zfs patches was merged

  07 May 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Fix quotation issues with server

  07 May 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-1812-kernel-3.7-FC18-server-patches.patch,
  +files/0002-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  +files/0003-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  +files/0004-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  +files/0005-LU-2800-llite-introduce-local-getname.patch,
  +files/0006-LU-2987-llite-rcu-free-inode.patch,
  +files/0007-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  +files/0008-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  +files/0009-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  +files/0010-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  +files/0011-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  +files/0012-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  -files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  -files/0002-LU-1812-kernel-3.0-SuSE-and-3.6-FC18-server-patches.patch,
  -files/0003-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  -files/0004-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  -files/0005-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  -files/0006-LU-2800-llite-introduce-local-getname.patch,
  -files/0007-LU-2987-llite-rcu-free-inode.patch,
  -files/0008-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  -files/0009-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  -files/0010-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0011-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  -files/0012-LU-3179-fids-fix-compilation-error-with-gcc-4.7.2.patch,
  -files/0013-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  lustre-9999.ebuild:
  Update lustre patches

  23 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0012-LU-3179-fids-fix-compilation-error-with-gcc-4.7.2.patch,
  +files/0013-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  -files/0012-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  -files/0013-LU-3179-fids-fix-compilation-error-with-gcc-4.7.2.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-1812-kernel-3.0-SuSE-and-3.6-FC18-server-patches.patch,
  files/0003-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  files/0004-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  files/0005-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0006-LU-2800-llite-introduce-local-getname.patch,
  files/0007-LU-2987-llite-rcu-free-inode.patch,
  files/0008-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0009-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0010-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  files/0011-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  lustre-9999.ebuild:
  Add rebased patches

  22 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Fix zfs-osd build

  22 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Disable liblustre by default

  22 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0013-LU-3179-fids-fix-compilation-error-with-gcc-4.7.2.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-1812-kernel-3.0-SuSE-and-3.6-FC18-server-patches.patch,
  files/0003-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  files/0004-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  files/0005-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0006-LU-2800-llite-introduce-local-getname.patch,
  files/0007-LU-2987-llite-rcu-free-inode.patch,
  files/0008-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0009-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0010-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  files/0011-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  files/0012-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  lustre-9999.ebuild:
  Update lustre patches

  17 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Fix client build

  17 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0009-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  +files/0010-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  +files/0011-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  +files/0012-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  -files/0009-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0010-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  -files/0011-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-1812-kernel-3.0-SuSE-and-3.6-FC18-server-patches.patch,
  files/0003-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  files/0004-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  files/0005-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0006-LU-2800-llite-introduce-local-getname.patch,
  files/0007-LU-2987-llite-rcu-free-inode.patch,
  files/0008-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  lustre-9999.ebuild:
  forget to add one patch

  17 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0002-LU-1812-kernel-3.0-SuSE-and-3.6-FC18-server-patches.patch,
  +files/0003-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  +files/0004-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  +files/0005-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  +files/0006-LU-2800-llite-introduce-local-getname.patch,
  +files/0007-LU-2987-llite-rcu-free-inode.patch,
  +files/0008-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  +files/0009-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  +files/0010-LU-3079-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  +files/0011-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  -files/0002-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  -files/0003-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  -files/0004-LU-2800-llite-introduce-local-getname.patch,
  -files/0005-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  -files/0006-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  -files/0007-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  -files/0008-LU-2987-llite-rcu-free-inode.patch,
  -files/0009-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  lustre-9999.ebuild:
  Update lustre patches

  16 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0002-LU-2686-kernel-sock_map_fd-replaced-by-sock_alloc_fi.patch,
  +files/0005-LU-2686-kernel-Kernel-update-for-3.7.2-201.fc18.patch,
  +files/0009-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  -files/0002-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  -files/0005-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  -files/0009-LU-2850-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0010-LU-2850-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  -files/0011-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0003-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0004-LU-2800-llite-introduce-local-getname.patch,
  files/0006-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0007-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0008-LU-2987-llite-rcu-free-inode.patch, lustre-9999.ebuild:
  Update lustre patches

  16 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Update lustre deps

  16 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Update lustre deps

  16 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Update lustre deps

  16 Apr 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0009-LU-2850-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  +files/0010-LU-2850-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  +files/0011-LU-3117-build-zfs-0.6.1-kmod-dkms-compatibility.patch,
  -files/0009-LU-3011-ubuntu-Fix-build-failures-on-Ubuntu-12.04.patch,
  -files/0010-LU-3077-build-fix-warnings-in-client-modules.patch,
  -files/0011-LU-2850-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0012-LU-2850-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  files/0003-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0004-LU-2800-llite-introduce-local-getname.patch,
  files/0005-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0006-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0007-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0008-LU-2987-llite-rcu-free-inode.patch, lustre-9999.ebuild:
  Update lustre patches

  31 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0010-LU-3077-build-fix-warnings-in-client-modules.patch,
  +files/0011-LU-2850-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  +files/0012-LU-2850-kernel-f_vfsmnt-replaced-by-f_path.mnt.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  files/0003-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0004-LU-2800-llite-introduce-local-getname.patch,
  files/0005-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0006-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0007-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0008-LU-2987-llite-rcu-free-inode.patch,
  files/0009-LU-3011-ubuntu-Fix-build-failures-on-Ubuntu-12.04.patch,
  lustre-9999.ebuild:
  Add patches for gcc-4.8 and linux-3.9

  31 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild,
  metadata.xml:
  Enable more options

  31 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0009-LU-3011-ubuntu-Fix-build-failures-on-Ubuntu-12.04.patch,
  files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  files/0002-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  files/0003-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0004-LU-2800-llite-introduce-local-getname.patch,
  files/0005-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0006-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0007-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0008-LU-2987-llite-rcu-free-inode.patch, lustre-9999.ebuild:
  Add patch to fix as-needed issue

  31 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  +files/0002-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  +files/0003-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  +files/0004-LU-2800-llite-introduce-local-getname.patch,
  +files/0005-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  +files/0006-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  +files/0007-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  +files/0008-LU-2987-llite-rcu-free-inode.patch,
  -files/0000-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  -files/0001-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  -files/0002-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  -files/0003-LU-2800-llite-introduce-local-getname.patch,
  -files/0004-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  -files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  -files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  -files/0007-LU-2987-llite-rcu-free-inode.patch,
  -files/0008-LU-2850-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  lustre-9999.ebuild:
  Update rebased patches

  27 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  +files/0003-LU-2800-llite-introduce-local-getname.patch,
  +files/0004-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  +files/0008-LU-2850-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0001-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  -files/0003-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  -files/0004-LU-2800-llite-introduce-local-getname.patch,
  -files/0008-LU-2929-build-fix-unused-uninitilized-virables-error.patch,
  -files/0009-LU-2850-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  files/0002-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0007-LU-2987-llite-rcu-free-inode.patch, lustre-9999.ebuild:
  Update patches

  22 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0008-LU-2929-build-fix-unused-uninitilized-virables-error.patch,
  +files/0009-LU-2850-kernel-3.9-hlist_for_each_entry-uses-3-args.patch,
  -files/0007-LU-2984-build-Fix-warning-with-gcc-4.6-in-mdt_handle.patch,
  files/0001-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0002-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  files/0003-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  files/0004-LU-2800-llite-introduce-local-getname.patch,
  files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0007-LU-2987-llite-rcu-free-inode.patch, lustre-9999.ebuild:
  Update patches for 3.9

  22 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0002-LU-2850-compat-posix_acl_-to-from-_xattr-take-user_n.patch,
  +files/0003-LU-2800-libcfs-use-sock_alloc_file-instead-of-sock_m.patch,
  +files/0004-LU-2800-llite-introduce-local-getname.patch,
  +files/0007-LU-2987-llite-rcu-free-inode.patch,
  -files/0002-LU-2850-kernel-3.7-kernel-posix-acl-needs-userns.patch,
  -files/0003-LU-2850-kernel-3.7-uneports-sock_map_fd.patch,
  -files/0004-LU-2850-kernel-3.7-get-putname-uses-struct-filename.patch,
  files/0001-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  lustre-9999.ebuild:
  Update patches for 3.8

  19 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  $PWD dont needed in automake invocation

  19 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Fix escape sequence

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  files/0001-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0002-LU-2850-kernel-3.7-kernel-posix-acl-needs-userns.patch,
  files/0003-LU-2850-kernel-3.7-uneports-sock_map_fd.patch,
  files/0004-LU-2850-kernel-3.7-get-putname-uses-struct-filename.patch,
  files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch:
  Update patches

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Fix some install path

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Add gentoo style configure

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0007-LU-2984-build-Fix-warning-with-gcc-4.6-in-mdt_handle.patch,
  lustre-9999.ebuild:
  Fix error in mdt_handler.c

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  files/0000-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch:
  Update patch

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  files/0000-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch:
  Update patch

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0000-LU-2982-build-make-AC-check-for-linux-arch-sandbox-f.patch,
  -files/LU-2982.patch, lustre-9999.ebuild:
  Add patch sended upstream

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> files/LU-2982.patch:
  Update patch

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> +files/LU-2982.patch,
  lustre-9999.ebuild:
  Fix sandbox violation during configure

  18 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  files/0001-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0002-LU-2850-kernel-3.7-kernel-posix-acl-needs-userns.patch,
  files/0003-LU-2850-kernel-3.7-uneports-sock_map_fd.patch,
  files/0004-LU-2850-kernel-3.7-get-putname-uses-struct-filename.patch,
  files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  lustre-9999.ebuild:
  Update lustre patches

  16 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Update deps. thanks to Richard Yao

  15 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Make client and utils as default flags

  15 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Update to reflect latest zfs changes

  14 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Drop Werror hack

  14 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  files/0001-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0002-LU-2850-kernel-3.7-kernel-posix-acl-needs-userns.patch,
  files/0003-LU-2850-kernel-3.7-uneports-sock_map_fd.patch,
  files/0004-LU-2850-kernel-3.7-get-putname-uses-struct-filename.patch,
  files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch:
  Now it builds and loads with 3.8

  14 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch:
  More updates to lustre patches

  14 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0006-LU-2850-kernel-3.8-upstream-kills-daemonize.patch,
  files/0001-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  files/0002-LU-2850-kernel-3.7-kernel-posix-acl-needs-userns.patch,
  files/0003-LU-2850-kernel-3.7-uneports-sock_map_fd.patch,
  files/0004-LU-2850-kernel-3.7-get-putname-uses-struct-filename.patch,
  files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  lustre-9999.ebuild:
  Update lustre patches. Now it builds against linux 3.8

  07 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Fix typo

  06 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  Realy add patches to ebuild

  06 Mar 2013; Alexey Shvetsov <alexxy@gentoo.org>
  +files/0001-LU-2850-build-check-header-files-in-generated-uapi-d.patch,
  +files/0002-LU-2850-kernel-3.7-kernel-posix-acl-needs-userns.patch,
  +files/0003-LU-2850-kernel-3.7-uneports-sock_map_fd.patch,
  +files/0004-LU-2850-kernel-3.7-get-putname-uses-struct-filename.patch,
  +files/0005-LU-2850-kernel-3.8-upstream-removes-vmtruncate.patch,
  lustre-9999.ebuild:
  Add patches for kernels 3.7 and 3.8

  10 Feb 2013; Alexey Shvetsov <alexxy@gentoo.org>
  -files/2.4/0001-LU-1994-llite-atomic_open-support.patch, lustre-9999.ebuild,
  metadata.xml:
  [sys-cluster/lustre] Update lustre ebuild  Also add server support =)

  22 Dec 2012; Alexey Shvetsov <alexxy@gentoo.org>
  +files/2.4/0001-LU-1994-llite-atomic_open-support.patch, lustre-9999.ebuild:
  [sys-cluster/lustre] Add missing patch

  22 Dec 2012; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  [sys-cluster/lustre] Fix disabling

  22 Dec 2012; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  [sys-cluster/lustre] Disable Werror

  22 Dec 2012; Alexey Shvetsov <alexxy@gentoo.org>
  -files/2.4/0001-LU-1337-vfs-kernel-3.1-renames-lock-manager-ops.patch,
  -files/2.4/0002-LU-1337-vfs-kernel-3.1-kills-inode-i_alloc_sem.patch,
  -files/2.4/0003-LU-1337-vfs-kernel-3.1-changes-open_to_namei_flags.patch,
  -files/2.4/0004-LU-1337-vfs-provides-ll_get_acl-to-i_op-get_acl.patch,
  -files/2.4/0005-LU-1337-block-kernel-3.2-make_request_fn-returns-voi.patch,
  -files/2.4/0006-LU-1337-vfs-kernel-3.2-protects-inode-i_nlink.patch,
  -files/2.4/0007-LU-1337-vfs-3.3-changes-super_operations-inode_opera.patch,
  -files/2.4/0008-LU-1337-kernel-remove-unnecessary-includings-of-syst.patch,
  -files/2.4/0009-LU-1337-vfs-kernel-3.4-touch_atime-switchs-to-1-argu.patch,
  -files/2.4/0010-LU-1337-vfs-kernel-3.4-converts-d_alloc_root-to-d_ma.patch,
  -files/2.4/0011-LU-1337-kernel-v3.5-defines-INVALID_UID.patch,
  -files/2.4/0012-LU-1337-llite-kernel-3.5-renames-end_writeback-to-cl.patch,
  -files/2.4/0013-LU-1337-kernel-3.5-kernel-encode_fh-passes-in-parent.patch,
  lustre-9999.ebuild:
  [sys-cluster/lustre] All patches for 3.6 was merge into mainline

  08 Oct 2012; Alexey Shvetsov <alexxy@gentoo.org>
  +files/2.4/0001-LU-1337-vfs-kernel-3.1-renames-lock-manager-ops.patch,
  +files/2.4/0002-LU-1337-vfs-kernel-3.1-kills-inode-i_alloc_sem.patch,
  +files/2.4/0003-LU-1337-vfs-kernel-3.1-changes-open_to_namei_flags.patch,
  +files/2.4/0004-LU-1337-vfs-provides-ll_get_acl-to-i_op-get_acl.patch,
  +files/2.4/0005-LU-1337-block-kernel-3.2-make_request_fn-returns-voi.patch,
  +files/2.4/0006-LU-1337-vfs-kernel-3.2-protects-inode-i_nlink.patch,
  +files/2.4/0007-LU-1337-vfs-3.3-changes-super_operations-inode_opera.patch,
  +files/2.4/0008-LU-1337-kernel-remove-unnecessary-includings-of-syst.patch,
  +files/2.4/0009-LU-1337-vfs-kernel-3.4-touch_atime-switchs-to-1-argu.patch,
  +files/2.4/0010-LU-1337-vfs-kernel-3.4-converts-d_alloc_root-to-d_ma.patch,
  +files/2.4/0011-LU-1337-kernel-v3.5-defines-INVALID_UID.patch,
  +files/2.4/0012-LU-1337-llite-kernel-3.5-renames-end_writeback-to-cl.patch,
  +files/2.4/0013-LU-1337-kernel-3.5-kernel-encode_fh-passes-in-parent.patch,
  -files/0001-LU-1337-vfs-kernel-3.1-renames-lock-manager-ops.patch,
  -files/0002-LU-1337-vfs-kernel-3.1-kills-inode-i_alloc_sem.patch,
  -files/0003-LU-1337-vfs-kernel-3.1-changes-open_to_namei_flags.patch,
  -files/0004-LU-1337-vfs-provides-ll_get_acl-to-i_op-get_acl.patch,
  -files/0005-LU-1337-block-kernel-3.2-make_request_fn-returns-voi.patch,
  -files/0006-LU-1337-vfs-kernel-3.2-protects-inode-i_nlink.patch,
  -files/0007-LU-1337-vfs-3.3-changes-super_operations-inode_opera.patch,
  -files/0008-LU-1337-kernel-remove-unnecessary-includings-of-syst.patch,
  -files/0009-LU-1337-vfs-kernel-3.4-touch_atime-switchs-to-1-argu.patch,
  -files/0010-LU-1337-vfs-kernel-3.4-converts-d_alloc_root-to-d_ma.patch,
  -files/0011-LU-1337-kernel-v3.5-defines-INVALID_UID.patch,
  -files/0012-LU-1337-llite-kernel-3.5-renames-end_writeback-to-cl.patch,
  -files/0013-LU-1337-kernel-3.5-kernel-encode_fh-passes-in-parent.patch,
  lustre-9999.ebuild:
  [sys-cluster/lustre] Update patches

  20 Sep 2012; Alexey Shvetsov <alexxy@gentoo.org> lustre-9999.ebuild:
  [sys-cluster/lustre] call apply_user_patches