Blame view

fs/jffs2/ioctl.c 557 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  /*
   * JFFS2 -- Journalling Flash File System, Version 2.
   *
c00c310ea   David Woodhouse   [JFFS2] Tidy up l...
4
   * Copyright © 2001-2007 Red Hat, Inc.
6088c0587   David Woodhouse   jffs2: Update cop...
5
   * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
   *
   * Created by David Woodhouse <dwmw2@infradead.org>
   *
   * For licensing information, see the file 'LICENCE' in this directory.
   *
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
12
13
   */
  
  #include <linux/fs.h>
f876a59da   Harvey Harrison   [JFFS2] include f...
14
  #include "nodelist.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15

0533400b7   Stoyan Gaydarov   [JFFS2] Use .unlo...
16
  long jffs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
17
18
19
20
21
  {
  	/* Later, this will provide for lsattr.jffs2 and chattr.jffs2, which
  	   will include compression support etc. */
  	return -ENOTTY;
  }
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
22