| #!/bin/bash -x |
| |
| # Copyright(c) 2015-2017 Intel Corporation. All rights reserved. |
| # |
| # This program is free software; you can redistribute it and/or modify it |
| # under the terms of version 2 of the GNU General Public License as |
| # published by the Free Software Foundation. |
| # |
| # This program is distributed in the hope that it will be useful, but |
| # WITHOUT ANY WARRANTY; without even the implied warranty of |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| # General Public License for more details. |
| |
| DEV="" |
| NDCTL="../ndctl/ndctl" |
| BUS="-b nfit_test.0" |
| json2var="s/[{}\",]//g; s/:/=/g" |
| SECTOR_SIZE="4096" |
| rc=77 |
| |
| set -e |
| |
| err() { |
| echo "test/create: failed at line $1" |
| exit $rc |
| } |
| |
| check_min_kver() |
| { |
| local ver="$1" |
| : "${KVER:=$(uname -r)}" |
| |
| [ -n "$ver" ] || return 1 |
| [[ "$ver" == "$(echo -e "$ver\n$KVER" | sort -V | head -1)" ]] |
| } |
| |
| check_min_kver "4.5" || { echo "kernel $KVER may lack namespace mode attribute"; exit $rc; } |
| |
| set -e |
| trap 'err $LINENO' ERR |
| |
| # setup (reset nfit_test dimms) |
| modprobe nfit_test |
| $NDCTL disable-region $BUS all |
| $NDCTL zero-labels $BUS all |
| $NDCTL enable-region $BUS all |
| |
| rc=1 |
| |
| # create pmem |
| dev="x" |
| json=$($NDCTL create-namespace $BUS -t pmem -m raw) |
| eval $(echo $json | sed -e "$json2var") |
| [ $dev = "x" ] && echo "fail: $LINENO" && exit 1 |
| [ $mode != "raw" ] && echo "fail: $LINENO" && exit 1 |
| |
| # convert pmem to memory mode |
| json=$($NDCTL create-namespace -m memory -f -e $dev) |
| eval $(echo $json | sed -e "$json2var") |
| [ $mode != "memory" ] && echo "fail: $LINENO" && exit 1 |
| |
| # convert pmem to sector mode |
| json=$($NDCTL create-namespace -m sector -l $SECTOR_SIZE -f -e $dev) |
| eval $(echo $json | sed -e "$json2var") |
| [ $sector_size != $SECTOR_SIZE ] && echo "fail: $LINENO" && exit 1 |
| [ $mode != "sector" ] && echo "fail: $LINENO" && exit 1 |
| |
| # free capacity for blk creation |
| $NDCTL destroy-namespace -f $dev |
| |
| # create blk |
| dev="x" |
| json=$($NDCTL create-namespace $BUS -t blk -m raw -v) |
| eval $(echo $json | sed -e "$json2var") |
| [ $dev = "x" ] && echo "fail: $LINENO" && exit 1 |
| [ $mode != "raw" ] && echo "fail: $LINENO" && exit 1 |
| |
| # convert blk to sector mode |
| json=$($NDCTL create-namespace -m sector -l $SECTOR_SIZE -f -e $dev) |
| eval $(echo $json | sed -e "$json2var") |
| [ $sector_size != $SECTOR_SIZE ] && echo "fail: $LINENO" && exit 1 |
| [ $mode != "sector" ] && echo "fail: $LINENO" && exit 1 |
| |
| exit 0 |