| /kernel/linux/linux-5.10/net/hsr/ |
| D | hsr_main.h | 140 /* PRP Redunancy Control Trailor (RCT). 141 * As defined in IEC-62439-4:2012, the PRP RCT is really { sequence Nr, 152 static inline u16 get_prp_LSDU_size(struct prp_rct *rct) in get_prp_LSDU_size() argument 154 return ntohs(rct->lan_id_and_LSDU_size) & 0x0FFF; in get_prp_LSDU_size() 157 static inline void set_prp_lan_id(struct prp_rct *rct, u16 lan_id) in set_prp_lan_id() argument 159 rct->lan_id_and_LSDU_size = htons((ntohs(rct->lan_id_and_LSDU_size) & in set_prp_lan_id() 162 static inline void set_prp_LSDU_size(struct prp_rct *rct, u16 LSDU_size) in set_prp_LSDU_size() argument 164 rct->lan_id_and_LSDU_size = htons((ntohs(rct->lan_id_and_LSDU_size) & in set_prp_LSDU_size() 245 struct prp_rct *rct = (struct prp_rct *)tail; in skb_get_PRP_rct() local 247 if (rct->PRP_suffix == htons(ETH_P_PRP)) in skb_get_PRP_rct() [all …]
|
| D | hsr_forward.c | 130 /* trim the skb by len - HSR_HLEN to exclude RCT */ in prp_get_untagged_frame() 163 /* Tailroom for PRP rct should have been created before calling this */ 484 struct prp_rct *rct = skb_get_PRP_rct(skb); in prp_fill_frame_info() local 486 if (rct && in prp_fill_frame_info() 487 prp_check_lsdu_size(skb, rct, frame->is_supervision)) { in prp_fill_frame_info() 491 frame->sequence_nr = prp_get_skb_sequence_nr(rct); in prp_fill_frame_info()
|
| D | hsr_framereg.c | 213 struct prp_rct *rct; in hsr_get_node() local 245 rct = skb_get_PRP_rct(skb); in hsr_get_node() 246 if (rct && prp_check_lsdu_size(skb, rct, is_sup)) { in hsr_get_node() 247 seq_out = prp_get_skb_sequence_nr(rct); in hsr_get_node()
|
| /kernel/linux/linux-6.6/net/hsr/ |
| D | hsr_main.h | 131 /* PRP Redunancy Control Trailor (RCT). 132 * As defined in IEC-62439-4:2012, the PRP RCT is really { sequence Nr, 143 static inline u16 get_prp_LSDU_size(struct prp_rct *rct) in get_prp_LSDU_size() argument 145 return ntohs(rct->lan_id_and_LSDU_size) & 0x0FFF; in get_prp_LSDU_size() 148 static inline void set_prp_lan_id(struct prp_rct *rct, u16 lan_id) in set_prp_lan_id() argument 150 rct->lan_id_and_LSDU_size = htons((ntohs(rct->lan_id_and_LSDU_size) & in set_prp_lan_id() 153 static inline void set_prp_LSDU_size(struct prp_rct *rct, u16 LSDU_size) in set_prp_LSDU_size() argument 155 rct->lan_id_and_LSDU_size = htons((ntohs(rct->lan_id_and_LSDU_size) & in set_prp_LSDU_size() 239 struct prp_rct *rct = (struct prp_rct *)tail; in skb_get_PRP_rct() local 241 if (rct->PRP_suffix == htons(ETH_P_PRP)) in skb_get_PRP_rct() [all …]
|
| D | hsr_forward.c | 172 /* trim the skb by len - HSR_HLEN to exclude RCT */ in prp_get_untagged_frame() 205 /* Tailroom for PRP rct should have been created before calling this */ 547 struct prp_rct *rct = skb_get_PRP_rct(skb); in prp_fill_frame_info() local 549 if (rct && in prp_fill_frame_info() 550 prp_check_lsdu_size(skb, rct, frame->is_supervision)) { in prp_fill_frame_info() 554 frame->sequence_nr = prp_get_skb_sequence_nr(rct); in prp_fill_frame_info()
|
| D | hsr_framereg.c | 204 struct prp_rct *rct; in hsr_get_node() local 236 rct = skb_get_PRP_rct(skb); in hsr_get_node() 237 if (rct && prp_check_lsdu_size(skb, rct, is_sup)) { in hsr_get_node() 238 seq_out = prp_get_skb_sequence_nr(rct); in hsr_get_node()
|
| /kernel/linux/linux-6.6/crypto/ |
| D | jitterentropy.c | 92 /* From an SP800-90B perspective, this RCT cutoff value is equal to 31. */ 93 /* However, our RCT implementation starts at 1, so we subtract 1 here. */ 97 /* From an SP800-90B perspective, this RCT cutoff value is equal to 61. */ 98 /* However, our RCT implementation starts at 1, so we subtract 1 here. */ 202 * (RCT) specified in SP800-90B section 4.4.1. Instead of counting identical 203 * back-to-back values, the input to the RCT is the counting of the stuck 206 * The RCT is applied with an alpha of 2^{-30} compliant to FIPS 140-2 IG 9.8. 208 * During the counting operation, the Jitter RNG always calculates the RCT 225 /* Reset RCT */ in jent_rct_insert() 267 /* RCT with a stuck bit */ in jent_stuck() [all …]
|
| /kernel/linux/linux-5.10/crypto/ |
| D | jitterentropy.c | 118 #define JENT_ERCT 10 /* RCT failed during initialization */ 173 * (RCT) specified in SP800-90B section 4.4.1. Instead of counting identical 174 * back-to-back values, the input to the RCT is the counting of the stuck 177 * The RCT is applied with an alpha of 2^{-30} compliant to FIPS 140-2 IG 9.8. 179 * During the counting operation, the Jitter RNG always calculates the RCT 194 * If we have a count less than zero, a previous RCT round identified in jent_rct_insert() 227 * Is there an RCT health test failure? 279 /* RCT with a stuck bit */ in jent_stuck() 284 /* RCT with a non-stuck bit */ in jent_stuck() 588 * -2 RCT failed [all …]
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/ata/ |
| D | ceva,ahci-1v84.yaml | 81 ceva,p0-retry-params = /bits/ 16 <RIT RCT>; 84 - description: RCT - Rate Change Timer. 127 ceva,pN-retry-params = /bits/ 16 <RIT RCT>; 130 - description: RCT - Rate Change Timer.
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/ata/ |
| D | ahci-ceva.txt | 35 ceva,pN-retry-params = /bits/ 16 <RIT RCT>; 37 RCT: Rate Change Timer.
|
| /kernel/linux/linux-5.10/drivers/scsi/pcmcia/ |
| D | sym53c500_cs.c | 3 * sym53c500_cs.c Bob Tracy (rct@frus.com) 13 * Bob Tracy (rct@frus.com) 19 * Bob Tracy (rct@frus.com) 25 * Bob Tracy (rct@frus.com) 717 * section dealing with manufacturer IDs can be scrapped. --rct in SYM53C500_config() 853 MODULE_AUTHOR("Bob Tracy <rct@frus.com>");
|
| /kernel/linux/linux-6.6/drivers/scsi/pcmcia/ |
| D | sym53c500_cs.c | 3 * sym53c500_cs.c Bob Tracy (rct@frus.com) 13 * Bob Tracy (rct@frus.com) 19 * Bob Tracy (rct@frus.com) 25 * Bob Tracy (rct@frus.com) 726 * section dealing with manufacturer IDs can be scrapped. --rct in SYM53C500_config() 862 MODULE_AUTHOR("Bob Tracy <rct@frus.com>");
|
| /kernel/linux/linux-6.6/Documentation/scsi/ |
| D | sym53c500_cs.rst | 29 Bob Tracy (rct@frus.com)
|
| /kernel/linux/linux-5.10/Documentation/scsi/ |
| D | sym53c500_cs.rst | 29 Bob Tracy (rct@frus.com)
|
| /kernel/linux/linux-6.6/drivers/ata/ |
| D | pata_rdc.c | 136 /* clear ISP|RCT|TIME0|IE0|PPE0|DTE0 */ in rdc_set_piomode() 140 /* load ISP and RCT */ in rdc_set_piomode()
|
| D | ata_piix.c | 608 /* clear ISP|RCT|TIME0|IE0|PPE0|DTE0 */ in piix_set_timings() 612 /* load ISP and RCT */ in piix_set_timings()
|
| /kernel/linux/linux-5.10/drivers/ata/ |
| D | pata_rdc.c | 136 /* clear ISP|RCT|TIME0|IE0|PPE0|DTE0 */ in rdc_set_piomode() 140 /* load ISP and RCT */ in rdc_set_piomode()
|
| D | ata_piix.c | 607 /* clear ISP|RCT|TIME0|IE0|PPE0|DTE0 */ in piix_set_timings() 611 /* load ISP and RCT */ in piix_set_timings()
|
| /kernel/linux/linux-5.10/drivers/atm/ |
| D | idt77252.h | 368 unsigned long rct_base; /* RCT base address in SRAM */ 380 unsigned int rct_size; /* total RCT entries */
|
| D | nicstar.h | 301 * RCT - Receive Connection Table
|
| /kernel/linux/linux-6.6/drivers/atm/ |
| D | idt77252.h | 368 unsigned long rct_base; /* RCT base address in SRAM */ 380 unsigned int rct_size; /* total RCT entries */
|
| D | nicstar.h | 301 * RCT - Receive Connection Table
|
| /kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/amdgpu_dm/ |
| D | amdgpu_dm_trace.h | 453 TP_printk("pipe_idx=%d stream=%p rct(%d,%d) dst=(%d,%d,%d,%d) "
|
| /kernel/linux/linux-5.10/drivers/block/drbd/ |
| D | drbd_receiver.c | 3294 int rct, dc; /* roles at crash time */ in drbd_uuid_compare() local 3343 rct = (test_bit(CRASHED_PRIMARY, &device->flags) ? 1 : 0) + in drbd_uuid_compare() 3351 if (rct == 0) in drbd_uuid_compare() 3380 switch (rct) { in drbd_uuid_compare()
|
| /kernel/linux/linux-6.6/drivers/block/drbd/ |
| D | drbd_receiver.c | 3256 int rct, dc; /* roles at crash time */ in drbd_uuid_compare() local 3305 rct = (test_bit(CRASHED_PRIMARY, &device->flags) ? 1 : 0) + in drbd_uuid_compare() 3313 if (rct == 0) in drbd_uuid_compare() 3342 switch (rct) { in drbd_uuid_compare()
|