Results 1 to 4 of 4

Thread: VMplayer: Using of shared folder in Fedora 16 gives Kernel null pointer at the time of booting

  1. #1
    Join Date
    Nov 2011
    Posts
    61

    VMplayer: Using of shared folder in Fedora 16 gives Kernel null pointer at the time of booting

    right now I am having MacBook Pro on which I have installed Windows 7 x64. Also I am using VMplayer to use the guest operating system Fedora 16. Recently installed the latest version of vmware tools. Everything is working fine except one thing that is Shared folders options are not working. I am not able to get anything at /mnt/hgfs. Let me know if you are having any idea to fix the problem which I have stated over here.

  2. #2
    Join Date
    Mar 2011
    Posts
    542

    Re: VMplayer: Using of shared folder in Fedora 16 gives Kernel null pointer at the time of booting

    As far as I know kernel updates broken the shared folders file system driver into the HgfsMount HgfsReadSuper at the time of calling d_alloc_root. Well we need to wait for the update from the developer on this particular scenario.

  3. #3
    Join Date
    May 2011
    Posts
    523

    Re: VMplayer: Using of shared folder in Fedora 16 gives Kernel null pointer at the time of booting

    In order to fix the issue simply perform below mentioned steps.
    Copy your CD to the directory.
    You have to go for vmware-tools-distrib/lib/modules/source and run below mentioned commands.
    Code:
    mkdir tmp
    cd tmp
    tar xvf ../vmhgfs.tar
    you have to edit vmhgfs-only/nano filesystem.c and look for compat_d_alloc_name.
    you have to replace the same with below mentioned code.

    Code:
    //rootDentry = compat_d_alloc_name(NULL, "/");
       struct qstr qs;
       qs.name = "/";
       qs.len = strlen ("/");
       qs.hash = full_name_hash ("/",strlen("/"));
     
       rootDentry = d_alloc_pseudo(sb, &qs);
     
    also edit out (not needed now)
    //rootDentry->d_parent = rootDentry;
       //rootDentry->d_sb = sb;
    You have to execute below mentioned command
    Code:
    tar -cf ../vmhgfs.tar *
    now go for further and reinstall the vmware-install.pl.

  4. #4
    Join Date
    May 2011
    Posts
    410

    Re: VMplayer: Using of shared folder in Fedora 16 gives Kernel null pointer at the time of booting

    We all are aware of that support for Linux from the VMware is quite poor. Also I have seen there are lots of people who are suffering from the same issue which you have mentioned over here. So if there is need of fix from the developers on this particular issue. Let’s hope that they would provide the possible solution to fix the matter of mine.

Similar Threads

  1. ‘open /dev/null failed’ error message while booting Lucid
    By Rocky BaLLi in forum Operating Systems
    Replies: 5
    Last Post: 03-04-2012, 12:31 AM
  2. Dereferencing NULL pointer in C++
    By TO-Phir in forum Software Development
    Replies: 4
    Last Post: 26-06-2011, 07:42 PM
  3. Null pointer error in java
    By Elizabeth Allen in forum Software Development
    Replies: 5
    Last Post: 19-03-2010, 02:26 PM
  4. Nokia 6300 gives "Null Pointer" error message
    By Nadiaa in forum Portable Devices
    Replies: 4
    Last Post: 08-02-2010, 10:49 PM
  5. Differentiation between void pointer and null pointer
    By Ram Bharose in forum Software Development
    Replies: 5
    Last Post: 18-01-2010, 12:11 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,572,311.59960 seconds with 17 queries