aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/ext4_jbd2.h
Commit message (Expand)AuthorAge
* ext4: do not perform data journaling when data is encryptedSergey Karamov2017-01-06
* ext4: optimize ext4_should_retry_alloc() to improve ENOSPC performanceTheodore Ts'o2016-06-26
* ext4: do not ask jbd2 to write data for delalloc buffersJan Kara2016-04-24
* jbd2: add support for avoiding data writes during transaction commitsJan Kara2016-04-24
* ext4: clean up feature test macros with predicate functionsDarrick J. Wong2015-10-17
* ext4: don't use MAXQUOTAS valueJan Kara2014-09-11
* ext4: make local functions staticStephen Hemminger2014-05-12
* ext4: Fix misspellings using 'codespell' toolAnatol Pomozov2013-08-28
* ext4: use transaction reservation for extent conversion in ext4_end_ioJan Kara2013-06-04
* ext4: provide wrappers for transaction reservation callsJan Kara2013-06-04
* ext4: improve credit estimate for EXT4_SINGLEDATA_TRANS_BLOCKSJan Kara2013-04-09
* ext4: fix journal callback list traversalDmitry Monakhov2013-04-03
* ext4: fix the number of credits needed for acl ops with inline dataTheodore Ts'o2013-02-09
* ext4: fix the number of credits needed for ext4_unlink() and ext4_rmdir()Theodore Ts'o2013-02-09
* ext4: pass context information to jbd2__journal_start()Theodore Ts'o2013-02-08
* ext4: remove ext4_handle_release_buffer()Eric Sandeen2012-11-08
* ext4: remove unnecessary argument from __ext4_handle_dirty_metadata()Artem Bityutskiy2012-07-22
* ext4: make quota as first class supported featureAditya Kali2012-07-22
* ext4: calculate and verify superblock checksumDarrick J. Wong2012-04-29
* ext4: expand commit callback andBobi Jam2012-02-20
* ext4: ignore EXT4_INODE_JOURNAL_DATA flag with delallocLukas Czerner2012-02-20
* ext4: Fix ext4_should_writeback_data() for no-journal modeCurt Wohlgemuth2011-08-13
* ext4: remove unneeded ext4_journal_get_undo_accessTheodore Ts'o2011-05-09
* ext4: remove unnecessary [cm]time update of quota fileJan Kara2011-04-04
* ext4: unify the ext4_handle_release_buffer() apiAmir Goldstein2011-03-20
* ext4: dynamically allocate the jbd2_inode in ext4_inode_info as necessaryTheodore Ts'o2011-01-10
* ext4: Pass line numbers to ext4_error() and friendsTheodore Ts'o2010-07-27
* ext4: Pass line number to ext4_journal_abort_handle()Theodore Ts'o2010-06-29
* ext4: remove vestiges of nobh supportChristoph Hellwig2010-06-14
* ext4: Clean up s_dirt handlingTheodore Ts'o2010-06-11
* ext4: Use bitops to read/modify i_flags in struct ext4_inode_infoDmitry Monakhov2010-05-16
* ext4: use ext4_get_block_write in buffer writeJiaying Zhang2010-03-04
* ext4: Wait for proper transaction commit on fsyncJan Kara2009-12-08
* ext4: quota macros cleanupDmitry Monakhov2009-12-08
* ext4: fold ext4_journal_forget() into ext4_forget()Theodore Ts'o2009-11-22
* ext4: fold ext4_journal_revoke() into ext4_forget()Theodore Ts'o2009-11-24
* ext4: move ext4_forget() to ext4_jbd2.cTheodore Ts'o2009-11-22
* ext4: Handle nested ext4_journal_start/stop calls without a journalCurt Wohlgemuth2009-09-29
* ext4: Fix buffer head reference leak in no-journal modeCurt Wohlgemuth2009-07-13
* ext4: fix no journal corruption with locale-genTheodore Ts'o2009-07-08
* ext4: Remove "extents" mount optionTheodore Ts'o2009-01-06
* ext4: Allow ext4 to run without a journalFrank Mayhar2009-01-07
* ext4: journal credits calulation cleanup and fix for non-extent writepageMingming Cao2008-08-19
* ext4: Use new framework for data=ordered mode in JBD2Jan Kara2008-07-11
* ext4: replace __FUNCTION__ occurrencesStoyan Gaydarov2008-07-13
* ext4: move headers out of include/linuxChristoph Hellwig2008-04-29
ef='#n432'>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


































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
PK