| /linux/tools/testing/selftests/drivers/net/mlxsw/ |
| H A D | devlink_linecard.sh | 39 local lc=$1 41 devlink lc show $DEVLINK_DEV lc $lc -j | jq -e -r ".[][][].state" 46 local lc=$1 50 busywait "$timeout" until_lc_state_is_not "$state" lc_state_get "$lc" 55 local lc=$1 59 busywait "$timeout" until_lc_state_is "$state" lc_state_get "$lc" 73 local lc=$1 75 devlink port -j | jq -e -r ".[][] | select(.lc==$lc) | .port" | wc -l 80 local lc=$1 84 busywait "$timeout" until_lc_port_count_is "$port_count" lc_port_count_get "$lc" [all …]
|
| /linux/lib/ |
| H A D | lru_cache.c | 29 BUG_ON(!lc); \ 30 BUG_ON(!lc->nr_elements); \ 31 BUG_ON(test_and_set_bit(__LC_PARANOIA, &lc->flags)); \ 35 clear_bit_unlock(__LC_PARANOIA, &lc->flags); \ 39 #define PARANOIA_LC_ELEMENT(lc, e) do { \ argument 40 struct lru_cache *lc_ = (lc); \ 55 int lc_try_lock(struct lru_cache *lc) in lc_try_lock() argument 59 val = cmpxchg(&lc->flags, 0, LC_LOCKED); in lc_try_lock() 83 struct lru_cache *lc; in lc_create() local 104 lc = kzalloc_obj(*lc); in lc_create() [all …]
|
| H A D | decompress_unlzma.c | 352 int lc, uint32_t literal_pos_mask) { in process_bit0() argument 357 * (((get_pos(wr) & literal_pos_mask) << lc) in process_bit0() 358 + (wr->previous_byte >> (8 - lc)))) in process_bit0() 548 int lc, pb, lp; in unlzma() local 594 lc = header.pos; in unlzma() 595 while (lc >= 9) { in unlzma() 597 lc -= 9; in unlzma() 623 num_probs = LZMA_BASE_SIZE + (LZMA_LIT_SIZE << (lc + lp)); in unlzma() 627 num_probs = LZMA_LITERAL + (LZMA_LIT_SIZE << (lc + lp)); in unlzma() 639 lc, literal_pos_mask)) { in unlzma()
|
| /linux/drivers/md/ |
| H A D | dm-log.c | 299 static int rw_header(struct log_c *lc, enum req_op op) in rw_header() argument 301 lc->io_req.bi_opf = op; in rw_header() 303 return dm_io(&lc->io_req, 1, &lc->header_location, NULL, NULL, IOPRIO_DEFAULT); in rw_header() 306 static int flush_header(struct log_c *lc) in flush_header() argument 309 .bdev = lc->header_location.bdev, in flush_header() 314 lc->io_req.bi_opf = REQ_OP_WRITE | REQ_PREFLUSH; in flush_header() 316 return dm_io(&lc->io_req, 1, &null_location, NULL, NULL, IOPRIO_DEFAULT); in flush_header() 374 struct log_c *lc; in create_log_context() local 409 lc = kmalloc_obj(*lc); in create_log_context() 410 if (!lc) { in create_log_context() [all …]
|
| H A D | dm-log-writes.c | 138 static inline sector_t bio_to_dev_sectors(struct log_writes_c *lc, in bio_to_dev_sectors() argument 141 return sectors >> (lc->sectorshift - SECTOR_SHIFT); in bio_to_dev_sectors() 144 static inline sector_t dev_to_bio_sectors(struct log_writes_c *lc, in dev_to_bio_sectors() argument 147 return sectors << (lc->sectorshift - SECTOR_SHIFT); in dev_to_bio_sectors() 150 static void put_pending_block(struct log_writes_c *lc) in put_pending_block() argument 152 if (atomic_dec_and_test(&lc->pending_blocks)) { in put_pending_block() 154 if (waitqueue_active(&lc->wait)) in put_pending_block() 155 wake_up(&lc->wait); in put_pending_block() 159 static void put_io_block(struct log_writes_c *lc) in put_io_block() argument 161 if (atomic_dec_and_test(&lc->io_blocks)) { in put_io_block() [all …]
|
| H A D | dm-linear.c | 32 struct linear_c *lc; in linear_ctr() local 42 lc = kmalloc_obj(*lc); in linear_ctr() 43 if (lc == NULL) { in linear_ctr() 53 lc->start = tmp; in linear_ctr() 55 ret = dm_get_device(ti, argv[0], dm_table_get_mode(ti->table), &lc->dev); in linear_ctr() 66 ti->private = lc; in linear_ctr() 70 kfree(lc); in linear_ctr() 76 struct linear_c *lc = ti->private; in linear_dtr() local 78 dm_put_device(ti, lc->dev); in linear_dtr() 79 kfree(lc); in linear_dtr() [all …]
|
| /linux/include/linux/ |
| H A D | lru_cache.h | 241 extern void lc_reset(struct lru_cache *lc); 242 extern void lc_destroy(struct lru_cache *lc); 243 extern void lc_del(struct lru_cache *lc, struct lc_element *element); 245 extern struct lc_element *lc_get_cumulative(struct lru_cache *lc, unsigned int enr); 246 extern struct lc_element *lc_try_get(struct lru_cache *lc, unsigned int enr); 247 extern struct lc_element *lc_find(struct lru_cache *lc, unsigned int enr); 248 extern struct lc_element *lc_get(struct lru_cache *lc, unsigned int enr); 249 extern unsigned int lc_put(struct lru_cache *lc, struct lc_element *e); 250 extern void lc_committed(struct lru_cache *lc); 253 extern void lc_seq_printf_stats(struct seq_file *seq, struct lru_cache *lc); [all …]
|
| /linux/net/rds/ |
| H A D | loop.c | 141 struct rds_loop_connection *lc; in rds_loop_conn_alloc() local 144 lc = kzalloc_obj(struct rds_loop_connection, gfp); in rds_loop_conn_alloc() 145 if (!lc) in rds_loop_conn_alloc() 148 INIT_LIST_HEAD(&lc->loop_node); in rds_loop_conn_alloc() 149 lc->conn = conn; in rds_loop_conn_alloc() 150 conn->c_transport_data = lc; in rds_loop_conn_alloc() 153 list_add_tail(&lc->loop_node, &loop_conns); in rds_loop_conn_alloc() 161 struct rds_loop_connection *lc = arg; in rds_loop_conn_free() local 164 rdsdebug("lc %p\n", lc); in rds_loop_conn_free() 166 list_del(&lc->loop_node); in rds_loop_conn_free() [all …]
|
| /linux/tools/testing/selftests/powerpc/papr_vpd/ |
| H A D | papr_vpd.c | 32 struct papr_location_code lc = { .str = "", }; in dev_papr_vpd_get_handle_all() local 42 fd = ioctl(devfd, PAPR_VPD_IOC_CREATE_HANDLE, &lc); in dev_papr_vpd_get_handle_all() 71 struct papr_location_code lc = { .str = "", }; in dev_papr_vpd_get_handle_byte_at_a_time() local 80 fd = ioctl(devfd, PAPR_VPD_IOC_CREATE_HANDLE, &lc); in dev_papr_vpd_get_handle_byte_at_a_time() 112 struct papr_location_code lc = {}; in dev_papr_vpd_unterm_loc_code() local 124 memset(lc.str, 'x', ARRAY_SIZE(lc.str)); in dev_papr_vpd_unterm_loc_code() 127 fd = ioctl(devfd, PAPR_VPD_IOC_CREATE_HANDLE, &lc); in dev_papr_vpd_unterm_loc_code() 157 struct papr_location_code lc = { .str = "", }; in papr_vpd_close_handle_without_reading() local 166 fd = ioctl(devfd, PAPR_VPD_IOC_CREATE_HANDLE, &lc); in papr_vpd_close_handle_without_reading() 180 struct papr_location_code lc = { .str = "", }; in papr_vpd_reread() local [all …]
|
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | setget_sockopt.c | 157 static int bpf_test_socket_sockopt(__u32 i, struct loop_ctx *lc) in bpf_test_socket_sockopt() argument 169 return bpf_test_sockopt_flip(lc->ctx, lc->sk, t, SOL_SOCKET); in bpf_test_socket_sockopt() 171 return bpf_test_sockopt_int(lc->ctx, lc->sk, t, SOL_SOCKET); in bpf_test_socket_sockopt() 174 static int bpf_test_ip_sockopt(__u32 i, struct loop_ctx *lc) in bpf_test_ip_sockopt() argument 186 return bpf_test_sockopt_flip(lc->ctx, lc->sk, t, IPPROTO_IP); in bpf_test_ip_sockopt() 188 return bpf_test_sockopt_int(lc->ctx, lc->sk, t, IPPROTO_IP); in bpf_test_ip_sockopt() 191 static int bpf_test_ipv6_sockopt(__u32 i, struct loop_ctx *lc) in bpf_test_ipv6_sockopt() argument 203 return bpf_test_sockopt_flip(lc->ctx, lc->sk, t, IPPROTO_IPV6); in bpf_test_ipv6_sockopt() 205 return bpf_test_sockopt_int(lc->ctx, lc->sk, t, IPPROTO_IPV6); in bpf_test_ipv6_sockopt() 208 static int bpf_test_tcp_sockopt(__u32 i, struct loop_ctx *lc) in bpf_test_tcp_sockopt() argument [all …]
|
| /linux/drivers/accessibility/speakup/ |
| H A D | genmap.c | 74 lc++; in main() 129 for (lc = 1; lc <= max_key_used; lc++) { in main() 130 kp = key_data[lc]; in main() 150 for (lc = 1; lc <= max_key_used; lc++) { in main() 151 kp = key_data[lc]; in main() 154 printf("\n\t%d,", lc); in main()
|
| H A D | utils.h | 28 int lc; variable 43 lc = 0; in open_input() 50 fprintf(stderr, "error: file %s line %d\n", filename, lc); in oops()
|
| /linux/Documentation/networking/devlink/ |
| H A D | devlink-linecard.rst | 112 $ devlink lc show [ DEV [ lc LC_INDEX ] ] 113 $ devlink lc set DEV lc LC_INDEX [ { type LC_TYPE | notype } ] 116 $ devlink lc 119 $ devlink lc set pci/0000:01:00.0 lc 8 type 16x100G 122 $ devlink lc set pci/0000:01:00.0 lc 8 notype
|
| /linux/drivers/net/ethernet/chelsio/cxgb4vf/ |
| H A D | t4vf_hw.c | 456 static void init_link_config(struct link_config *lc, in init_link_config() argument 460 lc->pcaps = pcaps; in init_link_config() 461 lc->lpacaps = 0; in init_link_config() 462 lc->speed_caps = 0; in init_link_config() 463 lc->speed = 0; in init_link_config() 464 lc->requested_fc = lc->fc = PAUSE_RX | PAUSE_TX; in init_link_config() 469 lc->auto_fec = fwcap_to_cc_fec(acaps); in init_link_config() 470 lc->requested_fec = FEC_AUTO; in init_link_config() 471 lc->fec = lc->auto_fec; in init_link_config() 480 if (lc->pcaps & FW_PORT_CAP32_ANEG) { in init_link_config() [all …]
|
| /linux/drivers/net/ethernet/chelsio/cxgb3/ |
| H A D | t3_hw.c | 1181 struct link_config *lc = &pi->link_config; in t3_link_changed() local 1185 if (!lc->link_ok && link_ok) { in t3_link_changed() 1202 if (lc->requested_fc & PAUSE_AUTONEG) in t3_link_changed() 1203 fc &= lc->requested_fc; in t3_link_changed() 1205 fc = lc->requested_fc & (PAUSE_RX | PAUSE_TX); in t3_link_changed() 1207 if (link_ok == lc->link_ok && speed == lc->speed && in t3_link_changed() 1208 duplex == lc->duplex && fc == lc->fc) in t3_link_changed() 1211 if (link_ok != lc->link_ok && adapter->params.rev > 0 && in t3_link_changed() 1218 lc->link_ok = link_ok; in t3_link_changed() 1219 lc->speed = speed < 0 ? SPEED_INVALID : speed; in t3_link_changed() [all …]
|
| /linux/arch/s390/kernel/ |
| H A D | crash_dump.c | 89 struct lowcore *lc; in save_area_add_regs() local 91 lc = (struct lowcore *)(regs - __LC_FPREGS_SAVE_AREA); in save_area_add_regs() 92 memcpy(&sa->psw, &lc->psw_save_area, sizeof(sa->psw)); in save_area_add_regs() 93 memcpy(&sa->ctrs, &lc->cregs_save_area, sizeof(sa->ctrs)); in save_area_add_regs() 94 memcpy(&sa->gprs, &lc->gpregs_save_area, sizeof(sa->gprs)); in save_area_add_regs() 95 memcpy(&sa->acrs, &lc->access_regs_save_area, sizeof(sa->acrs)); in save_area_add_regs() 96 memcpy(&sa->fprs, &lc->floating_pt_save_area, sizeof(sa->fprs)); in save_area_add_regs() 97 memcpy(&sa->fpc, &lc->fpt_creg_save_area, sizeof(sa->fpc)); in save_area_add_regs() 98 memcpy(&sa->prefix, &lc->prefixreg_save_area, sizeof(sa->prefix)); in save_area_add_regs() 99 memcpy(&sa->todpreg, &lc->tod_progreg_save_area, sizeof(sa->todpreg)); in save_area_add_regs() [all …]
|
| H A D | ctlreg.c | 37 void __init system_ctlreg_init_save_area(struct lowcore *lc) in system_ctlreg_init_save_area() argument 42 __local_ctl_store(0, 15, lc->cregs_save_area); in system_ctlreg_init_save_area()
|
| /linux/net/tipc/ |
| H A D | netlink_compat.c | 708 struct tipc_link_config *lc) in __tipc_add_link_prop() argument 712 return nla_put_u32(skb, TIPC_NLA_PROP_PRIO, ntohl(lc->value)); in __tipc_add_link_prop() 714 return nla_put_u32(skb, TIPC_NLA_PROP_TOL, ntohl(lc->value)); in __tipc_add_link_prop() 716 return nla_put_u32(skb, TIPC_NLA_PROP_WIN, ntohl(lc->value)); in __tipc_add_link_prop() 727 struct tipc_link_config *lc; in tipc_nl_compat_media_set() local 729 lc = (struct tipc_link_config *)TLV_DATA(msg->req); in tipc_nl_compat_media_set() 735 if (nla_put_string(skb, TIPC_NLA_MEDIA_NAME, lc->name)) in tipc_nl_compat_media_set() 742 __tipc_add_link_prop(skb, msg, lc); in tipc_nl_compat_media_set() 754 struct tipc_link_config *lc; in tipc_nl_compat_bearer_set() local 756 lc = (struct tipc_link_config *)TLV_DATA(msg->req); in tipc_nl_compat_bearer_set() [all …]
|
| /linux/arch/riscv/kvm/ |
| H A D | aia.c | 440 const struct imsic_local_config *lc; in kvm_riscv_aia_alloc_hgei() local 457 lc = (gc) ? per_cpu_ptr(gc->local, cpu) : NULL; in kvm_riscv_aia_alloc_hgei() 458 if (lc && ret > 0) { in kvm_riscv_aia_alloc_hgei() 460 *hgei_va = lc->msi_va + (ret * IMSIC_MMIO_PAGE_SZ); in kvm_riscv_aia_alloc_hgei() 462 *hgei_pa = lc->msi_pa + (ret * IMSIC_MMIO_PAGE_SZ); in kvm_riscv_aia_alloc_hgei() 559 const struct imsic_local_config *lc; in kvm_riscv_aia_enable() local 568 lc = (gc) ? this_cpu_ptr(gc->local) : NULL; in kvm_riscv_aia_enable() 582 if (lc) in kvm_riscv_aia_enable() 583 hgctrl->nr_hgei = min((ulong)hgctrl->nr_hgei, lc->nr_guest_files); in kvm_riscv_aia_enable()
|
| /linux/lib/zlib_deflate/ |
| H A D | deftree.c | 918 unsigned lc /* match length-MIN_MATCH or unmatched char (if dist==0) */ argument 922 s->l_buf[s->last_lit++] = (uch)lc; 925 s->dyn_ltree[lc].Freq++; 931 (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) && 934 s->dyn_ltree[length_code[lc]+LITERALS+1].Freq++; 971 int lc; /* match length or unmatched char (if dist == 0) */ local 978 lc = s->l_buf[lx++]; 980 send_code(s, lc, ltree); /* send a literal byte */ 981 Tracecv(isgraph(lc), (stderr," '%c' ", lc)); 984 code = length_code[lc]; [all …]
|
| /linux/arch/x86/boot/ |
| H A D | string.c | 266 unsigned int lc = c | 0x20; /* don't tolower() this line */ in _parse_integer() local 271 else if ('a' <= lc && lc <= 'f') in _parse_integer() 272 val = lc - 'a' + 10; in _parse_integer()
|
| /linux/drivers/net/ethernet/chelsio/cxgb4/ |
| H A D | cxgb4_ethtool.c | 721 struct link_config *lc = &pi->link_cfg; in set_link_ksettings() local 731 old_lc = *lc; in set_link_ksettings() 732 if (!(lc->pcaps & FW_PORT_CAP32_ANEG) || in set_link_ksettings() 737 if (!(lc->pcaps & fw_caps)) in set_link_ksettings() 740 lc->speed_caps = fw_caps; in set_link_ksettings() 741 lc->acaps = fw_caps; in set_link_ksettings() 745 if (!(lc->pcaps & fw_caps)) in set_link_ksettings() 747 lc->speed_caps = 0; in set_link_ksettings() 748 lc->acaps = fw_caps | FW_PORT_CAP32_ANEG; in set_link_ksettings() 750 lc->autoneg = base->autoneg; in set_link_ksettings() [all …]
|
| H A D | t4_hw.c | 4109 struct link_config *lc) in t4_link_acaps() argument 4115 fw_mdi = (FW_PORT_CAP32_MDI_V(FW_PORT_CAP32_MDI_AUTO) & lc->pcaps); in t4_link_acaps() 4120 fw_fc = cc_to_fwcap_pause(lc->requested_fc); in t4_link_acaps() 4129 if (lc->requested_fec & FEC_AUTO) in t4_link_acaps() 4130 cc_fec = fwcap_to_cc_fec(lc->def_acaps); in t4_link_acaps() 4132 cc_fec = lc->requested_fec; in t4_link_acaps() 4139 if (!(lc->pcaps & FW_PORT_CAP32_ANEG)) { in t4_link_acaps() 4140 acaps = lc->acaps | fw_fc | fw_fec; in t4_link_acaps() 4141 lc->fc = lc->requested_fc & ~PAUSE_AUTONEG; in t4_link_acaps() 4142 lc->fec = cc_fec; in t4_link_acaps() [all …]
|
| /linux/drivers/scsi/csiostor/ |
| H A D | csio_hw.c | 1688 static void csio_init_link_config(struct link_config *lc, fw_port_cap32_t pcaps, in csio_init_link_config() argument 1691 lc->pcaps = pcaps; in csio_init_link_config() 1692 lc->def_acaps = acaps; in csio_init_link_config() 1693 lc->lpacaps = 0; in csio_init_link_config() 1694 lc->speed_caps = 0; in csio_init_link_config() 1695 lc->speed = 0; in csio_init_link_config() 1696 lc->requested_fc = PAUSE_RX | PAUSE_TX; in csio_init_link_config() 1697 lc->fc = lc->requested_fc; in csio_init_link_config() 1703 lc->requested_fec = FEC_AUTO; in csio_init_link_config() 1704 lc->fec = fwcap_to_cc_fec(lc->def_acaps); in csio_init_link_config() [all …]
|
| /linux/fs/hpfs/ |
| H A D | name.c | 55 unsigned len, int lc, int lng) in hpfs_translate_name() argument 66 if (!lc) return from; in hpfs_translate_name()
|