Home
last modified time | relevance | path

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

12

/linux-4.1.27/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.c79 struct adxl34x *ac; in adxl34x_i2c_probe() local
89 ac = adxl34x_probe(&client->dev, client->irq, false, in adxl34x_i2c_probe()
93 if (IS_ERR(ac)) in adxl34x_i2c_probe()
94 return PTR_ERR(ac); in adxl34x_i2c_probe()
96 i2c_set_clientdata(client, ac); in adxl34x_i2c_probe()
103 struct adxl34x *ac = i2c_get_clientdata(client); in adxl34x_i2c_remove() local
105 return adxl34x_remove(ac); in adxl34x_i2c_remove()
111 struct adxl34x *ac = i2c_get_clientdata(client); in adxl34x_i2c_suspend() local
113 adxl34x_suspend(ac); in adxl34x_i2c_suspend()
121 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.1.27/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.c17 static void ceph_x_validate_tickets(struct ceph_auth_client *ac, int *pneed);
19 static int ceph_x_is_authenticated(struct ceph_auth_client *ac) in ceph_x_is_authenticated() argument
21 struct ceph_x_info *xi = ac->private; in ceph_x_is_authenticated()
24 ceph_x_validate_tickets(ac, &need); in ceph_x_is_authenticated()
26 ac->want_keys, need, xi->have_keys); in ceph_x_is_authenticated()
27 return (ac->want_keys & xi->have_keys) == ac->want_keys; in ceph_x_is_authenticated()
30 static int ceph_x_should_authenticate(struct ceph_auth_client *ac) in ceph_x_should_authenticate() argument
32 struct ceph_x_info *xi = ac->private; in ceph_x_should_authenticate()
35 ceph_x_validate_tickets(ac, &need); in ceph_x_should_authenticate()
37 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.c1039 struct ceph_auth_client *ac = osd->o_osdc->client->monc.auth; in put_osd() local
1042 ceph_auth_destroy_authorizer(ac, osd->o_auth.authorizer); in put_osd()
2940 struct ceph_auth_client *ac = osdc->client->monc.auth; in get_authorizer() local
2944 ceph_auth_destroy_authorizer(ac, auth->authorizer); in get_authorizer()
2948 int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_OSD, in get_authorizer()
2953 int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_OSD, in get_authorizer()
2958 *proto = ac->protocol; in get_authorizer()
2968 struct ceph_auth_client *ac = osdc->client->monc.auth; in verify_authorizer_reply() local
2970 return ceph_auth_verify_authorizer_reply(ac, o->o_auth.authorizer, len); in verify_authorizer_reply()
2977 struct ceph_auth_client *ac = osdc->client->monc.auth; in invalidate_authorizer() local
[all …]
/linux-4.1.27/drivers/acpi/
Dac.c121 static int acpi_ac_get_state(struct acpi_ac *ac) in acpi_ac_get_state() argument
125 if (!ac) in acpi_ac_get_state()
128 status = acpi_evaluate_integer(ac->device->handle, "_PSR", NULL, in acpi_ac_get_state()
129 &ac->state); in acpi_ac_get_state()
133 ac->state = ACPI_AC_STATUS_UNKNOWN; in acpi_ac_get_state()
147 struct acpi_ac *ac = to_acpi_ac(psy); in get_ac_property() local
149 if (!ac) in get_ac_property()
152 if (acpi_ac_get_state(ac)) in get_ac_property()
157 val->intval = ac->state; in get_ac_property()
178 struct acpi_ac *ac = seq->private; in acpi_ac_seq_show() local
[all …]
DMakefile66 obj-$(CONFIG_ACPI_AC) += ac.o
/linux-4.1.27/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.1.27/fs/ext4/
Dmballoc.c1623 static void ext4_mb_use_best_found(struct ext4_allocation_context *ac, in ext4_mb_use_best_found() argument
1626 struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb); in ext4_mb_use_best_found()
1629 BUG_ON(ac->ac_b_ex.fe_group != e4b->bd_group); in ext4_mb_use_best_found()
1630 BUG_ON(ac->ac_status == AC_STATUS_FOUND); in ext4_mb_use_best_found()
1632 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()
1633 ac->ac_b_ex.fe_logical = ac->ac_g_ex.fe_logical; in ext4_mb_use_best_found()
1634 ret = mb_mark_used(e4b, &ac->ac_b_ex); in ext4_mb_use_best_found()
1638 ac->ac_f_ex = ac->ac_b_ex; in ext4_mb_use_best_found()
1640 ac->ac_status = AC_STATUS_FOUND; in ext4_mb_use_best_found()
1641 ac->ac_tail = ret & 0xffff; in ext4_mb_use_best_found()
[all …]
Dcrypto_fname.c214 int i = 0, bits = 0, ac = 0; in digest_encode() local
218 ac += (((unsigned char) src[i]) << bits); in digest_encode()
221 *cp++ = lookup_table[ac & 0x3f]; in digest_encode()
222 ac >>= 6; in digest_encode()
228 *cp++ = lookup_table[ac & 0x3f]; in digest_encode()
234 int i = 0, bits = 0, ac = 0; in digest_decode() local
242 ac += (p - lookup_table) << bits; in digest_decode()
245 *cp++ = ac & 0xff; in digest_decode()
246 ac >>= 8; in digest_decode()
251 if (ac) in digest_decode()
/linux-4.1.27/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 if (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()
706 ac->ac_inode = local_alloc_inode; in ocfs2_reserve_local_alloc_bits()
708 ac->ac_alloc_slot = osb->slot_num; in ocfs2_reserve_local_alloc_bits()
709 ac->ac_which = OCFS2_AC_USE_LOCAL; in ocfs2_reserve_local_alloc_bits()
711 ac->ac_bh = osb->local_alloc_bh; in ocfs2_reserve_local_alloc_bits()
720 (unsigned long long)ac->ac_max_block, in ocfs2_reserve_local_alloc_bits()
730 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,
Dalloc.c5618 struct ocfs2_alloc_context **ac, in ocfs2_reserve_blocks_for_rec_trunc() argument
5625 *ac = NULL; in ocfs2_reserve_blocks_for_rec_trunc()
5639 ret = ocfs2_reserve_new_metadata_blocks(osb, extra_blocks, ac); in ocfs2_reserve_blocks_for_rec_trunc()
5649 if (*ac) { in ocfs2_reserve_blocks_for_rec_trunc()
5650 ocfs2_free_alloc_context(*ac); in ocfs2_reserve_blocks_for_rec_trunc()
5651 *ac = NULL; in ocfs2_reserve_blocks_for_rec_trunc()
/linux-4.1.27/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.1.27/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.1.27/mm/
Dslab.c207 struct array_cache ac; member
660 static void init_arraycache(struct array_cache *ac, int limit, int batch) in init_arraycache() argument
669 kmemleak_no_scan(ac); in init_arraycache()
670 if (ac) { in init_arraycache()
671 ac->avail = 0; in init_arraycache()
672 ac->limit = limit; in init_arraycache()
673 ac->batchcount = batch; in init_arraycache()
674 ac->touched = 0; in init_arraycache()
682 struct array_cache *ac = NULL; in alloc_arraycache() local
684 ac = kmalloc_node(memsize, gfp, node); in alloc_arraycache()
[all …]
Dpage_alloc.c2110 const struct alloc_context *ac) in get_page_from_freelist() argument
2112 struct zonelist *zonelist = ac->zonelist; in get_page_from_freelist()
2131 for_each_zone_zonelist_nodemask(zone, z, zonelist, ac->high_zoneidx, in get_page_from_freelist()
2132 ac->nodemask) { in get_page_from_freelist()
2149 if (!zone_local(ac->preferred_zone, zone)) in get_page_from_freelist()
2187 ac->classzone_idx, alloc_flags)) { in get_page_from_freelist()
2208 !zone_allows_reclaim(ac->preferred_zone, zone)) in get_page_from_freelist()
2230 ac->classzone_idx, alloc_flags)) in get_page_from_freelist()
2251 page = buffered_rmqueue(ac->preferred_zone, zone, order, in get_page_from_freelist()
2252 gfp_mask, ac->migratetype); in get_page_from_freelist()
[all …]
Dcompaction.c1480 int alloc_flags, const struct alloc_context *ac, in try_to_compact_pages() argument
1499 for_each_zone_zonelist_nodemask(zone, z, ac->zonelist, ac->high_zoneidx, in try_to_compact_pages()
1500 ac->nodemask) { in try_to_compact_pages()
1509 ac->classzone_idx); in try_to_compact_pages()
1519 ac->classzone_idx, alloc_flags)) { in try_to_compact_pages()
/linux-4.1.27/net/mac80211/
Dsta_info.c86 int ac, i; in __cleanup_single_sta() local
116 atomic_sub(n, &sdata->txqs_len[txqi->txq.ac]); in __cleanup_single_sta()
120 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in __cleanup_single_sta()
121 local->total_ps_buffered -= skb_queue_len(&sta->ps_tx_buf[ac]); in __cleanup_single_sta()
122 ieee80211_purge_tx_queue(&local->hw, &sta->ps_tx_buf[ac]); in __cleanup_single_sta()
123 ieee80211_purge_tx_queue(&local->hw, &sta->tx_filtered[ac]); in __cleanup_single_sta()
602 static unsigned long ieee80211_tids_for_ac(int ac) in ieee80211_tids_for_ac() argument
605 switch (ac) { in ieee80211_tids_for_ac()
626 int ac; in __sta_info_recalc_tim() local
665 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.c94 int ac; in sta_num_ps_buf_frames_read() local
96 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in sta_num_ps_buf_frames_read()
97 p += scnprintf(p, sizeof(buf)+buf-p, "AC%d: %d\n", ac, in sta_num_ps_buf_frames_read()
98 skb_queue_len(&sta->ps_tx_buf[ac]) + in sta_num_ps_buf_frames_read()
99 skb_queue_len(&sta->tx_filtered[ac])); in sta_num_ps_buf_frames_read()
Dtx.c368 int ac; in purge_old_ps_buffers() local
370 for (ac = IEEE80211_AC_BK; ac >= IEEE80211_AC_VO; ac--) { in purge_old_ps_buffers()
371 skb = skb_dequeue(&sta->ps_tx_buf[ac]); in purge_old_ps_buffers()
372 total += skb_queue_len(&sta->ps_tx_buf[ac]); in purge_old_ps_buffers()
480 int ac = skb_get_queue_mapping(tx->skb); in ieee80211_tx_h_unicast_ps_buf() local
489 sta->sta.addr, sta->sta.aid, ac); in ieee80211_tx_h_unicast_ps_buf()
507 if (skb_queue_len(&sta->ps_tx_buf[ac]) >= STA_MAX_TX_BUFFER) { in ieee80211_tx_h_unicast_ps_buf()
508 struct sk_buff *old = skb_dequeue(&sta->ps_tx_buf[ac]); in ieee80211_tx_h_unicast_ps_buf()
511 sta->sta.addr, ac); in ieee80211_tx_h_unicast_ps_buf()
520 skb_queue_tail(&sta->ps_tx_buf[ac], tx->skb); in ieee80211_tx_h_unicast_ps_buf()
[all …]
Dutil.c299 int ac; in ieee80211_propagate_queue_wake() local
308 for (ac = 0; ac < n_acs; ac++) { in ieee80211_propagate_queue_wake()
309 int ac_queue = sdata->vif.hw_queue[ac]; in ieee80211_propagate_queue_wake()
312 (atomic_read(&sdata->txqs_len[ac]) > in ieee80211_propagate_queue_wake()
320 netif_wake_subqueue(sdata->dev, ac); in ieee80211_propagate_queue_wake()
405 int ac; in __ieee80211_stop_queue() local
410 for (ac = 0; ac < n_acs; ac++) { in __ieee80211_stop_queue()
411 if (sdata->vif.hw_queue[ac] == queue || in __ieee80211_stop_queue()
413 netif_stop_subqueue(sdata->dev, ac); in __ieee80211_stop_queue()
568 int ac; in ieee80211_get_vif_queues() local
[all …]
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()
140 skb_queue_len(&sta->tx_filtered[ac]) < STA_MAX_TX_BUFFER) { in ieee80211_handle_filtered_frame()
141 skb_queue_tail(&sta->tx_filtered[ac], skb); in ieee80211_handle_filtered_frame()
161 skb_queue_len(&sta->tx_filtered[ac]), in ieee80211_handle_filtered_frame()
Dtrace.h866 u16 ac, const struct ieee80211_tx_queue_params *params),
868 TP_ARGS(local, sdata, ac, params),
873 __field(u16, ac)
884 __entry->ac = ac;
894 LOCAL_PR_ARG, VIF_PR_ARG, __entry->ac
2326 __field(u8, ac)
2336 __entry->ac = txq->txq.ac;
2342 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()
Dmlme.c1653 int ac; in __ieee80211_sta_handle_tspec_ac_params() local
1658 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in __ieee80211_sta_handle_tspec_ac_params()
1659 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac]; in __ieee80211_sta_handle_tspec_ac_params()
1677 if (drv_conf_tx(local, sdata, ac, &sdata->tx_conf[ac])) in __ieee80211_sta_handle_tspec_ac_params()
1680 ac); in __ieee80211_sta_handle_tspec_ac_params()
1692 for (non_acm_ac = ac + 1; in __ieee80211_sta_handle_tspec_ac_params()
1702 if (drv_conf_tx(local, sdata, ac, in __ieee80211_sta_handle_tspec_ac_params()
1706 ac); in __ieee80211_sta_handle_tspec_ac_params()
2161 int ac = ieee80211_ac_from_tid(tid); in ieee80211_sta_tx_wmm_ac_notify() local
2162 struct ieee80211_sta_tx_tspec *tx_tspec = &ifmgd->tx_tspec[ac]; in ieee80211_sta_tx_wmm_ac_notify()
[all …]
Dcfg.c1944 sdata->tx_conf[params->ac] = p; in ieee80211_set_txq_params()
1945 if (drv_conf_tx(local, sdata, params->ac, &p)) { in ieee80211_set_txq_params()
1948 params->ac); in ieee80211_set_txq_params()
3634 int ac = ieee802_1d_to_ac[up]; in ieee80211_add_tx_ts() local
3642 if (ifmgd->tx_tspec[ac].admitted_time) in ieee80211_add_tx_ts()
3646 ifmgd->tx_tspec[ac].admitted_time = 32 * admitted_time; in ieee80211_add_tx_ts()
3647 ifmgd->tx_tspec[ac].tsid = tsid; in ieee80211_add_tx_ts()
3648 ifmgd->tx_tspec[ac].up = up; in ieee80211_add_tx_ts()
3660 int ac; in ieee80211_del_tx_ts() local
3662 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in ieee80211_del_tx_ts()
[all …]
Dtdls.c226 static enum ieee80211_ac_numbers ieee80211_ac_from_wmm(int ac) in ieee80211_ac_from_wmm() argument
228 switch (ac) { in ieee80211_ac_from_wmm()
286 wmm->ac[i].aci_aifsn = ieee80211_wmm_aci_aifsn(txq->aifs, in ieee80211_tdls_add_wmm_param_ie()
288 wmm->ac[i].cw = ieee80211_wmm_ecw(txq->cw_min, txq->cw_max); in ieee80211_tdls_add_wmm_param_ie()
289 wmm->ac[i].txop_limit = cpu_to_le16(txq->txop); in ieee80211_tdls_add_wmm_param_ie()
Ddriver-ops.h658 struct ieee80211_sub_if_data *sdata, u16 ac, in drv_conf_tx() argument
674 trace_drv_conf_tx(local, sdata, ac, params); in drv_conf_tx()
677 ac, params); in drv_conf_tx()
DKconfig38 bool "Minstrel 802.11ac support" if EXPERT
Drx.c1266 int tid, ac; in ieee80211_rx_h_uapsd_and_pspoll() local
1310 ac = ieee802_1d_to_ac[tid & 7]; in ieee80211_rx_h_uapsd_and_pspoll()
1319 if (!(rx->sta->sta.uapsd_queues & BIT(ac))) in ieee80211_rx_h_uapsd_and_pspoll()
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/
Dmac-ctxt.c206 u32 qmask = 0, ac; in iwl_mvm_mac_get_queues_mask() local
211 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in iwl_mvm_mac_get_queues_mask()
212 if (vif->hw_queue[ac] != IEEE80211_INVAL_HW_QUEUE) in iwl_mvm_mac_get_queues_mask()
213 qmask |= BIT(vif->hw_queue[ac]); in iwl_mvm_mac_get_queues_mask()
338 u32 ac; in iwl_mvm_mac_ctxt_allocate_resources() local
419 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in iwl_mvm_mac_ctxt_allocate_resources()
420 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE; in iwl_mvm_mac_ctxt_allocate_resources()
426 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) { in iwl_mvm_mac_ctxt_allocate_resources()
437 vif->hw_queue[ac] = queue; in iwl_mvm_mac_ctxt_allocate_resources()
475 u32 ac; in iwl_mvm_mac_ctxt_init() local
[all …]
Dpower.c171 enum ieee80211_ac_numbers ac; in iwl_mvm_power_configure_uapsd() local
174 for (ac = IEEE80211_AC_VO; ac <= IEEE80211_AC_BK; ac++) { in iwl_mvm_power_configure_uapsd()
175 if (!mvmvif->queue_params[ac].uapsd) in iwl_mvm_power_configure_uapsd()
182 cmd->uapsd_ac_flags |= BIT(ac); in iwl_mvm_power_configure_uapsd()
185 if (!tid_found && !mvmvif->queue_params[ac].acm) { in iwl_mvm_power_configure_uapsd()
187 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 iwl_mvm_ac_to_tx_fifo[ac], wdg_timeout); in iwl_mvm_tdls_sta_init()
238 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.c84 u8 ac; in iwl_mvm_set_tx_cmd() local
120 ac = tid_to_mac80211_ac[tx_cmd->tid_tspec]; in iwl_mvm_set_tx_cmd()
122 ac = tid_to_mac80211_ac[0]; in iwl_mvm_set_tx_cmd()
124 tx_flags |= iwl_mvm_bt_coex_tx_prio(mvm, hdr, info, ac) << in iwl_mvm_set_tx_cmd()
Dcoex.c964 struct ieee80211_tx_info *info, u8 ac) in iwl_mvm_bt_coex_tx_prio() argument
981 switch (ac) { in iwl_mvm_bt_coex_tx_prio()
/linux-4.1.27/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()
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.c90 struct power_supply *ac; member
321 power_supply_changed(bci->ac); in twl4030_charger_interrupt()
350 power_supply_changed(bci->ac); in twl4030_bci_interrupt()
604 bci->ac = power_supply_register(&pdev->dev, &twl4030_bci_ac_desc, in twl4030_bci_probe()
606 if (IS_ERR(bci->ac)) { in twl4030_bci_probe()
607 ret = PTR_ERR(bci->ac); in twl4030_bci_probe()
684 power_supply_unregister(bci->ac); in twl4030_bci_probe()
713 power_supply_unregister(bci->ac); in twl4030_bci_remove()
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.1.27/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.h41 int alloc_flags, const struct alloc_context *ac,
57 const struct alloc_context *ac, in try_to_compact_pages() argument
/linux-4.1.27/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()
1380 if (shost->transportt->host_attrs.ac.class != in sas_rphy_match()
1385 return &i->rphy_attr_cont.ac == cont; in sas_rphy_match()
1402 if (shost->transportt->host_attrs.ac.class != in sas_end_dev_match()
1407 return &i->end_dev_attr_cont.ac == cont && in sas_end_dev_match()
[all …]
Dscsi_transport_srp.c662 if (shost->transportt->host_attrs.ac.class != &srp_host_class.class) in srp_rport_match()
666 return &i->rport_attr_cont.ac == cont; in srp_rport_match()
680 if (shost->transportt->host_attrs.ac.class != &srp_host_class.class) in srp_host_match()
684 return &i->t.host_attrs.ac == cont; in srp_host_match()
859 i->t.host_attrs.ac.attrs = &i->host_attrs[0]; in srp_attach_transport()
860 i->t.host_attrs.ac.class = &srp_host_class.class; in srp_attach_transport()
861 i->t.host_attrs.ac.match = srp_host_match; in srp_attach_transport()
865 i->rport_attr_cont.ac.attrs = &i->rport_attrs[0]; in srp_attach_transport()
866 i->rport_attr_cont.ac.class = &srp_rport_class.class; in srp_attach_transport()
867 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.c4365 if (priv->session_cont.ac.class != &iscsi_session_class.class) in iscsi_session_match()
4368 return &priv->session_cont.ac == cont; in iscsi_session_match()
4390 if (priv->conn_cont.ac.class != &iscsi_connection_class.class) in iscsi_conn_match()
4393 return &priv->conn_cont.ac == cont; in iscsi_conn_match()
4407 shost->transportt->host_attrs.ac.class != &iscsi_host_class.class) in iscsi_host_match()
4411 return &priv->t.host_attrs.ac == cont; in iscsi_host_match()
4446 priv->t.host_attrs.ac.class = &iscsi_host_class.class; in iscsi_register_transport()
4447 priv->t.host_attrs.ac.match = iscsi_host_match; in iscsi_register_transport()
4448 priv->t.host_attrs.ac.grp = &iscsi_host_group; in iscsi_register_transport()
4453 priv->conn_cont.ac.class = &iscsi_connection_class.class; in iscsi_register_transport()
[all …]
/linux-4.1.27/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.1.27/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.1.27/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.1.27/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.1.27/drivers/net/wireless/ath/ath9k/
Ddebug_sta.c29 struct ath_atx_ac *ac; in read_file_node_aggr() local
54 for (acno = 0, ac = &an->ac[acno]; in read_file_node_aggr()
55 acno < IEEE80211_NUM_ACS; acno++, ac++) { in read_file_node_aggr()
56 txq = ac->txq; in read_file_node_aggr()
60 acno, ac->sched); in read_file_node_aggr()
71 txq = tid->ac->txq; in read_file_node_aggr()
Dxmit.c109 struct ath_atx_ac *ac = tid->ac; in ath_tx_queue_tid() local
121 list_add_tail(&tid->list, &ac->tid_q); in ath_tx_queue_tid()
123 if (ac->sched) in ath_tx_queue_tid()
126 ac->sched = true; in ath_tx_queue_tid()
129 list_add_tail(&ac->list, list); in ath_tx_queue_tid()
211 struct ath_txq *txq = tid->ac->txq; in ath_tx_tid_change_state()
240 struct ath_txq *txq = tid->ac->txq; in ath_tx_flush_tid()
647 tid->ac->clear_ps_filter = true; in ath_tx_complete_aggr()
737 int q = tid->ac->txq->mac80211_qnum; in ath_lookup_rate()
1474 if (tid->ac->clear_ps_filter || tid->an->no_ps_filter) { in ath_tx_sched_aggr()
[all …]
Dath9k.h245 struct ath_atx_ac *ac; member
264 struct ath_atx_ac ac[IEEE80211_NUM_ACS]; member
Dmain.c2477 int ac; in ath9k_unassign_vif_chanctx() local
2492 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in ath9k_unassign_vif_chanctx()
2493 vif->hw_queue[ac] = IEEE80211_INVAL_HW_QUEUE; in ath9k_unassign_vif_chanctx()
/linux-4.1.27/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
DKconfig170 bool "Support for AC-PHY (802.11ac) devices (BROKEN)"
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/drm/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.1.27/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()
483 irbp < irbufend && ac.ac_ubleft >= statstruct_size; in xfs_bulkstat()
486 formatter, statstruct_size, &ac, in xfs_bulkstat()
498 if (ac.ac_ubleft < statstruct_size || error) in xfs_bulkstat()
510 *ubcountp = ac.ac_ubelem; in xfs_bulkstat()
519 if (ac.ac_ubelem) in xfs_bulkstat()
/linux-4.1.27/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.1.27/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.1.27/arch/x86/kernel/cpu/
Dperf_event_intel_cqm.c310 struct perf_cgroup *ac = a->cgrp; in __conflict_event() local
317 WARN_ON_ONCE(ac == bc); in __conflict_event()
319 if (cgroup_is_descendant(ac->css.cgroup, bc->css.cgroup) || in __conflict_event()
320 cgroup_is_descendant(bc->css.cgroup, ac->css.cgroup)) in __conflict_event()
327 struct perf_cgroup *ac, *bc; in __conflict_event() local
339 ac = event_to_cgroup(a); in __conflict_event()
341 if (ac == bc) in __conflict_event()
347 if (!ac || !bc) in __conflict_event()
354 if (cgroup_is_descendant(ac->css.cgroup, bc->css.cgroup) || in __conflict_event()
355 cgroup_is_descendant(bc->css.cgroup, ac->css.cgroup)) in __conflict_event()
/linux-4.1.27/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.1.27/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.c787 il->qos_data.def_qos_parm.ac[i].cw_min, in il_dbgfs_qos_read()
788 il->qos_data.def_qos_parm.ac[i].cw_max, in il_dbgfs_qos_read()
789 il->qos_data.def_qos_parm.ac[i].aifsn, in il_dbgfs_qos_read()
790 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.1.27/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
Dsockex2_user.c14 int main(int ac, char **argv) in main() argument
Dsockex1_user.c9 int main(int ac, char **argv) in main() argument
Dtracex4_user.c51 int main(int ac, char **argv) in main() argument
Dtracex2_user.c57 int main(int ac, char **argv) in main() argument
/linux-4.1.27/Documentation/devicetree/bindings/video/
Dcirrus,clps711x-fb.txt12 - ac-prescale : LCD AC bias frequency. This frequency is the required
32 ac-prescale = <17>;
/linux-4.1.27/drivers/net/wireless/ath/ath10k/
DKconfig2 tristate "Atheros 802.11ac wireless cards support"
7 Atheros IEEE 802.11ac family of chipsets.
Dwmi-tlv.c1624 struct wmi_sta_uapsd_auto_trig_param *ac; in ath10k_wmi_tlv_put_uapsd_ac() local
1629 tlv->len = __cpu_to_le16(sizeof(*ac)); in ath10k_wmi_tlv_put_uapsd_ac()
1630 ac = (void *)tlv->value; in ath10k_wmi_tlv_put_uapsd_ac()
1632 ac->wmm_ac = __cpu_to_le32(arg->wmm_ac); in ath10k_wmi_tlv_put_uapsd_ac()
1633 ac->user_priority = __cpu_to_le32(arg->user_priority); in ath10k_wmi_tlv_put_uapsd_ac()
1634 ac->service_interval = __cpu_to_le32(arg->service_interval); in ath10k_wmi_tlv_put_uapsd_ac()
1635 ac->suspend_interval = __cpu_to_le32(arg->suspend_interval); in ath10k_wmi_tlv_put_uapsd_ac()
1636 ac->delay_interval = __cpu_to_le32(arg->delay_interval); in ath10k_wmi_tlv_put_uapsd_ac()
1640 ac->wmm_ac, ac->user_priority, ac->service_interval, in ath10k_wmi_tlv_put_uapsd_ac()
1641 ac->suspend_interval, ac->delay_interval); in ath10k_wmi_tlv_put_uapsd_ac()
[all …]
Dwmi.h4118 #define WMI_UAPSD_AC_BIT_MASK(ac, type) \ argument
4119 ((type == WMI_UAPSD_AC_TYPE_DELI) ? (1<<(ac<<1)) : (1<<((ac<<1)+1)))
Dmac.c4175 u16 ac, bool enable) in ath10k_conf_tx_uapsd() argument
4188 switch (ac) { in ath10k_conf_tx_uapsd()
4281 struct ieee80211_vif *vif, u16 ac, in ath10k_conf_tx() argument
4291 switch (ac) { in ath10k_conf_tx()
4341 ret = ath10k_conf_tx_uapsd(ar, vif, ac, params->uapsd); in ath10k_conf_tx()
/linux-4.1.27/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.h953 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.1.27/fs/btrfs/
Dtransaction.c1615 struct btrfs_async_commit *ac = in do_async_commit() local
1622 if (ac->newtrans->type & __TRANS_FREEZABLE) in do_async_commit()
1624 &ac->root->fs_info->sb->s_writers.lock_map[SB_FREEZE_FS-1], in do_async_commit()
1627 current->journal_info = ac->newtrans; in do_async_commit()
1629 btrfs_commit_transaction(ac->newtrans, ac->root); in do_async_commit()
1630 kfree(ac); in do_async_commit()
1637 struct btrfs_async_commit *ac; in btrfs_commit_transaction_async() local
1640 ac = kmalloc(sizeof(*ac), GFP_NOFS); in btrfs_commit_transaction_async()
1641 if (!ac) in btrfs_commit_transaction_async()
1644 INIT_WORK(&ac->work, do_async_commit); in btrfs_commit_transaction_async()
[all …]
/linux-4.1.27/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.1.27/drivers/staging/rtl8192e/
Drtl819x_Qos.h356 #define IsACValid(ac) ((ac >= 0 && ac <= 7) ? true : false) argument
/linux-4.1.27/drivers/net/wireless/iwlwifi/dvm/
Dmac80211.c1200 ctx->qos_data.def_qos_parm.ac[q].cw_min = in iwlagn_mac_conf_tx()
1202 ctx->qos_data.def_qos_parm.ac[q].cw_max = in iwlagn_mac_conf_tx()
1204 ctx->qos_data.def_qos_parm.ac[q].aifsn = params->aifs; in iwlagn_mac_conf_tx()
1205 ctx->qos_data.def_qos_parm.ac[q].edca_txop = in iwlagn_mac_conf_tx()
1208 ctx->qos_data.def_qos_parm.ac[q].reserved1 = 0; in iwlagn_mac_conf_tx()
1236 int err, ac; in iwl_setup_interface() local
1267 for (ac = 0; ac < IEEE80211_NUM_ACS; ac++) in iwl_setup_interface()
1268 vif->hw_queue[ac] = ctx->ac_to_queue[ac]; in iwl_setup_interface()
Ddebugfs.c494 ctx->qos_data.def_qos_parm.ac[i].cw_min, in iwl_dbgfs_qos_read()
495 ctx->qos_data.def_qos_parm.ac[i].cw_max, in iwl_dbgfs_qos_read()
496 ctx->qos_data.def_qos_parm.ac[i].aifsn, in iwl_dbgfs_qos_read()
497 ctx->qos_data.def_qos_parm.ac[i].edca_txop); in iwl_dbgfs_qos_read()
/linux-4.1.27/include/linux/platform_data/
Dlp8727.h63 struct lp8727_chg_param *ac; member
/linux-4.1.27/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.1.27/Documentation/devicetree/bindings/clock/
Dqcom,gcc.txt15 "qcom,gcc-msm8974pro-ac"
/linux-4.1.27/include/linux/mfd/wm8350/
Dsupply.h128 struct power_supply *ac; member
/linux-4.1.27/arch/s390/include/asm/
Dqdio.h66 u32 ac : 8; member
104 u32 ac : 8; member
/linux-4.1.27/drivers/hid/
Dwacom.h123 struct power_supply *ac; member
Dwacom_sys.c1054 wacom->ac = power_supply_register(&wacom->hdev->dev, in wacom_initialize_battery()
1057 if (IS_ERR(wacom->ac)) { in wacom_initialize_battery()
1059 return PTR_ERR(wacom->ac); in wacom_initialize_battery()
1062 power_supply_powers(wacom->ac, &wacom->hdev->dev); in wacom_initialize_battery()
1073 power_supply_unregister(wacom->ac); in wacom_destroy_battery()
1074 wacom->ac = NULL; in wacom_destroy_battery()
/linux-4.1.27/drivers/net/wireless/mwifiex/
DMakefile26 mwifiex-y += 11ac.o
DKconfig6 802.11n/ac chipsets.
Dtdls.c394 memcpy(&wmm->ac[0], ac_be, sizeof(ac_be)); in mwifiex_tdls_add_wmm_param_ie()
395 memcpy(&wmm->ac[1], ac_bk, sizeof(ac_bk)); in mwifiex_tdls_add_wmm_param_ie()
396 memcpy(&wmm->ac[2], ac_vi, sizeof(ac_vi)); in mwifiex_tdls_add_wmm_param_ie()
397 memcpy(&wmm->ac[3], ac_vo, sizeof(ac_vo)); in mwifiex_tdls_add_wmm_param_ie()
Dwmm.c388 enum mwifiex_wmm_ac_e ac, ac_down; in mwifiex_wmm_downgrade_tid() local
391 ac = mwifiex_wmm_convert_tos_to_ac(priv->adapter, tid); in mwifiex_wmm_downgrade_tid()
392 ac_down = priv->wmm.ac_down_graded_vals[ac]; in mwifiex_wmm_downgrade_tid()
/linux-4.1.27/drivers/staging/iio/Documentation/
Dsysfs-bus-iio-ad71926 excitation mode found on some converters. In ac excitation mode,
/linux-4.1.27/arch/arm/mach-pxa/
Dpalm27x.c419 void __init palm27x_power_init(int ac, int usb) in palm27x_power_init() argument
421 palm_ac_state = ac; in palm27x_power_init()
/linux-4.1.27/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.1.27/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.cc1753 int main(int ac, char** av) in main() argument
1762 configApp = new QApplication(ac, av); in main()
1763 if (ac > 1 && av[1][0] == '-') { in main()
/linux-4.1.27/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.1.27/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.c3779 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth; in get_authorizer() local
3783 ceph_auth_destroy_authorizer(ac, auth->authorizer); in get_authorizer()
3787 int ret = ceph_auth_create_authorizer(ac, CEPH_ENTITY_TYPE_MDS, in get_authorizer()
3792 int ret = ceph_auth_update_authorizer(ac, CEPH_ENTITY_TYPE_MDS, in get_authorizer()
3797 *proto = ac->protocol; in get_authorizer()
3807 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth; in verify_authorizer_reply() local
3809 return ceph_auth_verify_authorizer_reply(ac, s->s_auth.authorizer, len); in verify_authorizer_reply()
3816 struct ceph_auth_client *ac = mdsc->fsc->client->monc.auth; in invalidate_authorizer() local
3818 ceph_auth_invalidate_authorizer(ac, CEPH_ENTITY_TYPE_MDS); in invalidate_authorizer()
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
Drtl819x_Qos.h563 #define IsACValid(ac) ((ac<=7 )?true:false ) argument
/linux-4.1.27/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.1.27/drivers/net/wireless/rtlwifi/rtl8192cu/
Dmac.c412 u4b_ac_param = (u32) mac->ac[aci].aifs; in rtl92c_set_qos()
414 ((u32) le16_to_cpu(mac->ac[aci].cw_min) & 0xF) << in rtl92c_set_qos()
417 ((u32) le16_to_cpu(mac->ac[aci].cw_max) & 0xF) << in rtl92c_set_qos()
419 u4b_ac_param |= (u32) le16_to_cpu(mac->ac[aci].tx_op) << in rtl92c_set_qos()
Dhw.c1799 u16 cw_min = le16_to_cpu(mac->ac[e_aci].cw_min); in rtl92cu_set_hw_reg()
1800 u16 cw_max = le16_to_cpu(mac->ac[e_aci].cw_max); in rtl92cu_set_hw_reg()
1801 u16 tx_op = le16_to_cpu(mac->ac[e_aci].tx_op); in rtl92cu_set_hw_reg()
1803 u4b_ac_param = (u32) mac->ac[e_aci].aifs; in rtl92cu_set_hw_reg()
1843 (&(mac->ac[0].aifs)); in rtl92cu_set_hw_reg()
/linux-4.1.27/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.1.27/drivers/net/wireless/ti/wl1251/
Dacx.c995 int wl1251_acx_ac_cfg(struct wl1251 *wl, u8 ac, u8 cw_min, u16 cw_max, in wl1251_acx_ac_cfg() argument
1002 "aifs %d txop %d", ac, cw_min, cw_max, aifs, txop); in wl1251_acx_ac_cfg()
1008 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.1.27/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.1.27/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.1.27/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.1.27/Documentation/hwmon/
Dmax166811 David George <david.george@ska.ac.za>
/linux-4.1.27/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.1.27/drivers/tty/vt/
Dcp437.uni37 0x16 U+25ac
195 0xaa U+00ac
/linux-4.1.27/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.1.27/drivers/net/wireless/brcm80211/
DKconfig68 IEEE802.11ac embedded FullMAC WLAN driver. Say Y if you want to
/linux-4.1.27/drivers/atm/
Dnicstarmac.copyright2 * nicstar.c, M. Welsh (matt.welsh@cl.cam.ac.uk)
/linux-4.1.27/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.1.27/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.1.27/drivers/net/wireless/ti/wl18xx/
Dmain.c268 .ac = CONF_TX_AC_BE,
275 .ac = CONF_TX_AC_BK,
282 .ac = CONF_TX_AC_VI,
289 .ac = CONF_TX_AC_VO,
/linux-4.1.27/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.1.27/drivers/staging/rtl8188eu/core/
Drtw_xmit.c1552 …ruct tx_servq *rtw_get_sta_pending(struct adapter *padapter, struct sta_info *psta, int up, u8 *ac) in rtw_get_sta_pending() argument
1560 *(ac) = 3; in rtw_get_sta_pending()
1566 *(ac) = 1; in rtw_get_sta_pending()
1572 *(ac) = 0; in rtw_get_sta_pending()
1579 *(ac) = 2; in rtw_get_sta_pending()
/linux-4.1.27/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.1.27/arch/arm/boot/dts/
Dam335x-pepper.dts195 ac-bias = <255>;
196 ac-bias-intrpt = <0>;
Dam335x-evm.dts95 ac-bias = <255>;
96 ac-bias-intrpt = <0>;
Dam335x-evmsk.dts161 ac-bias = <255>;
162 ac-bias-intrpt = <0>;
Dtegra124-nyan.dtsi325 ti,ac-detect-gpios = <&gpio
/linux-4.1.27/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.1.27/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.1.27/drivers/staging/rtl8723au/include/
Drtw_xmit.h348 struct sta_info *psta, int up, u8 *ac);
/linux-4.1.27/Documentation/sound/oss/
DAudioExcelDSP1691 > From: Mr S J Greenaway <sjg95@unixfe.rl.ac.uk>
/linux-4.1.27/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.1.27/Documentation/early-userspace/
Dbuffer-format.txt50 by the ASCII string "000012ac"):
/linux-4.1.27/arch/powerpc/kernel/
Dprom_init.c2346 u32 ac, sc; in fixup_device_tree_maple_memory_controller() local
2355 prom_getprop(prom.root, "#address-cells", &ac, sizeof(ac)); in fixup_device_tree_maple_memory_controller()
2357 if ((ac != 2) || (sc != 2)) in fixup_device_tree_maple_memory_controller()
/linux-4.1.27/drivers/net/wireless/rtlwifi/
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.1.27/crypto/
DKconfig685 <http://www.cs.technion.ac.il/~biham/Reports/Tiger/>.
1173 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1195 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1217 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1239 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
1262 <http://www.cl.cam.ac.uk/~rja14/serpent.html>
/linux-4.1.27/Documentation/i2c/busses/
Di2c-parport152 Velleman K8000 Howto http://howto.htlw16.ac.at/k8000-howto.html
/linux-4.1.27/arch/ia64/include/asm/
Dprocessor.h90 __u64 ac : 1; member
/linux-4.1.27/Documentation/video4linux/bttv/
DSound-FAQ83 from ftp://telepresence.dmem.strath.ac.uk/pub/bt848/winutil, but it
/linux-4.1.27/include/linux/mfd/
Dcros_ec_commands.h2074 int ac; member
/linux-4.1.27/include/net/
Dmac80211.h1680 u8 ac; member
3262 struct ieee80211_vif *vif, u16 ac,
/linux-4.1.27/arch/x86/lib/
Dx86-opcode-map.txt218 ac: LODS/B AL,Xb
513 ac: SHRD Ev,Gv,Ib
720 ac: vfnmadd213ps/d Vx,Hx,Wx (66),(v)
/linux-4.1.27/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.1.27/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.1.27/Documentation/filesystems/nfs/
Dnfsroot.txt78 flags = hard, nointr, noposix, cto, ac
/linux-4.1.27/
DCREDITS76 W: http://www-stu.christs.cam.ac.uk/~aia21/
247 E: frmb2@ukc.ac.uk
574 E: callahan@maths.ox.ac.uk
1339 E: grobh@sun.ac.za
1680 E: iwj10@cus.cam.ac.uk
2885 E: epirker@edu.uni-klu.ac.at
3261 E: stud11@cc4.kuleuven.ac.be
3984 E: yokota@netlab.is.tsukuba.ac.jp

12