1. 02 5月, 2021 1 次提交
    • B
      sunrpc: Fix misplaced barrier in call_decode · f8f7e0fb
      Baptiste Lepers 提交于
      Fix a misplaced barrier in call_decode. The struct rpc_rqst is modified
      as follows by xprt_complete_rqst:
      
      req->rq_private_buf.len = copied;
      /* Ensure all writes are done before we update */
      /* req->rq_reply_bytes_recvd */
      smp_wmb();
      req->rq_reply_bytes_recvd = copied;
      
      And currently read as follows by call_decode:
      
      smp_rmb(); // misplaced
      if (!req->rq_reply_bytes_recvd)
         goto out;
      req->rq_rcv_buf.len = req->rq_private_buf.len;
      
      This patch places the smp_rmb after the if to ensure that
      rq_reply_bytes_recvd and rq_private_buf.len are read in order.
      
      Fixes: 9ba82886 ("SUNRPC: Don't try to parse incomplete RPC messages")
      Signed-off-by: NBaptiste Lepers <baptiste.lepers@gmail.com>
      Signed-off-by: NTrond Myklebust <trond.myklebust@hammerspace.com>
      f8f7e0fb
  2. 26 4月, 2021 24 次提交
  3. 21 4月, 2021 1 次提交
  4. 19 4月, 2021 2 次提交
  5. 16 4月, 2021 2 次提交
  6. 14 4月, 2021 10 次提交