Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drbd: turn bitmap I/O comments into regular block comments

W=1 build warns because the bitmap I/O comments use '/**', which
marks them as kernel-doc comments even though these functions do not
document an external API.

Convert these comments to regular block comments so kernel-doc no
longer parses them.

Signed-off-by: Sukrut Heroorkar <hsukrut3@gmail.com>
Acked-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>

authored by

Sukrut Heroorkar and committed by
Jens Axboe
2c6d792d 3179a5f7

+5 -5
+5 -5
drivers/block/drbd/drbd_bitmap.c
··· 1210 1210 return err; 1211 1211 } 1212 1212 1213 - /** 1213 + /* 1214 1214 * drbd_bm_read() - Read the whole bitmap from its on disk location. 1215 1215 * @device: DRBD device. 1216 1216 */ ··· 1221 1221 return bm_rw(device, BM_AIO_READ, 0); 1222 1222 } 1223 1223 1224 - /** 1224 + /* 1225 1225 * drbd_bm_write() - Write the whole bitmap to its on disk location. 1226 1226 * @device: DRBD device. 1227 1227 * ··· 1233 1233 return bm_rw(device, 0, 0); 1234 1234 } 1235 1235 1236 - /** 1236 + /* 1237 1237 * drbd_bm_write_all() - Write the whole bitmap to its on disk location. 1238 1238 * @device: DRBD device. 1239 1239 * ··· 1255 1255 return bm_rw(device, BM_AIO_COPY_PAGES, upper_idx); 1256 1256 } 1257 1257 1258 - /** 1258 + /* 1259 1259 * drbd_bm_write_copy_pages() - Write the whole bitmap to its on disk location. 1260 1260 * @device: DRBD device. 1261 1261 * ··· 1272 1272 return bm_rw(device, BM_AIO_COPY_PAGES, 0); 1273 1273 } 1274 1274 1275 - /** 1275 + /* 1276 1276 * drbd_bm_write_hinted() - Write bitmap pages with "hint" marks, if they have changed. 1277 1277 * @device: DRBD device. 1278 1278 */