https://github.com/torvalds/linux
Revision e25bd6ca8fd8fca2e0148bef257479eee3fff9b5 authored by Linus Torvalds on 30 December 2015, 01:46:29 UTC, committed by Linus Torvalds on 30 December 2015, 01:46:29 UTC
Pull vfs fix from Al Viro:
 "Fix for 3.15 breakage of fcntl64() in arm OABI compat.  -stable
  fodder"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  [PATCH] arm: fix handling of F_OFD_... in oabi_fcntl64()
2 parent s 1e60508 + 76cc404
Raw File
Tip revision: e25bd6ca8fd8fca2e0148bef257479eee3fff9b5 authored by Linus Torvalds on 30 December 2015, 01:46:29 UTC
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Tip revision: e25bd6c
ld-version.sh
#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
	{
	gsub(".*)", "");
	split($1,a, ".");
	print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
	exit
	}
back to top