Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aef73a61 authored by Darrick J. Wong's avatar Darrick J. Wong
Browse files

ocfs2: fix bad pointer cast



generic/188 triggered a dmesg stack trace because the dio completion
was casting a buffer head to an on-disk inode, which is whacky.

Signed-off-by: default avatarDarrick J. Wong <darrick.wong@oracle.com>
parent dbf896fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2317,7 +2317,7 @@ static int ocfs2_dio_end_io_write(struct inode *inode,
			mlog_errno(ret);
	}

	di = (struct ocfs2_dinode *)di_bh;
	di = (struct ocfs2_dinode *)di_bh->b_data;

	ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh);