~ubuntu-branches/ubuntu/precise/virtualbox/precise-updates

« back to all changes in this revision

Viewing changes to src/VBox/Additions/solaris/SharedFolders/vboxfs_vnode.c

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-17 23:23:09 UTC
  • mfrom: (3.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20111017232309-kzm6841lzk61ranj
Tags: 4.1.4-dfsg-1
* New upstream release.
  - Fixes missing icons when using pt_BR locale. (Closes: #507188)
  - Fixes guest additions download url. (Closes: #637349; LP: #840668)
* Refresh patches.
* Drop the vboxmouse x11 driver. The mouse integration is now completely
  handled by the kernel module.
* Restrict dh_pycentral to the virtualbox binary package.
* Merge changes from the Ubuntu package but use them only when built
  on Ubuntu:
  - Add an Apport hook.
  - Add vboxguest modalias to the package control field.
* Pass KBUILD_VERBOSE=2 to kmk.
* Add 36-fix-text-mode.patch to fix text mode when using the vboxvideo driver.

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
        LogFlowFunc(("  %s gets vnode 0x%p\n", node->sf_path, vp));
211
211
                vp->v_type = node->sf_type;
212
212
                vp->v_vfsp = node->sf_sffs->sf_vfsp;
213
 
                VFS_HOLD(vp->v_vfsp);
214
213
                vn_setops(vp, sffs_ops);
215
214
                vp->v_flag = VNOSWAP | VNOMAP;  /* @todo -XXX- remove VNOMAP when ro-mmap is working*/
216
215
                vn_exists(vp);
246
245
    LogFlowFunc(("sffs_make(%s)\n", path));
247
246
        node = kmem_alloc(sizeof (*node), KM_SLEEP);
248
247
        node->sf_sffs = sffs;
 
248
        VFS_HOLD(node->sf_sffs->sf_vfsp);
249
249
        node->sf_path = path;
250
250
        node->sf_ino = sffs->sf_ino++;
251
251
        node->sf_type = type;