Symbol: rft
drivers/i2c/busses/i2c-nomadik.c
1022
priv->rft = 8; /* Rx FIFO threshold */
drivers/i2c/busses/i2c-nomadik.c
1123
if (priv->rft > max_fifo_threshold) {
drivers/i2c/busses/i2c-nomadik.c
1125
priv->rft, max_fifo_threshold);
drivers/i2c/busses/i2c-nomadik.c
1126
priv->rft = max_fifo_threshold;
drivers/i2c/busses/i2c-nomadik.c
208
unsigned char rft;
drivers/i2c/busses/i2c-nomadik.c
477
writel(priv->rft, priv->virtbase + I2C_RFTR);
drivers/i2c/busses/i2c-nomadik.c
780
u32 tft, rft;
drivers/i2c/busses/i2c-nomadik.c
786
rft = readl(priv->virtbase + I2C_RFTR);
drivers/i2c/busses/i2c-nomadik.c
822
for (count = rft; count > 0; count--) {
drivers/i2c/busses/i2c-nomadik.c
827
priv->cli.count -= rft;
drivers/i2c/busses/i2c-nomadik.c
828
priv->cli.xfer_bytes += rft;
drivers/scsi/libfc/fc_encode.h
116
hton24(ct->payload.rft.fid.fp_fid, lport->port_id);
drivers/scsi/libfc/fc_encode.h
117
ct->payload.rft.fts = lport->fcts;
drivers/scsi/libfc/fc_encode.h
31
struct fc_ns_rft rft;
drivers/scsi/lpfc/lpfc_ct.c
2041
CtReq->un.rft.port_id = cpu_to_be32(vport->fc_myDID);
drivers/scsi/lpfc/lpfc_ct.c
2045
CtReq->un.rft.app_serv_reg =
drivers/scsi/lpfc/lpfc_ct.c
2051
CtReq->un.rft.fcp_reg = cpu_to_be32(RFT_FCP_REG);
drivers/scsi/lpfc/lpfc_ct.c
2056
CtReq->un.rft.nvme_reg = cpu_to_be32(RFT_NVME_REG);
drivers/scsi/lpfc/lpfc_ct.c
2062
CtReq->un.rft.fcp_reg ? "FCP" : " ",
drivers/scsi/lpfc/lpfc_ct.c
2063
CtReq->un.rft.nvme_reg ? "NVME" : " ",
drivers/scsi/lpfc/lpfc_ct.c
2064
CtReq->un.rft.app_serv_reg ? "APPS" : " ",
drivers/scsi/lpfc/lpfc_hw.h
153
} rft;
drivers/scsi/lpfc/lpfc_hw.h
210
sizeof(struct rft))
fs/resctrl/rdtgroup.c
2123
struct rftype *rfts, *rft;
fs/resctrl/rdtgroup.c
2134
for (rft = rfts; rft < rfts + len; rft++) {
fs/resctrl/rdtgroup.c
2135
if (rft->fflags && ((fflags & rft->fflags) == rft->fflags)) {
fs/resctrl/rdtgroup.c
2136
ret = rdtgroup_add_file(kn, rft);
fs/resctrl/rdtgroup.c
2144
pr_warn("Failed to add %s, err=%d\n", rft->name, ret);
fs/resctrl/rdtgroup.c
2145
while (--rft >= rfts) {
fs/resctrl/rdtgroup.c
2146
if ((fflags & rft->fflags) == rft->fflags)
fs/resctrl/rdtgroup.c
2147
kernfs_remove_by_name(kn, rft->name);
fs/resctrl/rdtgroup.c
2154
struct rftype *rfts, *rft;
fs/resctrl/rdtgroup.c
2160
for (rft = rfts; rft < rfts + len; rft++) {
fs/resctrl/rdtgroup.c
2161
if (!strcmp(rft->name, name))
fs/resctrl/rdtgroup.c
2162
return rft;
fs/resctrl/rdtgroup.c
2209
struct rftype *rft;
fs/resctrl/rdtgroup.c
2211
rft = rdtgroup_get_rftype_by_name(config);
fs/resctrl/rdtgroup.c
2212
if (rft)
fs/resctrl/rdtgroup.c
2213
rft->fflags = fflags;
fs/resctrl/rdtgroup.c
2276
struct rftype *rfts, *rft;
fs/resctrl/rdtgroup.c
2282
for (rft = rfts; rft < rfts + len; rft++) {
fs/resctrl/rdtgroup.c
2283
if (!strcmp(rft->name, name))
fs/resctrl/rdtgroup.c
2284
iattr.ia_mode = rft->mode & mask;
fs/resctrl/rdtgroup.c
291
static int rdtgroup_add_file(struct kernfs_node *parent_kn, struct rftype *rft)
fs/resctrl/rdtgroup.c
296
kn = __kernfs_create_file(parent_kn, rft->name, rft->mode,
fs/resctrl/rdtgroup.c
298
0, rft->kf_ops, rft, NULL, NULL);
fs/resctrl/rdtgroup.c
314
struct rftype *rft = of->kn->priv;
fs/resctrl/rdtgroup.c
316
if (rft->seq_show)
fs/resctrl/rdtgroup.c
317
return rft->seq_show(of, m, arg);
fs/resctrl/rdtgroup.c
324
struct rftype *rft = of->kn->priv;
fs/resctrl/rdtgroup.c
326
if (rft->write)
fs/resctrl/rdtgroup.c
327
return rft->write(of, buf, nbytes, off);
fs/resctrl/rdtgroup.c
345
struct rftype *rft = of->kn->priv;
fs/resctrl/rdtgroup.c
347
return rft->flags & RFTYPE_FLAGS_CPUS_LIST;