• M
    jbd2: Add error check to journal_wait_on_commit_record to avoid oops · b048d846
    Mingming Cao 提交于
    The buffer head pointer passed to journal_wait_on_commit_record() could
    be NULL if the previous journal_submit_commit_record() failed or journal
    has already aborted.
    
    Looking at the jbd2 debug messages, before the oops happened, the jbd2
    is aborted due to trying to access the next log block beyond the end
    of device. This might be caused by using a corrupted image.
    
    We need to check the error returns from journal_submit_commit_record()
    and avoid calling journal_wait_on_commit_record() in the failure case.
    
    This addresses Kernel Bugzilla #9849
    Signed-off-by: NMingming Cao <cmm@us.ibm.com>
    Signed-off-by: N"Theodore Ts'o" <tytso@mit.edu>
    b048d846
commit.c 31.4 KB