Re: [PATCH -next] cifs: convert to use be32_add_cpu()

2020-07-26 Thread Steve French
merged into cifs-2.6.git for-next and for-next also updated with 5.8-rc7 On Sat, Jul 25, 2020 at 3:53 AM Qinglang Miao wrote: > > Convert cpu_to_be32(be32_to_cpu(E1) + E2) to use be32_add_cpu(). > > Signed-off-by: Qinglang Miao > --- > fs/cifs/connect.c | 3 +-- > fs/cifs/sess.c| 3 +-- >

[PATCH -next] cifs: convert to use be32_add_cpu()

2020-07-25 Thread Qinglang Miao
Convert cpu_to_be32(be32_to_cpu(E1) + E2) to use be32_add_cpu(). Signed-off-by: Qinglang Miao --- fs/cifs/connect.c | 3 +-- fs/cifs/sess.c| 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 889fee586..552975420 100644 ---