~ubuntu-branches/ubuntu/utopic/open-vm-tools/utopic

« back to all changes in this revision

Viewing changes to modules/linux/vmhgfs/request.c

  • Committer: Package Import Robot
  • Author(s): Bernd Zeimetz, 31c30832
  • Date: 2014-01-08 20:28:33 UTC
  • mfrom: (1.4.14) (2.4.42 sid)
  • Revision ID: package-import@ubuntu.com-20140108202833-l0ycdpzq5ayadedn
Tags: 2:9.4.0-1280544-5
[31c30832] Revert "Enable building of vmci again."
This reverts commit 0d55577cd3c262dbbc2bf79593d6f500f84c4170.
Too fast upload, sorry. vmhgfs is indeed (still) broken with
vmci.

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
 
174
174
   ASSERT(req);
175
175
   ASSERT(req->payloadSize <= req->bufferSize);
 
176
   LOG(4, (KERN_WARNING "Size of buffer %Zu\n", req->bufferSize));
176
177
   req->state = HGFS_REQ_STATE_UNSENT;
177
178
 
178
 
   LOG(10, (KERN_DEBUG "VMware hgfs: HgfsSendRequest: Sending request id %d\n",
 
179
   LOG(8, (KERN_DEBUG "VMware hgfs: HgfsSendRequest: Sending request id %d\n",
179
180
           req->id));
180
181
   ret = HgfsTransportSendRequest(req);
181
 
   LOG(10, (KERN_DEBUG "VMware hgfs: HgfsSendRequest: request finished, "
 
182
   LOG(8, (KERN_DEBUG "VMware hgfs: HgfsSendRequest: request finished, "
182
183
           "return %d\n", ret));
183
184
 
184
185
   return ret;