/kernel/linux/linux-5.10/drivers/power/supply/ |
D | smb347-charger.c | 298 static int smb347_update_ps_status(struct smb347_charger *smb) in smb347_update_ps_status() argument 305 ret = regmap_read(smb->regmap, IRQSTAT_E, &val); in smb347_update_ps_status() 313 if (smb->use_mains) in smb347_update_ps_status() 315 if (smb->use_usb) in smb347_update_ps_status() 318 ret = smb->mains_online != dc || smb->usb_online != usb; in smb347_update_ps_status() 319 smb->mains_online = dc; in smb347_update_ps_status() 320 smb->usb_online = usb; in smb347_update_ps_status() 334 static bool smb347_is_ps_online(struct smb347_charger *smb) in smb347_is_ps_online() argument 336 return smb->usb_online || smb->mains_online; in smb347_is_ps_online() 346 static int smb347_charging_status(struct smb347_charger *smb) in smb347_charging_status() argument [all …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/atheros/atlx/ |
D | atl1.c | 1092 adapter->smb.dma = adapter->cmb.dma + sizeof(struct coals_msg_block); in atl1_setup_ring_resources() 1093 offset = (adapter->smb.dma & 0x7) ? (8 - (adapter->smb.dma & 0x7)) : 0; in atl1_setup_ring_resources() 1094 adapter->smb.dma += offset; in atl1_setup_ring_resources() 1095 adapter->smb.smb = (struct stats_msg_block *) in atl1_setup_ring_resources() 1237 adapter->smb.dma = 0; in atl1_free_ring_resources() 1238 adapter->smb.smb = NULL; in atl1_free_ring_resources() 1482 iowrite32((u32) (adapter->smb.dma & 0x00000000ffffffffULL), in atl1_configure() 1657 struct stats_msg_block *smb = adapter->smb.smb; in atl1_inc_smb() local 1659 u64 new_rx_errors = smb->rx_frag + in atl1_inc_smb() 1660 smb->rx_fcs_err + in atl1_inc_smb() [all …]
|
D | atl1.h | 641 struct stats_msg_block *smb; member 786 struct atl1_smb smb; member
|
/kernel/linux/linux-5.10/fs/cifs/ |
D | misc.c | 296 check_smb_hdr(struct smb_hdr *smb) in check_smb_hdr() argument 299 if (*(__le32 *) smb->Protocol != cpu_to_le32(0x424d53ff)) { in check_smb_hdr() 301 *(unsigned int *)smb->Protocol); in check_smb_hdr() 306 if (smb->Flags & SMBFLG_RESPONSE) in check_smb_hdr() 310 if (smb->Command == SMB_COM_LOCKING_ANDX) in check_smb_hdr() 314 get_mid(smb)); in check_smb_hdr() 321 struct smb_hdr *smb = (struct smb_hdr *)buf; in checkSMB() local 322 __u32 rfclen = be32_to_cpu(smb->smb_buf_length); in checkSMB() 330 && (smb->Status.CifsError != 0)) { in checkSMB() 332 smb->WordCount = 0; in checkSMB() [all …]
|
D | netmisc.c | 813 struct smb_hdr *smb = (struct smb_hdr *)buf; in map_smb_to_linux_error() local 822 if (smb->Status.CifsError == 0) in map_smb_to_linux_error() 825 if (smb->Flags2 & SMBFLG2_ERR_STATUS) { in map_smb_to_linux_error() 828 __u32 err = le32_to_cpu(smb->Status.CifsError); in map_smb_to_linux_error() 835 smberrclass = smb->Status.DosError.ErrorClass; in map_smb_to_linux_error() 836 smberrcode = le16_to_cpu(smb->Status.DosError.Error); in map_smb_to_linux_error() 876 le32_to_cpu(smb->Status.CifsError), rc); in map_smb_to_linux_error() 888 struct smb_hdr *smb = (struct smb_hdr *)mid->resp_buf; in map_and_check_smb_error() local 890 rc = map_smb_to_linux_error((char *)smb, logErr); in map_and_check_smb_error() 891 if (rc == -EACCES && !(smb->Flags2 & SMBFLG2_ERR_STATUS)) { in map_and_check_smb_error() [all …]
|
D | cifs_debug.c | 38 struct smb_hdr *smb = (struct smb_hdr *)buf; in cifs_dump_detail() local 41 smb->Command, smb->Status.CifsError, in cifs_dump_detail() 42 smb->Flags, smb->Flags2, smb->Mid, smb->Pid); in cifs_dump_detail() 43 cifs_dbg(VFS, "smb buf %p len %u\n", smb, in cifs_dump_detail() 44 server->ops->calc_smb_size(smb, server)); in cifs_dump_detail()
|
D | cifssmb.c | 761 ECHO_REQ *smb; in CIFSSMBEcho() local 769 rc = small_smb_init(SMB_COM_ECHO, 0, NULL, (void **)&smb); in CIFSSMBEcho() 774 smb->hdr.Flags2 |= SMBFLG2_UNICODE; in CIFSSMBEcho() 777 smb->hdr.Tid = 0xffff; in CIFSSMBEcho() 778 smb->hdr.WordCount = 1; in CIFSSMBEcho() 779 put_unaligned_le16(1, &smb->EchoCount); in CIFSSMBEcho() 780 put_bcc(1, &smb->hdr); in CIFSSMBEcho() 781 smb->Data[0] = 'a'; in CIFSSMBEcho() 782 inc_rfc1001_len(smb, 3); in CIFSSMBEcho() 785 iov[0].iov_base = smb; in CIFSSMBEcho() [all …]
|
D | cifsglob.h | 876 get_mid(const struct smb_hdr *smb) in get_mid() argument 878 return le16_to_cpu(smb->Mid); in get_mid() 882 compare_mid(__u16 mid, const struct smb_hdr *smb) in compare_mid() argument 884 return mid == le16_to_cpu(smb->Mid); in compare_mid()
|
D | cifspdu.h | 442 BCC(struct smb_hdr *smb) in BCC() argument 444 return (void *)smb + sizeof(*smb) + 2 * smb->WordCount; in BCC()
|
/kernel/linux/linux-5.10/Documentation/filesystems/cifs/ |
D | cifsroot.rst | 39 settings in Samba smb.conf:: 76 Export root file system as a Samba share in smb.conf file:: 93 Restart smb service:: 95 # systemctl restart smb
|
/kernel/linux/linux-5.10/Documentation/admin-guide/cifs/ |
D | authors.rst | 11 Andrew Tridgell (Samba team) for his early suggestions about smb/cifs VFS 18 Dave Boutcher of IBM Rochester (author of the OS/400 smb/cifs filesystem client) 19 for proving years ago that very good smb/cifs clients could be done on Unix-like
|
D | usage.rst | 152 to your smb.conf file on the server. Note that the following smb.conf settings 174 Some administrators may want to change Samba's smb.conf ``map archive`` and 182 (``man smb.conf``) on the Samba server system. Note that the cifs vfs, 183 unlike the smbfs vfs, does not read the smb.conf on the client system 782 system error log with the start of smb requests 812 the start of smb requests and responses can be enabled via::
|
D | todo.rst | 61 in smb-info tool).
|
/kernel/linux/linux-5.10/arch/arm/boot/dts/ |
D | mps2-an399.dts | 67 smb {
|
D | mps2-an385.dts | 67 smb {
|
D | vexpress-v2p-ca5s.dts | 209 smb: bus@8000000 { label
|
D | mps2.dtsi | 239 smb {
|
D | vexpress-v2p-ca9.dts | 298 smb: bus@40000000 { label
|
D | vexpress-v2p-ca15_a7.dts | 611 smb: bus@8000000 { label
|
/kernel/linux/linux-5.10/arch/arm64/boot/dts/arm/ |
D | vexpress-v2f-1xv7-ca53x2.dts | 147 smb: bus@8000000 { label
|
/kernel/linux/linux-5.10/arch/arm64/boot/dts/amd/ |
D | amd-seattle-soc.dtsi | 53 smb0: smb {
|