File tree Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -208,17 +208,17 @@ bool dax_write_cache_enabled(struct dax_device *dax_dev)
208
208
}
209
209
EXPORT_SYMBOL_GPL (dax_write_cache_enabled );
210
210
211
- bool __dax_synchronous (struct dax_device * dax_dev )
211
+ bool dax_synchronous (struct dax_device * dax_dev )
212
212
{
213
213
return test_bit (DAXDEV_SYNC , & dax_dev -> flags );
214
214
}
215
- EXPORT_SYMBOL_GPL (__dax_synchronous );
215
+ EXPORT_SYMBOL_GPL (dax_synchronous );
216
216
217
- void __set_dax_synchronous (struct dax_device * dax_dev )
217
+ void set_dax_synchronous (struct dax_device * dax_dev )
218
218
{
219
219
set_bit (DAXDEV_SYNC , & dax_dev -> flags );
220
220
}
221
- EXPORT_SYMBOL_GPL (__set_dax_synchronous );
221
+ EXPORT_SYMBOL_GPL (set_dax_synchronous );
222
222
223
223
bool dax_alive (struct dax_device * dax_dev )
224
224
{
Original file line number Diff line number Diff line change @@ -48,16 +48,8 @@ void put_dax(struct dax_device *dax_dev);
48
48
void kill_dax (struct dax_device * dax_dev );
49
49
void dax_write_cache (struct dax_device * dax_dev , bool wc );
50
50
bool dax_write_cache_enabled (struct dax_device * dax_dev );
51
- bool __dax_synchronous (struct dax_device * dax_dev );
52
- static inline bool dax_synchronous (struct dax_device * dax_dev )
53
- {
54
- return __dax_synchronous (dax_dev );
55
- }
56
- void __set_dax_synchronous (struct dax_device * dax_dev );
57
- static inline void set_dax_synchronous (struct dax_device * dax_dev )
58
- {
59
- __set_dax_synchronous (dax_dev );
60
- }
51
+ bool dax_synchronous (struct dax_device * dax_dev );
52
+ void set_dax_synchronous (struct dax_device * dax_dev );
61
53
/*
62
54
* Check if given mapping is supported by the file / underlying device.
63
55
*/
You can’t perform that action at this time.
0 commit comments