Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43620
b: refs/heads/master
c: 5096e93
h: refs/heads/master
v: v3
  • Loading branch information
Josef Sipek authored and Linus Torvalds committed Dec 8, 2006
1 parent a136918 commit 52f0444
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5495ca657d854ac57733ce5a52eee52255b3f4d8
refs/heads/master: 5096e933a943c23bd9314b0ac7e14d07073cb2e5
4 changes: 2 additions & 2 deletions trunk/fs/udf/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const struct file_operations udf_dir_operations = {

int udf_readdir(struct file *filp, void *dirent, filldir_t filldir)
{
struct inode *dir = filp->f_dentry->d_inode;
struct inode *dir = filp->f_path.dentry->d_inode;
int result;

lock_kernel();
Expand Down Expand Up @@ -225,7 +225,7 @@ do_udf_readdir(struct inode * dir, struct file *filp, filldir_t filldir, void *d

if ( cfi.fileCharacteristics & FID_FILE_CHAR_PARENT )
{
iblock = parent_ino(filp->f_dentry);
iblock = parent_ino(filp->f_path.dentry);
flen = 2;
memcpy(fname, "..", flen);
dt_type = DT_DIR;
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/udf/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
{
ssize_t retval;
struct file *file = iocb->ki_filp;
struct inode *inode = file->f_dentry->d_inode;
struct inode *inode = file->f_path.dentry->d_inode;
int err, pos;
size_t count = iocb->ki_left;

Expand Down

0 comments on commit 52f0444

Please sign in to comment.