Home
last modified time | relevance | path

Searched refs:smb (Results 1 – 25 of 35) sorted by relevance

12

/linux-6.15/drivers/power/supply/
H A Dsmb347-charger.c322 if (smb->use_mains) in smb347_update_ps_status()
324 if (smb->use_usb) in smb347_update_ps_status()
327 ret = smb->mains_online != dc || smb->usb_online != usb; in smb347_update_ps_status()
345 return smb->usb_online || smb->mains_online; in smb347_is_ps_online()
836 if (smb->use_usb) in smb347_interrupt()
850 if (smb->use_usb) in smb347_interrupt()
868 if (smb->use_usb) in smb347_interrupt()
1288 if (smb->mains) in smb347_get_battery_info()
1540 smb = devm_kzalloc(dev, sizeof(*smb), GFP_KERNEL); in smb347_probe()
1541 if (!smb) in smb347_probe()
[all …]
/linux-6.15/drivers/net/ethernet/atheros/atlx/
H A Datl1.c1093 offset = (adapter->smb.dma & 0x7) ? (8 - (adapter->smb.dma & 0x7)) : 0; 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()
1657 struct stats_msg_block *smb = adapter->smb.smb; in atl1_inc_smb() local
1662 smb->rx_sz_ov + in atl1_inc_smb()
1669 smb->tx_trunc; in atl1_inc_smb()
1678 smb->tx_2_col + in atl1_inc_smb()
3469 struct atl1_smb smb; in atl1_set_ringparam() local
3515 smb = adapter->smb; in atl1_set_ringparam()
[all …]
H A Datl1.h641 struct stats_msg_block *smb; member
786 struct atl1_smb smb; member
/linux-6.15/fs/smb/client/
H A Dmisc.c312 check_smb_hdr(struct smb_hdr *smb) in check_smb_hdr() argument
322 if (smb->Flags & SMBFLG_RESPONSE) in check_smb_hdr()
330 get_mid(smb)); in check_smb_hdr()
348 smb->WordCount = 0; in checkSMB()
352 (smb->WordCount == 0)) { in checkSMB()
353 char *tmp = (char *)smb; in checkSMB()
372 } else if (total_read < sizeof(*smb) + 2 * smb->WordCount) { in checkSMB()
374 __func__, smb->WordCount); in checkSMB()
379 if (check_smb_hdr(smb)) in checkSMB()
381 clc_len = smbCalcSize(smb); in checkSMB()
[all …]
H A Dnetmisc.c811 struct smb_hdr *smb = (struct smb_hdr *)buf; in map_smb_to_linux_error() local
820 if (smb->Status.CifsError == 0) in map_smb_to_linux_error()
823 if (smb->Flags2 & SMBFLG2_ERR_STATUS) { in map_smb_to_linux_error()
826 __u32 err = le32_to_cpu(smb->Status.CifsError); in map_smb_to_linux_error()
833 smberrclass = smb->Status.DosError.ErrorClass; in map_smb_to_linux_error()
834 smberrcode = le16_to_cpu(smb->Status.DosError.Error); in map_smb_to_linux_error()
874 if (smb->Flags2 & SMBFLG2_ERR_STATUS) { in map_smb_to_linux_error()
875 __u32 err = le32_to_cpu(smb->Status.CifsError); in map_smb_to_linux_error()
883 le32_to_cpu(smb->Status.CifsError), rc); in map_smb_to_linux_error()
897 rc = map_smb_to_linux_error((char *)smb, logErr); in map_and_check_smb_error()
[all …]
H A Dcifssmb.c591 ECHO_REQ *smb; in CIFSSMBEcho() local
607 smb->hdr.Tid = 0xffff; in CIFSSMBEcho()
610 put_bcc(1, &smb->hdr); in CIFSSMBEcho()
611 smb->Data[0] = 'a'; in CIFSSMBEcho()
615 iov[0].iov_base = smb; in CIFSSMBEcho()
1379 READ_REQ *smb = NULL; in cifs_async_readv() local
1410 smb->Remaining = 0; in cifs_async_readv()
1414 smb->ByteCount = 0; in cifs_async_readv()
1771 smb->WriteMode = 0; in cifs_async_writev()
1772 smb->Remaining = 0; in cifs_async_writev()
[all …]
H A Dcifs_debug.c41 struct smb_hdr *smb = buf; in cifs_dump_detail() local
44 smb->Command, smb->Status.CifsError, smb->Flags, in cifs_dump_detail()
45 smb->Flags2, smb->Mid, smb->Pid, smb->WordCount); in cifs_dump_detail()
47 cifs_dbg(VFS, "smb buf %p len %u\n", smb, in cifs_dump_detail()
48 server->ops->calc_smb_size(smb)); in cifs_dump_detail()
H A Dcifsglob.h976 get_mid(const struct smb_hdr *smb) in get_mid() argument
978 return le16_to_cpu(smb->Mid); in get_mid()
982 compare_mid(__u16 mid, const struct smb_hdr *smb) in compare_mid() argument
984 return mid == le16_to_cpu(smb->Mid); in compare_mid()
/linux-6.15/Documentation/filesystems/smb/
H A Dcifsroot.rst39 settings in Samba smb.conf::
62 The default mount options are set in fs/smb/client/cifsroot.c.
76 Export root file system as a Samba share in smb.conf file::
93 Restart smb service::
95 # systemctl restart smb
H A Dksmbd.rst54 allows sharing information parameters that are parsed from smb.conf to ksmbd in
178 2. Enable one of the components (smb, auth, vfs, oplock, ipc, conn, rdma)
179 # sudo ksmbd.control -d "smb"
183 [smb] auth vfs oplock ipc conn [rdma]
/linux-6.15/fs/smb/
H A DKconfig5 source "fs/smb/client/Kconfig"
6 source "fs/smb/server/Kconfig"
/linux-6.15/arch/arm/boot/dts/aspeed/
H A Daspeed-bmc-asrock-x570d4u.dts90 "input-id2-n", "input-aux-smb-alert-n", "",
91 "input-psu-smb-alert-n", "",
102 /* Q */ "", "", "", "", "input-bmc-smb-present-n", "", "",
H A Daspeed-bmc-facebook-harma.dts633 "","smb-rt-rom-p0-select",
634 "","smb-rt-rom-p1-select",
646 "host0-ready","reset-control-smb-e1s-0",
648 "","reset-control-smb-e1s-1",
H A Daspeed-bmc-inventec-starscream.dts319 /*B0-B7*/ "alert-psu0-smb-r-n","bmc-ready","","assert-cpu0-prochot-r-n",
338 "","PCH_SLP_S4_BMC_N","cpu0-thermtrip-n","alert-psu1-smb-r-n",
/linux-6.15/Documentation/admin-guide/cifs/
H A Dchanges.rst9 "git log fs/smb/client" by release.
H A Dauthors.rst18 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
H A Dusage.rst48 the modules directory e.g. /lib/modules/6.3.0-060300-generic/kernel/fs/smb/client/cifs.ko).
71 on kernel/fs/smb/client/cifs.ko the list of configuration changes that can be made
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
769 system error log with the start of smb requests
801 the start of smb requests and responses can be enabled via::
/linux-6.15/Documentation/filesystems/
H A Dindex.rst117 smb/index
/linux-6.15/drivers/hwtracing/coresight/
H A DMakefile52 obj-$(CONFIG_ULTRASOC_SMB) += ultrasoc-smb.o
/linux-6.15/arch/arm64/boot/dts/arm/
H A Dvexpress-v2f-1xv7-ca53x2.dts149 smb: bus@8000000 { label
/linux-6.15/arch/arm/boot/dts/arm/
H A Dmps2-an385.dts67 smb {
H A Dmps2-an399.dts67 smb {
H A Dvexpress-v2p-ca5s.dts210 smb: bus@8000000 { label
H A Dmps2.dtsi213 smb {
/linux-6.15/fs/
H A DMakefile90 obj-$(CONFIG_SMBFS) += smb/

12