Skip to content
Snippets Groups Projects
Commit 3e445905 authored by Eric Mei's avatar Eric Mei
Browse files

branch: HEAD

add LBUG() as future reminder.
b=16197
r=adilger
parent 0fb626ee
No related branches found
No related tags found
No related merge requests found
...@@ -2056,6 +2056,9 @@ void pga_to_bulk_desc(int nob, obd_count pg_count, struct brw_page **pga, ...@@ -2056,6 +2056,9 @@ void pga_to_bulk_desc(int nob, obd_count pg_count, struct brw_page **pga,
nob : pga[i]->count; nob : pga[i]->count;
desc->bd_iov[i].kiov_offset = pga[i]->off & ~CFS_PAGE_MASK; desc->bd_iov[i].kiov_offset = pga[i]->off & ~CFS_PAGE_MASK;
#else #else
/* FIXME currently liblustre doesn't support bulk encryption.
* if we do, check again following may not be right. */
LASSERTF(0, "Bulk encryption not implemented for liblustre\n");
desc->bd_iov[i].iov_base = pga[i]->pg->addr; desc->bd_iov[i].iov_base = pga[i]->pg->addr;
desc->bd_iov[i].iov_len = pga[i]->count > nob ? desc->bd_iov[i].iov_len = pga[i]->count > nob ?
nob : pga[i]->count; nob : pga[i]->count;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment