Merge tag 'for-linus-4.1-merge-window' of git://git.kernel.org/pub/scm/linux/kernel...
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 18 Apr 2015 21:45:30 +0000 (17:45 -0400)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 18 Apr 2015 21:45:30 +0000 (17:45 -0400)
Pull 9pfs updates from Eric Van Hensbergen:
 "Some accumulated cleanup patches for kerneldoc and unused variables as
  well as some lock bug fixes and adding privateport option for RDMA"

* tag 'for-linus-4.1-merge-window' of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:
  net/9p: add a privport option for RDMA transport.
  fs/9p: Initialize status in v9fs_file_do_lock.
  net/9p: Initialize opts->privport as it should be.
  net/9p: use memcpy() instead of snprintf() in p9_mount_tag_show()
  9p: use unsigned integers for nwqid/count
  9p: do not crash on unknown lock status code
  9p: fix error handling in v9fs_file_do_lock
  9p: remove unused variable in p9_fd_create()
  9p: kerneldoc warning fixes

1  2 
fs/9p/vfs_addr.c
fs/9p/vfs_file.c
net/9p/protocol.c
net/9p/trans_fd.c
net/9p/trans_virtio.c

@@@ -230,10 -241,9 +230,8 @@@ static int v9fs_launder_page(struct pag
  
  /**
   * v9fs_direct_IO - 9P address space operation for direct I/O
 - * @rw: direction (read or write)
   * @iocb: target I/O control block
-  * @iov: array of vectors that define I/O buffer
   * @pos: offset in file to begin the operation
-  * @nr_segs: size of iovec array
   *
   * The presence of v9fs_direct_IO() in the address space ops vector
   * allowes open() O_DIRECT flags which would have failed otherwise.
Simple merge
@@@ -439,13 -437,23 +439,13 @@@ p9pdu_vwritef(struct p9_fcall *pdu, in
                                                 stbuf->extension, stbuf->n_uid,
                                                 stbuf->n_gid, stbuf->n_muid);
                        } break;
 -              case 'D':{
 -                              uint32_t count = va_arg(ap, uint32_t);
 -                              const void *data = va_arg(ap, const void *);
 -
 -                              errcode = p9pdu_writef(pdu, proto_version, "d",
 -                                                                      count);
 -                              if (!errcode && pdu_write(pdu, data, count))
 -                                      errcode = -EFAULT;
 -                      }
 -                      break;
 -              case 'U':{
 +              case 'V':{
-                               int32_t count = va_arg(ap, int32_t);
+                               uint32_t count = va_arg(ap, uint32_t);
 -                              const char __user *udata =
 -                                              va_arg(ap, const void __user *);
 +                              struct iov_iter *from =
 +                                              va_arg(ap, struct iov_iter *);
                                errcode = p9pdu_writef(pdu, proto_version, "d",
                                                                        count);
 -                              if (!errcode && pdu_write_u(pdu, udata, count))
 +                              if (!errcode && pdu_write_u(pdu, from, count))
                                        errcode = -EFAULT;
                        }
                        break;
Simple merge
Simple merge