Home
last modified time | relevance | path

Searched refs:clob (Results 1 – 10 of 10) sorted by relevance

/linux-4.1.27/arch/ia64/include/asm/native/
Dinst.h38 # define CLOBBER(clob) \ argument
40 movl clob = PARAVIRT_POISON; \
47 # define CLOBBER(clob) /* nothing */ argument
72 #define MOV_FROM_IVR(reg, clob) \ argument
74 CLOBBER(clob)
76 #define MOV_FROM_PSR(pred, reg, clob) \ argument
78 CLOBBER(clob)
80 #define MOV_FROM_ITC(pred, pred_clob, reg, clob) \ argument
82 CLOBBER(clob) \
85 #define MOV_TO_IFA(reg, clob) \ argument
[all …]
Dpvchk_inst.h176 #define MOV_FROM_IVR(reg, clob) \ argument
178 IS_RREG_CLOB(clob)
179 #define MOV_FROM_PSR(pred, reg, clob) \ argument
182 IS_RREG_CLOB(clob)
183 #define MOV_FROM_ITC(pred, pred_clob, reg, clob) \ argument
187 IS_RREG_CLOB(clob)
188 #define MOV_TO_IFA(reg, clob) \ argument
190 IS_RREG_CLOB(clob)
191 #define MOV_TO_ITIR(pred, reg, clob) \ argument
194 IS_RREG_CLOB(clob)
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/lclient/
Dglimpse.c87 struct inode *inode, struct cl_object *clob, int agl) in cl_glimpse_lock() argument
91 const struct lu_fid *fid = lu_object_fid(&clob->co_lu); in cl_glimpse_lock()
114 descr->cld_obj = clob; in cl_glimpse_lock()
170 struct cl_object *clob = lli->lli_clob; in cl_io_get() local
177 io->ci_obj = clob; in cl_io_get()
234 struct cl_object *clob; in cl_local_size() local
247 clob = io->ci_obj; in cl_local_size()
248 result = cl_io_init(env, io, CIT_MISC, clob); in cl_local_size()
256 descr->cld_obj = clob; in cl_local_size()
Dlcommon_cl.c1093 struct cl_object *clob; in cl_file_inode_init() local
1124 clob = cl_object_find(env, lu2cl_dev(site->ls_top_dev), in cl_file_inode_init()
1126 if (!IS_ERR(clob)) { in cl_file_inode_init()
1131 lli->lli_clob = clob; in cl_file_inode_init()
1133 lu_object_ref_add(&clob->co_lu, "inode", inode); in cl_file_inode_init()
1135 result = PTR_ERR(clob); in cl_file_inode_init()
1189 struct cl_object *clob = lli->lli_clob; in cl_inode_fini() local
1193 if (clob != NULL) { in cl_inode_fini()
1210 cl_object_kill(env, clob); in cl_inode_fini()
1211 lu_object_ref_del(&clob->co_lu, "inode", inode); in cl_inode_fini()
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/llite/
Dvvp_dev.c350 struct cl_object *clob; in vvp_pgcache_find() local
360 clob = vvp_pgcache_obj(env, dev, &id); in vvp_pgcache_find()
361 if (clob != NULL) { in vvp_pgcache_find()
367 hdr = cl_object_header(clob); in vvp_pgcache_find()
380 lu_object_ref_del(&clob->co_lu, "dump", current); in vvp_pgcache_find()
381 cl_object_put(env, clob); in vvp_pgcache_find()
435 struct cl_object *clob; in vvp_pgcache_show() local
448 clob = vvp_pgcache_obj(env, &sbi->ll_cl->cd_lu_dev, &id); in vvp_pgcache_show()
449 if (clob != NULL) { in vvp_pgcache_show()
450 hdr = cl_object_header(clob); in vvp_pgcache_show()
[all …]
Drw.c93 struct cl_object *clob; in ll_cl_init() local
99 clob = ll_i2info(vmpage->mapping->host)->lli_clob; in ll_cl_init()
100 LASSERT(clob != NULL); in ll_cl_init()
174 page = cl_page_find(env, clob, vmpage->index, vmpage, in ll_cl_init()
189 vmpage->index, PFID(lu_object_fid(&clob->co_lu)), result, in ll_cl_init()
498 struct cl_object *clob = ll_i2info(mapping->host)->lli_clob; in ll_read_ahead_page() local
508 page = cl_page_find(env, clob, vmpage->index, in ll_read_ahead_page()
701 struct cl_object *clob; in ll_readahead() local
707 clob = lli->lli_clob; in ll_readahead()
711 cl_object_attr_lock(clob); in ll_readahead()
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/include/
Dlclient.h50 struct inode *inode, struct cl_object *clob, int agl);
387 # define CLOBINVRNT(env, clob, expr) \ argument
388 ((void)sizeof(env), (void)sizeof(clob), (void)sizeof(!!(expr)))
415 int lov_read_and_clear_async_rc(struct cl_object *clob);
Dcl_object.h2765 static inline void cl_object_page_init(struct cl_object *clob, int size) in cl_object_page_init() argument
2767 clob->co_slice_off = cl_object_header(clob)->coh_page_bufsize; in cl_object_page_init()
2768 cl_object_header(clob)->coh_page_bufsize += ALIGN(size, 8); in cl_object_page_init()
2771 static inline void *cl_object_page_slice(struct cl_object *clob, in cl_object_page_slice() argument
2774 return (void *)((char *)page + clob->co_slice_off); in cl_object_page_slice()
/linux-4.1.27/drivers/staging/lustre/lustre/osc/
Dosc_io.c377 struct cl_object *clob; in osc_trunc_check() local
381 clob = oio->oi_cl.cis_obj; in osc_trunc_check()
382 start = cl_index(clob, size); in osc_trunc_check()
383 partial = cl_offset(clob, start) < size; in osc_trunc_check()
388 cl_page_gang_lookup(env, clob, io, start + partial, CL_PAGE_EOF, in osc_trunc_check()
/linux-4.1.27/drivers/staging/lustre/lustre/lov/
Dlov_object.c960 int lov_read_and_clear_async_rc(struct cl_object *clob) in lov_read_and_clear_async_rc() argument
965 luobj = lu_object_locate(&cl_object_header(clob)->coh_lu, in lov_read_and_clear_async_rc()