mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
[JFFS2] Whitespace cleanup. Fix missing debug message
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
c84441c47d
commit
7d27c8143c
@ -48,6 +48,7 @@ static void jffs2_erase_block(struct jffs2_sb_info *c,
|
|||||||
#else /* Linux */
|
#else /* Linux */
|
||||||
struct erase_info *instr;
|
struct erase_info *instr;
|
||||||
|
|
||||||
|
D1(printk(KERN_DEBUG "jffs2_erase_block(): erase block %#x (range %#x-%#x)\n", jeb->offset, jeb->offset, jeb->offset + c->sector_size));
|
||||||
instr = kmalloc(sizeof(struct erase_info) + sizeof(struct erase_priv_struct), GFP_KERNEL);
|
instr = kmalloc(sizeof(struct erase_info) + sizeof(struct erase_priv_struct), GFP_KERNEL);
|
||||||
if (!instr) {
|
if (!instr) {
|
||||||
printk(KERN_WARNING "kmalloc for struct erase_info in jffs2_erase_block failed. Refiling block for later\n");
|
printk(KERN_WARNING "kmalloc for struct erase_info in jffs2_erase_block failed. Refiling block for later\n");
|
||||||
|
@ -489,13 +489,13 @@ struct jffs2_inode_cache *jffs2_get_ino_cache(struct jffs2_sb_info *c, uint32_t
|
|||||||
void jffs2_add_ino_cache (struct jffs2_sb_info *c, struct jffs2_inode_cache *new)
|
void jffs2_add_ino_cache (struct jffs2_sb_info *c, struct jffs2_inode_cache *new)
|
||||||
{
|
{
|
||||||
struct jffs2_inode_cache **prev;
|
struct jffs2_inode_cache **prev;
|
||||||
D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino));
|
|
||||||
spin_lock(&c->inocache_lock);
|
spin_lock(&c->inocache_lock);
|
||||||
if (!new->ino)
|
if (!new->ino)
|
||||||
new->ino = ++c->highest_ino;
|
new->ino = ++c->highest_ino;
|
||||||
|
|
||||||
D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino));
|
D2(printk(KERN_DEBUG "jffs2_add_ino_cache: Add %p (ino #%u)\n", new, new->ino));
|
||||||
|
|
||||||
prev = &c->inocache_list[new->ino % INOCACHE_HASHSIZE];
|
prev = &c->inocache_list[new->ino % INOCACHE_HASHSIZE];
|
||||||
|
|
||||||
while ((*prev) && (*prev)->ino < new->ino) {
|
while ((*prev) && (*prev)->ino < new->ino) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user