Staging: pohmelfs: Remove C99 comments
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Evgeniy Polyakov <zbr@ioremap.net>
This commit is contained in:
parent
385e3f1a14
commit
3bafeab781
|
@ -562,7 +562,7 @@ struct dentry *pohmelfs_lookup(struct inode *dir, struct dentry *dentry, struct
|
|||
if (!inode) {
|
||||
dprintk("%s: No inode for ino: %lu, name: '%s', hash: %x.\n",
|
||||
__func__, ino, str.name, str.hash);
|
||||
//return NULL;
|
||||
/* return NULL; */
|
||||
return ERR_PTR(-EACCES);
|
||||
}
|
||||
} else {
|
||||
|
|
|
@ -386,7 +386,7 @@ static int pohmelfs_write_inode_create_children(struct inode *inode)
|
|||
if (inode && (inode->i_state & I_DIRTY)) {
|
||||
struct pohmelfs_inode *pi = POHMELFS_I(inode);
|
||||
pohmelfs_write_create_inode(pi);
|
||||
//pohmelfs_meta_command(pi, NETFS_INODE_INFO, 0, NULL, NULL, 0);
|
||||
/* pohmelfs_meta_command(pi, NETFS_INODE_INFO, 0, NULL, NULL, 0); */
|
||||
iput(inode);
|
||||
}
|
||||
}
|
||||
|
@ -845,7 +845,7 @@ static void pohmelfs_destroy_inode(struct inode *inode)
|
|||
struct pohmelfs_sb *psb = POHMELFS_SB(sb);
|
||||
struct pohmelfs_inode *pi = POHMELFS_I(inode);
|
||||
|
||||
//pohmelfs_data_unlock(pi, 0, inode->i_size, POHMELFS_READ_LOCK);
|
||||
/* pohmelfs_data_unlock(pi, 0, inode->i_size, POHMELFS_READ_LOCK); */
|
||||
|
||||
pohmelfs_inode_del_inode(psb, pi);
|
||||
|
||||
|
@ -1777,7 +1777,7 @@ static int pohmelfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
|
|||
seq_printf(m, "%u ", ctl->idx);
|
||||
if (ctl->addr.sa_family == AF_INET) {
|
||||
struct sockaddr_in *sin = (struct sockaddr_in *)&st->ctl.addr;
|
||||
//seq_printf(m, "%pi4:%u", &sin->sin_addr.s_addr, ntohs(sin->sin_port));
|
||||
/* seq_printf(m, "%pi4:%u", &sin->sin_addr.s_addr, ntohs(sin->sin_port)); */
|
||||
seq_printf(m, "%u.%u.%u.%u:%u", NIPQUAD(sin->sin_addr.s_addr), ntohs(sin->sin_port));
|
||||
} else if (ctl->addr.sa_family == AF_INET6) {
|
||||
struct sockaddr_in6 *sin = (struct sockaddr_in6 *)&st->ctl.addr;
|
||||
|
|
|
@ -844,7 +844,7 @@ static inline int pohmelfs_need_lock(struct pohmelfs_inode *pi, int type)
|
|||
int __init pohmelfs_mcache_init(void);
|
||||
void pohmelfs_mcache_exit(void);
|
||||
|
||||
//#define CONFIG_POHMELFS_DEBUG
|
||||
/* #define CONFIG_POHMELFS_DEBUG */
|
||||
|
||||
#ifdef CONFIG_POHMELFS_DEBUG
|
||||
#define dprintka(f, a...) printk(f, ##a)
|
||||
|
|
Loading…
Reference in New Issue