forked from mirrors/linux
		
	These ioctls let a user application hold a transaction open while it
performs a series of operations.  A final ioctl does a sync on the fs
(closing the current transaction).  This is the main requirement for
Ceph's OSD to be able to keep the data it's storing in a btrfs volume
consistent, and AFAICS it works just fine.  The application would do
something like
	fd = ::open("some/file", O_RDONLY);
	::ioctl(fd, BTRFS_IOC_TRANS_START);
	/* do a bunch of stuff */
	::ioctl(fd, BTRFS_IOC_TRANS_END);
or just
	::close(fd);
And to ensure it commits to disk,
	::ioctl(fd, BTRFS_IOC_SYNC);
When a transaction is held open, the trans_handle is attached to the
struct file (via private_data) so that it will get cleaned up if the
process dies unexpectedly.  A held transaction is also ended on fsync() to
avoid a deadlock.
A misbehaving application could also deliberately hold a transaction open,
effectively locking up the FS, so it may make sense to restrict something
like this to root or something.
Signed-off-by: Chris Mason <chris.mason@oracle.com>
		
	
			
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (C) 2007 Oracle.  All rights reserved.
 | 
						|
 *
 | 
						|
 * This program is free software; you can redistribute it and/or
 | 
						|
 * modify it under the terms of the GNU General Public
 | 
						|
 * License v2 as published by the Free Software Foundation.
 | 
						|
 *
 | 
						|
 * This program is distributed in the hope that it will be useful,
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | 
						|
 * General Public License for more details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU General Public
 | 
						|
 * License along with this program; if not, write to the
 | 
						|
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 | 
						|
 * Boston, MA 021110-1307, USA.
 | 
						|
 */
 | 
						|
 | 
						|
#ifndef __IOCTL_
 | 
						|
#define __IOCTL_
 | 
						|
#include <linux/ioctl.h>
 | 
						|
 | 
						|
#define BTRFS_IOCTL_MAGIC 0x94
 | 
						|
#define BTRFS_VOL_NAME_MAX 255
 | 
						|
#define BTRFS_PATH_NAME_MAX 4095
 | 
						|
 | 
						|
struct btrfs_ioctl_vol_args {
 | 
						|
	char name[BTRFS_PATH_NAME_MAX + 1];
 | 
						|
};
 | 
						|
 | 
						|
#define BTRFS_IOC_SNAP_CREATE _IOW(BTRFS_IOCTL_MAGIC, 1, \
 | 
						|
				   struct btrfs_ioctl_vol_args)
 | 
						|
#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
 | 
						|
				   struct btrfs_ioctl_vol_args)
 | 
						|
#define BTRFS_IOC_RESIZE _IOW(BTRFS_IOCTL_MAGIC, 3, \
 | 
						|
				   struct btrfs_ioctl_vol_args)
 | 
						|
#define BTRFS_IOC_SCAN_DEV _IOW(BTRFS_IOCTL_MAGIC, 4, \
 | 
						|
				   struct btrfs_ioctl_vol_args)
 | 
						|
/* trans start and trans end are dangerous, and only for
 | 
						|
 * use by applications that know how to avoid the
 | 
						|
 * resulting deadlocks
 | 
						|
 */
 | 
						|
#define BTRFS_IOC_TRANS_START  _IO(BTRFS_IOCTL_MAGIC, 6)
 | 
						|
#define BTRFS_IOC_TRANS_END    _IO(BTRFS_IOCTL_MAGIC, 7)
 | 
						|
#define BTRFS_IOC_SYNC         _IO(BTRFS_IOCTL_MAGIC, 8)
 | 
						|
 | 
						|
#define BTRFS_IOC_CLONE        _IOW(BTRFS_IOCTL_MAGIC, 9, int)
 | 
						|
#define BTRFS_IOC_ADD_DEV _IOW(BTRFS_IOCTL_MAGIC, 10, \
 | 
						|
				   struct btrfs_ioctl_vol_args)
 | 
						|
#define BTRFS_IOC_RM_DEV _IOW(BTRFS_IOCTL_MAGIC, 11, \
 | 
						|
				   struct btrfs_ioctl_vol_args)
 | 
						|
#define BTRFS_IOC_BALANCE _IOW(BTRFS_IOCTL_MAGIC, 12, \
 | 
						|
				   struct btrfs_ioctl_vol_args)
 | 
						|
 | 
						|
#endif
 |