Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40867
b: refs/heads/master
c: 2e2e7bb
h: refs/heads/master
i:
  40865: dbea527
  40863: b36c223
v: v3
  • Loading branch information
Vlad Apostolov authored and Tim Shimmin committed Nov 11, 2006
1 parent a34d19e commit e1a80b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: 70a505285f9859f77e07f7c12371b0d29ecf3d82
refs/heads/master: 2e2e7bb1fd857b9fc83b0cd77b6b647ebb423301
5 changes: 4 additions & 1 deletion trunk/fs/xfs/linux-2.6/xfs_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,8 +341,11 @@ xfs_open_by_handle(
put_unused_fd(new_fd);
return -XFS_ERROR(-PTR_ERR(filp));
}
if (inode->i_mode & S_IFREG)
if (inode->i_mode & S_IFREG) {
/* invisible operation should not change atime */
filp->f_flags |= O_NOATIME;
filp->f_op = &xfs_invis_file_operations;
}

fd_install(new_fd, filp);
return new_fd;
Expand Down

0 comments on commit e1a80b8

Please sign in to comment.