diff options
author | Al Smith <Al.Smith@aeschi.ch.eu.org> | 1999-05-02 12:09:17 +0000 |
---|---|---|
committer | Al Smith <Al.Smith@aeschi.ch.eu.org> | 1999-05-02 12:09:17 +0000 |
commit | 4a7fdfbd17814fc999257f81256fe34e4bd20bdd (patch) | |
tree | e5a8076422239ad80bdbd5213cf151e38bfb12c0 /fs/efs/symlink.c | |
parent | 9f99c1f15350847e106bbe6bebc99d1d8f24901b (diff) |
Final changes for release 1.0 of efs.
Diffstat (limited to 'fs/efs/symlink.c')
-rw-r--r-- | fs/efs/symlink.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/efs/symlink.c b/fs/efs/symlink.c index f17478bdb..4204468c5 100644 --- a/fs/efs/symlink.c +++ b/fs/efs/symlink.c @@ -39,7 +39,7 @@ static char *efs_linktarget(struct inode *in, int *len) { efs_block_t size = in->i_size; if (size > 2 * EFS_BLOCKSIZE) { - printk("EFS: linktarget(): name too long: %lu\n", in->i_size); + printk(KERN_ERR "EFS: linktarget(): name too long: %lu\n", in->i_size); return NULL; } @@ -50,7 +50,7 @@ static char *efs_linktarget(struct inode *in, int *len) { bh = bread(in->i_dev, efs_bmap(in, 0), EFS_BLOCKSIZE); if (!bh) { kfree(name); - printk("EFS: linktarget(): couldn't read block %d\n", efs_bmap(in, 0)); + printk(KERN_ERR "EFS: linktarget(): couldn't read block %d\n", efs_bmap(in, 0)); return NULL; } @@ -61,7 +61,7 @@ static char *efs_linktarget(struct inode *in, int *len) { bh = bread(in->i_dev, efs_bmap(in, 1), EFS_BLOCKSIZE); if (!bh) { kfree(name); - printk("EFS: linktarget(): couldn't read block %d\n", efs_bmap(in, 1)); + printk(KERN_ERR "EFS: linktarget(): couldn't read block %d\n", efs_bmap(in, 1)); return NULL; } memcpy(name + EFS_BLOCKSIZE, bh->b_data, size - EFS_BLOCKSIZE); |