Whamcloud - gitweb
land b1_5 onto HEAD
[fs/lustre-release.git] / lustre / include / lustre / liblustreapi.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *   This file is part of Lustre, http://www.lustre.org
5  */
6 #ifndef _LIBLUSTREAPI_H_
7 #define _LIBLUSTREAPI_H_
8
9 #include <lustre/lustre_user.h>
10
11 typedef void (*llapi_cb_t)(char *obd_type_name, char *obd_name, char *obd_uuid, void *args);
12
13 /* liblustreapi.c */
14 extern int llapi_file_create(const char *name, unsigned long stripe_size,
15                              int stripe_offset, int stripe_count,
16                              int stripe_pattern);
17 extern int llapi_file_get_stripe(const char *path, struct lov_user_md *lum);
18 #define HAVE_LLAPI_FILE_LOOKUP
19 extern int llapi_file_lookup(int dirfd, const char *name);
20  
21 struct find_param {
22         unsigned int maxdepth;
23         time_t  atime;
24         time_t  mtime;
25         time_t  ctime;
26         int     asign;
27         int     csign;
28         int     msign;
29
30         int zeroend:1, recursive:1, got_uuids:1, obds_printed:1, exclude_pattern:1;
31
32         int     verbose;
33         int     quiet;
34
35         /* regular expression */
36         char   *pattern;
37
38         char   *print_fmt;
39
40         struct  obd_uuid        *obduuid;
41         int     obdindex;
42
43         int     lumlen;
44         struct  lov_user_mds_data *lmd;
45
46         /* In-precess parameters. */
47         unsigned int depth;
48         dev_t   st_dev;
49 };
50
51 extern int llapi_getstripe(char *path, struct find_param *param);
52 extern int llapi_find(char *path, struct find_param *param);
53
54 extern int llapi_obd_statfs(char *path, __u32 type, __u32 index,
55                      struct obd_statfs *stat_buf,
56                      struct obd_uuid *uuid_buf);
57 extern int llapi_ping(char *obd_type, char *obd_name);
58 extern int llapi_target_check(int num_types, char **obd_types, char *dir);
59 extern int llapi_catinfo(char *dir, char *keyword, char *node_name);
60 extern int llapi_lov_get_uuids(int fd, struct obd_uuid *uuidp, int *ost_count);
61 extern int llapi_is_lustre_mnttype(struct mntent *mnt);
62 extern int llapi_quotachown(char *path, int flag);
63 extern int llapi_quotacheck(char *mnt, int check_type);
64 extern int llapi_poll_quotacheck(char *mnt, struct if_quotacheck *qchk);
65 extern int llapi_quotactl(char *mnt, struct if_quotactl *qctl);
66 extern int llapi_target_iterate(int type_num, char **obd_type, void *args, llapi_cb_t cb);
67 #endif