Blame view

fs/jffs2/ioctl.c 493 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.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
6
7
8
9
   *
   * 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
10
11
12
   */
  
  #include <linux/fs.h>
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
13
  int jffs2_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
19
  		unsigned long arg)
  {
  	/* Later, this will provide for lsattr.jffs2 and chattr.jffs2, which
  	   will include compression support etc. */
  	return -ENOTTY;
  }
182ec4eee   Thomas Gleixner   [JFFS2] Clean up ...
20