#ifndef _FALLOC_H_ #define _FALLOC_H_ #include /* * Space reservation ioctls and argument structure * are designed to be compatible with the legacy XFS ioctls. */ struct space_resv { __s16 l_type; __s16 l_whence; __s64 l_start; __s64 l_len; /* len == 0 means until end of file */ __s32 l_sysid; __u32 l_pid; __s32 l_pad[4]; /* reserved area */ }; #define FS_IOC_RESVSP _IOW('X', 40, struct space_resv) #define FS_IOC_RESVSP64 _IOW('X', 42, struct space_resv) #define FALLOC_FL_SUPPORTED_MASK (FALLOC_FL_KEEP_SIZE | \ FALLOC_FL_PUNCH_HOLE | \ FALLOC_FL_COLLAPSE_RANGE | \ FALLOC_FL_ZERO_RANGE | \ FALLOC_FL_INSERT_RANGE) #endif /* _FALLOC_H_ */ ='form'>
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/arch/arm/mach-mx3/clock.c
AgeCommit message (Expand)Author
2009-04-06V4L/DVB (11349): mx3-camera: adapt the clock definition and the driver to the...Guennadi Liakhovetski
2009-03-13MX31 clkdev supportSascha Hauer
2009-03-13[ARM] MXC: add cpu_is_ macrosSascha Hauer
2009-03-13[ARM] MXC: remove _clk suffix from clock namesSascha Hauer
2009-03-13[ARM] MXC: rework timer/clock initialisationSascha Hauer
2009-03-13[ARM] MXC: Use a single function for decoding a PLLSascha Hauer
2008-12-18[ARM] MXC: do not include mach/hardware.h from mach/memory.hSascha Hauer
2008-08-07[ARM] Move include/asm-arm/arch-* to arch/arm/*/include/machRussell King
2008-07-05i.MX3: introduce clock APISascha Hauer