Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * JFFS2 -- Journalling Flash File System, Version 2.
0003  *
0004  * Copyright © 2001-2007 Red Hat, Inc.
0005  * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org>
0006  *
0007  * Created by David Woodhouse <dwmw2@infradead.org>
0008  *
0009  * For licensing information, see the file 'LICENCE' in this directory.
0010  *
0011  */
0012 
0013 #include <linux/fs.h>
0014 #include "nodelist.h"
0015 
0016 long jffs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
0017 {
0018     /* Later, this will provide for lsattr.jffs2 and chattr.jffs2, which
0019        will include compression support etc. */
0020     return -ENOTTY;
0021 }
0022