summaryrefslogtreecommitdiff
path: root/test-pm-utils
blob: 1f834a095b50e770ccfcffe1f6b634530805d4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
opwd="$PWD"
tgt="/tmp/pm-utils-$$"
mkdir -p "$tgt"
trap 'rm -rf "$tgt"' 0
cd "$tgt" && \
cp -t "$tgt" -a "${opwd}"/* && \
autoreconf --install && \
./configure "--prefix=$tgt/target" && \
make && \
make install &&  {
	echo "Build sucessfull.  Dropping to a shell to test."
	echo "Files were installed in $tgt/target"
} || echo "Build failed.  Dropping to a shell so you can see what happened."
echo "Exiting from this shell will erase $tgt"
cd "$tgt/" && \
bash -i && \
cd "$opwd"
>-0/+12 2017-03-10device-dax: fix pmd/pte fault fallback handlingDave Jiang1-0/+15 2017-03-02sched/headers: Prepare to remove the <linux/magic.h> include from <linux/sche...Ingo Molnar1-0/+1 2017-02-24mm: replace FAULT_FLAG_SIZE with parameter to huge_faultDave Jiang1-6/+12 2017-02-24dax: support for transparent PUD pages for device DAXDave Jiang1-0/+48 2017-02-24mm,fs,dax: change ->pmd_fault to ->huge_faultDave Jiang1-21/+13 2017-02-24mm, fs: reduce fault, page_mkwrite, and pfn_mkwrite to take only vmfDave Jiang1-6/+6 2017-02-22mm, dax: change pmd_fault() to take only vmf parameterDave Jiang1-9/+9 2017-02-22mm, dax: make pmd_fault() and friends be the same as fault()Dave Jiang1-9/+7 2016-12-18Merge tag 'libnvdimm-for-4.10' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds2-1/+96 2016-12-17Merge branch 'for-4.10/libnvdimm' into libnvdimm-for-nextDan Williams2-1/+96 2016-12-17dax: add region 'id', 'size', and 'align' attributesDan Williams1-0/+94 2016-12-14mm: use vmf->address instead of of vmf->virtual_addressJan Kara1-2/+1 2016-12-06device-dax: fix private mapping restriction, permit read-onlyDan Williams1-1/+1 2016-11-28libnvdimm: use consistent naming for request_mem_region()Dan Williams1-1/+2 2016-11-16device-dax: fail all private mapping attemptsDan Williams1-2/+2 2016-10-28device-dax: check devm_nsio_enable() return valueDan Williams1-1/+3 2016-10-27device-dax: fix percpu_ref_exit orderingDan Williams1-1/+1 2016-10-27nvdimm: make CONFIG_NVDIMM_DAX 'bool'Arnd Bergmann1-1/+1 2016-10-07Merge branch 'for-4.9/dax' into libnvdimm-for-nextDan Williams4-232/+362 2016-10-07dax: use correct dev_t valueArnd Bergmann1-2/+2 2016-10-07dax: convert devm_create_dax_dev to PTR_ERRDan Williams3-10/+16 2016-09-03dax: fix mapping size checkDan Williams1-1/+1 2016-08-26dax: fix device-dax region baseDan Williams1-0/+3 2016-08-23dax: check resource alignment at dax region/device createDan Williams1-3/+19 2016-08-23dax: unmap/truncate on device shutdownDan Williams1-0/+1 2016-08-23dax: define a unified inode/address_space for device-dax mappingsDan Williams1-4/+146 2016-08-23dax: convert to the cdev apiDan Williams2-41/+46 2016-08-23dax: embed a struct device in dax_devDan Williams1-85/+45 2016-08-23dax: rename fops from dax_dev_ to dax_Dan Williams1-8/+8 2016-08-23dax: reorder dax_fops function definitionsDan Williams1-169/+168 2016-08-23dax: cleanup needlessly global symbol warningsDan Williams2-1/+2 2016-07-06dax: use devm_add_action_or_reset()Sajjan, Vikas C2-12/+8 2016-05-20/dev/dax, core: file operations and dax-mmapDan Williams2-0/+323 2016-05-20/dev/dax, pmem: direct access to persistent memoryDan Williams5-0/+464