On Mon, 2020-07-27 at 20:16 +0800, Xiubo Li wrote: > On 2020/7/26 20:28, Jeff Layton wrote: > > Once we've replaced it, we don't want to keep the old one around > > anymore. > > > > Signed-off-by: Jeff Layton <jlayton@xxxxxxxxxx> > > --- > > fs/ceph/addr.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c > > index 01ad09733ac7..01e167efa104 100644 > > --- a/fs/ceph/addr.c > > +++ b/fs/ceph/addr.c > > @@ -1212,6 +1212,7 @@ static int ceph_writepages_start(struct address_space *mapping, > > locked_pages * sizeof(*pages)); > > memset(data_pages + i, 0, > > locked_pages * sizeof(*pages)); > > BTW, do we still need to memset() the data_pages ? > Self-NAK on this patch... Zheng pointed out that this array is actually freed by the request handler after the submission. This loop is creating a new pages array for a second request. As far as whether we need to memset the end of the original array...I don't think we do. It looks like the pointers at the end of the array are ignored once you go past the length of the request. That said, it's fairly cheap to do so, and I'm not inclined to change it, just in case there is code that does look at those pointers. > > > + kfree(data_pages); > > } else { > > BUG_ON(num_ops != req->r_num_ops); > > index = pages[i - 1]->index + 1; > > -- Jeff Layton <jlayton@xxxxxxxxxx>