~ubuntu-branches/ubuntu/quantal/linux-linaro-mx51/quantal

« back to all changes in this revision

Viewing changes to fs/fat/fatent.c

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-3o58a3c1bj7x00rs
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
err_brelse:
96
96
        brelse(bhs[0]);
97
97
err:
98
 
        printk(KERN_ERR "FAT: FAT read failed (blocknr %llu)\n", (llu)blocknr);
 
98
        fat_msg(sb, KERN_ERR, "FAT read failed (blocknr %llu)", (llu)blocknr);
99
99
        return -EIO;
100
100
}
101
101
 
108
108
        fatent->fat_inode = MSDOS_SB(sb)->fat_inode;
109
109
        fatent->bhs[0] = sb_bread(sb, blocknr);
110
110
        if (!fatent->bhs[0]) {
111
 
                printk(KERN_ERR "FAT: FAT read failed (blocknr %llu)\n",
 
111
                fat_msg(sb, KERN_ERR, "FAT read failed (blocknr %llu)",
112
112
                       (llu)blocknr);
113
113
                return -EIO;
114
114
        }