mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
bf0378593c
There is a rudimentary make file in place so people can build by hand from 'LVM2/daemons/clogd'. It is not hooked into the main build system yet. I am checking this in to provide people better access to the source code. There is still work to be done to make better use of existing code in the LVM repository. (list.h could be removed in favor of existing list implementations, for example. Logging might also be removed in favor of what is already in the tree.) I will probably defer updating WHATS_NEW_DM until this code is linked into the main build system (unless otherwise instructed).
21 lines
536 B
C
21 lines
536 B
C
#ifndef __CLOG_FUNCTIONS_DOT_H__
|
|
#define __CLOG_FUNCTIONS_DOT_H__
|
|
|
|
#include <linux/dm-clog-tfr.h>
|
|
|
|
#define LOG_RESUMED 1
|
|
#define LOG_SUSPENDED 2
|
|
|
|
int local_resume(struct clog_tfr *tfr);
|
|
int cluster_postsuspend(char *);
|
|
|
|
int do_request(struct clog_tfr *tfr, int server);
|
|
int push_state(const char *uuid, const char *which, char **buf);
|
|
int pull_state(const char *uuid, const char *which, char *buf, int size);
|
|
|
|
int log_get_state(struct clog_tfr *tfr);
|
|
int log_status(void);
|
|
void log_debug(void);
|
|
|
|
#endif /* __CLOG_FUNCTIONS_DOT_H__ */
|