[PATCH] Fix oops in ufs_fill_super at mount time

There's a lack of parenthesis in fs/ufs/utils.h, so instead of the 512th
byte of buffer, the usb2 pointer will point to the nth structure of type
ufs_super_block_second.

This can cause a mount-time oops if you're unlucky (especially with
DEBUG_PAGEALLOC, which is how Alexey Dobriyan saw this problem)

Signed-off-by: Evgeniy Dushistov <dushistov@mail.ru>
Acked-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Evgeniy and committed by Linus Torvalds 8a430d74 43ecb9a3

+2 -2
+2 -2
fs/ufs/util.h
··· 255 255 ((struct ufs_super_block_first *)((ubh)->bh[0]->b_data)) 256 256 257 257 #define ubh_get_usb_second(ubh) \ 258 - ((struct ufs_super_block_second *)(ubh)-> \ 259 - bh[UFS_SECTOR_SIZE >> uspi->s_fshift]->b_data + (UFS_SECTOR_SIZE & ~uspi->s_fmask)) 258 + ((struct ufs_super_block_second *)((ubh)->\ 259 + bh[UFS_SECTOR_SIZE >> uspi->s_fshift]->b_data + (UFS_SECTOR_SIZE & ~uspi->s_fmask))) 260 260 261 261 #define ubh_get_usb_third(ubh) \ 262 262 ((struct ufs_super_block_third *)((ubh)-> \