2021-10-01 21:04 GMT+09:00, Ralph Boehme <slow@xxxxxxxxx>: > Also track the tcon id of compound requests. > > Cc: Namjae Jeon <linkinjeon@xxxxxxxxxx> > Cc: Tom Talpey <tom@xxxxxxxxxx> > Cc: Ronnie Sahlberg <ronniesahlberg@xxxxxxxxx> > Cc: Steve French <smfrench@xxxxxxxxx> > Cc: Hyunchul Lee <hyc.lee@xxxxxxxxx> > Signed-off-by: Ralph Boehme <slow@xxxxxxxxx> > --- > fs/ksmbd/ksmbd_work.h | 1 + > fs/ksmbd/smb2pdu.c | 9 ++++++++- > 2 files changed, 9 insertions(+), 1 deletion(-) > > diff --git a/fs/ksmbd/ksmbd_work.h b/fs/ksmbd/ksmbd_work.h > index f7156bc50049..91363d508909 100644 > --- a/fs/ksmbd/ksmbd_work.h > +++ b/fs/ksmbd/ksmbd_work.h > @@ -46,6 +46,7 @@ struct ksmbd_work { > u64 compound_fid; > u64 compound_pfid; > u64 compound_sid; > + u32 compound_tid; > > const struct cred *saved_cred; > > diff --git a/fs/ksmbd/smb2pdu.c b/fs/ksmbd/smb2pdu.c > index 7d3344b5519c..5b1fead05c49 100644 > --- a/fs/ksmbd/smb2pdu.c > +++ b/fs/ksmbd/smb2pdu.c > @@ -98,6 +98,8 @@ int smb2_get_ksmbd_tcon(struct ksmbd_work *work) > int tree_id; > > work->tcon = NULL; > + work->compound_tid = 0; > + > if (cmd == SMB2_TREE_CONNECT_HE || > cmd == SMB2_CANCEL_HE || > cmd == SMB2_LOGOFF_HE) { > @@ -110,13 +112,18 @@ int smb2_get_ksmbd_tcon(struct ksmbd_work *work) > return -ENOENT; > } > > - tree_id = le32_to_cpu(req_hdr->Id.SyncId.TreeId); > + if (req_hdr->Flags & SMB2_FLAGS_RELATED_OPERATIONS) > + tree_id = work->compound_tid; Well, Isn't that a performance degradation due to unneeded lookups? > + else > + tree_id = le32_to_cpu(req_hdr->Id.SyncId.TreeId); > + > work->tcon = ksmbd_tree_conn_lookup(work->sess, tree_id); > if (!work->tcon) { > pr_err("Invalid tid %d\n", tree_id); > return -EINVAL; > } > > + work->compound_tid = tree_id; > return 1; > } > > -- > 2.31.1 > >