taglinefilesource code
bcc40fs/smbfs/proc.cstatic int smb_request_ok(struct smb_server *s, int command, int wct, int bcc);
bcc270fs/smbfs/proc.csmb_verify(byte *packet, int command, int wct, int bcc)
bcc274fs/smbfs/proc.c(bcc == -1 || SMB_BCC(packet) == bcc)) ? 0 : -EIO;
bcc414fs/smbfs/proc.csmb_request_ok(struct smb_server *s, int command, int wct, int bcc)
bcc431fs/smbfs/proc.celse if (smb_verify(s->packet, command, wct, bcc) != 0) {
bcc468fs/smbfs/proc.csmb_request_ok_unlock(struct smb_server *s, int command, int wct, int bcc)
bcc470fs/smbfs/proc.cint result = smb_request_ok(s, command, wct, bcc);
bcc481fs/smbfs/proc.csmb_setup_header(struct smb_server *server, byte command, word wct, word bcc)
bcc483fs/smbfs/proc.cdword xmit_len = SMB_HEADER_LEN + wct * sizeof(word) + bcc + 2;
bcc512fs/smbfs/proc.cWSET(p, 0, bcc);
bcc522fs/smbfs/proc.cbyte command, word wct, word bcc)
bcc525fs/smbfs/proc.creturn smb_setup_header(server, command, wct, bcc);
bcc952fs/smbfs/proc.cword bcc;
bcc1010fs/smbfs/proc.cp = smb_decode_word(p, &bcc);           
bcc1018fs/smbfs/proc.cif (bcc != count * SMB_DIRINFO_SIZE + 3) {