diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2001-10-26 14:55:42 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2001-10-26 14:55:42 +0000 |
commit | 90d8bef61c8c40472ddfb1aafeeb6473ec51a053 (patch) | |
tree | 9e86fadff65abd2a0851bfcc4282ed786182acbe /inode.c | |
parent | 724f2bc50ab0dc38248c2dfc6414506f29b10d55 (diff) | |
download | libfuse-90d8bef61c8c40472ddfb1aafeeb6473ec51a053.tar.gz |
*** empty log message ***
Diffstat (limited to 'inode.c')
-rw-r--r-- | inode.c | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -17,17 +17,13 @@ static void fuse_read_inode(struct inode *inode) { - printk(KERN_DEBUG "fuse_read_inode: %li\n", inode->i_ino); - - + /* No op */ } static void fuse_put_super(struct super_block *sb) { struct fuse_conn *fc = sb->u.generic_sbp; - printk(KERN_DEBUG "fuse_put_super[%i]\n", fc->id); - spin_lock(&fuse_lock); fc->sb = NULL; fuse_release_conn(fc); @@ -47,8 +43,6 @@ static struct fuse_conn *get_conn(struct fuse_mount_data *d) struct file *file; struct inode *ino; - printk(KERN_DEBUG "fuse_read_super\n"); - if(d == NULL) { printk("fuse_read_super: Bad mount data\n"); return NULL; @@ -116,8 +110,6 @@ static struct super_block *fuse_read_super(struct super_block *sb, return NULL; } - printk(KERN_DEBUG "root inode: %ld/%d\n", root->i_ino, root->i_dev); - spin_lock(&fuse_lock); fc = get_conn(data); if(fc == NULL) |