Files
linux-apfs/fs/jffs2/ioctl.c
T

22 lines
493 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
/*
* JFFS2 -- Journalling Flash File System, Version 2.
*
* Copyright © 2001-2007 Red Hat, Inc.
2005-04-16 15:20:36 -07:00
*
* Created by David Woodhouse <dwmw2@infradead.org>
*
* For licensing information, see the file 'LICENCE' in this directory.
*
*/
#include <linux/fs.h>
#include "nodelist.h"
2005-04-16 15:20:36 -07:00
2008-07-07 07:45:59 -05:00
long jffs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
2005-04-16 15:20:36 -07:00
{
/* Later, this will provide for lsattr.jffs2 and chattr.jffs2, which
will include compression support etc. */
return -ENOTTY;
}
2005-11-07 11:16:07 +00:00