Searched refs:feat (Results 1 - 49 of 49) sorted by relevance

/linux-4.4.14/net/dccp/
H A Dfeat.c2 * net/dccp/feat.c
28 #include "feat.h"
216 static const char *dccp_feat_fname(const u8 feat) dccp_feat_fname() argument
230 if (feat > DCCPF_DATA_CHECKSUM && feat < DCCPF_MIN_CCID_SPECIFIC) dccp_feat_fname()
233 if (feat == DCCPF_SEND_LEV_RATE) dccp_feat_fname()
235 if (feat >= DCCPF_MIN_CCID_SPECIFIC) dccp_feat_fname()
238 return feature_names[feat]; dccp_feat_fname()
291 #define dccp_feat_print_opt(opt, feat, val, len, mandatory) do { \
292 dccp_pr_debug("%s(%s, ", dccp_feat_oname(opt), dccp_feat_fname(feat));\
293 dccp_feat_printvals(feat, val, len); \
304 #define dccp_feat_print_opt(opt, feat, val, len, mandatory)
448 * @feat: feature number
449 * @local: whether the local (1) or remote feature with number @feat is meant
454 dccp_feat_entry_new(struct list_head *head, u8 feat, bool local) dccp_feat_entry_new() argument
459 if (entry->feat_num == feat && entry->is_local == local) { list_for_each_entry()
462 } else if (entry->feat_num > feat) {
469 entry->feat_num = feat;
479 * @feat: one of %dccp_feature_numbers
484 static int dccp_feat_push_change(struct list_head *fn_list, u8 feat, u8 local, dccp_feat_push_change() argument
487 struct dccp_feat_entry *new = dccp_feat_entry_new(fn_list, feat, local); dccp_feat_push_change()
492 new->feat_num = feat; dccp_feat_push_change()
506 * @feat: one of %dccp_feature_numbers
512 static int dccp_feat_push_confirm(struct list_head *fn_list, u8 feat, u8 local, dccp_feat_push_confirm() argument
515 struct dccp_feat_entry *new = dccp_feat_entry_new(fn_list, feat, local); dccp_feat_push_confirm()
520 new->feat_num = feat; dccp_feat_push_confirm()
533 static int dccp_push_empty_confirm(struct list_head *fn_list, u8 feat, u8 local) dccp_push_empty_confirm() argument
535 return dccp_feat_push_confirm(fn_list, feat, local, NULL); dccp_push_empty_confirm()
694 * @feat: an NN feature from %dccp_feature_numbers
700 static int __feat_register_nn(struct list_head *fn, u8 feat, __feat_register_nn() argument
705 if (dccp_feat_type(feat) != FEAT_NN || __feat_register_nn()
706 !dccp_feat_is_valid_nn_val(feat, nn_val)) __feat_register_nn()
710 if (nn_val - (u64)dccp_feat_default_value(feat) == 0) __feat_register_nn()
713 return dccp_feat_push_change(fn, feat, 1, mandatory, &fval); __feat_register_nn()
719 * @feat: an SP feature from %dccp_feature_numbers
720 * @is_local: whether the local (1) or the remote (0) @feat is meant
725 static int __feat_register_sp(struct list_head *fn, u8 feat, u8 is_local, __feat_register_sp() argument
730 if (dccp_feat_type(feat) != FEAT_SP || __feat_register_sp()
731 !dccp_feat_sp_list_ok(feat, sp_val, sp_len)) __feat_register_sp()
735 if (feat == DCCPF_CCID && !ccid_support_check(sp_val, sp_len)) __feat_register_sp()
741 return dccp_feat_push_change(fn, feat, is_local, mandatory, &fval); __feat_register_sp()
747 * @feat: one of %dccp_feature_numbers
748 * @is_local: whether the local (1) or remote (0) @feat is meant
752 int dccp_feat_register_sp(struct sock *sk, u8 feat, u8 is_local, dccp_feat_register_sp() argument
757 if (dccp_feat_type(feat) != FEAT_SP) dccp_feat_register_sp()
759 return __feat_register_sp(&dccp_sk(sk)->dccps_featneg, feat, is_local, dccp_feat_register_sp()
766 * @feat: NN feature number from %dccp_feature_numbers
771 u64 dccp_feat_nn_get(struct sock *sk, u8 feat) dccp_feat_nn_get() argument
773 if (dccp_feat_type(feat) == FEAT_NN) { dccp_feat_nn_get()
777 entry = dccp_feat_list_lookup(&dp->dccps_featneg, feat, 1); dccp_feat_nn_get()
781 switch (feat) { dccp_feat_nn_get()
788 DCCP_BUG("attempt to look up unsupported feature %u", feat); dccp_feat_nn_get()
796 * @feat: NN feature number from %dccp_feature_numbers
801 int dccp_feat_signal_nn_change(struct sock *sk, u8 feat, u64 nn_val) dccp_feat_signal_nn_change() argument
810 if (dccp_feat_type(feat) != FEAT_NN || dccp_feat_signal_nn_change()
811 !dccp_feat_is_valid_nn_val(feat, nn_val)) dccp_feat_signal_nn_change()
814 if (nn_val == dccp_feat_nn_get(sk, feat)) dccp_feat_signal_nn_change()
817 entry = dccp_feat_list_lookup(fn, feat, 1); dccp_feat_signal_nn_change()
826 return dccp_feat_push_change(fn, feat, 1, 0, &fval); dccp_feat_signal_nn_change()
1092 * @feat: one of %dccp_feature_numbers
1098 u8 feat, u8 *val, u8 len, const bool server) dccp_feat_change_recv()
1100 u8 defval, type = dccp_feat_type(feat); dccp_feat_change_recv()
1108 dccp_feat_print_opt(opt, feat, val, len, is_mandatory); dccp_feat_change_recv()
1120 if (!dccp_feat_is_valid_nn_val(feat, fval.nn)) dccp_feat_change_recv()
1123 return dccp_feat_push_confirm(fn, feat, local, &fval); dccp_feat_change_recv()
1129 entry = dccp_feat_list_lookup(fn, feat, local); dccp_feat_change_recv()
1145 defval = dccp_feat_default_value(feat); dccp_feat_change_recv()
1148 } else if (!dccp_feat_is_valid_sp_val(feat, fval.sp.vec[0])) { dccp_feat_change_recv()
1154 if (feat == DCCPF_CCID && !ccid_support_check(fval.sp.vec, 1)) { dccp_feat_change_recv()
1159 return dccp_feat_push_confirm(fn, feat, local, &fval); dccp_feat_change_recv()
1173 * value for @feat. If yes, send an empty Confirm to signal that dccp_feat_change_recv()
1179 defval = dccp_feat_default_value(feat); dccp_feat_change_recv()
1191 return dccp_push_empty_confirm(fn, feat, local); dccp_feat_change_recv()
1203 * @feat: one of %dccp_feature_numbers
1209 u8 feat, u8 *val, u8 len, const bool server) dccp_feat_confirm_recv()
1211 u8 *plist, plen, type = dccp_feat_type(feat); dccp_feat_confirm_recv()
1213 struct dccp_feat_entry *entry = dccp_feat_list_lookup(fn, feat, local); dccp_feat_confirm_recv()
1215 dccp_feat_print_opt(opt, feat, val, len, is_mandatory); dccp_feat_confirm_recv()
1230 if (dccp_feat_must_be_understood(feat)) /* 6.6.7 */ dccp_feat_confirm_recv()
1259 if (!dccp_feat_is_valid_sp_val(feat, *val)) dccp_feat_confirm_recv()
1292 * @feat: NN number, one of %dccp_feature_numbers
1306 u8 feat, u8 *val, u8 len) dccp_feat_handle_nn_established()
1311 u8 type = dccp_feat_type(feat); dccp_feat_handle_nn_established()
1314 dccp_feat_print_opt(opt, feat, val, len, mandatory); dccp_feat_handle_nn_established()
1336 if (!dccp_feat_is_valid_nn_val(feat, fval.nn)) dccp_feat_handle_nn_established()
1339 if (dccp_feat_push_confirm(fn, feat, local, &fval) || dccp_feat_handle_nn_established()
1340 dccp_feat_activate(sk, feat, local, &fval)) dccp_feat_handle_nn_established()
1347 entry = dccp_feat_list_lookup(fn, feat, local); dccp_feat_handle_nn_established()
1362 dccp_feat_activate(sk, feat, local, &fval); dccp_feat_handle_nn_established()
1375 return dccp_push_empty_confirm(fn, feat, local); dccp_feat_handle_nn_established()
1388 * @feat: one of %dccp_feature_numbers
1395 u8 mandatory, u8 opt, u8 feat, u8 *val, u8 len) dccp_feat_parse_options()
1411 return dccp_feat_change_recv(fn, mandatory, opt, feat, dccp_feat_parse_options()
1415 return dccp_feat_confirm_recv(fn, mandatory, opt, feat, dccp_feat_parse_options()
1424 return dccp_feat_handle_nn_established(sk, mandatory, opt, feat, dccp_feat_parse_options()
1097 dccp_feat_change_recv(struct list_head *fn, u8 is_mandatory, u8 opt, u8 feat, u8 *val, u8 len, const bool server) dccp_feat_change_recv() argument
1208 dccp_feat_confirm_recv(struct list_head *fn, u8 is_mandatory, u8 opt, u8 feat, u8 *val, u8 len, const bool server) dccp_feat_confirm_recv() argument
1305 dccp_feat_handle_nn_established(struct sock *sk, u8 mandatory, u8 opt, u8 feat, u8 *val, u8 len) dccp_feat_handle_nn_established() argument
1394 dccp_feat_parse_options(struct sock *sk, struct dccp_request_sock *dreq, u8 mandatory, u8 opt, u8 feat, u8 *val, u8 len) dccp_feat_parse_options() argument
H A DMakefile3 dccp-y := ccid.o feat.o input.o minisocks.o options.o output.o proto.o timer.o \
H A Dfeat.h4 * net/dccp/feat.h
112 int dccp_feat_register_sp(struct sock *sk, u8 feat, u8 is_local,
115 u8 mand, u8 opt, u8 feat, u8 *val, u8 len);
132 u64 dccp_feat_nn_get(struct sock *sk, u8 feat);
135 int dccp_insert_fn_opt(struct sk_buff *skb, u8 type, u8 feat, u8 *val, u8 len,
H A Dsysctl.c15 #include "feat.h"
H A Doptions.c24 #include "feat.h"
494 * @feat: one out of %dccp_feature_numbers
504 int dccp_insert_fn_opt(struct sk_buff *skb, u8 type, u8 feat, dccp_insert_fn_opt() argument
511 DCCP_WARN("length %u for feature %u too large\n", len, feat); dccp_insert_fn_opt()
520 DCCP_WARN("packet too small for feature %d option!\n", feat); dccp_insert_fn_opt()
528 *to++ = feat; dccp_insert_fn_opt()
H A Dminisocks.c26 #include "feat.h"
H A Dproto.c38 #include "feat.h"
192 /* control socket doesn't need feat nego */ dccp_init_sock()
H A Ddccp.h472 int dccp_feat_signal_nn_change(struct sock *sk, u8 feat, u64 nn_val);
H A Dipv4.c34 #include "feat.h"
H A Dipv6.c36 #include "feat.h"
/linux-4.4.14/arch/s390/include/asm/
H A Dcpufeature.h25 #define cpu_feature(feat) ilog2(HWCAP_S390_ ## feat)
/linux-4.4.14/tools/perf/util/
H A Dheader.h88 void perf_header__set_feat(struct perf_header *header, int feat);
89 void perf_header__clear_feat(struct perf_header *header, int feat);
90 bool perf_header__has_feat(const struct perf_header *header, int feat);
98 int feat, int fd, void *data));
H A Dheader.c47 void perf_header__set_feat(struct perf_header *header, int feat) perf_header__set_feat() argument
49 set_bit(feat, header->adds_features); perf_header__set_feat()
52 void perf_header__clear_feat(struct perf_header *header, int feat) perf_header__clear_feat() argument
54 clear_bit(feat, header->adds_features); perf_header__clear_feat()
57 bool perf_header__has_feat(const struct perf_header *header, int feat) perf_header__has_feat() argument
59 return test_bit(feat, header->adds_features); perf_header__has_feat()
1960 int feat, int fd, void *data) perf_file_section__fprintf_info()
1966 "%d, continuing...\n", section->offset, feat); perf_file_section__fprintf_info()
1969 if (feat >= HEADER_LAST_FEATURE) { perf_file_section__fprintf_info()
1970 pr_warning("unknown feature %d\n", feat); perf_file_section__fprintf_info()
1973 if (!feat_ops[feat].print) perf_file_section__fprintf_info()
1976 if (!feat_ops[feat].full_only || hd->full) perf_file_section__fprintf_info()
1977 feat_ops[feat].print(ph, fd, hd->fp); perf_file_section__fprintf_info()
1980 feat_ops[feat].name); perf_file_section__fprintf_info()
2033 int feat; perf_header__adds_write() local
2049 for_each_set_bit(feat, header->adds_features, HEADER_FEAT_BITS) { perf_header__adds_write()
2050 if (do_write_feat(fd, header, feat, &p, evlist)) perf_header__adds_write()
2051 perf_header__clear_feat(header, feat); perf_header__adds_write()
2178 int feat, int fd, void *data)) perf_header__process_sections()
2183 int feat; perf_header__process_sections() local
2202 for_each_set_bit(feat, header->adds_features, HEADER_LAST_FEATURE) { perf_header__process_sections()
2203 err = process(sec++, header, feat, fd, data); perf_header__process_sections()
2404 int feat, int fd, void *data) perf_file_section__process()
2408 "%d, continuing...\n", section->offset, feat); perf_file_section__process()
2412 if (feat >= HEADER_LAST_FEATURE) { perf_file_section__process()
2413 pr_debug("unknown feature %d, continuing...\n", feat); perf_file_section__process()
2417 if (!feat_ops[feat].process) perf_file_section__process()
2420 return feat_ops[feat].process(section, ph, fd, data); perf_file_section__process()
1958 perf_file_section__fprintf_info(struct perf_file_section *section, struct perf_header *ph, int feat, int fd, void *data) perf_file_section__fprintf_info() argument
2174 perf_header__process_sections(struct perf_header *header, int fd, void *data, int (*process)(struct perf_file_section *section, struct perf_header *ph, int feat, int fd, void *data)) perf_header__process_sections() argument
2402 perf_file_section__process(struct perf_file_section *section, struct perf_header *ph, int feat, int fd, void *data) perf_file_section__process() argument
/linux-4.4.14/drivers/misc/
H A Dad525x_dpot.c91 unsigned feat; member in struct:dpot_data
134 if (dpot->feat & F_RDACS_WONLY) dpot_read_spi()
167 if (dpot->feat & F_SPI_16BIT) dpot_read_spi()
169 else if (dpot->feat & F_SPI_24BIT) dpot_read_spi()
233 if (dpot->feat & F_SPI) dpot_read()
244 if (dpot->feat & F_RDACS_WONLY) dpot_write_spi()
247 if (dpot->feat & F_AD_APPDATA) { dpot_write_spi()
248 if (dpot->feat & F_SPI_8BIT) { dpot_write_spi()
253 } else if (dpot->feat & F_SPI_16BIT) { dpot_write_spi()
320 if (dpot->feat & F_SPI_16BIT) dpot_write_spi()
322 else if (dpot->feat & F_SPI_24BIT) dpot_write_spi()
405 if (dpot->feat & F_SPI) dpot_write()
704 data->feat = DPOT_FEAT(devid); ad_dpot_probe()
710 err = ad_dpot_add_files(dev, data->feat, i); ad_dpot_probe()
714 if (data->feat & F_RDACS_WONLY) ad_dpot_probe()
718 if (data->feat & F_CMD_INC) ad_dpot_probe()
734 ad_dpot_remove_files(dev, data->feat, i); ad_dpot_probe()
753 ad_dpot_remove_files(dev, data->feat, i); ad_dpot_remove()
/linux-4.4.14/arch/powerpc/platforms/pseries/
H A Dfirmware.c118 unsigned int index, feat; fw_vec5_feature_init() local
125 feat = OV5_FEAT(vec5_fw_features_table[i].feature); fw_vec5_feature_init()
127 if (vec5[index] & feat) fw_vec5_feature_init()
/linux-4.4.14/drivers/video/fbdev/omap2/dss/
H A Ddss.c101 const struct dss_features *feat; member in struct:__anon11190
544 fckd_hw_max = dss.feat->fck_div_max; dss_div_calc()
546 m = dss.feat->dss_fck_multiplier; dss_div_calc()
602 fck_div = DIV_ROUND_UP(prate * dss.feat->dss_fck_multiplier, dss_setup_default_clock()
604 fck = DIV_ROUND_UP(prate, fck_div) * dss.feat->dss_fck_multiplier; dss_setup_default_clock()
738 return dss.feat->dpi_select_source(port, channel); dss_dpi_select_source()
753 if (dss.feat->parent_clk_name) { dss_get_clocks()
754 clk = clk_get(NULL, dss.feat->parent_clk_name); dss_get_clocks()
756 DSSERR("Failed to get %s\n", dss.feat->parent_clk_name); dss_get_clocks()
939 dss.feat = dst; dss_init_features()
957 if (dss.feat->num_ports == 0) dss_init_ports()
968 if (reg >= dss.feat->num_ports) dss_init_ports()
971 port_type = dss.feat->ports[reg]; dss_init_ports()
1000 if (dss.feat->num_ports == 0) dss_uninit_ports()
1012 if (reg >= dss.feat->num_ports) dss_uninit_ports()
1015 port_type = dss.feat->ports[reg]; dss_uninit_ports()
H A Ddispc.c124 const struct dispc_features *feat; member in struct:__anon11186
548 if (channel == OMAP_DSS_CHANNEL_DIGIT && dispc.feat->no_framedone_tv) dispc_mgr_get_framedone_irq()
1133 val = FLD_VAL(height - 1, dispc.feat->mgr_height_start, 16) | dispc_mgr_set_size()
1134 FLD_VAL(width - 1, dispc.feat->mgr_width_start, 0); dispc_mgr_set_size()
1151 for (fifo = 0; fifo < dispc.feat->num_fifos; ++fifo) { dispc_init_fifos()
1170 if (dispc.feat->gfx_fifo_workaround) { dispc_init_fifos()
1206 for (fifo = 0; fifo < dispc.feat->num_fifos; ++fifo) { dispc_ovl_get_fifo_size()
1247 if (dss_has_feature(FEAT_PRELOAD) && dispc.feat->set_max_preload && dispc_ovl_set_fifo_threshold()
2267 *core_clk = dispc.feat->calc_core_clk(pclk, in_width, dispc_ovl_calc_scaling_24xx()
2322 *core_clk = dispc.feat->calc_core_clk(pclk, in_width, dispc_ovl_calc_scaling_34xx()
2417 *core_clk = dispc.feat->calc_core_clk(pclk, in_width, in_height, dispc_ovl_calc_scaling_44xx()
2477 ret = dispc.feat->calc_scaling(pclk, lclk, mgr_timings, width, height, dispc_ovl_calc_scaling()
2714 if (dispc.feat->last_pixel_inc_missing) dispc_ovl_setup_common()
3030 return width <= dispc.feat->mgr_width_max && _dispc_mgr_size_ok()
3031 height <= dispc.feat->mgr_height_max; _dispc_mgr_size_ok()
3037 if (hsw < 1 || hsw > dispc.feat->sw_max || _dispc_lcd_timings_ok()
3038 hfp < 1 || hfp > dispc.feat->hp_max || _dispc_lcd_timings_ok()
3039 hbp < 1 || hbp > dispc.feat->hp_max || _dispc_lcd_timings_ok()
3040 vsw < 1 || vsw > dispc.feat->sw_max || _dispc_lcd_timings_ok()
3041 vfp < 0 || vfp > dispc.feat->vp_max || _dispc_lcd_timings_ok()
3042 vbp < 0 || vbp > dispc.feat->vp_max) _dispc_lcd_timings_ok()
3051 return pclk <= dispc.feat->max_lcd_pclk ? true : false; _dispc_mgr_pclk_ok()
3053 return pclk <= dispc.feat->max_tv_pclk ? true : false; _dispc_mgr_pclk_ok()
3091 timing_h = FLD_VAL(hsw-1, dispc.feat->sw_start, 0) | _dispc_mgr_set_lcd_timings()
3092 FLD_VAL(hfp-1, dispc.feat->fp_start, 8) | _dispc_mgr_set_lcd_timings()
3093 FLD_VAL(hbp-1, dispc.feat->bp_start, 20); _dispc_mgr_set_lcd_timings()
3094 timing_v = FLD_VAL(vsw-1, dispc.feat->sw_start, 0) | _dispc_mgr_set_lcd_timings()
3095 FLD_VAL(vfp, dispc.feat->fp_start, 8) | _dispc_mgr_set_lcd_timings()
3096 FLD_VAL(vbp, dispc.feat->bp_start, 20); _dispc_mgr_set_lcd_timings()
3770 if (dispc.feat->mstandby_workaround) _omap_dispc_initial_config()
3923 dispc.feat = dst; dispc_init_features()
/linux-4.4.14/arch/arm/mach-omap2/
H A Did.c206 #define OMAP3_SHOW_FEATURE(feat) \
207 if (omap3_has_ ##feat()) \
208 printk(#feat" ");
259 #define OMAP3_CHECK_FEATURE(status,feat) \
260 if (((status & OMAP3_ ##feat## _MASK) \
261 >> OMAP3_ ##feat## _SHIFT) != FEAT_ ##feat## _NONE) { \
262 omap_features |= OMAP3_HAS_ ##feat; \
H A Dsoc.h510 #define OMAP3_HAS_FEATURE(feat,flag) \
511 static inline unsigned int omap3_has_ ##feat(void) \
529 #define OMAP4_HAS_FEATURE(feat, flag) \
530 static inline unsigned int omap4_has_ ##feat(void) \
/linux-4.4.14/arch/arm/mm/
H A Dcache-tauros2.c211 u32 feat; tauros2_internal_init() local
217 feat = read_extra_features(); tauros2_internal_init()
218 if (!(feat & 0x00400000)) { tauros2_internal_init()
220 write_extra_features(feat | 0x00400000); tauros2_internal_init()
/linux-4.4.14/drivers/usb/wusbcore/
H A Drh.c273 dev_err(dev, "(port_idx %d) set feat %d/%d UNIMPLEMENTED\n", wusbhc_rh_set_port_feat()
277 dev_err(dev, "(port_idx %d) set feat %d/%d UNKNOWN\n", wusbhc_rh_set_port_feat()
319 dev_err(dev, "(port_idx %d) Clear feat %d/%d UNIMPLEMENTED\n", wusbhc_rh_clear_port_feat()
324 dev_err(dev, "(port_idx %d) Clear feat %d/%d UNKNOWN\n", wusbhc_rh_clear_port_feat()
/linux-4.4.14/drivers/net/wireless/ath/carl9170/
H A Dfw.c252 #define SUPP(feat) \ carl9170_fw()
253 (carl9170fw_supports(otus_desc->feature_set, feat)) carl9170_fw()
/linux-4.4.14/drivers/media/usb/em28xx/
H A Dem28xx-core.c506 int vid1, vid2, feat, cfg; em28xx_audio_setup() local
576 feat = em28xx_read_ac97(dev, AC97_RESET); em28xx_audio_setup()
577 if (feat < 0) em28xx_audio_setup()
580 em28xx_warn("AC97 features = 0x%04x\n", feat); em28xx_audio_setup()
583 if (((vid == 0xffffffff) || (vid == 0x83847650)) && (feat == 0x6a90)) em28xx_audio_setup()
/linux-4.4.14/tools/perf/
H A Dbuiltin-record.c439 int feat; record__init_features() local
441 for (feat = HEADER_FIRST_FEATURE; feat < HEADER_LAST_FEATURE; feat++) record__init_features()
442 perf_header__set_feat(&session->header, feat); record__init_features()
H A Dbuiltin-timechart.c1508 int feat, process_header()
1514 switch (feat) { process_header()
1506 process_header(struct perf_file_section *section __maybe_unused, struct perf_header *ph, int feat, int fd __maybe_unused, void *data) process_header() argument
/linux-4.4.14/drivers/usb/gadget/legacy/
H A Ddbgp.c366 dev_dbg(&dbgp.gadget->dev, "setup: feat debug\n"); dbgp_setup()
/linux-4.4.14/drivers/scsi/
H A Dgdth.h205 #define GDT_SET_FEAT 12 /* set feat. (scatter/gather) */
845 u16 cache_feat; /* feat. cache serv. (s/g,..)*/
846 u16 raw_feat; /* feat. raw service (s/g,..)*/
847 u16 screen_feat; /* feat. raw service (s/g,..)*/
H A Dgdth.c1849 TRACE2(("gdth_search_dr(): get feat RAWSERVICE %d\n", gdth_search_drives()
1860 TRACE2(("gdth_search_dr(): get feat CACHESERV. %d\n", gdth_search_drives()
/linux-4.4.14/include/linux/ceph/
H A Dlibceph.h32 #define CEPH_OPT_NOMSGAUTH (1<<4) /* don't require msg signing feat */
/linux-4.4.14/arch/arm/mach-exynos/
H A Dexynos.c199 * feat, the matches below should be moved to suspend.c.
/linux-4.4.14/drivers/net/wireless/ath/ath10k/
H A Dcore.c218 enum ath10k_fw_features feat) ath10k_core_get_fw_feature_str()
224 if (feat >= ARRAY_SIZE(ath10k_core_fw_feature_str) || ath10k_core_get_fw_feature_str()
225 WARN_ON(!ath10k_core_fw_feature_str[feat])) { ath10k_core_get_fw_feature_str()
226 return scnprintf(buf, buf_len, "bit%d", feat); ath10k_core_get_fw_feature_str()
229 return scnprintf(buf, buf_len, "%s", ath10k_core_fw_feature_str[feat]); ath10k_core_get_fw_feature_str()
216 ath10k_core_get_fw_feature_str(char *buf, size_t buf_len, enum ath10k_fw_features feat) ath10k_core_get_fw_feature_str() argument
/linux-4.4.14/drivers/ata/
H A Dpata_via.c416 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n", via_tf_load()
430 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n", via_tf_load()
H A Dpata_octeon_cf.c491 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n", octeon_cf_tf_load16()
502 VPRINTK("feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n", octeon_cf_tf_load16()
H A Dsata_rcar.c387 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n", sata_rcar_tf_load()
401 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n", sata_rcar_tf_load()
H A Dpata_bf54x.c689 dev_dbg(ap->dev, "hob: feat 0x%X nsect 0x%X, lba 0x%X " bfin_tf_load()
703 dev_dbg(ap->dev, "feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n", bfin_tf_load()
H A Dlibata-pmp.c316 "0x%04x:0x%04x r%d, %d ports, feat 0x%x/0x%x\n", sata_pmp_configure()
H A Dlibata-sff.c432 VPRINTK("hob: feat 0x%X nsect 0x%X, lba 0x%X 0x%X 0x%X\n", ata_sff_tf_load()
446 VPRINTK("feat 0x%X nsect 0x%X lba 0x%X 0x%X 0x%X\n", ata_sff_tf_load()
H A Dsata_mv.c2096 * (nsect is used only for the tag; feat/hob_feat hold true nsect). mv_qc_prep()
/linux-4.4.14/net/dcb/
H A Ddcbnl.c1303 struct nlattr *feat = nla_nest_start(skb, DCB_ATTR_CEE_FEAT); dcbnl_cee_fill() local
1304 if (!feat) dcbnl_cee_fill()
1313 nla_nest_end(skb, feat); dcbnl_cee_fill()
/linux-4.4.14/drivers/ide/
H A Dide-taskfile.c47 printk("%s: tf: feat 0x%02x nsect 0x%02x lbal 0x%02x " ide_tf_dump()
/linux-4.4.14/arch/x86/kvm/
H A Dlapic.c285 struct kvm_cpuid_entry2 *feat; kvm_apic_set_version() local
291 feat = kvm_find_cpuid_entry(apic->vcpu, 0x1, 0); kvm_apic_set_version()
292 if (feat && (feat->ecx & (1 << (X86_FEATURE_X2APIC & 31)))) kvm_apic_set_version()
H A Dx86.c987 struct kvm_cpuid_entry2 *feat; kvm_valid_efer() local
989 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); kvm_valid_efer()
990 if (!feat || !(feat->edx & bit(X86_FEATURE_FXSR_OPT))) kvm_valid_efer()
995 struct kvm_cpuid_entry2 *feat; kvm_valid_efer() local
997 feat = kvm_find_cpuid_entry(vcpu, 0x80000001, 0); kvm_valid_efer()
998 if (!feat || !(feat->ecx & bit(X86_FEATURE_SVM))) kvm_valid_efer()
/linux-4.4.14/fs/ocfs2/
H A Dnamei.c517 u16 feat; __ocfs2_mknod_locked() local
577 feat = le16_to_cpu(fe->i_dyn_features); __ocfs2_mknod_locked()
579 fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL); __ocfs2_mknod_locked()
/linux-4.4.14/arch/x86/kernel/
H A Dalternative.c393 DPRINTK("feat: %d*32+%d, old: (%p, len: %d), repl: (%p, len: %d), pad: %d", apply_alternatives()
/linux-4.4.14/scripts/
H A Drecordmcount.pl17 # This is no easy feat. This script is called just after the original
/linux-4.4.14/drivers/s390/scsi/
H A Dzfcp_fsf.c980 u32 feat = adapter->adapter_features; zfcp_fsf_setup_ct_els_sbals() local
1002 if (!(feat & FSF_FEATURE_ELS_CT_CHAINED_SBALS)) zfcp_fsf_setup_ct_els_sbals()
/linux-4.4.14/net/dccp/ccids/
H A Dccid2.c27 #include "../feat.h"
/linux-4.4.14/drivers/block/mtip32xx/
H A Dmtip32xx.c1813 dbg_printk(MTIP_DRV_NAME " %s: User Command: cmd %x, feat %x, nsect %x, sect %x, lcyl %x, hcyl %x, sel %x\n", exec_drive_task()
1912 "feat %x, sectcnt %x\n", exec_drive_command()
2147 " %s: cmd %x, feat %x, nsect %x," exec_drive_taskfile()
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/
H A Dcfg80211.c5731 * @ifp: interface object needed for feat module api.

Completed in 1626 milliseconds