aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/wl12xx/main.c
diff options
context:
space:
mode:
authorVikas Chaudhary <vikas.chaudhary@qlogic.com>2011-08-01 06:26:12 -0400
committerJames Bottomley <JBottomley@Parallels.com>2011-08-27 10:36:28 -0400
commit8c7d40fb6b51ef37df64af0e6add35baaf48896c (patch)
tree9d70f752795d63718910414642322f3fac4cc461 /drivers/net/wireless/wl12xx/main.c
parent2a991c2159782b8d318ac9f88a36c22dda3e7185 (diff)
[SCSI] scsi_transport_iscsi: Added support to update mtu
Signed-off-by: Vikas Chaudhary <vikas.chaudhary@qlogic.com> Reviewed-by: Mike Christie <michaelc@cs.wisc.edu> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/net/wireless/wl12xx/main.c')
0 files changed, 0 insertions, 0 deletions
_neg(a) ((a)->sign) /*-- mpiutil.c --*/ MPI mpi_alloc(unsigned nlimbs); MPI mpi_alloc_secure(unsigned nlimbs); MPI mpi_alloc_like(MPI a); void mpi_free(MPI a); int mpi_resize(MPI a, unsigned nlimbs); int mpi_copy(MPI *copy, const MPI a); void mpi_clear(MPI a); int mpi_set(MPI w, MPI u); int mpi_set_ui(MPI w, ulong u); MPI mpi_alloc_set_ui(unsigned long u); void mpi_m_check(MPI a); void mpi_swap(MPI a, MPI b); /*-- mpicoder.c --*/ MPI do_encode_md(const void *sha_buffer, unsigned nbits); MPI mpi_read_raw_data(const void *xbuffer, size_t nbytes); MPI mpi_read_from_buffer(const void *buffer, unsigned *ret_nread); int mpi_fromstr(MPI val, const char *str); u32 mpi_get_keyid(MPI a, u32 *keyid); void *mpi_get_buffer(MPI a, unsigned *nbytes, int *sign); void *mpi_get_secure_buffer(MPI a, unsigned *nbytes, int *sign); int mpi_set_buffer(MPI a, const void *buffer, unsigned nbytes, int sign); #define log_mpidump g10_log_mpidump /*-- mpi-add.c --*/ int mpi_add_ui(MPI w, MPI u, ulong v); int mpi_add(MPI w, MPI u, MPI v); int mpi_addm(MPI w, MPI u, MPI v, MPI m); int mpi_sub_ui(MPI w, MPI u, ulong v); int mpi_sub(MPI w, MPI u, MPI v); int mpi_subm(MPI w, MPI u, MPI v, MPI m); /*-- mpi-mul.c --*/ int mpi_mul_ui(MPI w, MPI u, ulong v); int mpi_mul_2exp(MPI w, MPI u, ulong cnt); int mpi_mul(MPI w, MPI u, MPI v); int mpi_mulm(MPI w, MPI u, MPI v, MPI m); /*-- mpi-div.c --*/ ulong mpi_fdiv_r_ui(MPI rem, MPI dividend, ulong divisor); int mpi_fdiv_r(MPI rem, MPI dividend, MPI divisor); int mpi_fdiv_q(MPI quot, MPI dividend, MPI divisor); int mpi_fdiv_qr(MPI quot, MPI rem, MPI dividend, MPI divisor); int mpi_tdiv_r(MPI rem, MPI num, MPI den); int mpi_tdiv_qr(MPI quot, MPI rem, MPI num, MPI den); int mpi_tdiv_q_2exp(MPI w, MPI u, unsigned count); int mpi_divisible_ui(const MPI dividend, ulong divisor); /*-- mpi-gcd.c --*/ int mpi_gcd(MPI g, const MPI a, const MPI b); /*-- mpi-pow.c --*/ int mpi_pow(MPI w, MPI u, MPI v); int mpi_powm(MPI res, MPI base, MPI exp, MPI mod); /*-- mpi-mpow.c --*/ int mpi_mulpowm(MPI res, MPI *basearray, MPI *exparray, MPI mod); /*-- mpi-cmp.c --*/ int mpi_cmp_ui(MPI u, ulong v); int mpi_cmp(MPI u, MPI v); /*-- mpi-scan.c --*/ int mpi_getbyte(MPI a, unsigned idx); void mpi_putbyte(MPI a, unsigned idx, int value); unsigned mpi_trailing_zeros(MPI a); /*-- mpi-bit.c --*/ void mpi_normalize(MPI a); unsigned mpi_get_nbits(MPI a); int mpi_test_bit(MPI a, unsigned n); int mpi_set_bit(MPI a, unsigned n); int mpi_set_highbit(MPI a, unsigned n); void mpi_clear_highbit(MPI a, unsigned n); void mpi_clear_bit(MPI a, unsigned n); int mpi_rshift(MPI x, MPI a, unsigned n); /*-- mpi-inv.c --*/ int mpi_invm(MPI x, MPI u, MPI v); #endif /*G10_MPI_H */