Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 23681
b: refs/heads/master
c: c5d3237
h: refs/heads/master
i:
  23679: 0941987
v: v3
  • Loading branch information
Eric Sesterhenn authored and Adrian Bunk committed Mar 24, 2006
1 parent b94533d commit c742de6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 88bcd51262ed45212d1b3a65abbac46eaf36bfeb
refs/heads/master: c5d3237c2424c4a3cf69d33abc1f229943468367
2 changes: 1 addition & 1 deletion trunk/fs/coda/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void coda_cache_clear_all(struct super_block *sb)
struct coda_sb_info *sbi;

sbi = coda_sbp(sb);
if (!sbi) BUG();
BUG_ON(!sbi);

atomic_inc(&permission_epoch);
}
Expand Down
3 changes: 1 addition & 2 deletions trunk/fs/coda/cnode.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,7 @@ void coda_replace_fid(struct inode *inode, struct CodaFid *oldfid,

cii = ITOC(inode);

if (!coda_fideq(&cii->c_fid, oldfid))
BUG();
BUG_ON(!coda_fideq(&cii->c_fid, oldfid));

/* replace fid and rehash inode */
/* XXX we probably need to hold some lock here! */
Expand Down

0 comments on commit c742de6

Please sign in to comment.