linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Fixed the format of column longer than 80 .
@ 2011-03-26 16:25 Wanlong Gao
  2011-03-26 16:25 ` [PATCH 2/2] Fixed the format that column is " Wanlong Gao
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Wanlong Gao @ 2011-03-26 16:25 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, Wanlong Gao

---
 drivers/base/memory.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
 mode change 100644 => 100755 drivers/base/memory.c

diff --git a/drivers/base/memory.c b/drivers/base/memory.c
old mode 100644
new mode 100755
index 3da6a43..3e9aa3d
--- a/drivers/base/memory.c
+++ b/drivers/base/memory.c
@@ -48,7 +48,8 @@ static const char *memory_uevent_name(struct kset *kset, struct kobject *kobj)
 	return MEMORY_CLASS_NAME;
 }
 
-static int memory_uevent(struct kset *kset, struct kobject *obj, struct kobj_uevent_env *env)
+static int memory_uevent(struct kset *kset, struct kobject *obj,
+			struct kobj_uevent_env *env)
 {
 	int retval = 0;
 
-- 
1.7.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] Fixed the format that column is longer than 80 .
  2011-03-26 16:25 [PATCH 1/2] Fixed the format of column longer than 80 Wanlong Gao
@ 2011-03-26 16:25 ` Wanlong Gao
  2011-03-27 10:00   ` Harry Wei
  2011-03-27  9:58 ` [PATCH 1/2] Fixed the format of column " Harry Wei
  2011-04-23  0:05 ` Greg KH
  2 siblings, 1 reply; 5+ messages in thread
From: Wanlong Gao @ 2011-03-26 16:25 UTC (permalink / raw)
  To: greg; +Cc: linux-kernel, Wanlong Gao

---
 mm/memory.c |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)
 mode change 100644 => 100755 mm/memory.c

diff --git a/mm/memory.c b/mm/memory.c
old mode 100644
new mode 100755
index 615be51..422cba6
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2196,7 +2196,8 @@ static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
 	return same;
 }
 
-static inline void cow_user_page(struct page *dst, struct page *src, unsigned long va, struct vm_area_struct *vma)
+static inline void cow_user_page(struct page *dst, struct page *src,
+				unsigned long va, struct vm_area_struct *vma)
 {
 	/*
 	 * If the source page was a PFN mapping, we don't have
@@ -2940,7 +2941,8 @@ out_release:
  * except we must first make sure that 'address{-|+}PAGE_SIZE'
  * doesn't hit another vma.
  */
-static inline int check_stack_guard_page(struct vm_area_struct *vma, unsigned long address)
+static inline int check_stack_guard_page(struct vm_area_struct *vma,
+					unsigned long address)
 {
 	address &= PAGE_MASK;
 	if ((vma->vm_flags & VM_GROWSDOWN) && address == vma->vm_start) {
@@ -3653,7 +3655,8 @@ int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
  * Source/target buffer must be kernel space,
  * Do not walk the page table directly, use get_user_pages
  */
-int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
+int access_process_vm(struct task_struct *tsk, unsigned long addr,
+			void *buf, int len, int write)
 {
 	struct mm_struct *mm;
 	struct vm_area_struct *vma;
-- 
1.7.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] Fixed the format of column longer than 80 .
  2011-03-26 16:25 [PATCH 1/2] Fixed the format of column longer than 80 Wanlong Gao
  2011-03-26 16:25 ` [PATCH 2/2] Fixed the format that column is " Wanlong Gao
@ 2011-03-27  9:58 ` Harry Wei
  2011-04-23  0:05 ` Greg KH
  2 siblings, 0 replies; 5+ messages in thread
From: Harry Wei @ 2011-03-27  9:58 UTC (permalink / raw)
  To: Wanlong Gao; +Cc: linux-kernel, greg

On Sun, Mar 27, 2011 at 12:25:25AM +0800, Wanlong Gao wrote:
Signed-off-by: Gao Wanlong<wanlong.gao@gmail.com>
Acked-by: Harry Wei <harryxiyou@gmail.com>
> ---
>  drivers/base/memory.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)
>  mode change 100644 => 100755 drivers/base/memory.c
> 
> diff --git a/drivers/base/memory.c b/drivers/base/memory.c
> old mode 100644
> new mode 100755
> index 3da6a43..3e9aa3d
> --- a/drivers/base/memory.c
> +++ b/drivers/base/memory.c
> @@ -48,7 +48,8 @@ static const char *memory_uevent_name(struct kset *kset, struct kobject *kobj)
>  	return MEMORY_CLASS_NAME;
>  }
>  
> -static int memory_uevent(struct kset *kset, struct kobject *obj, struct kobj_uevent_env *env)
> +static int memory_uevent(struct kset *kset, struct kobject *obj,
> +			struct kobj_uevent_env *env)
>  {
>  	int retval = 0;
>  
> -- 
> 1.7.3
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] Fixed the format that column is longer than 80 .
  2011-03-26 16:25 ` [PATCH 2/2] Fixed the format that column is " Wanlong Gao
@ 2011-03-27 10:00   ` Harry Wei
  0 siblings, 0 replies; 5+ messages in thread
From: Harry Wei @ 2011-03-27 10:00 UTC (permalink / raw)
  To: Wanlong Gao; +Cc: linux-kernel, greg

On Sun, Mar 27, 2011 at 12:25:26AM +0800, Wanlong Gao wrote:
Signed-off-by: Wanlong Gao <wanlong.gao@gmail.com>
Acked-by: Harry Wei <harryxiyou@gmail.com>
> ---
>  mm/memory.c |    9 ++++++---
>  1 files changed, 6 insertions(+), 3 deletions(-)
>  mode change 100644 => 100755 mm/memory.c
> 
> diff --git a/mm/memory.c b/mm/memory.c
> old mode 100644
> new mode 100755
> index 615be51..422cba6
> --- a/mm/memory.c
> +++ b/mm/memory.c
> @@ -2196,7 +2196,8 @@ static inline int pte_unmap_same(struct mm_struct *mm, pmd_t *pmd,
>  	return same;
>  }
>  
> -static inline void cow_user_page(struct page *dst, struct page *src, unsigned long va, struct vm_area_struct *vma)
> +static inline void cow_user_page(struct page *dst, struct page *src,
> +				unsigned long va, struct vm_area_struct *vma)
>  {
>  	/*
>  	 * If the source page was a PFN mapping, we don't have
> @@ -2940,7 +2941,8 @@ out_release:
>   * except we must first make sure that 'address{-|+}PAGE_SIZE'
>   * doesn't hit another vma.
>   */
> -static inline int check_stack_guard_page(struct vm_area_struct *vma, unsigned long address)
> +static inline int check_stack_guard_page(struct vm_area_struct *vma,
> +					unsigned long address)
>  {
>  	address &= PAGE_MASK;
>  	if ((vma->vm_flags & VM_GROWSDOWN) && address == vma->vm_start) {
> @@ -3653,7 +3655,8 @@ int generic_access_phys(struct vm_area_struct *vma, unsigned long addr,
>   * Source/target buffer must be kernel space,
>   * Do not walk the page table directly, use get_user_pages
>   */
> -int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write)
> +int access_process_vm(struct task_struct *tsk, unsigned long addr,
> +			void *buf, int len, int write)
>  {
>  	struct mm_struct *mm;
>  	struct vm_area_struct *vma;
> -- 
> 1.7.3
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] Fixed the format of column longer than 80 .
  2011-03-26 16:25 [PATCH 1/2] Fixed the format of column longer than 80 Wanlong Gao
  2011-03-26 16:25 ` [PATCH 2/2] Fixed the format that column is " Wanlong Gao
  2011-03-27  9:58 ` [PATCH 1/2] Fixed the format of column " Harry Wei
@ 2011-04-23  0:05 ` Greg KH
  2 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2011-04-23  0:05 UTC (permalink / raw)
  To: Wanlong Gao; +Cc: linux-kernel

On Sun, Mar 27, 2011 at 12:25:25AM +0800, Wanlong Gao wrote:
> ---

You did not sign off on this patch :(

Please resend it, and your second one, with a signed-off-by line, and a
decent subject and changelog comment as to what subsystem and what this
patch is doing.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-04-23  0:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-26 16:25 [PATCH 1/2] Fixed the format of column longer than 80 Wanlong Gao
2011-03-26 16:25 ` [PATCH 2/2] Fixed the format that column is " Wanlong Gao
2011-03-27 10:00   ` Harry Wei
2011-03-27  9:58 ` [PATCH 1/2] Fixed the format of column " Harry Wei
2011-04-23  0:05 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).