mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Kaigai Kohei <kaigai@ak.jp.nec.com>
To: Limin Gu <limin@dbear.engr.sgi.com>
Cc: linux-kernel@vger.kernel.org,
	Jan Engelhardt <jengelh@linux01.gwdg.de>,
	holt@sgi.com, jeffrey.hundstad@mnsu.edu, schwab@suse.de,
	rusty@rustcorp.com.au, chrisw@osdl.org, pagg@oss.sgi.com
Subject: Re: [RFC][PATCH] a revised job patch (with jobfs)
Date: Fri, 07 Jan 2005 21:11:21 +0900	[thread overview]
Message-ID: <41DE7C69.3030008@ak.jp.nec.com> (raw)
In-Reply-To: <200412160006.iBG06Zj25577@dbear.engr.sgi.com>

Hi, Limin Gu

This JOB-fs approach is so ambitious, I think.
I tried to apply your JOB-fs patch toward 2.6.9,
then I noticed some promlems as follows.

(1) The JOB-fs patch needs include/linux/jobctl.h and include/linux/job_acct.h.
  But these are contained in linux-2.6.9-job.patch, not JOB-fs patch.
  Since those patches conflict, we need to extract the jobctl.h and job_acct.h
  from linux-2.6.9-job.patch.

(2) The return value of mkdir() under the /jids is strange.
  The directory of 'jids' has a mkdir() method implemented by jobfs_mkdir().
  Since jobfs_mkdir() returns the result of job_create() transparently,
  my mkdir operations alwaly failed.
  ----------------
  /*
   * job_create - create a new job and attache the calling process to it.
   * @jid: new job id
   * @user: job owner
   * @options: not used
   *
   * return 0 on job is DISABLE, -errno on failure, 1 on success
   */
  ----------------
  This is the description of job_create(). This returns 1 on success,
  but VFS layer recognize it as a failure.

  I modified this as follows:
--- job.c   2005-01-06 20:03:47.000000000 +0900
+++ kaigai_job.c       2005-01-07 20:16:55.518703400 +0900
@@ -1505,5 +1505,5 @@
                 return -EINVAL;
         ret = job_create(jid, current->uid, 0);
-       return ret;
+       return (ret==1) ? 0 : ((ret==0) ? -EINVAL : ret); // Dirty?
  }

(3) We can not make a JOB by using a /bin/mkdir command.
  When I execute '/bin/mkdir' on shell program, new process was fork()'ed and execve()'ed.
  This process calls mkdir() system-call and it create a JOB which contains only
  the self process.
  Then '/bin/mkdir' exits process, and the JOB created by '/bin/mkdir' contains no process.
  So, the JOB was destroied soon.
  For avoidance the problem, we need to 'create_job' command which calls mkdir() and
  execve('/bin/bash') in the one process.
  Or pagg+job framework need to allow the existance of the empty JOB.

(4) "echo '123' > hid" fails by -EPERM.
  When we open the 'hid' with O_TRUNC flag, operation returns -EPERM.
  setattr() method of 'hid' was called on extention of sys_open().
  * sys_open() -> filp_open() -> open_namei() -> may_open()
    -> do_truncate() (When O_TRUNC was appended)
      -> notify_change()
        -> inode's setattr() (It always returns -EPERM.)
  If we can't use 'echo', it's pretty inexpediency.

And, would you have this discussion on PAGG-ML also ?
Because LKML has huge traffic, I have not noticed job-fs for two weeks. orz
Thanks.
-- 
Linux Promotion Center, NEC
KaiGai Kohei <kaigai@ak.jp.nec.com>

  reply	other threads:[~2005-01-07 12:11 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-12-16  0:06 Limin Gu
2005-01-07 12:11 ` Kaigai Kohei [this message]
2005-01-07 18:05   ` Limin Gu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=41DE7C69.3030008@ak.jp.nec.com \
    --to=kaigai@ak.jp.nec.com \
    --cc=chrisw@osdl.org \
    --cc=holt@sgi.com \
    --cc=jeffrey.hundstad@mnsu.edu \
    --cc=jengelh@linux01.gwdg.de \
    --cc=limin@dbear.engr.sgi.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pagg@oss.sgi.com \
    --cc=rusty@rustcorp.com.au \
    --cc=schwab@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome