Home
last modified time | relevance | path

Searched refs:nfslog_buf (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/nfs/nfslog/
H A Dnfslogd.h114 struct nfslog_buf { struct
115 struct nfslog_buf *next; argument
116 struct nfslog_buf *prev; argument
145 struct nfslog_buf *lbp; argument
179 extern struct nfslog_buf *nfslog_open_buf(char *, int *);
180 extern void nfslog_close_buf(struct nfslog_buf *, int);
181 extern struct nfslog_lr *nfslog_get_logrecord(struct nfslog_buf *);
H A Dreadbuf.c70 static int nfslog_init_buf(char *, struct nfslog_buf *, int *);
71 static void nfslog_free_buf(struct nfslog_buf *, int);
72 static struct nfslog_lr *nfslog_read_buffer(struct nfslog_buf *);
74 static struct nfslog_lr *remove_lrp_from_lb(struct nfslog_buf *,
76 static void insert_lrp_to_lb(struct nfslog_buf *,
78 static void nfslog_rewrite_bufheader(struct nfslog_buf *);
88 struct nfslog_buf *
91 struct nfslog_buf *lbp = NULL; in nfslog_open_buf()
98 if ((lbp = malloc(sizeof (struct nfslog_buf))) == NULL) { in nfslog_open_buf()
102 bzero(lbp, sizeof (struct nfslog_buf)); in nfslog_open_buf()
[all …]
H A Dprocess_buffer.c83 struct nfslog_buf *lbp = NULL; in process_buffer()