X-Git-Url: https://git.whamcloud.com/?a=blobdiff_plain;f=lustre%2Fobdclass%2Ffsfilt_reiserfs.c;h=f8d4ac3df9c1809128fc67adcf26b8dca5e5c8a5;hb=93acd158c57c4c5d0fc751d46741231490c04707;hp=1ec5916b8a66e44103dead5f1bf7aa6301d25c83;hpb=25082b72dbe5a8e94a071632b86f45afadc706b4;p=fs%2Flustre-release.git diff --git a/lustre/obdclass/fsfilt_reiserfs.c b/lustre/obdclass/fsfilt_reiserfs.c index 1ec5916..f8d4ac3 100644 --- a/lustre/obdclass/fsfilt_reiserfs.c +++ b/lustre/obdclass/fsfilt_reiserfs.c @@ -160,6 +160,12 @@ static int fsfilt_reiserfs_statfs(struct super_block *sb, struct obd_statfs *osf return rc; } +static int fsfilt_reiserfs_sync(struct super_block *sb) +{ + CERROR("not implemented yet\n"); + return -ENOSYS; +} + static struct fsfilt_operations fsfilt_reiserfs_ops = { fs_type: "reiserfs", fs_owner: THIS_MODULE, @@ -173,6 +179,7 @@ static struct fsfilt_operations fsfilt_reiserfs_ops = { fs_journal_data: fsfilt_reiserfs_journal_data, fs_set_last_rcvd: fsfilt_reiserfs_set_last_rcvd, fs_statfs: fsfilt_reiserfs_statfs, + fs_sync: fsfilt_reiserfs_sync, }; static int __init fsfilt_reiserfs_init(void)