#include <linux/fs.h>
  #include <linux/exportfs.h>
 - 
 +#include "cifsglob.h"
 +#include "cifs_debug.h"
 +
- 
  #ifdef CONFIG_CIFS_EXPERIMENTAL
- 
 - 
  static struct dentry *cifs_get_parent(struct dentry *dentry)
  {
 -      /* BB need to add code here eventually to enable export via NFSD */
 -      return ERR_PTR(-EACCES);
 +      /* BB need to add code here eventually to enable export via NFSD */
 +      cFYI(1, ("get parent for %p", dentry));
 +      return ERR_PTR(-EACCES);
  }
 - 
 +
  struct export_operations cifs_export_ops = {
 -      .get_parent = cifs_get_parent,
 -/*    Following five export operations are unneeded so far and can default */         
 -/*    .get_dentry =
 -      .get_name =
 -      .find_exported_dentry =
 -      .decode_fh = 
 -      .encode_fs =  */
 - };
 - 
 +      .get_parent = cifs_get_parent,
 +/*    Following five export operations are unneeded so far and can default:
 +      .get_dentry =
 +      .get_name =
 +      .find_exported_dentry =
 +      .decode_fh =
 +      .encode_fs =  */
 +};
 +
  #endif /* EXPERIMENTAL */
 - 
 +