2019-05-24 12:04:05 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2007-12-21 01:49:04 +01:00
|
|
|
/* -*- mode: c; c-basic-offset: 8; -*-
|
|
|
|
* vim: noexpandtab sw=8 ts=8 sts=0:
|
|
|
|
*
|
|
|
|
* locks.h
|
|
|
|
*
|
|
|
|
* Function prototypes for Userspace file locking support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002, 2004 Oracle. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OCFS2_LOCKS_H
|
|
|
|
#define OCFS2_LOCKS_H
|
|
|
|
|
|
|
|
int ocfs2_flock(struct file *file, int cmd, struct file_lock *fl);
|
2008-07-21 23:29:16 +02:00
|
|
|
int ocfs2_lock(struct file *file, int cmd, struct file_lock *fl);
|
2007-12-21 01:49:04 +01:00
|
|
|
|
|
|
|
#endif /* OCFS2_LOCKS_H */
|