taglinefilesource code
bcc41fs/smbfs/proc.cstatic int smb_request_ok(struct smb_server *s, int command, int wct, int bcc);
bcc282fs/smbfs/proc.csmb_verify(byte *packet, int command, int wct, int bcc)
bcc286fs/smbfs/proc.c(bcc == -1 || SMB_BCC(packet) == bcc)) ? 0 : -EIO;
bcc423fs/smbfs/proc.csmb_request_ok(struct smb_server *s, int command, int wct, int bcc)
bcc440fs/smbfs/proc.celse if (smb_verify(s->packet, command, wct, bcc) != 0) {
bcc477fs/smbfs/proc.csmb_request_ok_unlock(struct smb_server *s, int command, int wct, int bcc)
bcc479fs/smbfs/proc.cint result = smb_request_ok(s, command, wct, bcc);
bcc490fs/smbfs/proc.csmb_setup_header(struct smb_server *server, byte command, word wct, word bcc)
bcc492fs/smbfs/proc.cdword xmit_len = SMB_HEADER_LEN + wct * sizeof(word) + bcc + 2;
bcc521fs/smbfs/proc.cWSET(p, 0, bcc);
bcc531fs/smbfs/proc.cbyte command, word wct, word bcc)
bcc534fs/smbfs/proc.creturn smb_setup_header(server, command, wct, bcc);
bcc879fs/smbfs/proc.cword bcc;
bcc937fs/smbfs/proc.cp = smb_decode_word(p, &bcc);           
bcc945fs/smbfs/proc.cif (bcc != count * SMB_DIRINFO_SIZE + 3) {