#ifndef _LINUX_FWFS_H #define _LINUX_FWFS_H struct fwfs_entry { size_t size; u8 *data; /* the rest is private */ atomic_t use_count; struct dentry *dentry; time_t ctime; }; const struct fwfs_entry *fwfs_get(const char *name); void fwfs_put(const struct fwfs_entry *entry); void fwfs_write_default(const char *name, const u8 *data, size_t size); #endif