X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Flog.c;h=ccb844fdb54a3453f5035ed3bb9bceca1b0a5de3;hb=c6278d208924bb04c41266ddca276712f95533bc;hp=9c2767cb7206a05ed1efa245e925033f3efce99e;hpb=02dd3123a0e312f1d33403e744af52dd6096f12d;p=openvswitch diff --git a/ovsdb/log.c b/ovsdb/log.c index 9c2767cb..ccb844fd 100644 --- a/ovsdb/log.c +++ b/ovsdb/log.c @@ -369,3 +369,11 @@ ovsdb_log_commit(struct ovsdb_log *file) return 0; } +/* Returns the current offset into the file backing 'log', in bytes. This + * reflects the number of bytes that have been read or written in the file. If + * the whole file has been read, this is the file size. */ +off_t +ovsdb_log_get_offset(const struct ovsdb_log *log) +{ + return log->offset; +}