Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb31f607 authored by James Morris's avatar James Morris
Browse files

Merge tag 'keys-next-fixes-20150114' of...

Merge tag 'keys-next-fixes-20150114' of git://git.kernel.org/pub/scm/linux/kernel/git/dhowells/linux-fs into next
parents a6391a92 b9f918a3
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -57,14 +57,12 @@ int mpi_cmp(MPI u, MPI v)
	if (usize != vsize && !u->sign && !v->sign)
		return usize - vsize;
	if (usize != vsize && u->sign && v->sign)
		return vsize + usize;
		return vsize - usize;
	if (!usize)
		return 0;
	cmp = mpihelp_cmp(u->d, v->d, usize);
	if (!cmp)
		return 0;
	if ((cmp < 0 ? 1 : 0) == (u->sign ? 1 : 0))
		return 1;
	return -1;
	if (u->sign)
		return -cmp;
	return cmp;
}
EXPORT_SYMBOL_GPL(mpi_cmp);
+1 −1
Original line number Diff line number Diff line
@@ -84,7 +84,7 @@ static inline int RESIZE_IF_NEEDED(MPI a, unsigned b)
	do {					\
		mpi_size_t _i;			\
		for (_i = 0; _i < (n); _i++)	\
			(d)[_i] = (d)[_i];	\
			(d)[_i] = (s)[_i];	\
	} while (0)

#define MPN_COPY_DECR(d, s, n) \