Displaying 2 results from an estimated 2 matches for "ext2_ioc_getflags".
2008 Sep 05
2
compiling libarchive
...tar-util.Po
gcc -DHAVE_CONFIG_H -I. -I./libarchive -I./libarchive -g -O2 -MT
tar/bsdtar-write.o -MD -MP -MF tar/.deps/bsdtar-write.Tpo -c -o
tar/bsdtar-write.o `test -f 'tar/write.c' || echo './'`tar/write.c
tar/write.c: In function `write_hierarchy':
tar/write.c:730: error: `EXT2_IOC_GETFLAGS' undeclared (first use in
this function)
tar/write.c:730: error: (Each undeclared identifier is reported only once
tar/write.c:730: error: for each function it appears in.)
tar/write.c:732: error: `EXT2_NODUMP_FL' undeclared (first use in this function)
tar/write.c: In function `write_entry...
2005 Apr 21
1
[PATCH]: ioctl wrappers for EXT3_IOC_GROUP_{EXTEND,ADD}
...err;
}
-static int do_ext2_ioctl(unsigned int fd, unsigned int cmd, unsigned long arg)
+static int do_ext3_ioctl(unsigned int fd, unsigned int cmd, unsigned long arg)
{
/* These are just misnamed, they actually get/put from/to user an int */
switch (cmd) {
- case EXT2_IOC32_GETFLAGS: cmd = EXT2_IOC_GETFLAGS; break;
- case EXT2_IOC32_SETFLAGS: cmd = EXT2_IOC_SETFLAGS; break;
- case EXT2_IOC32_GETVERSION: cmd = EXT2_IOC_GETVERSION; break;
- case EXT2_IOC32_SETVERSION: cmd = EXT2_IOC_SETVERSION; break;
+ case EXT3_IOC32_GETFLAGS: cmd = EXT3_IOC_GETFLAGS; break;
+ case EXT3_IOC32_SETFLAGS: cmd = EXT3_IOC_...