aboutsummaryrefslogtreecommitdiffstats
path: root/fs/qnx4/truncate.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /fs/qnx4/truncate.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'fs/qnx4/truncate.c')
-rw-r--r--fs/qnx4/truncate.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/fs/qnx4/truncate.c b/fs/qnx4/truncate.c
new file mode 100644
index 000000000000..86563ec01b39
--- /dev/null
+++ b/fs/qnx4/truncate.c
@@ -0,0 +1,39 @@
1/*
2 * QNX4 file system, Linux implementation.
3 *
4 * Version : 0.1
5 *
6 * Using parts of the xiafs filesystem.
7 *
8 * History :
9 *
10 * 30-06-1998 by Frank DENIS : ugly filler.
11 */
12
13#include <linux/config.h>
14#include <linux/types.h>
15#include <linux/errno.h>
16#include <linux/fs.h>
17#include <linux/qnx4_fs.h>
18#include <linux/smp_lock.h>
19#include <asm/uaccess.h>
20
21#ifdef CONFIG_QNX4FS_RW
22
23void qnx4_truncate(struct inode *inode)
24{
25 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
26 S_ISLNK(inode->i_mode))) {
27 return;
28 }
29 lock_kernel();
30 if (!(S_ISDIR(inode->i_mode))) {
31 /* TODO */
32 }
33 QNX4DEBUG(("qnx4: qnx4_truncate called\n"));
34 inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
35 mark_inode_dirty(inode);
36 unlock_kernel();
37}
38
39#endif