Home
last modified time | relevance | path

Searched refs:ac (Results 1 – 200 of 243) sorted by relevance

12

/linux-4.4.14/drivers/input/misc/
Dadxl34x.c181 #define AC_READ(ac, reg) ((ac)->bops->read((ac)->dev, reg)) argument
182 #define AC_WRITE(ac, reg, val) ((ac)->bops->write((ac)->dev, reg, val)) argument
238 static void adxl34x_get_triple(struct adxl34x *ac, struct axis_triple *axis) in adxl34x_get_triple() argument
242 ac->bops->read_block(ac->dev, DATAX0, DATAZ1 - DATAX0 + 1, buf); in adxl34x_get_triple()
244 mutex_lock(&ac->mutex); in adxl34x_get_triple()
245 ac->saved.x = (s16) le16_to_cpu(buf[0]); in adxl34x_get_triple()
246 axis->x = ac->saved.x; in adxl34x_get_triple()
248 ac->saved.y = (s16) le16_to_cpu(buf[1]); in adxl34x_get_triple()
249 axis->y = ac->saved.y; in adxl34x_get_triple()
251 ac->saved.z = (s16) le16_to_cpu(buf[2]); in adxl34x_get_triple()
[all …]
Dadxl34x-spi.c70 struct adxl34x *ac; in adxl34x_spi_probe() local
78 ac = adxl34x_probe(&spi->dev, spi->irq, in adxl34x_spi_probe()
82 if (IS_ERR(ac)) in adxl34x_spi_probe()
83 return PTR_ERR(ac); in adxl34x_spi_probe()
85 spi_set_drvdata(spi, ac); in adxl34x_spi_probe()
92 struct adxl34x *ac = spi_get_drvdata(spi); in adxl34x_spi_remove() local
94 return adxl34x_remove(ac); in adxl34x_spi_remove()
100 struct adxl34x *ac = spi_get_drvdata(spi); in adxl34x_spi_suspend() local
102 adxl34x_suspend(ac); in adxl34x_spi_suspend()
110 struct adxl34x *ac = spi_get_drvdata(spi); in adxl34x_spi_resume() local
[all …]
Dadxl34x-i2c.c80 struct adxl34x *ac; in adxl34x_i2c_probe() local
90 ac = adxl34x_probe(&client->dev, client->irq, false, in adxl34x_i2c_probe()
94 if (IS_ERR(ac)) in adxl34x_i2c_probe()
95 return PTR_ERR(ac); in adxl34x_i2c_probe()
97 i2c_set_clientdata(client, ac); in adxl34x_i2c_probe()
104 struct adxl34x *ac = i2c_get_clientdata(client); in adxl34x_i2c_remove() local
106 return adxl34x_remove(ac); in adxl34x_i2c_remove()
112 struct adxl34x *ac = i2c_get_clientdata(client); in adxl34x_i2c_suspend() local
114 adxl34x_suspend(ac); in adxl34x_i2c_suspend()
122 struct adxl34x *ac = i2c_get_clientdata(client); in adxl34x_i2c_resume() local
[all …]
Dadxl34x.h23 void adxl34x_suspend(struct adxl34x *ac);
24 void adxl34x_resume(struct adxl34x *ac);
28 int adxl34x_remove(struct adxl34x *ac);
/linux-4.4.14/net/ceph/
Dauth.c23 static int ceph_auth_init_protocol(struct ceph_auth_client *ac, int protocol) in ceph_auth_init_protocol() argument
27 return ceph_auth_none_init(ac); in ceph_auth_init_protocol()
29 return ceph_x_init(ac); in ceph_auth_init_protocol()
40 struct ceph_auth_client *ac; in ceph_auth_init() local
46 ac = kzalloc(sizeof(*ac), GFP_NOFS); in ceph_auth_init()
47 if (!ac) in ceph_auth_init()
50 mutex_init(&ac->mutex); in ceph_auth_init()
51 ac->negotiating = true; in ceph_auth_init()
53 ac->name = name; in ceph_auth_init()
55 ac->name = CEPH_AUTH_NAME_DEFAULT; in ceph_auth_init()
[all …]
Dauth_none.c14 static void reset(struct ceph_auth_client *ac) in reset() argument
16 struct ceph_auth_none_info *xi = ac->private; in reset()
22 static void destroy(struct ceph_auth_client *ac) in destroy() argument
24 kfree(ac->private); in destroy()
25 ac->private = NULL; in destroy()
28 static int is_authenticated(struct ceph_auth_client *ac) in is_authenticated() argument
30 struct ceph_auth_none_info *xi = ac->private; in is_authenticated()
35 static int should_authenticate(struct ceph_auth_client *ac) in should_authenticate() argument
37 struct ceph_auth_none_info *xi = ac->private; in should_authenticate()
42 static int build_request(struct ceph_auth_client *ac, void *buf, void *end) in build_request() argument
[all …]
Dauth_x.c18 static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed);
20 static int ceph_x_is_authenticated(struct ceph_auth_client *ac) in ceph_x_is_authenticated() argument
22 struct ceph_x_info *xi = ac->private; in ceph_x_is_authenticated()
25 ceph_x_validate_tickets(ac, &need); in ceph_x_is_authenticated()
27 ac->want_keys, need, xi->have_keys); in ceph_x_is_authenticated()
28 return (ac->want_keys & xi->have_keys) == ac->want_keys; in ceph_x_is_authenticated()
31 static int ceph_x_should_authenticate(struct ceph_auth_client *ac) in ceph_x_should_authenticate() argument
33 struct ceph_x_info *xi = ac->private; in ceph_x_should_authenticate()
36 ceph_x_validate_tickets(ac, &need); in ceph_x_should_authenticate()
38 ac->want_keys, need, xi->have_keys); in ceph_x_should_authenticate()
[all …]
Dauth_none.h26 int ceph_auth_none_init(struct ceph_auth_client *ac);
Dauth_x.h49 int ceph_x_init(struct ceph_auth_client *ac);
Dosd_client.c1055 struct ceph_auth_client *ac = osd->o_osdc->client->monc.auth; in put_osd() local
1058 ceph_auth_destroy_authorizer(ac, osd->o_auth.authorizer); in put_osd()
2936 struct ceph_auth_client *ac = osdc->client->monc.auth; in get_authorizer() local
2940 ceph_auth_destroy_authorizer(ac, auth->authorizer); in get_authorizer()
2944 int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_OSD, in get_authorizer()
2949 int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_OSD, in get_authorizer()
2954 *proto = ac->protocol; in get_authorizer()
2964 struct ceph_auth_client *ac = osdc->client->monc.auth; in verify_authorizer_reply() local
2966 return ceph_auth_verify_authorizer_reply(ac, o->o_auth.authorizer, len); in verify_authorizer_reply()
2973 struct ceph_auth_client *ac = osdc->client->monc.auth; in invalidate_authorizer() local
[all …]
/linux-4.4.14/drivers/acpi/
Dac.c117 static int acpi_ac_get_state(struct acpi_ac *ac) in acpi_ac_get_state() argument
121 if (!ac) in acpi_ac_get_state()
124 status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL, in acpi_ac_get_state()
125 &ac->state); in acpi_ac_get_state()
129 ac->state = ACPI_AC_STATUS_UNKNOWN; in acpi_ac_get_state()
143 struct acpi_ac *ac = to_acpi_ac(psy); in get_ac_property() local
145 if (!ac) in get_ac_property()
148 if (acpi_ac_get_state(ac)) in get_ac_property()
153 val->intval = ac->state; in get_ac_property()
174 struct acpi_ac *ac = seq->private; in acpi_ac_seq_show() local
[all …]
DMakefile63 obj-$(CONFIG_ACPI_AC) += ac.o
/linux-4.4.14/include/linux/ceph/
Dauth.h37 int (*is_authenticated)(struct ceph_auth_client *ac);
43 int (*should_authenticate)(struct ceph_auth_client *ac);
50 int (*build_request)(struct ceph_auth_client *ac, void *buf, void *end);
51 int (*handle_reply)(struct ceph_auth_client *ac, int result,
58 int (*create_authorizer)(struct ceph_auth_client *ac, int peer_type,
61 int (*update_authorizer)(struct ceph_auth_client *ac, int peer_type,
63 int (*verify_authorizer_reply)(struct ceph_auth_client *ac,
65 void (*destroy_authorizer)(struct ceph_auth_client *ac,
67 void (*invalidate_authorizer)(struct ceph_auth_client *ac,
71 void (*reset)(struct ceph_auth_client *ac);
[all …]
/linux-4.4.14/fs/ext4/
Dmballoc.c1634 static void ext4_mb_use_best_found(struct ext4_allocation_context *ac, in ext4_mb_use_best_found() argument
1637 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); in ext4_mb_use_best_found()
1640 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group); in ext4_mb_use_best_found()
1641 BUG_ON(ac->ac_status == AC_STATUS_FOUND); in ext4_mb_use_best_found()
1643 ac->ac_b_ex.fe_len = min(ac->ac_b_ex.fe_len, ac->ac_g_ex.fe_len); in ext4_mb_use_best_found()
1644 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical; in ext4_mb_use_best_found()
1645 ret = mb_mark_used(e4b, &ac->ac_b_ex); in ext4_mb_use_best_found()
1649 ac->ac_f_ex = ac->ac_b_ex; in ext4_mb_use_best_found()
1651 ac->ac_status = AC_STATUS_FOUND; in ext4_mb_use_best_found()
1652 ac->ac_tail = ret & 0xffff; in ext4_mb_use_best_found()
[all …]
Dcrypto_fname.c210 int i = 0, bits = 0, ac = 0; in digest_encode() local
214 ac += (((unsigned char) src[i]) << bits); in digest_encode()
217 *cp++ = lookup_table[ac & 0x3f]; in digest_encode()
218 ac >>= 6; in digest_encode()
224 *cp++ = lookup_table[ac & 0x3f]; in digest_encode()
230 int i = 0, bits = 0, ac = 0; in digest_decode() local
238 ac += (p - lookup_table) << bits; in digest_decode()
241 *cp++ = ac & 0xff; in digest_decode()
242 ac >>= 8; in digest_decode()
247 if (ac) in digest_decode()
/linux-4.4.14/fs/ocfs2/
Dsuballoc.c109 static int ocfs2_claim_suballoc_bits(struct ocfs2_alloc_context *ac,
134 struct ocfs2_alloc_context **ac);
136 void ocfs2_free_ac_resource(struct ocfs2_alloc_context *ac) in ocfs2_free_ac_resource() argument
138 struct inode *inode = ac->ac_inode; in ocfs2_free_ac_resource()
141 if (ac->ac_which != OCFS2_AC_USE_LOCAL) in ocfs2_free_ac_resource()
147 ac->ac_inode = NULL; in ocfs2_free_ac_resource()
149 brelse(ac->ac_bh); in ocfs2_free_ac_resource()
150 ac->ac_bh = NULL; in ocfs2_free_ac_resource()
151 ac->ac_resv = NULL; in ocfs2_free_ac_resource()
152 kfree(ac->ac_find_loc_priv); in ocfs2_free_ac_resource()
[all …]
Dsuballoc.h66 void ocfs2_free_alloc_context(struct ocfs2_alloc_context *ac);
67 static inline int ocfs2_alloc_context_bits_left(struct ocfs2_alloc_context *ac) in ocfs2_alloc_context_bits_left() argument
69 return ac->ac_bits_wanted - ac->ac_bits_given; in ocfs2_alloc_context_bits_left()
79 struct ocfs2_alloc_context **ac);
82 struct ocfs2_alloc_context **ac);
84 struct ocfs2_alloc_context **ac);
87 struct ocfs2_alloc_context **ac);
106 struct ocfs2_alloc_context *ac,
115 struct ocfs2_alloc_context *ac,
120 struct ocfs2_alloc_context *ac,
[all …]
Dlocalalloc.c67 struct ocfs2_alloc_context **ac,
73 struct ocfs2_alloc_context *ac);
629 struct ocfs2_alloc_context *ac) in ocfs2_reserve_local_alloc_bits() argument
636 BUG_ON(!ac); in ocfs2_reserve_local_alloc_bits()
705 ac->ac_inode = local_alloc_inode; in ocfs2_reserve_local_alloc_bits()
707 ac->ac_alloc_slot = osb->slot_num; in ocfs2_reserve_local_alloc_bits()
708 ac->ac_which = OCFS2_AC_USE_LOCAL; in ocfs2_reserve_local_alloc_bits()
710 ac->ac_bh = osb->local_alloc_bh; in ocfs2_reserve_local_alloc_bits()
719 (unsigned long long)ac->ac_max_block, in ocfs2_reserve_local_alloc_bits()
729 struct ocfs2_alloc_context *ac, in ocfs2_claim_local_alloc_bits() argument
[all …]
Dlocalalloc.h49 struct ocfs2_alloc_context *ac);
53 struct ocfs2_alloc_context *ac,
60 struct ocfs2_alloc_context *ac,
/linux-4.4.14/kernel/
Dacct.c412 static void fill_ac(acct_t *ac) in fill_ac() argument
422 memset(ac, 0, sizeof(acct_t)); in fill_ac()
424 ac->ac_version = ACCT_VERSION | ACCT_BYTEORDER; in fill_ac()
425 strlcpy(ac->ac_comm, current->comm, sizeof(ac->ac_comm)); in fill_ac()
433 ac->ac_etime = encode_float(elapsed); in fill_ac()
435 ac->ac_etime = encode_comp_t(elapsed < (unsigned long) -1l ? in fill_ac()
443 ac->ac_etime_hi = etime >> 16; in fill_ac()
444 ac->ac_etime_lo = (u16) etime; in fill_ac()
448 ac->ac_btime = get_seconds() - elapsed; in fill_ac()
450 ac->ac_ahz = AHZ; in fill_ac()
[all …]
/linux-4.4.14/Documentation/video4linux/
DCARDLIST.cx8816 15 -> DViCO FusionHDTV DVB-T1 [18ac:db00]
18 17 -> DViCO FusionHDTV 3 Gold-Q [18ac:d810,18ac:d800]
22 21 -> DViCO FusionHDTV DVB-T Plus [18ac:db10,18ac:db11]
29 28 -> DViCO FusionHDTV 3 Gold-T [18ac:d820]
32 31 -> DViCO FusionHDTV 5 Gold [18ac:d500]
45 44 -> DViCO FusionHDTV DVB-T Dual Digital [18ac:db50,18ac:db54]
47 46 -> DViCO FusionHDTV DVB-T Hybrid [18ac:db40,18ac:db44]
60 59 -> DViCO FusionHDTV 5 PCI nano [18ac:d530]
65 64 -> DViCO FusionHDTV DVB-T PRO [18ac:db30]
66 65 -> DViCO FusionHDTV 7 Gold [18ac:d610]
[all …]
DCARDLIST.cx238855 4 -> DViCO FusionHDTV5 Express [18ac:d500]
11 10 -> DViCO FusionHDTV7 Dual Express [18ac:d618]
12 11 -> DViCO FusionHDTV DVB-T Dual Express [18ac:db78]
45 44 -> DViCO FusionHDTV DVB-T Dual Express2 [18ac:db98]
DCARDLIST.bttv129 128 -> DViCO FusionHDTV DVB-T Lite [18ac:db10,18ac:db11]
136 135 -> DViCO FusionHDTV 5 Lite [18ac:d500]
DCARDLIST.em28xx88 87 -> Terratec Cinergy HTC USB XS (em2884) [0ccd:008e,0ccd:00ac]
Dradiotrack.txt10 (legrang@active.co.za or legrang@cs.sun.ac.za) in 1994, and elaborations from
/linux-4.4.14/mm/
Dslab.c207 struct array_cache ac; member
661 static void init_arraycache(struct array_cache *ac, int limit, int batch) in init_arraycache() argument
670 kmemleak_no_scan(ac); in init_arraycache()
671 if (ac) { in init_arraycache()
672 ac->avail = 0; in init_arraycache()
673 ac->limit = limit; in init_arraycache()
674 ac->batchcount = batch; in init_arraycache()
675 ac->touched = 0; in init_arraycache()
683 struct array_cache *ac = NULL; in alloc_arraycache() local
685 ac = kmalloc_node(memsize, gfp, node); in alloc_arraycache()
[all …]
Dpage_alloc.c1704 static void unreserve_highatomic_pageblock(const struct alloc_context *ac) in unreserve_highatomic_pageblock() argument
1706 struct zonelist *zonelist = ac->zonelist; in unreserve_highatomic_pageblock()
1713 for_each_zone_zonelist_nodemask(zone, z, zonelist, ac->high_zoneidx, in unreserve_highatomic_pageblock()
1714 ac->nodemask) { in unreserve_highatomic_pageblock()
1747 set_pageblock_migratetype(page, ac->migratetype); in unreserve_highatomic_pageblock()
1748 move_freepages_block(zone, page, ac->migratetype); in unreserve_highatomic_pageblock()
2501 const struct alloc_context *ac) in get_page_from_freelist() argument
2503 struct zonelist *zonelist = ac->zonelist; in get_page_from_freelist()
2517 for_each_zone_zonelist_nodemask(zone, z, zonelist, ac->high_zoneidx, in get_page_from_freelist()
2518 ac->nodemask) { in get_page_from_freelist()
[all …]
Dcompaction.c1520 int alloc_flags, const struct alloc_context *ac, in try_to_compact_pages() argument
1539 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx, in try_to_compact_pages()
1540 ac->nodemask) { in try_to_compact_pages()
1549 ac->classzone_idx); in try_to_compact_pages()
1559 ac->classzone_idx, alloc_flags)) { in try_to_compact_pages()
/linux-4.4.14/net/mac80211/
Dsta_info.c87 int ac, i; in __cleanup_single_sta() local
117 atomic_sub(n, &sdata->txqs_len[txqi->txq.ac]); in __cleanup_single_sta()
121 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in __cleanup_single_sta()
122 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]); in __cleanup_single_sta()
123 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]); in __cleanup_single_sta()
124 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]); in __cleanup_single_sta()
619 static unsigned long ieee80211_tids_for_ac(int ac) in ieee80211_tids_for_ac() argument
622 switch (ac) { in ieee80211_tids_for_ac()
643 int ac; in __sta_info_recalc_tim() local
679 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in __sta_info_recalc_tim()
[all …]
Dmesh_ps.c452 int ac; in mps_frame_deliver() local
460 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in mps_frame_deliver()
462 skb = skb_dequeue(&sta->tx_filtered[ac]); in mps_frame_deliver()
465 &sta->ps_tx_buf[ac]); in mps_frame_deliver()
475 if (!skb_queue_empty(&sta->tx_filtered[ac]) || in mps_frame_deliver()
476 !skb_queue_empty(&sta->ps_tx_buf[ac])) in mps_frame_deliver()
577 int ac, buffer_local = 0; in ieee80211_mps_frame_release() local
594 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in ieee80211_mps_frame_release()
595 buffer_local += skb_queue_len(&sta->ps_tx_buf[ac]) + in ieee80211_mps_frame_release()
596 skb_queue_len(&sta->tx_filtered[ac]); in ieee80211_mps_frame_release()
Dwme.c93 int ac = ieee802_1d_to_ac[skb->priority]; in ieee80211_downgrade_queue() local
95 if (ifmgd->tx_tspec[ac].admitted_time && in ieee80211_downgrade_queue()
96 skb->priority == ifmgd->tx_tspec[ac].up) in ieee80211_downgrade_queue()
97 return ac; in ieee80211_downgrade_queue()
Ddebugfs_sta.c88 int ac; in sta_num_ps_buf_frames_read() local
90 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in sta_num_ps_buf_frames_read()
91 p += scnprintf(p, sizeof(buf)+buf-p, "AC%d: %d\n", ac, in sta_num_ps_buf_frames_read()
92 skb_queue_len(&sta->ps_tx_buf[ac]) + in sta_num_ps_buf_frames_read()
93 skb_queue_len(&sta->tx_filtered[ac])); in sta_num_ps_buf_frames_read()
Dmlme.c1664 int ac; in __ieee80211_sta_handle_tspec_ac_params() local
1669 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in __ieee80211_sta_handle_tspec_ac_params()
1670 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac]; in __ieee80211_sta_handle_tspec_ac_params()
1688 if (drv_conf_tx(local, sdata, ac, &sdata->tx_conf[ac])) in __ieee80211_sta_handle_tspec_ac_params()
1691 ac); in __ieee80211_sta_handle_tspec_ac_params()
1703 for (non_acm_ac = ac + 1; in __ieee80211_sta_handle_tspec_ac_params()
1713 if (drv_conf_tx(local, sdata, ac, in __ieee80211_sta_handle_tspec_ac_params()
1717 ac); in __ieee80211_sta_handle_tspec_ac_params()
1755 int count, ac; in ieee80211_sta_wmm_params() local
1792 ac = IEEE80211_AC_BK; in ieee80211_sta_wmm_params()
[all …]
Dutil.c251 int ac; in ieee80211_propagate_queue_wake() local
260 for (ac = 0; ac < n_acs; ac++) { in ieee80211_propagate_queue_wake()
261 int ac_queue = sdata->vif.hw_queue[ac]; in ieee80211_propagate_queue_wake()
264 (atomic_read(&sdata->txqs_len[ac]) > in ieee80211_propagate_queue_wake()
272 netif_wake_subqueue(sdata->dev, ac); in ieee80211_propagate_queue_wake()
357 int ac; in __ieee80211_stop_queue() local
362 for (ac = 0; ac < n_acs; ac++) { in __ieee80211_stop_queue()
363 if (sdata->vif.hw_queue[ac] == queue || in __ieee80211_stop_queue()
365 netif_stop_subqueue(sdata->dev, ac); in __ieee80211_stop_queue()
520 int ac; in ieee80211_get_vif_queues() local
[all …]
Dtx.c378 int ac; in purge_old_ps_buffers() local
380 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) { in purge_old_ps_buffers()
381 skb = skb_dequeue(&sta->ps_tx_buf[ac]); in purge_old_ps_buffers()
382 total += skb_queue_len(&sta->ps_tx_buf[ac]); in purge_old_ps_buffers()
490 int ac = skb_get_queue_mapping(tx->skb); in ieee80211_tx_h_unicast_ps_buf() local
499 sta->sta.addr, sta->sta.aid, ac); in ieee80211_tx_h_unicast_ps_buf()
517 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) { in ieee80211_tx_h_unicast_ps_buf()
518 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]); in ieee80211_tx_h_unicast_ps_buf()
521 sta->sta.addr, ac); in ieee80211_tx_h_unicast_ps_buf()
530 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb); in ieee80211_tx_h_unicast_ps_buf()
[all …]
Ddriver-ops.c162 struct ieee80211_sub_if_data *sdata, u16 ac, in drv_conf_tx() argument
178 trace_drv_conf_tx(local, sdata, ac, params); in drv_conf_tx()
181 ac, params); in drv_conf_tx()
Dstatus.c52 int ac; in ieee80211_handle_filtered_frame() local
93 ac = ieee802_1d_to_ac[tid & 7]; in ieee80211_handle_filtered_frame()
95 ac = IEEE80211_AC_BE; in ieee80211_handle_filtered_frame()
141 skb_queue_len(&sta->tx_filtered[ac]) < STA_MAX_TX_BUFFER) { in ieee80211_handle_filtered_frame()
142 skb_queue_tail(&sta->tx_filtered[ac], skb); in ieee80211_handle_filtered_frame()
162 skb_queue_len(&sta->tx_filtered[ac]), in ieee80211_handle_filtered_frame()
Dtrace.h896 u16 ac, const struct ieee80211_tx_queue_params *params),
898 TP_ARGS(local, sdata, ac, params),
903 __field(u16, ac)
914 __entry->ac = ac;
924 LOCAL_PR_ARG, VIF_PR_ARG, __entry->ac
2358 __field(u8, ac)
2368 __entry->ac = txq->txq.ac;
2374 LOCAL_PR_ARG, VIF_PR_ARG, STA_PR_ARG, __entry->ac, __entry->tid
Diface.c724 int ac; in ieee80211_do_open() local
733 for (ac = 0; ac < n_acs; ac++) { in ieee80211_do_open()
734 int ac_queue = sdata->vif.hw_queue[ac]; in ieee80211_do_open()
738 netif_start_subqueue(dev, ac); in ieee80211_do_open()
984 atomic_set(&sdata->txqs_len[txqi->txq.ac], 0); in ieee80211_do_stop()
Dcfg.c1925 sdata->tx_conf[params->ac] = p; in ieee80211_set_txq_params()
1926 if (drv_conf_tx(local, sdata, params->ac, &p)) { in ieee80211_set_txq_params()
1929 params->ac); in ieee80211_set_txq_params()
3739 int ac = ieee802_1d_to_ac[up]; in ieee80211_add_tx_ts() local
3747 if (ifmgd->tx_tspec[ac].admitted_time) in ieee80211_add_tx_ts()
3751 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time; in ieee80211_add_tx_ts()
3752 ifmgd->tx_tspec[ac].tsid = tsid; in ieee80211_add_tx_ts()
3753 ifmgd->tx_tspec[ac].up = up; in ieee80211_add_tx_ts()
3765 int ac; in ieee80211_del_tx_ts() local
3767 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in ieee80211_del_tx_ts()
[all …]
Dtdls.c231 static enum ieee80211_ac_numbers ieee80211_ac_from_wmm(int ac) in ieee80211_ac_from_wmm() argument
233 switch (ac) { in ieee80211_ac_from_wmm()
291 wmm->ac[i].aci_aifsn = ieee80211_wmm_aci_aifsn(txq->aifs, in ieee80211_tdls_add_wmm_param_ie()
293 wmm->ac[i].cw = ieee80211_wmm_ecw(txq->cw_min, txq->cw_max); in ieee80211_tdls_add_wmm_param_ie()
294 wmm->ac[i].txop_limit = cpu_to_le16(txq->txop); in ieee80211_tdls_add_wmm_param_ie()
Drx.c1305 int tid, ac; in ieee80211_rx_h_uapsd_and_pspoll() local
1349 ac = ieee802_1d_to_ac[tid & 7]; in ieee80211_rx_h_uapsd_and_pspoll()
1358 if (!(rx->sta->sta.uapsd_queues & BIT(ac))) in ieee80211_rx_h_uapsd_and_pspoll()
2253 u16 ac, q, hdrlen; in ieee80211_rx_h_mesh_fwding() local
2322 ac = ieee80211_select_queue_80211(sdata, skb, hdr); in ieee80211_rx_h_mesh_fwding()
2323 q = sdata->vif.hw_queue[ac]; in ieee80211_rx_h_mesh_fwding()
DKconfig37 bool "Minstrel 802.11ac support" if EXPERT
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/
Dmac-ctxt.c208 u32 qmask = 0, ac; in iwl_mvm_mac_get_queues_mask() local
213 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in iwl_mvm_mac_get_queues_mask()
214 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE) in iwl_mvm_mac_get_queues_mask()
215 qmask |= BIT(vif->hw_queue[ac]); in iwl_mvm_mac_get_queues_mask()
340 u32 ac; in iwl_mvm_mac_ctxt_allocate_resources() local
421 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in iwl_mvm_mac_ctxt_allocate_resources()
422 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE; in iwl_mvm_mac_ctxt_allocate_resources()
428 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in iwl_mvm_mac_ctxt_allocate_resources()
439 vif->hw_queue[ac] = queue; in iwl_mvm_mac_ctxt_allocate_resources()
477 u32 ac; in iwl_mvm_mac_ctxt_init() local
[all …]
Dpower.c174 enum ieee80211_ac_numbers ac; in iwl_mvm_power_configure_uapsd() local
177 for (ac = IEEE80211_AC_VO; ac <= IEEE80211_AC_BK; ac++) { in iwl_mvm_power_configure_uapsd()
178 if (!mvmvif->queue_params[ac].uapsd) in iwl_mvm_power_configure_uapsd()
185 cmd->uapsd_ac_flags |= BIT(ac); in iwl_mvm_power_configure_uapsd()
188 if (!tid_found && !mvmvif->queue_params[ac].acm) { in iwl_mvm_power_configure_uapsd()
190 switch (ac) { in iwl_mvm_power_configure_uapsd()
Dsta.c214 u32 ac; in iwl_mvm_tdls_sta_init() local
221 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in iwl_mvm_tdls_sta_init()
231 mvmsta->hw_queue[ac] = queue; in iwl_mvm_tdls_sta_init()
235 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in iwl_mvm_tdls_sta_init()
236 iwl_mvm_enable_ac_txq(mvm, mvmsta->hw_queue[ac], in iwl_mvm_tdls_sta_init()
237 mvmsta->hw_queue[ac], in iwl_mvm_tdls_sta_init()
238 iwl_mvm_ac_to_tx_fifo[ac], 0, in iwl_mvm_tdls_sta_init()
240 mvmsta->tfd_queue_msk |= BIT(mvmsta->hw_queue[ac]); in iwl_mvm_tdls_sta_init()
Dfw-api-mac.h358 struct iwl_ac_qos ac[AC_NUM+1]; member
Dtx.c108 u8 ac; in iwl_mvm_set_tx_cmd() local
147 ac = tid_to_mac80211_ac[tx_cmd->tid_tspec]; in iwl_mvm_set_tx_cmd()
149 ac = tid_to_mac80211_ac[0]; in iwl_mvm_set_tx_cmd()
151 tx_flags |= iwl_mvm_bt_coex_tx_prio(mvm, hdr, info, ac) << in iwl_mvm_set_tx_cmd()
Dcoex.c904 struct ieee80211_tx_info *info, u8 ac) in iwl_mvm_bt_coex_tx_prio() argument
921 switch (ac) { in iwl_mvm_bt_coex_tx_prio()
Dutils.c754 int ac = tid_to_mac80211_ac[tid]; in iwl_mvm_disable_txq() local
758 if (tid_to_mac80211_ac[i] == ac) in iwl_mvm_disable_txq()
/linux-4.4.14/drivers/power/
Dgoldfish_battery.c34 struct power_supply *ac; member
142 power_supply_changed(data->ac); in goldfish_battery_interrupt()
202 data->ac = power_supply_register(&pdev->dev, &ac_desc, &psy_cfg); in goldfish_battery_probe()
203 if (IS_ERR(data->ac)) in goldfish_battery_probe()
204 return PTR_ERR(data->ac); in goldfish_battery_probe()
209 power_supply_unregister(data->ac); in goldfish_battery_probe()
225 power_supply_unregister(data->ac); in goldfish_battery_remove()
Dtps65090-charger.c46 struct power_supply *ac; member
192 power_supply_changed(charger->ac); in tps65090_charger_isr()
275 cdata->ac = power_supply_register(&pdev->dev, &tps65090_charger_desc, in tps65090_charger_probe()
277 if (IS_ERR(cdata->ac)) { in tps65090_charger_probe()
279 return PTR_ERR(cdata->ac); in tps65090_charger_probe()
309 power_supply_changed(cdata->ac); in tps65090_charger_probe()
336 power_supply_unregister(cdata->ac); in tps65090_charger_probe()
347 power_supply_unregister(cdata->ac); in tps65090_charger_remove()
Dtps65217_charger.c43 struct power_supply *ac; member
158 power_supply_changed(charger->ac); in tps65217_charger_irq()
211 charger->ac = devm_power_supply_register(&pdev->dev, in tps65217_charger_probe()
214 if (IS_ERR(charger->ac)) { in tps65217_charger_probe()
216 return PTR_ERR(charger->ac); in tps65217_charger_probe()
Dpm2301_charger.c117 if (!pm2->ac.charger_connected && gpio_is_valid(pm2->lpn_pin)) { in set_lpn_pin()
125 if (!pm2->ac.charger_connected && gpio_is_valid(pm2->lpn_pin)) in clear_lpn_pin()
231 pm2->ac.wd_expired = true; in pm2xxx_charger_wd_exp_mngt()
309 pm2->ac.charger_connected = 1; in pm2xxx_charger_itv_pwr_plug_mngt()
321 pm2->ac.charger_connected = 0; in pm2xxx_charger_itv_pwr_unplug_mngt()
513 if (pm2->ac.charger_connected && pm2->ac.charger_online) { in pm2xxx_charger_get_ac_cv()
616 else if (pm2->ac.wd_expired) in pm2xxx_charger_ac_get_property()
626 val->intval = pm2->ac.charger_online; in pm2xxx_charger_ac_get_property()
629 val->intval = pm2->ac.charger_connected; in pm2xxx_charger_ac_get_property()
632 pm2->ac.cv_active = pm2xxx_charger_get_ac_cv(pm2); in pm2xxx_charger_ac_get_property()
[all …]
Dlp8727_charger.c83 struct power_supply *ac; member
192 pchg->chg_param = pdata ? pdata->ac : NULL; in lp8727_id_detection()
196 pchg->chg_param = pdata ? pdata->ac : NULL; in lp8727_id_detection()
245 power_supply_changed(pchg->psy->ac); in lp8727_delayed_func()
460 psy->ac = power_supply_register(pchg->dev, &lp8727_ac_desc, &psy_cfg); in lp8727_register_psy()
461 if (IS_ERR(psy->ac)) in lp8727_register_psy()
478 power_supply_unregister(psy->ac); in lp8727_register_psy()
490 power_supply_unregister(psy->ac); in lp8727_unregister_psy()
532 pdata->ac = lp8727_parse_charge_pdata(dev, child); in lp8727_parse_dt()
Dtwl4030_charger.c117 struct power_supply *ac; member
603 power_supply_changed(bci->ac); in twl4030_charger_interrupt()
632 power_supply_changed(bci->ac); in twl4030_bci_interrupt()
671 if (dev == &bci->ac->dev) in twl4030_bci_max_current_store()
691 if (dev == &bci->ac->dev) { in twl4030_bci_max_current_show()
766 if (dev == &bci->ac->dev) { in twl4030_bci_mode_store()
792 if (dev == &bci->ac->dev) in twl4030_bci_mode_show()
1021 bci->ac = devm_power_supply_register(&pdev->dev, &twl4030_bci_ac_desc, in twl4030_bci_probe()
1023 if (IS_ERR(bci->ac)) { in twl4030_bci_probe()
1024 ret = PTR_ERR(bci->ac); in twl4030_bci_probe()
[all …]
Dmax8925_power.c71 struct power_supply *ac; member
533 info->ac = power_supply_register(&pdev->dev, &ac_desc, &psy_cfg); in max8925_power_probe()
534 if (IS_ERR(info->ac)) { in max8925_power_probe()
535 ret = PTR_ERR(info->ac); in max8925_power_probe()
538 info->ac->dev.parent = &pdev->dev; in max8925_power_probe()
566 power_supply_unregister(info->ac); in max8925_power_probe()
576 power_supply_unregister(info->ac); in max8925_power_remove()
Dpcf50633-charger.c38 struct power_supply *ac; member
281 power_supply_changed(mbc->ac); in pcf50633_mbc_irq_handler()
435 mbc->ac = power_supply_register(&pdev->dev, &pcf50633_mbc_ac_desc, in pcf50633_mbc_probe()
437 if (IS_ERR(mbc->ac)) { in pcf50633_mbc_probe()
441 ret = PTR_ERR(mbc->ac); in pcf50633_mbc_probe()
470 power_supply_unregister(mbc->ac); in pcf50633_mbc_remove()
Dbq24735-charger.c162 int ac = 0; in bq24735_charger_is_present() local
164 ac = bq24735_read_word(charger->client, BQ24735_CHG_OPT); in bq24735_charger_is_present()
165 if (ac < 0) { in bq24735_charger_is_present()
168 ac); in bq24735_charger_is_present()
171 return (ac & BQ24735_CHG_OPT_AC_PRESENT) ? true : false; in bq24735_charger_is_present()
Dwm8350_power.c236 power_supply_changed(power->ac); in wm8350_charger_handler()
476 power->ac = power_supply_register(&pdev->dev, &wm8350_ac_desc, NULL); in wm8350_power_probe()
477 if (IS_ERR(power->ac)) in wm8350_power_probe()
478 return PTR_ERR(power->ac); in wm8350_power_probe()
510 power_supply_unregister(power->ac); in wm8350_power_probe()
523 power_supply_unregister(power->ac); in wm8350_power_remove()
Dab8500_charger.c295 struct ab8500_charger_info ac; member
414 !di->ac.charger_connected && in ab8500_power_supply_changed()
419 (di->ac.charger_connected || in ab8500_power_supply_changed()
467 if (di->ac.charger_connected) { in ab8500_charger_get_ac_voltage()
489 if (di->ac.charger_online) { in ab8500_charger_ac_cv()
562 if (di->ac.charger_online) { in ab8500_charger_get_ac_current()
1137 if (!di->ac.charger_connected) in ab8500_charger_set_current()
1160 if (!di->usb.charger_connected && !di->ac.charger_connected) in ab8500_charger_set_current()
1370 if (!di->ac.charger_connected) { in ab8500_charger_ac_en()
1450 di->ac.charger_online = 1; in ab8500_charger_ac_en()
[all …]
Dipaq_micro_battery.c45 u8 ac; member
78 mb->ac = msg_battery.rx_data[0]; in micro_battery_work()
187 val->intval = mb->ac; in micro_ac_get_property()
Dpm2301_charger.h481 struct pm2xxx_charger_info ac; member
/linux-4.4.14/include/linux/
Dtransport_class.h58 struct attribute_container ac; member
63 container_of(x, struct transport_container, ac)
87 return attribute_container_register(&tc->ac); in transport_container_register()
92 if (unlikely(attribute_container_unregister(&tc->ac))) in transport_container_unregister()
Draid_class.h58 attribute_container_find_class_device(&r->raid_attrs.ac, dev);\
67 attribute_container_find_class_device(&r->raid_attrs.ac, dev);\
Dcompaction.h42 int alloc_flags, const struct alloc_context *ac,
58 const struct alloc_context *ac, in try_to_compact_pages() argument
/linux-4.4.14/drivers/scsi/
Draid_class.c49 container_of(acont, struct transport_container, ac); \
54 struct attribute_container *ac = \
56 ac_to_raid_internal(ac); \
227 attribute_container_find_class_device(&r->raid_attrs.ac, in raid_component_add()
273 i->r.raid_attrs.ac.class = &raid_class.class; in raid_class_attach()
274 i->r.raid_attrs.ac.match = raid_match; in raid_class_attach()
275 i->r.raid_attrs.ac.attrs = &i->attrs[0]; in raid_class_attach()
277 attribute_container_register(&i->r.raid_attrs.ac); in raid_class_attach()
295 BUG_ON(attribute_container_unregister(&i->r.raid_attrs.ac)); in raid_class_release()
Dscsi_transport_sas.c324 if (shost->transportt->host_attrs.ac.class != in sas_host_match()
329 return &i->t.host_attrs.ac == cont; in sas_host_match()
684 if (shost->transportt->host_attrs.ac.class != in sas_phy_match()
689 return &i->phy_attr_cont.ac == cont; in sas_phy_match()
850 if (shost->transportt->host_attrs.ac.class != in sas_port_match()
855 return &i->port_attr_cont.ac == cont; in sas_port_match()
1370 if (shost->transportt->host_attrs.ac.class != in sas_rphy_match()
1375 return &i->rphy_attr_cont.ac == cont; in sas_rphy_match()
1392 if (shost->transportt->host_attrs.ac.class != in sas_end_dev_match()
1397 return &i->end_dev_attr_cont.ac == cont && in sas_end_dev_match()
[all …]
Dscsi_transport_srp.c670 if (shost->transportt->host_attrs.ac.class != &srp_host_class.class) in srp_rport_match()
674 return &i->rport_attr_cont.ac == cont; in srp_rport_match()
688 if (shost->transportt->host_attrs.ac.class != &srp_host_class.class) in srp_host_match()
692 return &i->t.host_attrs.ac == cont; in srp_host_match()
867 i->t.host_attrs.ac.attrs = &i->host_attrs[0]; in srp_attach_transport()
868 i->t.host_attrs.ac.class = &srp_host_class.class; in srp_attach_transport()
869 i->t.host_attrs.ac.match = srp_host_match; in srp_attach_transport()
873 i->rport_attr_cont.ac.attrs = &i->rport_attrs[0]; in srp_attach_transport()
874 i->rport_attr_cont.ac.class = &srp_rport_class.class; in srp_attach_transport()
875 i->rport_attr_cont.ac.match = srp_rport_match; in srp_attach_transport()
Dscsi_transport_spi.c211 if (!shost->transportt || shost->transportt->host_attrs.ac.class in spi_host_match()
215 return &shost->transportt->host_attrs.ac == cont; in spi_host_match()
1380 if (!shost->transportt || shost->transportt->host_attrs.ac.class in spi_device_match()
1403 if (!shost->transportt || shost->transportt->host_attrs.ac.class in spi_target_match()
1413 return &i->t.target_attrs.ac == cont; in spi_target_match()
1569 i->t.target_attrs.ac.class = &spi_transport_class.class; in spi_attach_transport()
1570 i->t.target_attrs.ac.grp = &target_attribute_group; in spi_attach_transport()
1571 i->t.target_attrs.ac.match = spi_target_match; in spi_attach_transport()
1574 i->t.host_attrs.ac.class = &spi_host_class.class; in spi_attach_transport()
1575 i->t.host_attrs.ac.grp = &host_attribute_group; in spi_attach_transport()
[all …]
Dscsi_transport_fc.c1962 if (!shost->transportt || shost->transportt->host_attrs.ac.class in fc_host_match()
1968 return &i->t.host_attrs.ac == cont; in fc_host_match()
1981 if (!shost->transportt || shost->transportt->host_attrs.ac.class in fc_target_match()
1987 return &i->t.target_attrs.ac == cont; in fc_target_match()
2013 if (!shost->transportt || shost->transportt->host_attrs.ac.class in fc_rport_match()
2019 return &i->rport_attr_cont.ac == cont; in fc_rport_match()
2048 if (!shost->transportt || shost->transportt->host_attrs.ac.class in fc_vport_match()
2053 return &i->vport_attr_cont.ac == cont; in fc_vport_match()
2184 i->t.target_attrs.ac.attrs = &i->starget_attrs[0]; in fc_attach_transport()
2185 i->t.target_attrs.ac.class = &fc_transport_class.class; in fc_attach_transport()
[all …]
Dscsi_transport_iscsi.c4372 if (priv->session_cont.ac.class != &iscsi_session_class.class) in iscsi_session_match()
4375 return &priv->session_cont.ac == cont; in iscsi_session_match()
4397 if (priv->conn_cont.ac.class != &iscsi_connection_class.class) in iscsi_conn_match()
4400 return &priv->conn_cont.ac == cont; in iscsi_conn_match()
4414 shost->transportt->host_attrs.ac.class != &iscsi_host_class.class) in iscsi_host_match()
4418 return &priv->t.host_attrs.ac == cont; in iscsi_host_match()
4453 priv->t.host_attrs.ac.class = &iscsi_host_class.class; in iscsi_register_transport()
4454 priv->t.host_attrs.ac.match = iscsi_host_match; in iscsi_register_transport()
4455 priv->t.host_attrs.ac.grp = &iscsi_host_group; in iscsi_register_transport()
4460 priv->conn_cont.ac.class = &iscsi_connection_class.class; in iscsi_register_transport()
[all …]
Dhpsa.c2856 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2; in hpsa_cmd_dev_match() local
2891 le32_to_cpu(ac->it_nexus); in hpsa_cmd_dev_match()
5589 struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2; in setup_ioaccel2_abort_cmd() local
5604 sizeof(ac->error_len)); in setup_ioaccel2_abort_cmd()
5614 memset(ac, 0, sizeof(*c2)); /* yes this is correct */ in setup_ioaccel2_abort_cmd()
5615 ac->iu_type = IOACCEL2_IU_TMF_TYPE; in setup_ioaccel2_abort_cmd()
5616 ac->reply_queue = reply_queue; in setup_ioaccel2_abort_cmd()
5617 ac->tmf = IOACCEL2_TMF_ABORT; in setup_ioaccel2_abort_cmd()
5618 ac->it_nexus = cpu_to_le32(dev->ioaccel_handle); in setup_ioaccel2_abort_cmd()
5619 memset(ac->lun_id, 0, sizeof(ac->lun_id)); in setup_ioaccel2_abort_cmd()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/power_supply/
Dpower_supply.txt14 ac-charger: power@c {
15 compatible = "some,ac-charger";
22 power-supplies = <&usb-charger>, <&ac-charger>;
Dlp8727_charger.txt13 - charger-type: "ac" or "usb" (string)
32 ac {
33 charger-type = "ac";
Dti,bq24735.txt10 - ti,ac-detect-gpios : This GPIO is optionally used to read the AC adapter
31 ti,ac-detect-gpios = <&gpio 72 0x1>;
/linux-4.4.14/fs/f2fs/
Dcrypto_fname.c210 int i = 0, bits = 0, ac = 0; in digest_encode() local
214 ac += (((unsigned char) src[i]) << bits); in digest_encode()
217 *cp++ = lookup_table[ac & 0x3f]; in digest_encode()
218 ac >>= 6; in digest_encode()
224 *cp++ = lookup_table[ac & 0x3f]; in digest_encode()
230 int i = 0, bits = 0, ac = 0; in digest_decode() local
238 ac += (p - lookup_table) << bits; in digest_decode()
241 *cp++ = ac & 0xff; in digest_decode()
242 ac >>= 8; in digest_decode()
247 if (ac) in digest_decode()
/linux-4.4.14/drivers/net/wireless/ti/wlcore/
Dtx.c210 int id, ret = -EBUSY, ac; in wl1271_tx_allocate() local
246 ac = wl1271_tx_get_queue(skb_get_queue_mapping(skb)); in wl1271_tx_allocate()
247 wl->tx_allocated_pkts[ac]++; in wl1271_tx_allocate()
270 int ac, rate_idx; in wl1271_tx_fill_hdr() local
302 ac = wl1271_tx_get_queue(skb_get_queue_mapping(skb)); in wl1271_tx_fill_hdr()
355 rate_idx = wlvif->ap.ucast_rate_idx[ac]; in wl1271_tx_fill_hdr()
501 int i, q = -1, ac; in wlcore_select_ac() local
512 ac = wl1271_tx_get_queue(i); in wlcore_select_ac()
513 if (wl->tx_queue_count[ac] && in wlcore_select_ac()
514 wl->tx_allocated_pkts[ac] < min_pkts) { in wlcore_select_ac()
[all …]
Dacx.h440 u8 ac; member
1082 u8 ac, u8 cw_min, u16 cw_max, u8 aifsn, u16 txop);
Dacx.c841 u8 ac, u8 cw_min, u16 cw_max, u8 aifsn, u16 txop) in wl1271_acx_ac_cfg() argument
847 "aifs %d txop %d", ac, cw_min, cw_max, aifsn, txop); in wl1271_acx_ac_cfg()
857 acx->ac = ac; in wl1271_acx_ac_cfg()
Dconf.h558 u8 ac; member
Dinit.c623 ret = wl1271_acx_ac_cfg(wl, wlvif, conf_ac->ac, in wl1271_init_vif_specific()
/linux-4.4.14/drivers/platform/x86/
Dhp_accel.c162 lis3_dev.ac = *((union axis_conversion *)dmi->driver_data); in lis3lv02d_dmi_matched()
355 if (lis3_dev.ac.x && lis3_dev.ac.y && lis3_dev.ac.z) { in lis3lv02d_add()
357 lis3_dev.ac.x, lis3_dev.ac.y, lis3_dev.ac.z); in lis3lv02d_add()
360 lis3_dev.ac = lis3lv02d_axis_normal; in lis3lv02d_add()
/linux-4.4.14/scripts/
Dpatch-kernel82 -ac*)
306 for PATCHNAMES in $patchdir/patch-${CURRENTFULLVERSION}-ac*\.*
310 findFile $patchdir/patch-${CURRENTFULLVERSION}-ac${ACVALUE} || break
318 findFile $patchdir/patch-${CURRENTFULLVERSION}-ac${HIGHESTPATCH} || break
319 applyPatch patch-${CURRENTFULLVERSION}-ac${HIGHESTPATCH}
/linux-4.4.14/drivers/net/wireless/b43/
Dphy_ac.c27 dev->phy.ac = phy_ac; in b43_phy_ac_op_allocate()
35 struct b43_phy_ac *phy_ac = phy->ac; in b43_phy_ac_op_free()
38 phy->ac = NULL; in b43_phy_ac_op_free()
Dphy_common.h226 struct b43_phy_ac *ac; member
DKconfig150 bool "Support for AC-PHY (802.11ac) devices (BROKEN)"
/linux-4.4.14/drivers/ata/
Dlibata-transport.c247 return &ata_scsi_transport_template->host_attrs.ac == cont; in ata_tport_match()
372 return &i->link_attr_cont.ac == cont; in ata_tlink_match()
612 return &i->dev_attr_cont.ac == cont; in ata_tdev_match()
721 i->t.host_attrs.ac.attrs = &i->port_attrs[0]; in ata_attach_transport()
722 i->t.host_attrs.ac.class = &ata_port_class.class; in ata_attach_transport()
723 i->t.host_attrs.ac.match = ata_tport_match; in ata_attach_transport()
726 i->link_attr_cont.ac.class = &ata_link_class.class; in ata_attach_transport()
727 i->link_attr_cont.ac.attrs = &i->link_attrs[0]; in ata_attach_transport()
728 i->link_attr_cont.ac.match = ata_tlink_match; in ata_attach_transport()
731 i->dev_attr_cont.ac.class = &ata_dev_class.class; in ata_attach_transport()
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/display/tilcdc/
Dpanel.txt6 - ac-bias: AC Bias Pin Frequency
7 - ac-bias-intrpt: AC Bias Pin Transitions per Interrupt
40 ac-bias = <255>;
41 ac-bias-intrpt = <0>;
/linux-4.4.14/fs/xfs/
Dxfs_itable.c358 struct xfs_bulkstat_agichunk ac; in xfs_bulkstat() local
374 ac.ac_ubuffer = &ubuffer; in xfs_bulkstat()
375 ac.ac_ubleft = ubcount * statstruct_size; /* bytes */; in xfs_bulkstat()
376 ac.ac_ubelem = 0; in xfs_bulkstat()
488 irbp < irbufend && ac.ac_ubleft >= statstruct_size; in xfs_bulkstat()
491 formatter, statstruct_size, &ac, in xfs_bulkstat()
503 if (ac.ac_ubleft < statstruct_size || error) in xfs_bulkstat()
515 *ubcountp = ac.ac_ubelem; in xfs_bulkstat()
524 if (ac.ac_ubelem) in xfs_bulkstat()
/linux-4.4.14/include/trace/events/
Dext4.h611 TP_PROTO(struct ext4_allocation_context *ac,
614 TP_ARGS(ac, pa),
626 __entry->dev = ac->ac_sb->s_dev;
627 __entry->ino = ac->ac_inode->i_ino;
641 TP_PROTO(struct ext4_allocation_context *ac,
644 TP_ARGS(ac, pa)
649 TP_PROTO(struct ext4_allocation_context *ac,
652 TP_ARGS(ac, pa)
957 TP_PROTO(struct ext4_allocation_context *ac),
959 TP_ARGS(ac),
[all …]
/linux-4.4.14/drivers/staging/rtl8192e/
Drtl819x_Qos.h172 #define IsACValid(ac) ((ac >= 0 && ac <= 7) ? true : false) argument
/linux-4.4.14/arch/arm/mach-pxa/include/mach/
Dpalm27x.h69 extern void __init palm27x_power_init(int ac, int usb);
71 static inline void palm27x_power_init(int ac, int usb) {} in palm27x_power_init() argument
/linux-4.4.14/arch/x86/kernel/cpu/
Dperf_event_intel_cqm.c329 struct perf_cgroup *ac = a->cgrp; in __conflict_event() local
336 WARN_ON_ONCE(ac == bc); in __conflict_event()
338 if (cgroup_is_descendant(ac->css.cgroup, bc->css.cgroup) || in __conflict_event()
339 cgroup_is_descendant(bc->css.cgroup, ac->css.cgroup)) in __conflict_event()
346 struct perf_cgroup *ac, *bc; in __conflict_event() local
358 ac = event_to_cgroup(a); in __conflict_event()
360 if (ac == bc) in __conflict_event()
366 if (!ac || !bc) in __conflict_event()
373 if (cgroup_is_descendant(ac->css.cgroup, bc->css.cgroup) || in __conflict_event()
374 cgroup_is_descendant(bc->css.cgroup, ac->css.cgroup)) in __conflict_event()
/linux-4.4.14/arch/powerpc/boot/
Dhack-coff.c32 main(int ac, char **av) in main() argument
41 if (ac != 2) { in main()
Daddnote.c119 main(int ac, char **av) in main() argument
125 if (ac != 2) { in main()
/linux-4.4.14/drivers/net/wireless/iwlegacy/
Dcommon.h2269 il_set_swq_id(struct il_tx_queue *txq, u8 ac, u8 hwq) in il_set_swq_id() argument
2271 BUG_ON(ac > 3); /* only have 2 bits */ in il_set_swq_id()
2274 txq->swq_id = (hwq << 2) | ac; in il_set_swq_id()
2278 _il_wake_queue(struct il_priv *il, u8 ac) in _il_wake_queue() argument
2280 if (atomic_dec_return(&il->queue_stop_count[ac]) <= 0) in _il_wake_queue()
2281 ieee80211_wake_queue(il->hw, ac); in _il_wake_queue()
2285 _il_stop_queue(struct il_priv *il, u8 ac) in _il_stop_queue() argument
2287 if (atomic_inc_return(&il->queue_stop_count[ac]) > 0) in _il_stop_queue()
2288 ieee80211_stop_queue(il->hw, ac); in _il_stop_queue()
2294 u8 ac = queue & 3; in il_wake_queue() local
[all …]
Ddebug.c783 il->qos_data.def_qos_parm.ac[i].cw_min, in il_dbgfs_qos_read()
784 il->qos_data.def_qos_parm.ac[i].cw_max, in il_dbgfs_qos_read()
785 il->qos_data.def_qos_parm.ac[i].aifsn, in il_dbgfs_qos_read()
786 il->qos_data.def_qos_parm.ac[i].edca_txop); in il_dbgfs_qos_read()
Dcommon.c4523 il->qos_data.def_qos_parm.ac[q].cw_min = in il_mac_conf_tx()
4525 il->qos_data.def_qos_parm.ac[q].cw_max = in il_mac_conf_tx()
4527 il->qos_data.def_qos_parm.ac[q].aifsn = params->aifs; in il_mac_conf_tx()
4528 il->qos_data.def_qos_parm.ac[q].edca_txop = in il_mac_conf_tx()
4531 il->qos_data.def_qos_parm.ac[q].reserved1 = 0; in il_mac_conf_tx()
/linux-4.4.14/samples/bpf/
Dtracex3_user.c104 int main(int ac, char **argv) in main() argument
116 for (i = 1; i < ac; i++) { in main()
Dtracex1_user.c7 int main(int ac, char **argv) in main() argument
Dtracex5_user.c26 int main(int ac, char **argv) in main() argument
Dsockex1_user.c9 int main(int ac, char **argv) in main() argument
Dsockex2_user.c14 int main(int ac, char **argv) in main() argument
Dtracex4_user.c51 int main(int ac, char **argv) in main() argument
Dtracex2_user.c106 int main(int ac, char **argv) in main() argument
/linux-4.4.14/Documentation/devicetree/bindings/display/
Dcirrus,clps711x-fb.txt12 - ac-prescale : LCD AC bias frequency. This frequency is the required
32 ac-prescale = <17>;
/linux-4.4.14/drivers/net/wireless/ath/ath10k/
DKconfig2 tristate "Atheros 802.11ac wireless cards support"
7 Atheros IEEE 802.11ac family of chipsets.
Dwmi-tlv.c1838 struct wmi_sta_uapsd_auto_trig_param *ac; in ath10k_wmi_tlv_put_uapsd_ac() local
1843 tlv->len = __cpu_to_le16(sizeof(*ac)); in ath10k_wmi_tlv_put_uapsd_ac()
1844 ac = (void *)tlv->value; in ath10k_wmi_tlv_put_uapsd_ac()
1846 ac->wmm_ac = __cpu_to_le32(arg->wmm_ac); in ath10k_wmi_tlv_put_uapsd_ac()
1847 ac->user_priority = __cpu_to_le32(arg->user_priority); in ath10k_wmi_tlv_put_uapsd_ac()
1848 ac->service_interval = __cpu_to_le32(arg->service_interval); in ath10k_wmi_tlv_put_uapsd_ac()
1849 ac->suspend_interval = __cpu_to_le32(arg->suspend_interval); in ath10k_wmi_tlv_put_uapsd_ac()
1850 ac->delay_interval = __cpu_to_le32(arg->delay_interval); in ath10k_wmi_tlv_put_uapsd_ac()
1854 ac->wmm_ac, ac->user_priority, ac->service_interval, in ath10k_wmi_tlv_put_uapsd_ac()
1855 ac->suspend_interval, ac->delay_interval); in ath10k_wmi_tlv_put_uapsd_ac()
[all …]
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/
Dmain.c149 enum htc_endpoint_id ath6kl_ac2_endpoint_id(void *devt, u8 ac) in ath6kl_ac2_endpoint_id() argument
152 return ar->ac2ep_map[ac]; in ath6kl_ac2_endpoint_id()
705 u8 ac; in ath6kl_update_target_stats() local
723 for (ac = 0; ac < WMM_NUM_AC; ac++) in ath6kl_update_target_stats()
724 stats->tx_pkt_per_ac[ac] += in ath6kl_update_target_stats()
725 le32_to_cpu(tgt_stats->stats.tx.pkt_per_ac[ac]); in ath6kl_update_target_stats()
822 u8 ac; in ath6kl_tgt_stats_event() local
828 for (ac = 0; ac < AP_MAX_NUM_STA; ac++) { in ath6kl_tgt_stats_event()
829 st_ap = &ap->sta[ac]; in ath6kl_tgt_stats_event()
830 st_p = &p->sta[ac]; in ath6kl_tgt_stats_event()
Dhtc_mbox.c765 u8 ac = WMM_NUM_AC; in ath6kl_htc_tx_bundle() local
769 ac = target->dev->ar->ep2ac_map[endpoint->eid]; in ath6kl_htc_tx_bundle()
789 if ((ac < WMM_NUM_AC) && (ac != WMM_AC_BK)) { in ath6kl_htc_tx_bundle()
790 if (WMM_AC_BE == ac) in ath6kl_htc_tx_bundle()
801 txb_mask = ((1 << ac) - 1); in ath6kl_htc_tx_bundle()
865 u8 ac = WMM_NUM_AC; in ath6kl_htc_tx_from_queue() local
886 ac = target->dev->ar->ep2ac_map[endpoint->eid]; in ath6kl_htc_tx_from_queue()
910 if (target->tx_bndl_mask & (1 << ac)) { in ath6kl_htc_tx_from_queue()
946 if (!(target->tx_bndl_mask & (1 << ac)) && in ath6kl_htc_tx_from_queue()
947 (ac < WMM_NUM_AC)) { in ath6kl_htc_tx_from_queue()
[all …]
Dwmi.c301 u8 *ac) in ath6kl_wmi_implicit_create_pstream() argument
383 *ac = traffic_class; in ath6kl_wmi_implicit_create_pstream()
1531 reply->ac, tsid); in ath6kl_wmi_cac_event_rx()
1538 active_tsids = wmi->stream_exist_for_ac[reply->ac]; in ath6kl_wmi_cac_event_rx()
1547 reply->ac, index); in ath6kl_wmi_cac_event_rx()
1561 wmi->stream_exist_for_ac[reply->ac] &= ~(1 << ts_id); in ath6kl_wmi_cac_event_rx()
1562 active_tsids = wmi->stream_exist_for_ac[reply->ac]; in ath6kl_wmi_cac_event_rx()
1569 ath6kl_indicate_tx_activity(wmi->parent_dev, reply->ac, in ath6kl_wmi_cac_event_rx()
1571 wmi->fat_pipe_exist &= ~(1 << reply->ac); in ath6kl_wmi_cac_event_rx()
Dinit.c273 u8 ac, in set_ac2_ep_map() argument
276 ar->ac2ep_map[ac] = ep; in set_ac2_ep_map()
277 ar->ep2ac_map[ep] = ac; in set_ac2_ep_map()
Dtxrx.c364 u8 ac = 99; /* initialize to unmapped ac */ in ath6kl_data_tx() local
450 0, test_bit(WMM_ENABLED, &vif->flags), &ac); in ath6kl_data_tx()
463 eid = ar->ac2ep_map[ac]; in ath6kl_data_tx()
Dcore.h955 enum htc_endpoint_id ath6kl_ac2_endpoint_id(void *devt, u8 ac);
Dwmi.h1936 u8 ac; member
2548 bool wmm_enabled, u8 *ac);
/linux-4.4.14/fs/btrfs/
Dtransaction.c1673 struct btrfs_async_commit *ac = in do_async_commit() local
1680 if (ac->newtrans->type & __TRANS_FREEZABLE) in do_async_commit()
1681 __sb_writers_acquired(ac->root->fs_info->sb, SB_FREEZE_FS); in do_async_commit()
1683 current->journal_info = ac->newtrans; in do_async_commit()
1685 btrfs_commit_transaction(ac->newtrans, ac->root); in do_async_commit()
1686 kfree(ac); in do_async_commit()
1693 struct btrfs_async_commit *ac; in btrfs_commit_transaction_async() local
1696 ac = kmalloc(sizeof(*ac), GFP_NOFS); in btrfs_commit_transaction_async()
1697 if (!ac) in btrfs_commit_transaction_async()
1700 INIT_WORK(&ac->work, do_async_commit); in btrfs_commit_transaction_async()
[all …]
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-class-power-twl40305 be drawn from the ac (Accessory Charger) or
39 Changing mode for 'ac' port.
/linux-4.4.14/net/ipv6/
Danycast.c209 static void aca_put(struct ifacaddr6 *ac) in aca_put() argument
211 if (atomic_dec_and_test(&ac->aca_refcnt)) { in aca_put()
212 in6_dev_put(ac->aca_idev); in aca_put()
213 dst_release(&ac->aca_rt->dst); in aca_put()
214 kfree(ac); in aca_put()
/linux-4.4.14/drivers/net/wireless/iwlwifi/dvm/
Dmac80211.c1211 ctx->qos_data.def_qos_parm.ac[q].cw_min = in iwlagn_mac_conf_tx()
1213 ctx->qos_data.def_qos_parm.ac[q].cw_max = in iwlagn_mac_conf_tx()
1215 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs; in iwlagn_mac_conf_tx()
1216 ctx->qos_data.def_qos_parm.ac[q].edca_txop = in iwlagn_mac_conf_tx()
1219 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0; in iwlagn_mac_conf_tx()
1247 int err, ac; in iwl_setup_interface() local
1278 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in iwl_setup_interface()
1279 vif->hw_queue[ac] = ctx->ac_to_queue[ac]; in iwl_setup_interface()
Ddebugfs.c490 ctx->qos_data.def_qos_parm.ac[i].cw_min, in iwl_dbgfs_qos_read()
491 ctx->qos_data.def_qos_parm.ac[i].cw_max, in iwl_dbgfs_qos_read()
492 ctx->qos_data.def_qos_parm.ac[i].aifsn, in iwl_dbgfs_qos_read()
493 ctx->qos_data.def_qos_parm.ac[i].edca_txop); in iwl_dbgfs_qos_read()
/linux-4.4.14/include/linux/platform_data/
Dlp8727.h63 struct lp8727_chg_param *ac; member
/linux-4.4.14/arch/powerpc/crypto/
Daes-tab-4k.S108 .long R(c8, 64, 64, ac), R(ba, 5d, 5d, e7)
123 .long R(43, ac, ac, ef), R(c4, 62, 62, a6)
130 .long R(d8, 6c, 6c, b4), R(ac, 56, 56, fa)
172 .long R(ac, fa, 58, ab), R(4b, e3, 03, 93)
188 .long R(c9, 20, ac, 66), R(7d, ce, 3a, b4)
220 .long R(1e, 11, 70, ac), R(6c, 5a, 72, 4e)
259 .long R(c8, ac, 99, 3b), R(10, 18, 7d, a7)
/linux-4.4.14/Documentation/devicetree/bindings/clock/
Dqcom,gcc.txt15 "qcom,gcc-msm8974pro-ac"
/linux-4.4.14/include/linux/mfd/wm8350/
Dsupply.h128 struct power_supply *ac; member
/linux-4.4.14/arch/s390/include/asm/
Dqdio.h66 u32 ac : 8; member
104 u32 ac : 8; member
/linux-4.4.14/drivers/net/wireless/mwifiex/
DMakefile26 mwifiex-y += 11ac.o
DKconfig6 802.11n/ac chipsets.
Dtdls.c408 memcpy(&wmm->ac[0], ac_be, sizeof(ac_be)); in mwifiex_tdls_add_wmm_param_ie()
409 memcpy(&wmm->ac[1], ac_bk, sizeof(ac_bk)); in mwifiex_tdls_add_wmm_param_ie()
410 memcpy(&wmm->ac[2], ac_vi, sizeof(ac_vi)); in mwifiex_tdls_add_wmm_param_ie()
411 memcpy(&wmm->ac[3], ac_vo, sizeof(ac_vo)); in mwifiex_tdls_add_wmm_param_ie()
Dwmm.c386 enum mwifiex_wmm_ac_e ac, ac_down; in mwifiex_wmm_downgrade_tid() local
389 ac = mwifiex_wmm_convert_tos_to_ac(priv->adapter, tid); in mwifiex_wmm_downgrade_tid()
390 ac_down = priv->wmm.ac_down_graded_vals[ac]; in mwifiex_wmm_downgrade_tid()
/linux-4.4.14/drivers/hid/
Dwacom.h123 struct power_supply *ac; member
Dwacom_sys.c1072 wacom->ac = power_supply_register(&wacom->hdev->dev, in wacom_initialize_battery()
1075 if (IS_ERR(wacom->ac)) { in wacom_initialize_battery()
1077 return PTR_ERR(wacom->ac); in wacom_initialize_battery()
1080 power_supply_powers(wacom->ac, &wacom->hdev->dev); in wacom_initialize_battery()
1091 power_supply_unregister(wacom->ac); in wacom_destroy_battery()
1092 wacom->ac = NULL; in wacom_destroy_battery()
/linux-4.4.14/drivers/staging/iio/Documentation/
Dsysfs-bus-iio-ad71926 excitation mode found on some converters. In ac excitation mode,
/linux-4.4.14/arch/arm/mach-pxa/
Dpalm27x.c424 void __init palm27x_power_init(int ac, int usb) in palm27x_power_init() argument
426 palm_ac_state = ac; in palm27x_power_init()
/linux-4.4.14/drivers/misc/lis3lv02d/
Dlis3lv02d.c125 module_param_array_named(axes, lis3_dev.ac.as_array, axis, NULL, 0644);
211 *x = lis3lv02d_get_axis(lis3->ac.x, position); in lis3lv02d_get_xyz()
212 *y = lis3lv02d_get_axis(lis3->ac.y, position); in lis3lv02d_get_xyz()
213 *z = lis3lv02d_get_axis(lis3->ac.z, position); in lis3lv02d_get_xyz()
727 lis3->mapped_btns[0] = lis3lv02d_get_axis(abs(lis3->ac.x), btns); in lis3lv02d_joystick_enable()
728 lis3->mapped_btns[1] = lis3lv02d_get_axis(abs(lis3->ac.y), btns); in lis3lv02d_joystick_enable()
729 lis3->mapped_btns[2] = lis3lv02d_get_axis(abs(lis3->ac.z), btns); in lis3lv02d_joystick_enable()
Dlis3lv02d_spi.c86 lis3_dev.ac = lis3lv02d_axis_normal; in lis302dl_spi_probe()
Dlis3lv02d.h301 union axis_conversion ac; /* hw -> logical axis */ member
Dlis3lv02d_i2c.c168 lis3_dev.ac = lis3lv02d_axis_map; in lis3lv02d_i2c_probe()
/linux-4.4.14/scripts/kconfig/
Dconf.c491 int main(int ac, char **av) in main() argument
504 while ((opt = getopt_long(ac, av, "s", long_opts, NULL)) != -1) { in main()
558 if (ac == optind) { in main()
Dkxgettext.c228 int main(int ac, char **av) in main() argument
Dmconf.c1007 int main(int ac, char **av) in main() argument
1018 if (ac > 1 && strcmp(av[1], "-s") == 0) { in main()
Dgconf.c1444 int main(int ac, char *av[]) in main() argument
1456 gtk_init(&ac, &av); in main()
1472 if (ac > 1 && av[1][0] == '-') { in main()
Dnconf.c1476 int main(int ac, char **av) in main() argument
1485 if (ac > 1 && strcmp(av[1], "-s") == 0) { in main()
Dqconf.cc1824 int main(int ac, char** av) in main() argument
1833 configApp = new QApplication(ac, av); in main()
1834 if (ac > 1 && av[1][0] == '-') { in main()
/linux-4.4.14/drivers/scsi/esas2r/
Desas2r_ioctl.c1122 struct atto_hba_adap_ctrl *ac = &hi->data.adap_ctrl; in hba_ioctl_callback() local
1135 if (ac->adap_func == ATTO_AC_AF_HARD_RST) { in hba_ioctl_callback()
1137 } else if (ac->adap_func != ATTO_AC_AF_GET_STATE) { in hba_ioctl_callback()
1143 ac->adap_state = ATTO_AC_AS_RST_SCHED; in hba_ioctl_callback()
1145 ac->adap_state = ATTO_AC_AS_RST_IN_PROG; in hba_ioctl_callback()
1147 ac->adap_state = ATTO_AC_AS_RST_DISC; in hba_ioctl_callback()
1149 ac->adap_state = ATTO_AC_AS_DISABLED; in hba_ioctl_callback()
1151 ac->adap_state = ATTO_AC_AS_DEGRADED; in hba_ioctl_callback()
1153 ac->adap_state = ATTO_AC_AS_OK; in hba_ioctl_callback()
/linux-4.4.14/drivers/staging/rtl8192u/ieee80211/
Drtl819x_Qos.h530 #define IsACValid(ac) ((ac<=7 )?true:false ) argument
/linux-4.4.14/fs/ceph/
Ddebugfs.c163 struct ceph_auth_client *ac = fsc->client->monc.auth; in mds_sessions_show() local
170 seq_printf(s, "global_id %llu\n", ac->global_id); in mds_sessions_show()
Dmds_client.c3880 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth; in get_authorizer() local
3884 ceph_auth_destroy_authorizer(ac, auth->authorizer); in get_authorizer()
3888 int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_MDS, in get_authorizer()
3893 int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_MDS, in get_authorizer()
3898 *proto = ac->protocol; in get_authorizer()
3908 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth; in verify_authorizer_reply() local
3910 return ceph_auth_verify_authorizer_reply(ac, s->s_auth.authorizer, len); in verify_authorizer_reply()
3917 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth; in invalidate_authorizer() local
3919 ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_MDS); in invalidate_authorizer()
/linux-4.4.14/drivers/scsi/libsas/
Dsas_ata.c102 enum ata_completion_errors ac; in sas_ata_task_done() local
152 ac = sas_to_ata_err(stat); in sas_ata_task_done()
153 if (ac) { in sas_ata_task_done()
158 qc->err_mask = ac; in sas_ata_task_done()
/linux-4.4.14/drivers/net/wireless/ti/wl1251/
Dacx.c992 int wl1251_acx_ac_cfg(struct wl1251 *wl, u8 ac, u8 cw_min, u16 cw_max, in wl1251_acx_ac_cfg() argument
999 "aifs %d txop %d", ac, cw_min, cw_max, aifs, txop); in wl1251_acx_ac_cfg()
1005 acx->ac = ac; in wl1251_acx_ac_cfg()
Dacx.h1256 u8 ac; member
1492 int wl1251_acx_ac_cfg(struct wl1251 *wl, u8 ac, u8 cw_min, u16 cw_max,
/linux-4.4.14/Documentation/networking/
Dudplite.txt15 http://web.archive.org/web/*/http://www.erg.abdn.ac.uk/users/gerrit/udp-lite/
19 http://web.archive.org/web/*/http://www.erg.abdn.ac.uk/users/gerrit/udp-lite/
277 The current maintainer is Gerrit Renker, <gerrit@erg.abdn.ac.uk>. Initial
278 code was developed by William Stanislaus, <william@erg.abdn.ac.uk>.
Dpolicy-routing.txt150 kuznet@ms2.inr.ac.ru
/linux-4.4.14/drivers/s390/cio/
Dqdio_setup.c352 DBF_EVENT("3:%4x qib:%4x", irq_ptr->ssqd_desc.qdioac3, irq_ptr->qib.ac); in qdio_setup_ssqd_info()
421 irq_ptr->qdr->ac = qdio_init->qdr_ac; in setup_qdr()
531 (irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED) ? 1 : 0, in qdio_print_subchannel_info()
Dqdio.h344 (q->irq_ptr->qib.ac & QIB_AC_OUTBOUND_PCI_SUPPORTED)
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/
Dmain.c343 static u8 brcms_ac_to_fifo(u8 ac) in brcms_ac_to_fifo() argument
345 if (ac >= ARRAY_SIZE(ac_to_fifo_mapping)) in brcms_ac_to_fifo()
347 return ac_to_fifo_mapping[ac]; in brcms_ac_to_fifo()
5002 int ac; in brcms_c_wme_retries_write() local
5008 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in brcms_c_wme_retries_write()
5009 brcms_b_write_shm(wlc->hw, M_AC_TXLMT_ADDR(ac), in brcms_c_wme_retries_write()
5010 wlc->wme_retries[ac]); in brcms_c_wme_retries_write()
5459 int ac; in brcms_c_set_rate_limit() local
5470 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in brcms_c_set_rate_limit()
5471 wlc->wme_retries[ac] = SFIELD(wlc->wme_retries[ac], in brcms_c_set_rate_limit()
[all …]
/linux-4.4.14/drivers/of/
Dbase.c339 int ac, prop_len, tid; in __of_find_n_match_cpu_property() local
342 ac = of_n_addr_cells(cpun); in __of_find_n_match_cpu_property()
344 if (!cell || !ac) in __of_find_n_match_cpu_property()
346 prop_len /= sizeof(*cell) * ac; in __of_find_n_match_cpu_property()
348 hwid = of_read_number(cell, ac); in __of_find_n_match_cpu_property()
354 cell += ac; in __of_find_n_match_cpu_property()
/linux-4.4.14/Documentation/hwmon/
Dmax166811 David George <david.george@ska.ac.za>
/linux-4.4.14/drivers/staging/rtl8188eu/include/
Dieee80211_ext.h100 struct wme_ac_parameter ac[4]; member
Drtw_xmit.h340 struct sta_info *psta, int up, u8 *ac);
/linux-4.4.14/drivers/tty/vt/
Dcp437.uni37 0x16 U+25ac
195 0xaa U+00ac
/linux-4.4.14/Documentation/
Djava.txt58 were supplied by Colin J. Watson <cjw44@cam.ac.uk>.
156 * Copyright (C) 1999 Colin J. Watson <cjw44@cam.ac.uk>.
402 new scripts by Colin J. Watson <cjw44@cam.ac.uk>
DBUG-HUNTING169 > 00 00 55 57 56 53 81 ec bc 00 00 00 8b ac 24 d0 00 00 00 8b 5d 08
/linux-4.4.14/drivers/net/wireless/brcm80211/
DKconfig68 IEEE802.11ac embedded FullMAC WLAN driver. Say Y if you want to
/linux-4.4.14/drivers/atm/
Dnicstarmac.copyright2 * nicstar.c, M. Welsh (matt.welsh@cl.cam.ac.uk)
/linux-4.4.14/drivers/net/wireless/ti/wl12xx/
Dmain.c138 .ac = CONF_TX_AC_BE,
145 .ac = CONF_TX_AC_BK,
152 .ac = CONF_TX_AC_VI,
159 .ac = CONF_TX_AC_VO,
/linux-4.4.14/Documentation/ide/
DChangeLog.ide-floppy.1996-200254 * Ver 0.97 Jul 22 01 Merge 0.91-0.96 onto 0.9.sv for ac series
/linux-4.4.14/arch/x86/math-emu/
DREADME406 Nick Holloway, alfie@dcs.warwick.ac.uk
407 Hermano Moura, moura@dcs.gla.ac.uk
408 Jon Jagger, J.Jagger@scp.ac.uk
415 tom@vlsivie.tuwien.ac.at
/linux-4.4.14/drivers/net/wireless/ti/wl18xx/
Dmain.c269 .ac = CONF_TX_AC_BE,
276 .ac = CONF_TX_AC_BK,
283 .ac = CONF_TX_AC_VI,
290 .ac = CONF_TX_AC_VO,
/linux-4.4.14/Documentation/scsi/
DNinjaSCSI.txt128 2001/08/08 yokota@netlab.is.tsukuba.ac.jp <YOKOTA Hiroshi>
Daacraid.txt38 9005:0286:9005:02ac Adaptec 1800 (Typhoon44)
DChangeLog.megaraid61 > command: Read (10): 28 00 33 f6 24 ac 00 00 1a 00
67 > command: Read (10): 28 00 33 f6 24 ac 00 00 1a 00
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/
DKconfig103 This is the driver for Realtek RTL8821AE/RTL8812AE 802.11ac PCIe
Dcore.c1004 mac->ac[aci].aifs = param->aifs; in rtl_op_conf_tx()
1005 mac->ac[aci].cw_min = cpu_to_le16(param->cw_min); in rtl_op_conf_tx()
1006 mac->ac[aci].cw_max = cpu_to_le16(param->cw_max); in rtl_op_conf_tx()
1007 mac->ac[aci].tx_op = cpu_to_le16(param->txop); in rtl_op_conf_tx()
/linux-4.4.14/arch/arm/boot/dts/
Dam335x-pepper.dts196 ac-bias = <255>;
197 ac-bias-intrpt = <0>;
Drk3288-veyron-chromebook.dtsi194 ac_present_ap: ac-present-ap {
Dam335x-evmsk.dts173 ac-bias = <255>;
174 ac-bias-intrpt = <0>;
Dam335x-evm.dts110 ac-bias = <255>;
111 ac-bias-intrpt = <0>;
Dtegra124-nyan.dtsi325 ti,ac-detect-gpios = <&gpio
/linux-4.4.14/drivers/staging/rtl8188eu/core/
Drtw_xmit.c1556 …ruct tx_servq *rtw_get_sta_pending(struct adapter *padapter, struct sta_info *psta, int up, u8 *ac) in rtw_get_sta_pending() argument
1564 *(ac) = 3; in rtw_get_sta_pending()
1570 *(ac) = 1; in rtw_get_sta_pending()
1576 *(ac) = 0; in rtw_get_sta_pending()
1583 *(ac) = 2; in rtw_get_sta_pending()
/linux-4.4.14/drivers/staging/rtl8723au/core/
Drtw_xmit.c1667 …_servq *rtw_get_sta_pending23a(struct rtw_adapter *padapter, struct sta_info *psta, int up, u8 *ac) in rtw_get_sta_pending23a() argument
1675 *(ac) = 3; in rtw_get_sta_pending23a()
1682 *(ac) = 1; in rtw_get_sta_pending23a()
1689 *(ac) = 0; in rtw_get_sta_pending23a()
1697 *(ac) = 2; in rtw_get_sta_pending23a()
/linux-4.4.14/Documentation/laptops/
Dlaptop-mode.txt325 # ac gets connected/disconnected from a laptop
706 action=/etc/acpi/actions/ac.sh %e
716 ----------------/etc/acpi/actions/ac.sh BEGIN-----------------------------------
719 # ac on/offline event handler
733 ---------------------------/etc/acpi/actions/ac.sh END--------------------------
/linux-4.4.14/tools/usb/usbip/
DREADME151 1-2.2.1: Apple Computer, Inc. : unknown product (05ac:0203)
DINSTALL40 The file `configure.ac' (or `configure.in') is used to create
41 `configure' by a program called `autoconf'. You need `configure.ac' if
/linux-4.4.14/drivers/staging/rtl8723au/include/
Drtw_xmit.h348 struct sta_info *psta, int up, u8 *ac);
/linux-4.4.14/Documentation/sound/oss/
DAudioExcelDSP1691 > From: Mr S J Greenaway <sjg95@unixfe.rl.ac.uk>
/linux-4.4.14/Documentation/early-userspace/
Dbuffer-format.txt50 by the ASCII string "000012ac"):
/linux-4.4.14/drivers/net/wireless/ath/ath9k/
Dmain.c2487 int ac; in ath9k_unassign_vif_chanctx() local
2502 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in ath9k_unassign_vif_chanctx()
2503 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE; in ath9k_unassign_vif_chanctx()
/linux-4.4.14/arch/powerpc/kernel/
Dprom_init.c2374 u32 ac, sc; in fixup_device_tree_maple_memory_controller() local
2383 prom_getprop(prom.root, "#address-cells", &ac, sizeof(ac)); in fixup_device_tree_maple_memory_controller()
2385 if ((ac != 2) || (sc != 2)) in fixup_device_tree_maple_memory_controller()
/linux-4.4.14/Documentation/i2c/busses/
Di2c-parport153 Velleman K8000 Howto http://howto.htlw16.ac.at/k8000-howto.html
/linux-4.4.14/crypto/
DKconfig768 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
1284 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1306 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1328 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1350 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1373 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
/linux-4.4.14/arch/ia64/include/asm/
Dprocessor.h90 __u64 ac : 1; member
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192cu/
Dhw.c1791 u16 cw_min = le16_to_cpu(mac->ac[e_aci].cw_min); in rtl92cu_set_hw_reg()
1792 u16 cw_max = le16_to_cpu(mac->ac[e_aci].cw_max); in rtl92cu_set_hw_reg()
1793 u16 tx_op = le16_to_cpu(mac->ac[e_aci].tx_op); in rtl92cu_set_hw_reg()
1795 u4b_ac_param = (u32) mac->ac[e_aci].aifs; in rtl92cu_set_hw_reg()
/linux-4.4.14/Documentation/video4linux/bttv/
DSound-FAQ83 from ftp://telepresence.dmem.strath.ac.uk/pub/bt848/winutil, but it
/linux-4.4.14/include/net/
Dmac80211.h1747 u8 ac; member
3372 struct ieee80211_vif *vif, u16 ac,
/linux-4.4.14/net/wireless/
Dtrace.h1015 __field(enum nl80211_ac, ac)
1024 __entry->ac = params->ac;
1031 WIPHY_PR_ARG, NETDEV_PR_ARG, __entry->ac, __entry->txop,
/linux-4.4.14/Documentation/filesystems/
Dcoda.txt377 44.. TThhee iinntteerrffaaccee aatt tthhee ccaallll lleevveell
511 44..22.. TThhee ppiiooccttll iinntteerrffaaccee
699 44..77.. aacccceessss
1231 44..2222.. iinnaaccttiivvee
1426 55.. TThhee mmiinniiccaacchhee aanndd ddoowwnnccaallllss
/linux-4.4.14/tools/perf/util/intel-pt-decoder/
Dx86-opcode-map.txt218 ac: LODS/B AL,Xb
517 ac: SHRD Ev,Gv,Ib
724 ac: vfnmadd213ps/d Vx,Hx,Wx (66),(v)
/linux-4.4.14/arch/x86/lib/
Dx86-opcode-map.txt218 ac: LODS/B AL,Xb
517 ac: SHRD Ev,Gv,Ib
724 ac: vfnmadd213ps/d Vx,Hx,Wx (66),(v)
/linux-4.4.14/include/linux/mfd/
Dcros_ec_commands.h2207 int ac; member

12