diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2009-07-31 16:19:40 +0100 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-08-17 11:05:31 +0100 |
commit | 6050b9c74f24513191fc6b5e4b3583e38d146bf5 (patch) | |
tree | ff77010d008e55f6091df69519182e9f88a78215 /fs/gfs2/rgrp.h | |
parent | 440d6da207e9eef2b576331cfedd5ecae9068663 (diff) | |
download | linux-6050b9c74f24513191fc6b5e4b3583e38d146bf5.tar.gz linux-6050b9c74f24513191fc6b5e4b3583e38d146bf5.tar.bz2 linux-6050b9c74f24513191fc6b5e4b3583e38d146bf5.zip |
GFS2: Improve error handling in inode allocation
A little while back, block allocation was given some improved
error handling which meant that -EIO was returned in the case
of there being a problem in the resource group data. In addition
a message is printed explaning what went wrong and how to fix it.
This extends that error handling so that it also covers inode
allocation too.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/rgrp.h')
-rw-r--r-- | fs/gfs2/rgrp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/rgrp.h b/fs/gfs2/rgrp.h index 1e76ff0f3e00..a8dedd78245b 100644 --- a/fs/gfs2/rgrp.h +++ b/fs/gfs2/rgrp.h @@ -47,7 +47,7 @@ extern void gfs2_inplace_release(struct gfs2_inode *ip); extern unsigned char gfs2_get_block_type(struct gfs2_rgrpd *rgd, u64 block); extern int gfs2_alloc_block(struct gfs2_inode *ip, u64 *bn, unsigned int *n); -extern u64 gfs2_alloc_di(struct gfs2_inode *ip, u64 *generation); +extern int gfs2_alloc_di(struct gfs2_inode *ip, u64 *bn, u64 *generation); extern void gfs2_free_data(struct gfs2_inode *ip, u64 bstart, u32 blen); extern void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen); |