2012/7/18 Jeff Layton <[email protected]>: > Now that we're not kmapping so much at once, there's no need to cap > the wsize at the amount that can be simultaneously kmapped. > > Signed-off-by: Jeff Layton <[email protected]> > --- > fs/cifs/connect.c | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c > index 99ca139..303be53 100644 > --- a/fs/cifs/connect.c > +++ b/fs/cifs/connect.c > @@ -3491,9 +3491,6 @@ cifs_negotiate_wsize(struct cifs_tcon *tcon, struct > smb_vol *pvolume_info) > wsize = min_t(unsigned int, wsize, > server->maxBuf - sizeof(WRITE_REQ) + 4); > > - /* limit to the amount that we can kmap at once */ > - wsize = min_t(unsigned int, wsize, CIFS_KMAP_SIZE_LIMIT); > - > /* hard limit of CIFS_MAX_WSIZE */ > wsize = min_t(unsigned int, wsize, CIFS_MAX_WSIZE); > > -- > 1.7.10.4 > > -- > To unsubscribe from this list: send the line "unsubscribe linux-cifs" in > the body of a message to [email protected] > More majordomo info at http://vger.kernel.org/majordomo-info.html
Reviewed-by: Pavel Shilovsky <[email protected]> -- Best regards, Pavel Shilovsky. -- To unsubscribe from this list: send the line "unsubscribe linux-cifs" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
