blob: e2177210f62153bec393482eb6f2e2b58b48f0eb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
David Woodhousec00c3102007-04-25 14:16:47 +01004 * Copyright © 2001-2007 Red Hat, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Created by David Woodhouse <dwmw2@infradead.org>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#include <linux/fs.h>
Harvey Harrisonf876a592008-04-18 13:44:12 -070013#include "nodelist.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000015int jffs2_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 unsigned long arg)
17{
18 /* Later, this will provide for lsattr.jffs2 and chattr.jffs2, which
19 will include compression support etc. */
20 return -ENOTTY;
21}
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000022