#ifndef PERF_FLAG_FD_NO_GROUP # define PERF_FLAG_FD_NO_GROUP (1UL << 0) #endif #ifndef PERF_FLAG_FD_OUTPUT # define PERF_FLAG_FD_OUTPUT (1UL << 1) #endif #ifndef PERF_FLAG_PID_CGROUP # define PERF_FLAG_PID_CGROUP (1UL << 2) /* pid=cgroup id, per-cpu mode only */ #endif #ifndef PERF_FLAG_FD_CLOEXEC # define PERF_FLAG_FD_CLOEXEC (1UL << 3) /* O_CLOEXEC */ #endif static size_t syscall_arg__scnprintf_perf_flags(char *bf, size_t size, struct syscall_arg *arg) { int printed = 0, flags = arg->val; if (flags == 0) return 0; #define P_FLAG(n) \ if (flags & PERF_FLAG_##n) { \ printed += scnprintf(bf + printed, size - printed, "%s%s", printed ? "|" : "", #n); \ flags &= ~PERF_FLAG_##n; \ } P_FLAG(FD_NO_GROUP); P_FLAG(FD_OUTPUT); P_FLAG(PID_CGROUP); P_FLAG(FD_CLOEXEC); #undef P_FLAG if (flags) printed += scnprintf(bf + printed, size - printed, "%s%#x", printed ? "|" : "", flags); return printed; } #define SCA_PERF_FLAGS syscall_arg__scnprintf_perf_flags 3f725c'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/sound/soc/intel/Kconfig
diff options
context:
space:
mode:
authorJens Axboe <axboe@fb.com>2017-01-26 09:56:15 -0700
committerJens Axboe <axboe@fb.com>2017-01-26 09:56:15 -0700
commit0d4ee015d5ea50febb882d00520d62c6de3f725c (patch)
tree6bd2e032e00c34590a8d39d5a43b6a7518d1384d /sound/soc/intel/Kconfig
parent690e5325b8c7d5db05fc569c0f7b888bb4248272 (diff)
parent19e420bb4076ace670addc55300e3b8c4a02dfc6 (diff)
Merge branch 'nvme-4.10-fixes' of git://git.infradead.org/nvme into for-linus
Pull nvme target fixes from Sagi: Given that its -rc6, I removed anything that is not bug fix. - nvmet-fc discard fix from Christoph - queue disconnect fix from James - nvmet-rdma dma sync fix from Parav - Some more nvmet fixes
Diffstat (limited to 'sound/soc/intel/Kconfig')