patch-2.3.25 linux/fs/ncpfs/file.c
Next file: linux/fs/ncpfs/inode.c
Previous file: linux/fs/ncpfs/dir.c
Back to the patch index
Back to the overall index
- Lines: 94
- Date:
Fri Oct 29 10:53:32 1999
- Orig file:
v2.3.24/linux/fs/ncpfs/file.c
- Orig date:
Sat Oct 9 11:47:50 1999
diff -u --recursive --new-file v2.3.24/linux/fs/ncpfs/file.c linux/fs/ncpfs/file.c
@@ -46,7 +46,7 @@
goto out;
}
- DPRINTK(KERN_DEBUG "ncp_make_open: opened=%d, volume # %u, dir entry # %u\n",
+ DPRINTK("ncp_make_open: opened=%d, volume # %u, dir entry # %u\n",
NCP_FINFO(inode)->opened,
NCP_FINFO(inode)->volNumber,
NCP_FINFO(inode)->dirEntNum);
@@ -67,9 +67,7 @@
NULL, NULL, OC_MODE_OPEN,
0, AR_READ, &finfo);
if (result) {
-#ifdef NCPFS_PARANOIA
-printk(KERN_DEBUG "ncp_make_open: failed, result=%d\n", result);
-#endif
+ PPRINTK("ncp_make_open: failed, result=%d\n", result);
goto out_unlock;
}
/*
@@ -80,9 +78,7 @@
}
access = NCP_FINFO(inode)->access;
-#ifdef NCPFS_PARANOIA
-printk(KERN_DEBUG "ncp_make_open: file open, access=%x\n", access);
-#endif
+ PPRINTK("ncp_make_open: file open, access=%x\n", access);
if (access == right || access == O_RDWR)
error = 0;
@@ -104,12 +100,12 @@
void* freepage;
size_t freelen;
- DPRINTK(KERN_DEBUG "ncp_file_read: enter %s/%s\n",
+ DPRINTK("ncp_file_read: enter %s/%s\n",
dentry->d_parent->d_name.name, dentry->d_name.name);
error = -EINVAL;
if (inode == NULL) {
- DPRINTK(KERN_DEBUG "ncp_file_read: inode = NULL\n");
+ DPRINTK("ncp_file_read: inode = NULL\n");
goto out;
}
error = -EIO;
@@ -117,7 +113,7 @@
goto out;
error = -EINVAL;
if (!S_ISREG(inode->i_mode)) {
- DPRINTK(KERN_DEBUG "ncp_file_read: read from non-file, mode %07o\n",
+ DPRINTK("ncp_file_read: read from non-file, mode %07o\n",
inode->i_mode);
goto out;
}
@@ -177,7 +173,7 @@
inode->i_atime = CURRENT_TIME;
}
- DPRINTK(KERN_DEBUG "ncp_file_read: exit %s/%s\n",
+ DPRINTK("ncp_file_read: exit %s/%s\n",
dentry->d_parent->d_name.name, dentry->d_name.name);
out:
return already_read ? already_read : error;
@@ -194,17 +190,17 @@
int errno;
void* bouncebuffer;
- DPRINTK(KERN_DEBUG "ncp_file_write: enter %s/%s\n",
+ DPRINTK("ncp_file_write: enter %s/%s\n",
dentry->d_parent->d_name.name, dentry->d_name.name);
if (inode == NULL) {
- DPRINTK(KERN_DEBUG "ncp_file_write: inode = NULL\n");
+ DPRINTK("ncp_file_write: inode = NULL\n");
return -EINVAL;
}
errno = -EIO;
if (!ncp_conn_valid(NCP_SERVER(inode)))
goto out;
if (!S_ISREG(inode->i_mode)) {
- DPRINTK(KERN_DEBUG "ncp_file_write: write to non-file, mode %07o\n",
+ DPRINTK("ncp_file_write: write to non-file, mode %07o\n",
inode->i_mode);
return -EINVAL;
}
@@ -260,7 +256,7 @@
if (pos > inode->i_size) {
inode->i_size = pos;
}
- DPRINTK(KERN_DEBUG "ncp_file_write: exit %s/%s\n",
+ DPRINTK("ncp_file_write: exit %s/%s\n",
dentry->d_parent->d_name.name, dentry->d_name.name);
out:
return already_written ? already_written : errno;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)