eafad49bd6
It turns out that at least the Nexus 9 kernel is built without CONFIG_QUOTA. If we decide we're going to mandate quota functionality, I'm happy for us to be a part of CTS that ensures that happens, but I don't want to be first, so there's not much to test here other than "will it compile?". The strace output looks right though. Bug: http://b/27948821 Bug: http://b/27952303 Change-Id: If667195eee849ed17c8fa9110f6b02907fc8fc04
16 lines
309 B
ArmAsm
16 lines
309 B
ArmAsm
/* Generated by gensyscalls.py. Do not edit. */
|
|
|
|
#include <private/bionic_asm.h>
|
|
|
|
ENTRY(quotactl)
|
|
movq %rcx, %r10
|
|
movl $__NR_quotactl, %eax
|
|
syscall
|
|
cmpq $-MAX_ERRNO, %rax
|
|
jb 1f
|
|
negl %eax
|
|
movl %eax, %edi
|
|
call __set_errno_internal
|
|
1:
|
|
ret
|
|
END(quotactl)
|