Searched refs:after (Results 101 - 125 of 147) sorted by relevance

123456

/linux-master/arch/s390/boot/
H A Dhead.S296 # This program check is active immediately after kernel start
/linux-master/arch/sparc/lib/
H A Ddivdi3.S203 wr %g0,%o1,%y ! SPARC has 0-3 delay insn after a wr
/linux-master/tools/testing/selftests/net/
H A Dtest_bridge_backup_port.sh640 log_test $? 1 "Ping after disabling backup nexthop ID"
700 -P Pause after each test before cleanup
H A Drtnetlink.sh1298 -P Pause after every test
1299 -p Pause after every failing test before cleanup (for debugging)
H A Dtest_bridge_neigh_suppress.sh777 -P Pause after each test before cleanup
/linux-master/drivers/net/ethernet/intel/e1000e/
H A Dethtool.c843 u32 after; local
867 after = er32(STATUS) & toggle;
868 if (value != after) {
870 after, value);
/linux-master/net/rxrpc/
H A Dio_thread.c354 if (after(sp->hdr.serial, conn->hi_serial))
H A Dar-internal.h240 /* Clean up the preparse buffer after parsing a server key */
990 /* Order reading the abort info after the state check. */
1307 static inline bool after(u32 seq1, u32 seq2) function
H A Doutput.c59 * Arrange for a keepalive ping a certain time after we last transmitted. This
115 if (after(wtop, window)) {
397 * Set timeouts after transmitting a packet.
/linux-master/net/sched/
H A Dsch_cake.c447 * true if the BLUE state was quiescent before but active after this call.
471 * true if the BLUE state was active before but quiescent after this call.
515 * after 'drop_next'. This allows 'drop_next' to be updated before the next
663 * enabled there's another check below after doing the conntrack lookup.
715 /* This *must* be after the above switch, since as a
1043 if (!after(start_b, start_a) && !before(end_b, end_a)) {
1131 if (after(tstamp, tstamp_new) ||
1132 after(tsecr, tsecr_new))
1248 after(ntohl(tcph_check->ack_seq), ntohl(tcph->ack_seq)))
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dtorture.sh685 echo Size after compressing $n2compress files: `du -sh $tdir | awk '{ print $1 }'` `date` 2>&1 | tee -a "$tdir/log-xz" | tee -a $T/log
/linux-master/arch/m68k/fpsp040/
H A Dbindec.S47 | after the decimal point which are to be included as
279 | a positive number, or the number of digits after the
H A Dfpsp.h60 | if the FPU state after the exception is idle.
/linux-master/drivers/media/dvb-core/
H A Ddvb_demux.c345 const u8 *after = &before[before_len]; local
353 dvb_dmx_swfilter_section_copy_dump(feed, after,
/linux-master/net/tls/
H A Dtls_device.c655 after(info->end_seq,
735 if (!after(*seq, req_end) &&
1145 * We don't want to offload new flows after
1215 * We don't want to offload new flows after
1324 * tls_dev_resync must not be called after tls_dev_del.
1362 /* sk_destruct ran after tls_device_down took a ref, and
/linux-master/drivers/gpu/drm/amd/amdkfd/
H A Dcwsr_trap_handler_gfx10.asm47 #define SAVE_AFTER_XNACK_ERROR (HAVE_XNACK && !NO_SQC_STORE) // workaround for TCP store failure after XNACK error when ALLOW_REPLAY=0, for debugger
562 // Write HWREGs with 16 VGPR lanes. TTMPs occupy space after this.
1152 // Clear DEBUG_EN before and restore MODE after the barrier.
H A Dcwsr_trap_handler_gfx9.asm48 var SAVE_AFTER_XNACK_ERROR = 1 //workaround for TCP store failure after XNACK error when ALLOW_REPLAY=0, for debugger
232 // and debugger (host trap, wave start/end, trap after instruction)
/linux-master/drivers/net/ethernet/chelsio/inline_crypto/chtls/
H A Dchtls_io.c1309 * Called after some received data has been read. It returns RX credits
1504 if (tp->urg_data && after(tp->copied_seq, tp->urg_seq))
1824 if (tp->urg_data && after(tp->copied_seq, tp->urg_seq))
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_ethtool.c1598 u32 value, before, after; local
1633 after = ixgbe_read_reg(&adapter->hw, IXGBE_STATUS) & toggle;
1634 if (value != after) {
1636 after, value);
/linux-master/drivers/net/ethernet/intel/igb/
H A Digb_ethtool.c1275 u32 value, before, after; local
1311 after = rd32(E1000_STATUS) & toggle;
1312 if (value != after) {
1315 after, value);
/linux-master/net/ipv4/
H A Dtcp.c104 * Michael Pall : Handle poll() after URG properly in
109 * tcp_readable(), poll() after URG
237 * TCP_LAST_ACK out side has shutdown after remote has
533 * our fs/select.c). It means that after we received EOF,
573 /* Race breaker. If space is freed after
660 return after(tp->write_seq, tp->pushed_seq + (tp->max_window >> 1));
694 * or if TX completion was delayed after we processed ACK packet.
2516 if (unlikely(tp->urg_data) && after(tp->copied_seq, tp->urg_seq)) {
2868 * our end. If they send after that then tough - BUT: long enough
3136 if (after(op
[all...]
/linux-master/net/sunrpc/auth_gss/
H A Dauth_gss.c95 * for the new text-based upcall; dentry[0] is named after the
1305 /* gss_destroy_cred (and gss_free_ctx) are used to clean up after failure
1773 /* Check that the trailing MIC fit in the buffer, after the fact */
1946 * @after: XDR words needed following each RPC Reply message
1950 unsigned int before, unsigned int after)
1956 auth->au_rslack = auth->au_verfsize + after;
1949 gss_update_rslack(struct rpc_task *task, struct rpc_cred *cred, unsigned int before, unsigned int after) argument
/linux-master/include/net/
H A Dtcp.h170 /* Ensure that TCP PAWS checks are relaxed after ~2147 seconds
177 * after this time. It should be equal
202 /* Magic number to be after the option value for sharing TCP
289 #define after(seq2, seq1) before(seq1, seq2) macro
524 * the counter advances immediately after a cookie is generated).
580 * tcp_synq_overflow() could update .ts_recent_stamp after we read
813 * Rcv_nxt can be after the window if our peer push more data
1168 * after all the ca_state processing. (optional)
1173 /* new value of cwnd after loss (required) */
1259 return t1 > t2 || (t1 == t2 && after(seq
[all...]
/linux-master/arch/m68k/ifpsp060/src/
H A Disp.S33 # after _060ISP_TABLE.
2629 # saved. so, saving hi after lo accomplishes this without need to
2922 # _isp_cas_restart(): restart cas emulation after a fault #
2974 # Either way, after emulation, the package is re-entered at #
/linux-master/drivers/tty/vt/
H A Dkeyboard.c386 * Called after returning from RAW mode or when changing consoles - recompute
420 * Ensure that after the switch is completed, the state of the
435 * Otherwise, conclude that DIACR was not combining after all,
1443 * interfere with anything else. The two bytes after 0 will
1710 copy it after we unlock */
1743 copy it after we unlock */

Completed in 309 milliseconds

123456