Skip to content

Commit

Permalink
Merge tag 'linux-kselftest-4.5-rc1' of git://git.kernel.org/pub/scm/l…
Browse files Browse the repository at this point in the history
…inux/kernel/git/shuah/linux-kselftest

Pull kselftest updates from Shuah Khan:
 "This 14 patch update:

   - adds a new test for intel_pstate driver
   - adds empty string and async test cases to firmware class tests
   - fixes and cleans up several existing tests"

* tag 'linux-kselftest-4.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
  selftests: firmware: add empty string and async tests
  firmware: actually return NULL on failed request_firmware_nowait()
  test: firmware_class: add asynchronous request trigger
  test: firmware_class: use kstrndup() where appropriate
  test: firmware_class: report errors properly on failure
  selftests/seccomp: fix 32-bit build warnings
  add breakpoints/.gitignore
  add ptrace/.gitignore
  update .gitignore in selftests/timers
  update .gitignore in selftests/vm
  tools, testing, add test for intel_pstate driver
  selftest/ipc: actually test it
  selftests/capabilities: actually test it
  selftests/capabilities: clean up for Makefile
  • Loading branch information
torvalds committed Jan 17, 2016
2 parents a4eff16 + 1b1fe54 commit 12768c1
Show file tree
Hide file tree
Showing 14 changed files with 376 additions and 23 deletions.
8 changes: 5 additions & 3 deletions drivers/base/firmware_class.c
Original file line number Diff line number Diff line change
Expand Up @@ -1118,15 +1118,17 @@ static int
_request_firmware(const struct firmware **firmware_p, const char *name,
struct device *device, unsigned int opt_flags)
{
struct firmware *fw;
struct firmware *fw = NULL;
long timeout;
int ret;

if (!firmware_p)
return -EINVAL;

if (!name || name[0] == '\0')
return -EINVAL;
if (!name || name[0] == '\0') {
ret = -EINVAL;
goto out;
}

ret = _request_firmware_prepare(&fw, name, device);
if (ret <= 0) /* error or already assigned */
Expand Down
79 changes: 74 additions & 5 deletions lib/test_firmware.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include <linux/init.h>
#include <linux/module.h>
#include <linux/printk.h>
#include <linux/completion.h>
#include <linux/firmware.h>
#include <linux/device.h>
#include <linux/fs.h>
Expand Down Expand Up @@ -54,28 +55,83 @@ static ssize_t trigger_request_store(struct device *dev,
int rc;
char *name;

name = kzalloc(count + 1, GFP_KERNEL);
name = kstrndup(buf, count, GFP_KERNEL);
if (!name)
return -ENOSPC;
memcpy(name, buf, count);

pr_info("loading '%s'\n", name);

mutex_lock(&test_fw_mutex);
release_firmware(test_firmware);
test_firmware = NULL;
rc = request_firmware(&test_firmware, name, dev);
if (rc)
if (rc) {
pr_info("load of '%s' failed: %d\n", name, rc);
pr_info("loaded: %zu\n", test_firmware ? test_firmware->size : 0);
goto out;
}
pr_info("loaded: %zu\n", test_firmware->size);
rc = count;

out:
mutex_unlock(&test_fw_mutex);

kfree(name);

return count;
return rc;
}
static DEVICE_ATTR_WO(trigger_request);

static DECLARE_COMPLETION(async_fw_done);

static void trigger_async_request_cb(const struct firmware *fw, void *context)
{
test_firmware = fw;
complete(&async_fw_done);
}

static ssize_t trigger_async_request_store(struct device *dev,
struct device_attribute *attr,
const char *buf, size_t count)
{
int rc;
char *name;

name = kstrndup(buf, count, GFP_KERNEL);
if (!name)
return -ENOSPC;

pr_info("loading '%s'\n", name);

mutex_lock(&test_fw_mutex);
release_firmware(test_firmware);
test_firmware = NULL;
rc = request_firmware_nowait(THIS_MODULE, 1, name, dev, GFP_KERNEL,
NULL, trigger_async_request_cb);
if (rc) {
pr_info("async load of '%s' failed: %d\n", name, rc);
kfree(name);
goto out;
}
/* Free 'name' ASAP, to test for race conditions */
kfree(name);

wait_for_completion(&async_fw_done);

if (test_firmware) {
pr_info("loaded: %zu\n", test_firmware->size);
rc = count;
} else {
pr_err("failed to async load firmware\n");
rc = -ENODEV;
}

out:
mutex_unlock(&test_fw_mutex);

return rc;
}
static DEVICE_ATTR_WO(trigger_async_request);

static int __init test_firmware_init(void)
{
int rc;
Expand All @@ -92,9 +148,20 @@ static int __init test_firmware_init(void)
goto dereg;
}

rc = device_create_file(test_fw_misc_device.this_device,
&dev_attr_trigger_async_request);
if (rc) {
pr_err("could not create async sysfs interface: %d\n", rc);
goto remove_file;
}

pr_warn("interface ready\n");

return 0;

remove_file:
device_remove_file(test_fw_misc_device.this_device,
&dev_attr_trigger_async_request);
dereg:
misc_deregister(&test_fw_misc_device);
return rc;
Expand All @@ -105,6 +172,8 @@ module_init(test_firmware_init);
static void __exit test_firmware_exit(void)
{
release_firmware(test_firmware);
device_remove_file(test_fw_misc_device.this_device,
&dev_attr_trigger_async_request);
device_remove_file(test_fw_misc_device.this_device,
&dev_attr_trigger_request);
misc_deregister(&test_fw_misc_device);
Expand Down
2 changes: 2 additions & 0 deletions tools/testing/selftests/Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
TARGETS = breakpoints
TARGETS += capabilities
TARGETS += cpu-hotplug
TARGETS += efivarfs
TARGETS += exec
TARGETS += firmware
TARGETS += ftrace
TARGETS += futex
TARGETS += ipc
TARGETS += kcmp
TARGETS += lib
TARGETS += membarrier
Expand Down
1 change: 1 addition & 0 deletions tools/testing/selftests/breakpoints/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
breakpoint_test
21 changes: 9 additions & 12 deletions tools/testing/selftests/capabilities/Makefile
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
all:

include ../lib.mk

.PHONY: all clean

TARGETS := validate_cap test_execve
TEST_FILES := validate_cap
TEST_PROGS := test_execve

CFLAGS := -O2 -g -std=gnu99 -Wall -lcap-ng
BINARIES := $(TEST_FILES) $(TEST_PROGS)

all: $(TARGETS)
CFLAGS += -O2 -g -std=gnu99 -Wall
LDLIBS += -lcap-ng -lrt -ldl

all: $(BINARIES)

clean:
$(RM) $(TARGETS)
$(RM) $(BINARIES)

include ../lib.mk

$(TARGETS): %: %.c
$(CC) -o $@ $(CFLAGS) $(EXTRA_CFLAGS) $^ -lrt -ldl
29 changes: 28 additions & 1 deletion tools/testing/selftests/firmware/fw_filesystem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,21 @@ echo "ABCD0123" >"$FW"

NAME=$(basename "$FW")

if printf '\000' >"$DIR"/trigger_request; then
echo "$0: empty filename should not succeed" >&2
exit 1
fi

if printf '\000' >"$DIR"/trigger_async_request; then
echo "$0: empty filename should not succeed (async)" >&2
exit 1
fi

# Request a firmware that doesn't exist, it should fail.
echo -n "nope-$NAME" >"$DIR"/trigger_request
if echo -n "nope-$NAME" >"$DIR"/trigger_request; then
echo "$0: firmware shouldn't have loaded" >&2
exit 1
fi
if diff -q "$FW" /dev/test_firmware >/dev/null ; then
echo "$0: firmware was not expected to match" >&2
exit 1
Expand All @@ -74,4 +87,18 @@ else
echo "$0: filesystem loading works"
fi

# Try the asynchronous version too
if ! echo -n "$NAME" >"$DIR"/trigger_async_request ; then
echo "$0: could not trigger async request" >&2
exit 1
fi

# Verify the contents are what we expect.
if ! diff -q "$FW" /dev/test_firmware >/dev/null ; then
echo "$0: firmware was not loaded (async)" >&2
exit 1
else
echo "$0: async filesystem loading works"
fi

exit 0
15 changes: 15 additions & 0 deletions tools/testing/selftests/intel_pstate/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
CC := $(CROSS_COMPILE)gcc
CFLAGS := $(CFLAGS) -Wall -D_GNU_SOURCE
LDFLAGS := $(LDFLAGS) -lm

TARGETS := msr aperf

TEST_PROGS := $(TARGETS) run.sh

.PHONY: all clean
all: $(TARGETS)

$(TARGETS): $(HEADERS)

clean:
rm -f $(TARGETS)
80 changes: 80 additions & 0 deletions tools/testing/selftests/intel_pstate/aperf.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
#include <math.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/timeb.h>
#include <sched.h>
#include <errno.h>

void usage(char *name) {
printf ("Usage: %s cpunum\n", name);
}

int main(int argc, char **argv) {
int i, cpu, fd;
char msr_file_name[64];
long long tsc, old_tsc, new_tsc;
long long aperf, old_aperf, new_aperf;
long long mperf, old_mperf, new_mperf;
struct timeb before, after;
long long int start, finish, total;
cpu_set_t cpuset;

if (argc != 2) {
usage(argv[0]);
return 1;
}

errno = 0;
cpu = strtol(argv[1], (char **) NULL, 10);

if (errno) {
usage(argv[0]);
return 1;
}

sprintf(msr_file_name, "/dev/cpu/%d/msr", cpu);
fd = open(msr_file_name, O_RDONLY);

if (fd == -1) {
perror("Failed to open");
return 1;
}

CPU_ZERO(&cpuset);
CPU_SET(cpu, &cpuset);

if (sched_setaffinity(0, sizeof(cpu_set_t), &cpuset)) {
perror("Failed to set cpu affinity");
return 1;
}

ftime(&before);
pread(fd, &old_tsc, sizeof(old_tsc), 0x10);
pread(fd, &old_aperf, sizeof(old_mperf), 0xe7);
pread(fd, &old_mperf, sizeof(old_aperf), 0xe8);

for (i=0; i<0x8fffffff; i++) {
sqrt(i);
}

ftime(&after);
pread(fd, &new_tsc, sizeof(new_tsc), 0x10);
pread(fd, &new_aperf, sizeof(new_mperf), 0xe7);
pread(fd, &new_mperf, sizeof(new_aperf), 0xe8);

tsc = new_tsc-old_tsc;
aperf = new_aperf-old_aperf;
mperf = new_mperf-old_mperf;

start = before.time*1000 + before.millitm;
finish = after.time*1000 + after.millitm;
total = finish - start;

printf("runTime: %4.2f\n", 1.0*total/1000);
printf("freq: %7.0f\n", tsc / (1.0*aperf / (1.0 * mperf)) / total);
return 0;
}
39 changes: 39 additions & 0 deletions tools/testing/selftests/intel_pstate/msr.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#include <math.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/timeb.h>
#include <sched.h>
#include <errno.h>


int main(int argc, char **argv) {
int cpu, fd;
long long msr;
char msr_file_name[64];

if (argc != 2)
return 1;

errno = 0;
cpu = strtol(argv[1], (char **) NULL, 10);

if (errno)
return 1;

sprintf(msr_file_name, "/dev/cpu/%d/msr", cpu);
fd = open(msr_file_name, O_RDONLY);

if (fd == -1) {
perror("Failed to open");
return 1;
}

pread(fd, &msr, sizeof(msr), 0x199);

printf("msr 0x199: 0x%llx\n", msr);
return 0;
}
Loading

0 comments on commit 12768c1

Please sign in to comment.