summaryrefslogtreecommitdiffstats
path: root/drivers/nvdimm/nd.h
diff options
context:
space:
mode:
authorVishal Verma <vishal.l.verma@intel.com>2015-06-25 04:20:32 -0400
committerDan Williams <dan.j.williams@intel.com>2015-06-26 11:23:38 -0400
commit5212e11fde4d40fa627668b4f2222d20db488f71 (patch)
tree153bae097b056dfc44f1781c69e24a8d1e71584a /drivers/nvdimm/nd.h
parent8c2f7e8658df1d3b7cbfa62706941d14c715823a (diff)
nd_btt: atomic sector updates
BTT stands for Block Translation Table, and is a way to provide power fail sector atomicity semantics for block devices that have the ability to perform byte granularity IO. It relies on the capability of libnvdimm namespace devices to do byte aligned IO. The BTT works as a stacked blocked device, and reserves a chunk of space from the backing device for its accounting metadata. It is a bio-based driver because all IO is done synchronously, and there is no queuing or asynchronous completions at either the device or the driver level. The BTT uses 'lanes' to index into various 'on-disk' data structures, and lanes also act as a synchronization mechanism in case there are more CPUs than available lanes. We did a comparison between two lane lock strategies - first where we kept an atomic counter around that tracked which was the last lane that was used, and 'our' lane was determined by atomically incrementing that. That way, for the nr_cpus > nr_lanes case, theoretically, no CPU would be blocked waiting for a lane. The other strategy was to use the cpu number we're scheduled on to and hash it to a lane number. Theoretically, this could block an IO that could've otherwise run using a different, free lane. But some fio workloads showed that the direct cpu -> lane hash performed faster than tracking 'last lane' - my reasoning is the cache thrash caused by moving the atomic variable made that approach slower than simply waiting out the in-progress IO. This supports the conclusion that the driver can be a very simple bio-based one that does synchronous IOs instead of queuing. Cc: Andy Lutomirski <luto@amacapital.net> Cc: Boaz Harrosh <boaz@plexistor.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Jens Axboe <axboe@fb.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Christoph Hellwig <hch@lst.de> Cc: Neil Brown <neilb@suse.de> Cc: Jeff Moyer <jmoyer@redhat.com> Cc: Dave Chinner <david@fromorbit.com> Cc: Greg KH <gregkh@linuxfoundation.org> [jmoyer: fix nmi watchdog timeout in btt_map_init] [jmoyer: move btt initialization to module load path] [jmoyer: fix memory leak in the btt initialization path] [jmoyer: Don't overwrite corrupted arenas] Signed-off-by: Vishal Verma <vishal.l.verma@linux.intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/nvdimm/nd.h')
-rw-r--r--drivers/nvdimm/nd.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/drivers/nvdimm/nd.h b/drivers/nvdimm/nd.h
index d13eccbb67e9..1b937c235913 100644
--- a/drivers/nvdimm/nd.h
+++ b/drivers/nvdimm/nd.h
@@ -20,6 +20,12 @@
20#include "label.h" 20#include "label.h"
21 21
22enum { 22enum {
23 /*
24 * Limits the maximum number of block apertures a dimm can
25 * support and is an input to the geometry/on-disk-format of a
26 * BTT instance
27 */
28 ND_MAX_LANES = 256,
23 SECTOR_SHIFT = 9, 29 SECTOR_SHIFT = 9,
24}; 30};
25 31
@@ -75,6 +81,11 @@ static inline struct nd_namespace_index *to_next_namespace_index(
75 for (res = (ndd)->dpa.child, next = res ? res->sibling : NULL; \ 81 for (res = (ndd)->dpa.child, next = res ? res->sibling : NULL; \
76 res; res = next, next = next ? next->sibling : NULL) 82 res; res = next, next = next ? next->sibling : NULL)
77 83
84struct nd_percpu_lane {
85 int count;
86 spinlock_t lock;
87};
88
78struct nd_region { 89struct nd_region {
79 struct device dev; 90 struct device dev;
80 struct ida ns_ida; 91 struct ida ns_ida;
@@ -84,9 +95,10 @@ struct nd_region {
84 u16 ndr_mappings; 95 u16 ndr_mappings;
85 u64 ndr_size; 96 u64 ndr_size;
86 u64 ndr_start; 97 u64 ndr_start;
87 int id; 98 int id, num_lanes;
88 void *provider_data; 99 void *provider_data;
89 struct nd_interleave_set *nd_set; 100 struct nd_interleave_set *nd_set;
101 struct nd_percpu_lane __percpu *lane;
90 struct nd_mapping mapping[0]; 102 struct nd_mapping mapping[0];
91}; 103};
92 104
@@ -100,9 +112,11 @@ static inline unsigned nd_inc_seq(unsigned seq)
100 return next[seq & 3]; 112 return next[seq & 3];
101} 113}
102 114
115struct btt;
103struct nd_btt { 116struct nd_btt {
104 struct device dev; 117 struct device dev;
105 struct nd_namespace_common *ndns; 118 struct nd_namespace_common *ndns;
119 struct btt *btt;
106 unsigned long lbasize; 120 unsigned long lbasize;
107 u8 *uuid; 121 u8 *uuid;
108 int id; 122 int id;
@@ -157,6 +171,8 @@ static inline struct device *nd_btt_create(struct nd_region *nd_region)
157 171
158#endif 172#endif
159struct nd_region *to_nd_region(struct device *dev); 173struct nd_region *to_nd_region(struct device *dev);
174unsigned int nd_region_acquire_lane(struct nd_region *nd_region);
175void nd_region_release_lane(struct nd_region *nd_region, unsigned int lane);
160int nd_region_to_nstype(struct nd_region *nd_region); 176int nd_region_to_nstype(struct nd_region *nd_region);
161int nd_region_register_namespaces(struct nd_region *nd_region, int *err); 177int nd_region_register_namespaces(struct nd_region *nd_region, int *err);
162u64 nd_region_interleave_set_cookie(struct nd_region *nd_region); 178u64 nd_region_interleave_set_cookie(struct nd_region *nd_region);
@@ -172,4 +188,8 @@ struct resource *nvdimm_allocate_dpa(struct nvdimm_drvdata *ndd,
172 resource_size_t n); 188 resource_size_t n);
173resource_size_t nvdimm_namespace_capacity(struct nd_namespace_common *ndns); 189resource_size_t nvdimm_namespace_capacity(struct nd_namespace_common *ndns);
174struct nd_namespace_common *nvdimm_namespace_common_probe(struct device *dev); 190struct nd_namespace_common *nvdimm_namespace_common_probe(struct device *dev);
191int nvdimm_namespace_attach_btt(struct nd_namespace_common *ndns);
192int nvdimm_namespace_detach_btt(struct nd_namespace_common *ndns);
193const char *nvdimm_namespace_disk_name(struct nd_namespace_common *ndns,
194 char *name);
175#endif /* __ND_H__ */ 195#endif /* __ND_H__ */