Home
last modified time | relevance | path

Searched refs:info_buf (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.4/fs/cifs/
Dinode.c1142 FILE_BASIC_INFO info_buf; local
1151 info_buf.Pad = 0;
1155 info_buf.LastAccessTime =
1158 info_buf.LastAccessTime = 0;
1162 info_buf.LastWriteTime =
1165 info_buf.LastWriteTime = 0;
1175 info_buf.ChangeTime =
1178 info_buf.ChangeTime = 0;
1180 info_buf.CreationTime = 0; /* don't change */
1181 info_buf.Attributes = cpu_to_le32(dosattr);
[all …]
/Linux-v5.4/drivers/mtd/nand/raw/
Dmeson_nand.c119 __le64 *info_buf; member
425 info = &meson_chip->info_buf[i]; in meson_nfc_set_user_byte()
438 info = &meson_chip->info_buf[i]; in meson_nfc_get_user_byte()
453 info = &meson_chip->info_buf[i]; in meson_nfc_ecc_correct()
648 data_len, meson_chip->info_buf, in meson_nfc_write_page_sub()
689 memset(meson_chip->info_buf, 0, nand->ecc.steps * PER_INFO_BYTE); in meson_nfc_write_page_hwecc()
704 info = &meson_chip->info_buf[neccpages - 1]; in meson_nfc_check_ecc_pages_valid()
732 data_len, meson_chip->info_buf, in meson_nfc_read_page_sub()
1068 kfree(meson_chip->info_buf); in meson_nfc_free_buffer()
1087 meson_chip->info_buf = kmalloc(info_bytes, GFP_KERNEL); in meson_chip_buffer_init()
[all …]
/Linux-v5.4/drivers/staging/rtl8192e/rtl8192e/
Drtl_wx.c1025 u32 info_buf[3]; in _rtl92e_wx_set_promisc_mode() local
1031 if (copy_from_user(info_buf, wrqu->data.pointer, sizeof(info_buf))) in _rtl92e_wx_set_promisc_mode()
1034 oid = info_buf[0]; in _rtl92e_wx_set_promisc_mode()
1035 bPromiscuousOn = info_buf[1]; in _rtl92e_wx_set_promisc_mode()
1036 bFilterSourceStationFrame = info_buf[2]; in _rtl92e_wx_set_promisc_mode()
/Linux-v5.4/net/core/
Dethtool.c821 u32 *info_buf = NULL; in ethtool_get_sset_info() local
837 info_buf = kcalloc(n_bits, sizeof(u32), GFP_USER); in ethtool_get_sset_info()
838 if (!info_buf) in ethtool_get_sset_info()
852 info_buf[idx++] = rc; in ethtool_get_sset_info()
861 if (copy_to_user(useraddr, info_buf, idx * sizeof(u32))) in ethtool_get_sset_info()
867 kfree(info_buf); in ethtool_get_sset_info()