Searched refs:ad (Results 1 - 25 of 94) sorted by relevance

1234

/linux-master/security/apparmor/
H A Dipc.c55 struct apparmor_audit_data *ad = aad(sa); local
57 if (ad->request & AA_SIGNAL_PERM_MASK) {
59 audit_signal_mask(ad->request));
60 if (ad->denied & AA_SIGNAL_PERM_MASK) {
62 audit_signal_mask(ad->denied));
65 if (ad->signal == SIGUNKNOWN)
67 ad->unmappedsig);
68 else if (ad->signal < MAXMAPPED_SIGNAME)
69 audit_log_format(ab, " signal=%s", sig_names[ad->signal]);
72 ad
78 profile_signal_perm(const struct cred *cred, struct aa_profile *profile, struct aa_label *peer, u32 request, struct apparmor_audit_data *ad) argument
[all...]
H A Daudit.c94 struct apparmor_audit_data *ad = aad_of_va(va); local
98 aa_audit_type[ad->type]);
101 if (ad->op)
102 audit_log_format(ab, " operation=\"%s\"", ad->op);
104 if (ad->class)
106 ad->class <= AA_CLASS_LAST ?
107 aa_class_names[ad->class] :
110 if (ad->info) {
111 audit_log_format(ab, " info=\"%s\"", ad->info);
112 if (ad
148 aa_audit_msg(int type, struct apparmor_audit_data *ad, void (*cb) (struct audit_buffer *, void *)) argument
166 aa_audit(int type, struct aa_profile *profile, struct apparmor_audit_data *ad, void (*cb) (struct audit_buffer *, void *)) argument
[all...]
H A Dtask.c208 struct apparmor_audit_data *ad = aad(sa); local
210 if (ad->request & AA_PTRACE_PERM_MASK) {
212 audit_ptrace_mask(ad->request));
214 if (ad->denied & AA_PTRACE_PERM_MASK) {
216 audit_ptrace_mask(ad->denied));
220 aa_label_xaudit(ab, labels_ns(ad->subj_label), ad->peer,
229 struct apparmor_audit_data *ad)
235 ad->subj_cred = cred;
236 ad
226 profile_ptrace_perm(const struct cred *cred, struct aa_profile *profile, struct aa_label *peer, u32 request, struct apparmor_audit_data *ad) argument
243 profile_tracee_perm(const struct cred *cred, struct aa_profile *tracee, struct aa_label *tracer, u32 request, struct apparmor_audit_data *ad) argument
255 profile_tracer_perm(const struct cred *cred, struct aa_profile *tracer, struct aa_label *tracee, u32 request, struct apparmor_audit_data *ad) argument
307 struct apparmor_audit_data *ad = aad_of_va(va); local
316 aa_profile_ns_perm(struct aa_profile *profile, struct apparmor_audit_data *ad, u32 request) argument
[all...]
H A Dnet.c74 struct apparmor_audit_data *ad = aad(sa); local
82 if (sock_type_names[ad->net.type])
84 sock_type_names[ad->net.type]);
87 ad->net.type);
88 audit_log_format(ab, " protocol=%d", ad->net.protocol);
90 if (ad->request & NET_PERMS_MASK) {
92 aa_audit_perm_mask(ab, ad->request, NULL, 0,
95 if (ad->denied & NET_PERMS_MASK) {
97 aa_audit_perm_mask(ab, ad->denied, NULL, 0,
101 if (ad
109 aa_profile_af_perm(struct aa_profile *profile, struct apparmor_audit_data *ad, u32 request, u16 family, int type) argument
221 aa_secmark_perm(struct aa_profile *profile, u32 request, u32 secid, struct apparmor_audit_data *ad) argument
[all...]
H A Dcapability.c54 * @ad: audit data
62 * Returns: 0 or ad->error on success, error code on failure
64 static int audit_caps(struct apparmor_audit_data *ad, struct aa_profile *profile, argument
72 ad->error = error;
104 return aa_audit(type, profile, ad, audit_cb);
112 * @ad: audit data (MAY BE NULL indicating no auditing)
117 unsigned int opts, struct apparmor_audit_data *ad)
135 ad->info = "optional: no audit";
138 return audit_caps(ad, profile, cap, error);
157 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_CA
116 profile_capable(struct aa_profile *profile, int cap, unsigned int opts, struct apparmor_audit_data *ad) argument
[all...]
H A Dresource.c33 struct apparmor_audit_data *ad = aad(sa); local
36 rlim_names[ad->rlim.rlim], ad->rlim.max);
37 if (ad->peer) {
39 aa_label_xaudit(ab, labels_ns(ad->subj_label), ad->peer,
54 * Returns: 0 or ad->error else other error code on failure
61 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_RLIMITS,
64 ad.subj_cred = subj_cred;
65 ad
[all...]
H A Dlib.c148 DEFINE_AUDIT_DATA(ad, LSM_AUDIT_DATA_NONE, AA_CLASS_NONE, NULL);
150 ad.info = str;
151 aa_audit_msg(AUDIT_APPARMOR_STATUS, &ad, NULL);
286 struct apparmor_audit_data *ad = aad(sa); local
288 if (ad->request) {
290 aa_audit_perm_mask(ab, ad->request, aa_file_perm_chrs,
294 if (ad->denied) {
296 aa_audit_perm_mask(ab, ad->denied, aa_file_perm_chrs,
301 aa_label_xaudit(ab, labels_ns(ad->subj_label), ad
353 aa_profile_label_perm(struct aa_profile *profile, struct aa_profile *target, u32 request, int type, u32 *deny, struct apparmor_audit_data *ad) argument
388 aa_check_perms(struct aa_profile *profile, struct aa_perms *perms, u32 request, struct apparmor_audit_data *ad, void (*cb)(struct audit_buffer *, void *)) argument
[all...]
H A Dfile.c47 struct apparmor_audit_data *ad = aad(sa); local
48 kuid_t fsuid = ad->subj_cred ? ad->subj_cred->fsuid : current_fsuid();
51 if (ad->request & AA_AUDIT_FILE_MASK) {
53 map_mask_to_chr_mask(ad->request));
56 if (ad->denied & AA_AUDIT_FILE_MASK) {
58 map_mask_to_chr_mask(ad->denied));
61 if (ad->request & AA_AUDIT_FILE_MASK) {
65 from_kuid(&init_user_ns, ad->fs.ouid));
68 if (ad
[all...]
H A Dmount.c89 struct apparmor_audit_data *ad = aad(sa); local
91 if (ad->mnt.type) {
93 audit_log_untrustedstring(ab, ad->mnt.type);
95 if (ad->mnt.src_name) {
97 audit_log_untrustedstring(ab, ad->mnt.src_name);
99 if (ad->mnt.trans) {
101 audit_log_untrustedstring(ab, ad->mnt.trans);
103 if (ad->mnt.flags) {
105 audit_mnt_flags(ab, ad->mnt.flags);
108 if (ad
[all...]
/linux-master/sound/soc/ti/
H A Domap-hdmi.c50 struct hdmi_audio_data *ad = dev_get_drvdata(dev); local
52 mutex_lock(&ad->current_stream_lock);
53 if (ad->current_stream && ad->current_stream->runtime &&
54 snd_pcm_running(ad->current_stream)) {
56 snd_pcm_stream_lock_irq(ad->current_stream);
57 snd_pcm_stop(ad->current_stream, SNDRV_PCM_STATE_DISCONNECTED);
58 snd_pcm_stream_unlock_irq(ad->current_stream);
60 mutex_unlock(&ad->current_stream_lock);
66 struct hdmi_audio_data *ad local
108 struct hdmi_audio_data *ad = card_drvdata_substream(substream); local
233 struct hdmi_audio_data *ad = card_drvdata_substream(substream); local
258 struct hdmi_audio_data *ad = card_drvdata_substream(substream); local
313 struct hdmi_audio_data *ad; local
[all...]
/linux-master/drivers/clk/ti/
H A Dapll.c36 struct dpll_data *ad; local
41 ad = clk->dpll_data;
42 if (!ad)
47 state <<= __ffs(ad->idlest_mask);
50 v = ti_clk_ll_ops->clk_readl(&ad->idlest_reg);
52 if ((v & ad->idlest_mask) == state)
55 v = ti_clk_ll_ops->clk_readl(&ad->control_reg);
56 v &= ~ad->enable_mask;
57 v |= APLL_FORCE_LOCK << __ffs(ad->enable_mask);
58 ti_clk_ll_ops->clk_writel(v, &ad
86 struct dpll_data *ad; local
103 struct dpll_data *ad; local
133 struct dpll_data *ad = clk_hw->dpll_data; local
180 struct dpll_data *ad = NULL; local
238 struct dpll_data *ad = clk->dpll_data; local
263 struct dpll_data *ad = clk->dpll_data; local
294 struct dpll_data *ad = clk->dpll_data; local
312 struct dpll_data *ad = clk->dpll_data; local
341 struct dpll_data *ad = NULL; local
[all...]
/linux-master/drivers/dma/
H A Dapple-admac.c150 static int admac_alloc_sram_carveout(struct admac_data *ad, argument
158 sram = &ad->txcache;
160 sram = &ad->rxcache;
162 mutex_lock(&ad->cache_alloc_lock);
177 mutex_unlock(&ad->cache_alloc_lock);
182 static void admac_free_sram_carveout(struct admac_data *ad, argument
191 sram = &ad->txcache;
193 sram = &ad->rxcache;
198 mutex_lock(&ad->cache_alloc_lock);
201 mutex_unlock(&ad
204 admac_modify(struct admac_data *ad, int reg, u32 mask, u32 val) argument
285 admac_cyclic_write_one_desc(struct admac_data *ad, int channo, struct admac_tx *tx) argument
311 admac_cyclic_write_desc(struct admac_data *ad, int channo, struct admac_tx *tx) argument
343 admac_cyclic_read_residue(struct admac_data *ad, int channo, struct admac_tx *adtx) argument
376 struct admac_data *ad = adchan->host; local
411 struct admac_data *ad = adchan->host; local
434 struct admac_data *ad = adchan->host; local
452 struct admac_data *ad = adchan->host; local
461 struct admac_data *ad = adchan->host; local
555 struct admac_data *ad = adchan->host; local
582 struct admac_data *ad = (struct admac_data *) ofdma->of_dma_data; local
598 admac_drain_reports(struct admac_data *ad, int channo) argument
620 admac_handle_status_err(struct admac_data *ad, int channo) argument
643 admac_handle_status_desc_done(struct admac_data *ad, int channo) argument
668 admac_handle_chan_int(struct admac_data *ad, int no) argument
681 struct admac_data *ad = devid; local
742 struct admac_data *ad = adchan->host; local
804 struct admac_data *ad; local
933 struct admac_data *ad = platform_get_drvdata(pdev); local
[all...]
/linux-master/include/crypto/
H A Dchacha20poly1305.h19 const u8 *ad, const size_t ad_len,
25 const u8 *ad, const size_t ad_len, const u64 nonce,
29 const u8 *ad, const size_t ad_len,
34 u8 *dst, const u8 *src, const size_t src_len, const u8 *ad,
39 const u8 *ad, const size_t ad_len,
44 const u8 *ad, const size_t ad_len,
/linux-master/kernel/time/
H A Dntp_internal.h13 s32 *time_tai, struct audit_ntp_data *ad);
/linux-master/security/
H A Dlsm_audit.c35 * @ad : the audit data to fill
41 struct common_audit_data *ad, u8 *proto)
47 ad->u.net->v4info.saddr = ih->saddr;
48 ad->u.net->v4info.daddr = ih->daddr;
60 ad->u.net->sport = th->source;
61 ad->u.net->dport = th->dest;
67 ad->u.net->sport = uh->source;
68 ad->u.net->dport = uh->dest;
74 ad->u.net->sport = dh->dccph_sport;
75 ad
40 ipv4_skb_to_auditdata(struct sk_buff *skb, struct common_audit_data *ad, u8 *proto) argument
99 ipv6_skb_to_auditdata(struct sk_buff *skb, struct common_audit_data *ad, u8 *proto) argument
[all...]
/linux-master/security/selinux/include/
H A Dxfrm.h42 struct common_audit_data *ad);
44 struct common_audit_data *ad, u8 proto);
64 struct common_audit_data *ad)
70 struct common_audit_data *ad,
63 selinux_xfrm_sock_rcv_skb(u32 sk_sid, struct sk_buff *skb, struct common_audit_data *ad) argument
69 selinux_xfrm_postroute_last(u32 sk_sid, struct sk_buff *skb, struct common_audit_data *ad, u8 proto) argument
/linux-master/security/smack/
H A Dsmack_lsm.c434 struct smk_audit_info ad, *saip = NULL; local
440 smk_ad_init(&ad, func, LSM_AUDIT_DATA_TASK);
441 smk_ad_setfield_u_tsk(&ad, tracer);
442 saip = &ad;
898 struct smk_audit_info ad; local
900 smk_ad_init(&ad, __func__, LSM_AUDIT_DATA_DENTRY);
901 smk_ad_setfield_u_fs_path_dentry(&ad, dentry);
903 rc = smk_curacc(sbp->smk_floor, MAY_READ, &ad);
1076 struct smk_audit_info ad; local
1079 smk_ad_init(&ad, __func_
1107 struct smk_audit_info ad; local
1140 struct smk_audit_info ad; local
1183 struct smk_audit_info ad; local
1213 struct smk_audit_info ad; local
1250 struct smk_audit_info ad; local
1274 struct smk_audit_info ad; local
1302 struct smk_audit_info ad; local
1402 struct smk_audit_info ad; local
1427 struct smk_audit_info ad; local
1486 struct smk_audit_info ad; local
1508 struct smk_audit_info ad; local
1530 struct smk_audit_info ad; local
1687 struct smk_audit_info ad; local
1718 struct smk_audit_info ad; local
1747 struct smk_audit_info ad; local
1923 struct smk_audit_info ad; local
1958 struct smk_audit_info ad; local
2016 struct smk_audit_info ad; local
2171 struct smk_audit_info ad; local
2324 struct smk_audit_info ad; local
2626 struct smk_audit_info ad; local
2669 struct smk_audit_info ad; local
3114 struct smk_audit_info ad; local
3203 struct smk_audit_info ad; local
3298 struct smk_audit_info ad; local
3406 struct smk_audit_info ad; local
3824 struct smk_audit_info ad; local
3871 struct smk_audit_info ad; local
4144 struct smk_audit_info ad; local
4369 struct smk_audit_info ad; local
4513 struct smk_audit_info ad; local
4610 struct smk_audit_info ad; local
4654 struct smk_audit_info ad; local
4991 struct smk_audit_info ad; local
[all...]
/linux-master/tools/testing/selftests/net/forwarding/
H A Dbridge_vlan_aware.sh115 local mac=de:ad:be:ef:13:37
121 bridge fdb add de:ad:be:ef:13:37 dev $swp1 master extern_learn vlan 1
123 bridge fdb show brport $swp1 | grep -q de:ad:be:ef:13:37
131 bridge fdb show brport $swp1 | grep -q de:ad:be:ef:13:37
136 bridge fdb show brport $swp2 | grep -q de:ad:be:ef:13:37
141 bridge fdb del de:ad:be:ef:13:37 dev $swp2 master vlan 1 &> /dev/null
142 bridge fdb del de:ad:be:ef:13:37 dev $swp1 master vlan 1 &> /dev/null
/linux-master/drivers/crypto/
H A Dsa2ul.c503 static int sa_set_sc_enc(struct algo_data *ad, const u8 *key, u16 key_sz, argument
512 mci = ad->mci_enc;
514 mci = ad->mci_dec;
520 if (ad->inv_key && !enc) {
532 static void sa_set_sc_auth(struct algo_data *ad, const u8 *key, u16 key_sz, argument
542 sc_buf[1] |= ad->auth_ctrl;
545 if (ad->keyed_mac)
546 ad->prep_iopad(ad, key, key_sz, ipad, opad);
719 struct algo_data *ad, u
716 sa_init_sc(struct sa_ctx_info *ctx, const struct sa_match_data *match_data, const u8 *enc_key, u16 enc_key_sz, const u8 *auth_key, u16 auth_key_sz, struct algo_data *ad, u8 enc, u32 *swinfo) argument
885 sa_cipher_setkey(struct crypto_skcipher *tfm, const u8 *key, unsigned int keylen, struct algo_data *ad) argument
950 struct algo_data ad = { 0 }; local
970 struct algo_data ad = { 0 }; local
988 struct algo_data ad = { 0 }; local
1002 struct algo_data ad = { 0 }; local
1452 sa_sha_setup(struct sa_tfm_ctx *ctx, struct algo_data *ad) argument
1629 struct algo_data ad = { 0 }; local
1645 struct algo_data ad = { 0 }; local
1661 struct algo_data ad = { 0 }; local
1800 sa_aead_setkey(struct crypto_aead *authenc, const u8 *key, unsigned int keylen, struct algo_data *ad) argument
1886 struct algo_data ad = { 0 }; local
1899 struct algo_data ad = { 0 }; local
[all...]
/linux-master/lib/crypto/
H A Dchacha20poly1305.c58 const u8 *ad, const size_t ad_len, u32 *chacha_state)
70 poly1305_update(&poly1305_state, ad, ad_len);
91 const u8 *ad, const size_t ad_len,
105 __chacha20poly1305_encrypt(dst, src, src_len, ad, ad_len, chacha_state);
113 const u8 *ad, const size_t ad_len,
120 __chacha20poly1305_encrypt(dst, src, src_len, ad, ad_len, chacha_state);
126 const u8 *ad, const size_t ad_len, u32 *chacha_state)
144 poly1305_update(&poly1305_state, ad, ad_len);
169 const u8 *ad, const size_t ad_len,
184 ret = __chacha20poly1305_decrypt(dst, src, src_len, ad, ad_le
57 __chacha20poly1305_encrypt(u8 *dst, const u8 *src, const size_t src_len, const u8 *ad, const size_t ad_len, u32 *chacha_state) argument
90 chacha20poly1305_encrypt(u8 *dst, const u8 *src, const size_t src_len, const u8 *ad, const size_t ad_len, const u64 nonce, const u8 key[CHACHA20POLY1305_KEY_SIZE]) argument
112 xchacha20poly1305_encrypt(u8 *dst, const u8 *src, const size_t src_len, const u8 *ad, const size_t ad_len, const u8 nonce[XCHACHA20POLY1305_NONCE_SIZE], const u8 key[CHACHA20POLY1305_KEY_SIZE]) argument
125 __chacha20poly1305_decrypt(u8 *dst, const u8 *src, const size_t src_len, const u8 *ad, const size_t ad_len, u32 *chacha_state) argument
168 chacha20poly1305_decrypt(u8 *dst, const u8 *src, const size_t src_len, const u8 *ad, const size_t ad_len, const u64 nonce, const u8 key[CHACHA20POLY1305_KEY_SIZE]) argument
194 xchacha20poly1305_decrypt(u8 *dst, const u8 *src, const size_t src_len, const u8 *ad, const size_t ad_len, const u8 nonce[XCHACHA20POLY1305_NONCE_SIZE], const u8 key[CHACHA20POLY1305_KEY_SIZE]) argument
208 chacha20poly1305_crypt_sg_inplace(struct scatterlist *src, const size_t src_len, const u8 *ad, const size_t ad_len, const u64 nonce, const u8 key[CHACHA20POLY1305_KEY_SIZE], int encrypt) argument
333 chacha20poly1305_encrypt_sg_inplace(struct scatterlist *src, size_t src_len, const u8 *ad, const size_t ad_len, const u64 nonce, const u8 key[CHACHA20POLY1305_KEY_SIZE]) argument
343 chacha20poly1305_decrypt_sg_inplace(struct scatterlist *src, size_t src_len, const u8 *ad, const size_t ad_len, const u64 nonce, const u8 key[CHACHA20POLY1305_KEY_SIZE]) argument
[all...]
/linux-master/drivers/video/fbdev/
H A Dfsl-diu-fb.c336 struct diu_ad *ad; member in struct:mfb_info
355 * @ad[]: Area Descriptors for each real AOI
377 struct diu_ad ad[NUM_AOIS] __aligned(8);
503 struct diu_ad *ad = mfbi->ad; local
509 wr_reg_wa(&hw->desc[0], ad->paddr);
513 if (hw->desc[1] != ad->paddr) { /* AOI0 closed */
515 ad->next_ad =
516 cpu_to_le32(cmfbi->ad->paddr);
518 ad
555 struct diu_ad *ad = mfbi->ad; local
911 struct diu_ad *ad = mfbi->ad; local
1133 struct diu_ad *ad = mfbi->ad; local
1270 struct diu_ad *ad = mfbi->ad; local
[all...]
/linux-master/arch/arm64/crypto/
H A Dcrct10dif-ce-core.S78 ad .req v14
136 ext t4.8b, ad.8b, ad.8b, #1 // A1
137 ext t5.8b, ad.8b, ad.8b, #2 // A2
138 ext t6.8b, ad.8b, ad.8b, #3 // A3
141 pmull t8.8h, ad.8b, bd1.8b // E = A*B1
143 pmull t7.8h, ad.8b, bd2.8b // G = A*B2
145 pmull t9.8h, ad
[all...]
/linux-master/security/selinux/
H A Dhooks.c231 static void __ad_net_init(struct common_audit_data *ad, argument
235 ad->type = LSM_AUDIT_DATA_NET;
236 ad->u.net = net;
242 static void ad_net_init_from_sk(struct common_audit_data *ad, argument
246 __ad_net_init(ad, net, 0, sk, 0);
249 static void ad_net_init_from_iif(struct common_audit_data *ad, argument
253 __ad_net_init(ad, net, ifindex, NULL, family);
1622 struct common_audit_data ad; local
1629 ad.type = LSM_AUDIT_DATA_CAP;
1630 ad
1682 struct common_audit_data ad; local
1698 struct common_audit_data ad; local
1711 struct common_audit_data ad; local
1736 struct common_audit_data ad; local
1804 struct common_audit_data ad; local
1846 struct common_audit_data ad; local
1889 struct common_audit_data ad; local
1939 superblock_has_perm(const struct cred *cred, const struct super_block *sb, u32 perms, struct common_audit_data *ad) argument
2061 struct common_audit_data ad; local
2298 struct common_audit_data ad; local
2740 struct common_audit_data ad; local
2750 struct common_audit_data ad; local
2965 struct common_audit_data ad; local
3067 struct common_audit_data ad; local
3085 struct common_audit_data ad; local
3191 struct common_audit_data ad; local
3376 struct common_audit_data ad; local
3663 struct common_audit_data ad; local
3828 struct common_audit_data ad; local
4074 struct common_audit_data ad; local
4085 struct common_audit_data ad; local
4279 selinux_parse_skb_ipv4(struct sk_buff *skb, struct common_audit_data *ad, u8 *proto) argument
4377 selinux_parse_skb_ipv6(struct sk_buff *skb, struct common_audit_data *ad, u8 *proto) argument
4463 selinux_parse_skb(struct sk_buff *skb, struct common_audit_data *ad, char **_addrp, int src, u8 *proto) argument
4587 struct common_audit_data ad; local
4698 struct common_audit_data ad; local
4848 struct common_audit_data ad; local
5007 struct common_audit_data ad; local
5037 struct common_audit_data ad; local
5046 selinux_inet_sys_rcv_skb(struct net *ns, int ifindex, char *addrp, u16 family, u32 peer_sid, struct common_audit_data *ad) argument
5075 struct common_audit_data ad; local
5105 struct common_audit_data ad; local
5299 struct common_audit_data ad; local
5680 struct common_audit_data ad; local
5776 struct common_audit_data ad; local
5809 struct common_audit_data ad; local
6005 struct common_audit_data ad; local
6030 struct common_audit_data ad; local
6046 struct common_audit_data ad; local
6090 struct common_audit_data ad; local
6135 struct common_audit_data ad; local
6157 struct common_audit_data ad; local
6173 struct common_audit_data ad; local
6235 struct common_audit_data ad; local
6251 struct common_audit_data ad; local
6776 struct common_audit_data ad; local
6798 struct common_audit_data ad; local
7108 struct common_audit_data ad; local
[all...]
/linux-master/tools/testing/selftests/drivers/net/mlxsw/
H A Dq_in_q_veto.sh75 protocol 802.1ad id 100 2>/dev/null
76 check_fail $? "802.1ad vlan upper creation on top of a front panel not rejected"
79 protocol 802.1ad id 100 2>&1 >/dev/null \
81 check_err $? "802.1ad vlan upper creation on top of a front panel rejected without extack"
83 log_test "create 802.1ad vlan upper on top of a front panel"
98 protocol 802.1ad id 100 2>/dev/null
99 check_fail $? "802.1ad vlan upper creation on top of a bridge port not rejected"
102 protocol 802.1ad id 100 2>&1 >/dev/null \
104 check_err $? "802.1ad vlan upper creation on top of a bridge port rejected without extack"
106 log_test "create 802.1ad vla
[all...]
/linux-master/tools/testing/selftests/drivers/net/mlxsw/spectrum/
H A Dvxlan_flooding_ipv6.sh229 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1
245 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1
259 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1
273 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1
284 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1
293 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1
302 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1
311 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1
320 $MZ -6 $h1 -q -p 64 -b de:ad:be:ef:13:37 -t ip -c 1

Completed in 494 milliseconds

1234