Whamcloud - gitweb
LU-7988 hsm: run HSM coordinator once per second at most
[fs/lustre-release.git] / lustre / mdt / mdt_hsm_cdt_actions.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License version 2 for more details.  A copy is
14  * included in the COPYING file that accompanied this code.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  *
20  * GPL HEADER END
21  */
22 /*
23  * (C) Copyright 2012 Commissariat a l'energie atomique et aux energies
24  *     alternatives
25  *
26  * Copyright (c) 2013, 2016, Intel Corporation.
27  */
28 /*
29  * lustre/mdt/mdt_hsm_cdt_actions.c
30  *
31  * Lustre HSM
32  *
33  * Author: Jacques-Charles Lafoucriere <jacques-charles.lafoucriere@cea.fr>
34  * Author: Aurelien Degremont <aurelien.degremont@cea.fr>
35  */
36
37 #define DEBUG_SUBSYSTEM S_MDS
38
39 #include <libcfs/libcfs.h>
40 #include <libcfs/libcfs_hash.h>
41 #include <obd_support.h>
42 #include <lustre_export.h>
43 #include <obd.h>
44 #include <lprocfs_status.h>
45 #include <lustre_log.h>
46 #include "mdt_internal.h"
47
48 struct cdt_agent_record_loc {
49         struct hlist_node carl_hnode;
50         atomic_t carl_refcount;
51         u64 carl_cookie;
52         u32 carl_cat_idx;
53         u32 carl_rec_idx;
54 };
55
56 static inline void cdt_agent_record_loc_get(struct cdt_agent_record_loc *carl)
57 {
58         LASSERT(atomic_read(&carl->carl_refcount) > 0);
59         atomic_inc(&carl->carl_refcount);
60 }
61
62 static inline void cdt_agent_record_loc_put(struct cdt_agent_record_loc *carl)
63 {
64         LASSERT(atomic_read(&carl->carl_refcount) > 0);
65         if (atomic_dec_and_test(&carl->carl_refcount))
66                 OBD_FREE_PTR(carl);
67 }
68
69 static unsigned int
70 cdt_agent_record_hash(struct cfs_hash *hs, const void *key, unsigned int mask)
71 {
72         return cfs_hash_djb2_hash(key, sizeof(u64), mask);
73 }
74
75 static void *cdt_agent_record_object(struct hlist_node *hnode)
76 {
77         return hlist_entry(hnode, struct cdt_agent_record_loc, carl_hnode);
78 }
79
80 static void *cdt_agent_record_key(struct hlist_node *hnode)
81 {
82         struct cdt_agent_record_loc *carl = cdt_agent_record_object(hnode);
83
84         return &carl->carl_cookie;
85 }
86
87 static int cdt_agent_record_keycmp(const void *key, struct hlist_node *hnode)
88 {
89         const u64 *cookie2 = cdt_agent_record_key(hnode);
90
91         return *(const u64 *)key == *cookie2;
92 }
93
94 static void cdt_agent_record_get(struct cfs_hash *hs, struct hlist_node *hnode)
95 {
96         struct cdt_agent_record_loc *carl = cdt_agent_record_object(hnode);
97
98         cdt_agent_record_loc_get(carl);
99 }
100
101 static void cdt_agent_record_put(struct cfs_hash *hs, struct hlist_node *hnode)
102 {
103         struct cdt_agent_record_loc *carl = cdt_agent_record_object(hnode);
104
105         cdt_agent_record_loc_put(carl);
106 }
107
108 struct cfs_hash_ops cdt_agent_record_hash_ops = {
109         .hs_hash        = cdt_agent_record_hash,
110         .hs_key         = cdt_agent_record_key,
111         .hs_keycmp      = cdt_agent_record_keycmp,
112         .hs_object      = cdt_agent_record_object,
113         .hs_get         = cdt_agent_record_get,
114         .hs_put_locked  = cdt_agent_record_put,
115 };
116
117 void cdt_agent_record_hash_add(struct coordinator *cdt, u64 cookie, u32 cat_idx,
118                                u32 rec_idx)
119 {
120         struct cdt_agent_record_loc *carl0;
121         struct cdt_agent_record_loc *carl1;
122
123         OBD_ALLOC_PTR(carl1);
124         if (carl1 == NULL)
125                 return;
126
127         INIT_HLIST_NODE(&carl1->carl_hnode);
128         atomic_set(&carl1->carl_refcount, 1);
129         carl1->carl_cookie = cookie;
130         carl1->carl_cat_idx = cat_idx;
131         carl1->carl_rec_idx = rec_idx;
132
133         carl0 = cfs_hash_findadd_unique(cdt->cdt_agent_record_hash,
134                                         &carl1->carl_cookie,
135                                         &carl1->carl_hnode);
136
137         LASSERT(carl0->carl_cookie == carl1->carl_cookie);
138         LASSERT(carl0->carl_cat_idx == carl1->carl_cat_idx);
139         LASSERT(carl0->carl_rec_idx == carl1->carl_rec_idx);
140
141         if (carl0 != carl1)
142                 cdt_agent_record_loc_put(carl0);
143
144         cdt_agent_record_loc_put(carl1);
145 }
146
147 void cdt_agent_record_hash_lookup(struct coordinator *cdt, u64 cookie,
148                                   u32 *cat_idx, u32 *rec_idx)
149 {
150         struct cdt_agent_record_loc *carl;
151
152         carl = cfs_hash_lookup(cdt->cdt_agent_record_hash, &cookie);
153         if (carl != NULL) {
154                 LASSERT(carl->carl_cookie == cookie);
155                 *cat_idx = carl->carl_cat_idx;
156                 *rec_idx = carl->carl_rec_idx;
157                 cdt_agent_record_loc_put(carl);
158         } else {
159                 *cat_idx = 0;
160                 *rec_idx = 0;
161         }
162 }
163
164 void cdt_agent_record_hash_del(struct coordinator *cdt, u64 cookie)
165 {
166         cfs_hash_del_key(cdt->cdt_agent_record_hash, &cookie);
167 }
168
169 void dump_llog_agent_req_rec(const char *prefix,
170                              const struct llog_agent_req_rec *larr)
171 {
172         char    buf[12];
173         int     sz;
174
175         sz = larr->arr_hai.hai_len - sizeof(larr->arr_hai);
176         CDEBUG(D_HSM, "%slrh=[type=%X len=%d idx=%d] fid="DFID
177                " dfid="DFID
178                " compound/cookie=%#llx/%#llx"
179                " status=%s action=%s archive#=%d flags=%#llx"
180                " create=%llu change=%llu"
181                " extent=%#llx-%#llx gid=%#llx datalen=%d"
182                " data=[%s]\n",
183                prefix,
184                larr->arr_hdr.lrh_type,
185                larr->arr_hdr.lrh_len, larr->arr_hdr.lrh_index,
186                PFID(&larr->arr_hai.hai_fid),
187                PFID(&larr->arr_hai.hai_dfid),
188                larr->arr_compound_id, larr->arr_hai.hai_cookie,
189                agent_req_status2name(larr->arr_status),
190                hsm_copytool_action2name(larr->arr_hai.hai_action),
191                larr->arr_archive_id,
192                larr->arr_flags,
193                larr->arr_req_create, larr->arr_req_change,
194                larr->arr_hai.hai_extent.offset,
195                larr->arr_hai.hai_extent.length,
196                larr->arr_hai.hai_gid, sz,
197                hai_dump_data_field(&larr->arr_hai, buf, sizeof(buf)));
198 }
199
200 /*
201  * process the actions llog
202  * \param env [IN] environment
203  * \param mdt [IN] MDT device
204  * \param cb [IN] llog callback funtion
205  * \param data [IN] llog callback  data
206  * \param rw [IN] cdt_llog_lock mode (READ or WRITE)
207  * \param start_cat_idx first catalog index to examine
208  * \param start_rec_idx first record index to examine
209  * \retval 0 success
210  * \retval -ve failure
211  */
212 int cdt_llog_process(const struct lu_env *env, struct mdt_device *mdt,
213                      llog_cb_t cb, void *data, u32 start_cat_idx,
214                      u32 start_rec_idx, int rw)
215 {
216         struct obd_device       *obd = mdt2obd_dev(mdt);
217         struct llog_ctxt        *lctxt = NULL;
218         struct coordinator      *cdt = &mdt->mdt_coordinator;
219         int                      rc;
220         ENTRY;
221
222         lctxt = llog_get_context(obd, LLOG_AGENT_ORIG_CTXT);
223         if (lctxt == NULL || lctxt->loc_handle == NULL)
224                 RETURN(-ENOENT);
225
226         if (rw == READ)
227                 down_read(&cdt->cdt_llog_lock);
228         else
229                 down_write(&cdt->cdt_llog_lock);
230
231         rc = llog_cat_process(env, lctxt->loc_handle, cb, data, start_cat_idx,
232                               start_rec_idx);
233         if (rc < 0)
234                 CERROR("%s: failed to process HSM_ACTIONS llog (rc=%d)\n",
235                         mdt_obd_name(mdt), rc);
236         else
237                 rc = 0;
238
239         llog_ctxt_put(lctxt);
240
241         if (rw == READ)
242                 up_read(&cdt->cdt_llog_lock);
243         else
244                 up_write(&cdt->cdt_llog_lock);
245
246         RETURN(rc);
247 }
248
249 /**
250  * add an entry in agent llog
251  * \param env [IN] environment
252  * \param mdt [IN] PDT device
253  * \param compound_id [IN] global id associated with the record
254  * \param archive_id [IN] backend archive number
255  * \param hai [IN] record to register
256  * \retval 0 success
257  * \retval -ve failure
258  */
259 int mdt_agent_record_add(const struct lu_env *env,
260                          struct mdt_device *mdt,
261                          __u64 compound_id, __u32 archive_id,
262                          __u64 flags, struct hsm_action_item *hai)
263 {
264         struct obd_device               *obd = mdt2obd_dev(mdt);
265         struct coordinator              *cdt = &mdt->mdt_coordinator;
266         struct llog_ctxt                *lctxt = NULL;
267         struct llog_agent_req_rec       *larr;
268         int                              rc;
269         int                              sz;
270         ENTRY;
271
272         sz = llog_data_len(sizeof(*larr) + hai->hai_len - sizeof(*hai));
273         OBD_ALLOC(larr, sz);
274         if (!larr)
275                 RETURN(-ENOMEM);
276         larr->arr_hdr.lrh_len = sz;
277         larr->arr_hdr.lrh_type = HSM_AGENT_REC;
278         larr->arr_status = ARS_WAITING;
279         larr->arr_compound_id = compound_id;
280         larr->arr_archive_id = archive_id;
281         larr->arr_flags = flags;
282         larr->arr_req_create = cfs_time_current_sec();
283         larr->arr_req_change = larr->arr_req_create;
284         memcpy(&larr->arr_hai, hai, hai->hai_len);
285
286         lctxt = llog_get_context(obd, LLOG_AGENT_ORIG_CTXT);
287         if (lctxt == NULL || lctxt->loc_handle == NULL)
288                 GOTO(free, rc = -ENOENT);
289
290         down_write(&cdt->cdt_llog_lock);
291
292         /* in case of cancel request, the cookie is already set to the
293          * value of the request cookie to be cancelled
294          * so we do not change it */
295         if (hai->hai_action == HSMA_CANCEL) {
296                 larr->arr_hai.hai_cookie = hai->hai_cookie;
297         } else {
298                 cdt->cdt_last_cookie++;
299                 larr->arr_hai.hai_cookie = cdt->cdt_last_cookie;
300         }
301
302         rc = llog_cat_add(env, lctxt->loc_handle, &larr->arr_hdr, NULL);
303         if (rc > 0)
304                 rc = 0;
305
306         up_write(&cdt->cdt_llog_lock);
307         llog_ctxt_put(lctxt);
308
309         EXIT;
310 free:
311         OBD_FREE(larr, sz);
312         return rc;
313 }
314
315 /**
316  * data passed to llog_cat_process() callback
317  * to find requests
318  */
319 struct data_update_cb {
320         struct mdt_device       *mdt;
321         __u64                   *cookies;
322         int                      cookies_count;
323         int                      cookies_done;
324         enum agent_req_status    status;
325         cfs_time_t               change_time;
326 };
327
328 /**
329  *  llog_cat_process() callback, used to update a record
330  * \param env [IN] environment
331  * \param llh [IN] llog handle
332  * \param hdr [IN] llog record
333  * \param data [IN] cb data = data_update_cb
334  * \retval 0 success
335  * \retval -ve failure
336  */
337 static int mdt_agent_record_update_cb(const struct lu_env *env,
338                                       struct llog_handle *llh,
339                                       struct llog_rec_hdr *hdr,
340                                       void *data)
341 {
342         struct llog_agent_req_rec       *larr;
343         struct data_update_cb           *ducb;
344         int                              rc, i;
345         ENTRY;
346
347         larr = (struct llog_agent_req_rec *)hdr;
348         ducb = data;
349
350         /* check if all done */
351         if (ducb->cookies_count == ducb->cookies_done)
352                 RETURN(LLOG_PROC_BREAK);
353
354         /* if record is in final state, never change */
355         /* if record is a cancel request, it cannot be canceled
356          * this is to manage the following case:
357          * when a request is canceled, we have 2 records with the
358          * the same cookie : the one to cancel and the cancel request
359          * the 1st has to be set to ARS_CANCELED and the 2nd to ARS_SUCCEED
360          */
361         if (agent_req_in_final_state(larr->arr_status) ||
362             (larr->arr_hai.hai_action == HSMA_CANCEL &&
363              ducb->status == ARS_CANCELED))
364                 RETURN(0);
365
366         rc = 0;
367         for (i = 0 ; i < ducb->cookies_count ; i++) {
368                 CDEBUG(D_HSM, "%s: search %#llx, found %#llx\n",
369                        mdt_obd_name(ducb->mdt), ducb->cookies[i],
370                        larr->arr_hai.hai_cookie);
371                 if (larr->arr_hai.hai_cookie == ducb->cookies[i]) {
372
373                         larr->arr_status = ducb->status;
374                         larr->arr_req_change = ducb->change_time;
375                         rc = llog_write(env, llh, hdr, hdr->lrh_index);
376                         ducb->cookies_done++;
377                         break;
378                 }
379         }
380
381         if (rc < 0)
382                 CERROR("%s: mdt_agent_llog_update_rec() failed, rc = %d\n",
383                        mdt_obd_name(ducb->mdt), rc);
384
385         RETURN(rc);
386 }
387
388 /**
389  * update an entry in agent llog
390  * \param env [IN] environment
391  * \param mdt [IN] MDT device
392  * \param cookie [IN] entries to update
393  *    log cookie are returned by register
394  * \param status [IN] new status of the request
395  * \retval 0 success
396  * \retval -ve failure
397  */
398 int mdt_agent_record_update(const struct lu_env *env, struct mdt_device *mdt,
399                             __u64 *cookies, int cookies_count,
400                             enum agent_req_status status)
401 {
402         struct data_update_cb    ducb;
403         u32 start_cat_idx = -1;
404         u32 start_rec_idx = -1;
405         u32 cat_idx;
406         u32 rec_idx;
407         int i;
408         int rc;
409         ENTRY;
410
411         /* Find the first location (start_cat_idx, start_rec_idx)
412          * among the records corresponding to cookies. */
413         for (i = 0; i < cookies_count; i++) {
414                 /* If we cannot find a cached location for a cookie
415                  * (perhaps because the MDT was restart then we must
416                  * start from the beginning. In this case
417                  * mdt_agent_record_hash_get() sets both of cat_idx and
418                  * rec_idx to 0. */
419                 cdt_agent_record_hash_lookup(&mdt->mdt_coordinator, cookies[i],
420                                              &cat_idx, &rec_idx);
421                 if (cat_idx < start_cat_idx) {
422                         start_cat_idx = cat_idx;
423                         start_rec_idx = rec_idx;
424                 } else if (cat_idx == start_cat_idx &&
425                            rec_idx < start_rec_idx) {
426                         start_rec_idx = rec_idx;
427                 }
428         }
429
430         /* Fixup starting record index for llog_cat_process(). */
431         if (start_rec_idx != 0)
432                 start_rec_idx -= 1;
433
434         ducb.mdt = mdt;
435         ducb.cookies = cookies;
436         ducb.cookies_count = cookies_count;
437         ducb.cookies_done = 0;
438         ducb.status = status;
439         ducb.change_time = cfs_time_current_sec();
440
441         rc = cdt_llog_process(env, mdt, mdt_agent_record_update_cb, &ducb,
442                               start_cat_idx, start_rec_idx, WRITE);
443         if (rc < 0)
444                 CERROR("%s: cdt_llog_process() failed, rc=%d, cannot update "
445                        "status to %s for %d cookies, done %d\n",
446                        mdt_obd_name(mdt), rc,
447                        agent_req_status2name(status),
448                        cookies_count, ducb.cookies_done);
449         RETURN(rc);
450 }
451
452 /*
453  * Agent actions /proc seq_file methods
454  * As llog processing uses a callback for each entry, we cannot do a sequential
455  * read. To limit calls to llog_cat_process (it spawns a thread), we fill
456  * multiple record in seq_file buffer in one show call.
457  * op->start() sets the iterator up and returns the first element of sequence
458  * op->stop() shuts it down.
459  * op->show() iterate llog and print element into the buffer.
460  * In case of error ->start() and ->next() return ERR_PTR(error)
461  * In the end of sequence they return %NULL
462  * op->show() returns 0 in case of success and negative number in case of error.
463  *
464  */
465 /**
466  * seq_file iterator for agent_action entry
467  */
468 #define AGENT_ACTIONS_IT_MAGIC 0x19660426
469 struct agent_action_iterator {
470         int                      aai_magic;      /**< magic number */
471         bool                     aai_eof;        /**< all done */
472         struct lu_env            aai_env;        /**< lustre env for llog */
473         struct mdt_device       *aai_mdt;        /**< metadata device */
474         struct llog_ctxt        *aai_ctxt;       /**< llog context */
475         int                      aai_cat_index;  /**< cata idx already shown */
476         int                      aai_index;      /**< idx in cata shown */
477 };
478
479 /**
480  * seq_file method called to start access to /proc file
481  * get llog context + llog handle
482  */
483 static void *mdt_hsm_actions_proc_start(struct seq_file *s, loff_t *pos)
484 {
485         struct agent_action_iterator    *aai = s->private;
486         ENTRY;
487
488         LASSERTF(aai->aai_magic == AGENT_ACTIONS_IT_MAGIC, "%08X\n",
489                  aai->aai_magic);
490
491         aai->aai_ctxt = llog_get_context(mdt2obd_dev(aai->aai_mdt),
492                                          LLOG_AGENT_ORIG_CTXT);
493         if (aai->aai_ctxt == NULL || aai->aai_ctxt->loc_handle == NULL) {
494                 CERROR("llog_get_context() failed\n");
495                 RETURN(ERR_PTR(-ENOENT));
496         }
497
498         CDEBUG(D_HSM, "llog successfully initialized, start from %lld\n",
499                *pos);
500         /* first call = rewind */
501         if (*pos == 0) {
502                 aai->aai_cat_index = 0;
503                 aai->aai_index = 0;
504                 aai->aai_eof = false;
505                 *pos = 1;
506         }
507
508         if (aai->aai_eof)
509                 RETURN(NULL);
510
511         RETURN(aai);
512 }
513
514 static void *mdt_hsm_actions_proc_next(struct seq_file *s, void *v,
515                                          loff_t *pos)
516 {
517         RETURN(NULL);
518 }
519
520 /**
521  *  llog_cat_process() callback, used to fill a seq_file buffer
522  */
523 static int hsm_actions_show_cb(const struct lu_env *env,
524                                  struct llog_handle *llh,
525                                  struct llog_rec_hdr *hdr,
526                                  void *data)
527 {
528         struct llog_agent_req_rec    *larr = (struct llog_agent_req_rec *)hdr;
529         struct seq_file              *s = data;
530         struct agent_action_iterator *aai;
531         int                           sz;
532         char                          buf[12];
533         ENTRY;
534
535         aai = s->private;
536         LASSERTF(aai->aai_magic == AGENT_ACTIONS_IT_MAGIC, "%08X\n",
537                  aai->aai_magic);
538
539         /* if rec already printed => skip */
540         if (unlikely(llh->lgh_hdr->llh_cat_idx < aai->aai_cat_index))
541                 RETURN(0);
542
543         if (unlikely(llh->lgh_hdr->llh_cat_idx == aai->aai_cat_index &&
544                      hdr->lrh_index <= aai->aai_index))
545                 RETURN(0);
546
547         sz = larr->arr_hai.hai_len - sizeof(larr->arr_hai);
548         seq_printf(s, "lrh=[type=%X len=%d idx=%d/%d] fid="DFID
549                    " dfid="DFID" compound/cookie=%#llx/%#llx"
550                    " action=%s archive#=%d flags=%#llx"
551                    " extent=%#llx-%#llx"
552                    " gid=%#llx datalen=%d status=%s data=[%s]\n",
553                    hdr->lrh_type, hdr->lrh_len,
554                    llh->lgh_hdr->llh_cat_idx, hdr->lrh_index,
555                    PFID(&larr->arr_hai.hai_fid),
556                    PFID(&larr->arr_hai.hai_dfid),
557                    larr->arr_compound_id, larr->arr_hai.hai_cookie,
558                    hsm_copytool_action2name(larr->arr_hai.hai_action),
559                    larr->arr_archive_id,
560                    larr->arr_flags,
561                    larr->arr_hai.hai_extent.offset,
562                    larr->arr_hai.hai_extent.length,
563                    larr->arr_hai.hai_gid, sz,
564                    agent_req_status2name(larr->arr_status),
565                    hai_dump_data_field(&larr->arr_hai, buf, sizeof(buf)));
566
567         aai->aai_cat_index = llh->lgh_hdr->llh_cat_idx;
568         aai->aai_index = hdr->lrh_index;
569
570         RETURN(0);
571 }
572
573 /**
574  * mdt_hsm_actions_proc_show() is called at for each seq record
575  * process the llog, with a cb which fill the file_seq buffer
576  * to be faster, one show will fill multiple records
577  */
578 static int mdt_hsm_actions_proc_show(struct seq_file *s, void *v)
579 {
580         struct agent_action_iterator    *aai = s->private;
581         struct coordinator              *cdt = &aai->aai_mdt->mdt_coordinator;
582         int                              rc;
583         ENTRY;
584
585         LASSERTF(aai->aai_magic == AGENT_ACTIONS_IT_MAGIC, "%08X\n",
586                  aai->aai_magic);
587
588         CDEBUG(D_HSM, "show from cat %d index %d eof=%d\n",
589                aai->aai_cat_index, aai->aai_index, aai->aai_eof);
590         if (aai->aai_eof)
591                 RETURN(0);
592
593         down_read(&cdt->cdt_llog_lock);
594         rc = llog_cat_process(&aai->aai_env, aai->aai_ctxt->loc_handle,
595                               hsm_actions_show_cb, s,
596                               aai->aai_cat_index, aai->aai_index);
597         up_read(&cdt->cdt_llog_lock);
598         if (rc == 0) /* all llog parsed */
599                 aai->aai_eof = true;
600         if (rc == LLOG_PROC_BREAK) /* buffer full */
601                 rc = 0;
602         RETURN(rc);
603 }
604
605 /**
606  * seq_file method called to stop access to /proc file
607  * clean + put llog context
608  */
609 static void mdt_hsm_actions_proc_stop(struct seq_file *s, void *v)
610 {
611         struct agent_action_iterator *aai = s->private;
612         ENTRY;
613
614         LASSERTF(aai->aai_magic == AGENT_ACTIONS_IT_MAGIC, "%08X\n",
615                  aai->aai_magic);
616
617         if (aai->aai_ctxt)
618                 llog_ctxt_put(aai->aai_ctxt);
619
620         EXIT;
621         return;
622 }
623
624 static const struct seq_operations mdt_hsm_actions_proc_ops = {
625         .start  = mdt_hsm_actions_proc_start,
626         .next   = mdt_hsm_actions_proc_next,
627         .show   = mdt_hsm_actions_proc_show,
628         .stop   = mdt_hsm_actions_proc_stop,
629 };
630
631 static int lprocfs_open_hsm_actions(struct inode *inode, struct file *file)
632 {
633         struct agent_action_iterator    *aai;
634         struct seq_file                 *s;
635         int                              rc;
636         struct mdt_device               *mdt;
637         ENTRY;
638
639         rc = seq_open(file, &mdt_hsm_actions_proc_ops);
640         if (rc)
641                 RETURN(rc);
642
643         OBD_ALLOC_PTR(aai);
644         if (aai == NULL)
645                 GOTO(err, rc = -ENOMEM);
646
647         aai->aai_magic = AGENT_ACTIONS_IT_MAGIC;
648         rc = lu_env_init(&aai->aai_env, LCT_LOCAL);
649         if (rc)
650                 GOTO(err, rc);
651
652         /* mdt is saved in proc_dir_entry->data by
653          * mdt_coordinator_procfs_init() calling lprocfs_register()
654          */
655         mdt = (struct mdt_device *)PDE_DATA(inode);
656         aai->aai_mdt = mdt;
657         s = file->private_data;
658         s->private = aai;
659
660         GOTO(out, rc = 0);
661
662 err:
663         lprocfs_seq_release(inode, file);
664         if (aai && aai->aai_env.le_ses)
665                 OBD_FREE_PTR(aai->aai_env.le_ses);
666         if (aai)
667                 OBD_FREE_PTR(aai);
668 out:
669         return rc;
670 }
671
672 /**
673  * lprocfs_release_hsm_actions() is called at end of /proc access.
674  * It frees allocated resources and calls cleanup lprocfs methods.
675  */
676 static int lprocfs_release_hsm_actions(struct inode *inode, struct file *file)
677 {
678         struct seq_file                 *seq = file->private_data;
679         struct agent_action_iterator    *aai = seq->private;
680
681         if (aai) {
682                 lu_env_fini(&aai->aai_env);
683                 OBD_FREE_PTR(aai);
684         }
685
686         return lprocfs_seq_release(inode, file);
687 }
688
689 /* Methods to access HSM action list LLOG through /proc */
690 const struct file_operations mdt_hsm_actions_fops = {
691         .owner          = THIS_MODULE,
692         .open           = lprocfs_open_hsm_actions,
693         .read           = seq_read,
694         .llseek         = seq_lseek,
695         .release        = lprocfs_release_hsm_actions,
696 };
697