Deleted Added
sdiff udiff text old ( 300840 ) new ( 300841 )
full compact
1/*-
2 * Copyright (c) 2012-2016 Solarflare Communications Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,

--- 15 unchanged lines hidden (view full) ---

24 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * The views and conclusions contained in the software and documentation are
27 * those of the authors and should not be interpreted as representing official
28 * policies, either expressed or implied, of the FreeBSD Project.
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: head/sys/dev/sfxge/common/ef10_tx.c 300841 2016-05-27 11:45:42Z arybchik $");
33
34#include "efx.h"
35#include "efx_impl.h"
36
37
38#if EFSYS_OPT_HUNTINGTON || EFSYS_OPT_MEDFORD
39
40#if EFSYS_OPT_QSTATS

--- 603 unchanged lines hidden (view full) ---

644ef10_tx_qpace(
645 __in efx_txq_t *etp,
646 __in unsigned int ns)
647{
648 efx_rc_t rc;
649
650 /* FIXME */
651 _NOTE(ARGUNUSED(etp, ns))
652 _NOTE(CONSTANTCONDITION)
653 if (B_FALSE) {
654 rc = ENOTSUP;
655 goto fail1;
656 }
657 /* FIXME */
658
659 return (0);
660

--- 52 unchanged lines hidden ---