Re: [PATCH 7/9] drivers/hid/hid-picolcd_fb: avoid world-writable sysfs files.

2014-05-05 Thread Jiri Kosina
On Mon, 5 May 2014, Rusty Russell wrote:

> >> Cc: Bruno Prémont 
> >> Signed-off-by: Rusty Russell 
> >
> > Fine with me,
> >   Acked-by: Bruno Prémont 
> >
> > Not sure which tree you plan to push this through, CCing Jiri
> > as all picoLCD driver went in via HID tree.
> 
> Currently plan is that they'll go through my modules-next tree (which
> is where this patch originated).

Good. Feel free to add

Acked-by: Jiri Kosina 

then.

Thanks,

-- 
Jiri Kosina
SUSE Labs
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 7/9] drivers/hid/hid-picolcd_fb: avoid world-writable sysfs files.

2014-05-05 Thread Jiri Kosina
On Mon, 5 May 2014, Rusty Russell wrote:

  Cc: Bruno Prémont bonb...@linux-vserver.org
  Signed-off-by: Rusty Russell ru...@rustcorp.com.au
 
  Fine with me,
Acked-by: Bruno Prémont bonb...@linux-vserver.org
 
  Not sure which tree you plan to push this through, CCing Jiri
  as all picoLCD driver went in via HID tree.
 
 Currently plan is that they'll go through my modules-next tree (which
 is where this patch originated).

Good. Feel free to add

Acked-by: Jiri Kosina jkos...@suse.cz

then.

Thanks,

-- 
Jiri Kosina
SUSE Labs
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 7/9] drivers/hid/hid-picolcd_fb: avoid world-writable sysfs files.

2014-05-04 Thread Rusty Russell
Bruno Prémont  writes:
> On Tue, 22 April 2014 Rusty Russell  wrote:
>> In line with practice for module parameters, we're adding a build-time
>> check that sysfs files aren't world-writable.
>> 
>> Cc: Bruno Prémont 
>> Signed-off-by: Rusty Russell 
>
> Fine with me,
>   Acked-by: Bruno Prémont 
>
> Not sure which tree you plan to push this through, CCing Jiri
> as all picoLCD driver went in via HID tree.

Currently plan is that they'll go through my modules-next tree (which
is where this patch originated).

Thanks,
Rusty.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 7/9] drivers/hid/hid-picolcd_fb: avoid world-writable sysfs files.

2014-05-04 Thread Rusty Russell
Bruno Prémont bonb...@linux-vserver.org writes:
 On Tue, 22 April 2014 Rusty Russell ru...@rustcorp.com.au wrote:
 In line with practice for module parameters, we're adding a build-time
 check that sysfs files aren't world-writable.
 
 Cc: Bruno Prémont bonb...@linux-vserver.org
 Signed-off-by: Rusty Russell ru...@rustcorp.com.au

 Fine with me,
   Acked-by: Bruno Prémont bonb...@linux-vserver.org

 Not sure which tree you plan to push this through, CCing Jiri
 as all picoLCD driver went in via HID tree.

Currently plan is that they'll go through my modules-next tree (which
is where this patch originated).

Thanks,
Rusty.
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 7/9] drivers/hid/hid-picolcd_fb: avoid world-writable sysfs files.

2014-05-02 Thread Bruno Prémont
On Tue, 22 April 2014 Rusty Russell  wrote:
> In line with practice for module parameters, we're adding a build-time
> check that sysfs files aren't world-writable.
> 
> Cc: Bruno Prémont 
> Signed-off-by: Rusty Russell 

Fine with me,
  Acked-by: Bruno Prémont 

Not sure which tree you plan to push this through, CCing Jiri
as all picoLCD driver went in via HID tree.

> ---
>  drivers/hid/hid-picolcd_fb.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/hid/hid-picolcd_fb.c b/drivers/hid/hid-picolcd_fb.c
> index c930ab8554ea..7f965e231433 100644
> --- a/drivers/hid/hid-picolcd_fb.c
> +++ b/drivers/hid/hid-picolcd_fb.c
> @@ -501,7 +501,7 @@ static ssize_t picolcd_fb_update_rate_store(struct device 
> *dev,
>   return count;
>  }
>  
> -static DEVICE_ATTR(fb_update_rate, 0666, picolcd_fb_update_rate_show,
> +static DEVICE_ATTR(fb_update_rate, 0664, picolcd_fb_update_rate_show,
>   picolcd_fb_update_rate_store);
>  
>  /* initialize Framebuffer device */
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH 7/9] drivers/hid/hid-picolcd_fb: avoid world-writable sysfs files.

2014-05-02 Thread Bruno Prémont
On Tue, 22 April 2014 Rusty Russell ru...@rustcorp.com.au wrote:
 In line with practice for module parameters, we're adding a build-time
 check that sysfs files aren't world-writable.
 
 Cc: Bruno Prémont bonb...@linux-vserver.org
 Signed-off-by: Rusty Russell ru...@rustcorp.com.au

Fine with me,
  Acked-by: Bruno Prémont bonb...@linux-vserver.org

Not sure which tree you plan to push this through, CCing Jiri
as all picoLCD driver went in via HID tree.

 ---
  drivers/hid/hid-picolcd_fb.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/drivers/hid/hid-picolcd_fb.c b/drivers/hid/hid-picolcd_fb.c
 index c930ab8554ea..7f965e231433 100644
 --- a/drivers/hid/hid-picolcd_fb.c
 +++ b/drivers/hid/hid-picolcd_fb.c
 @@ -501,7 +501,7 @@ static ssize_t picolcd_fb_update_rate_store(struct device 
 *dev,
   return count;
  }
  
 -static DEVICE_ATTR(fb_update_rate, 0666, picolcd_fb_update_rate_show,
 +static DEVICE_ATTR(fb_update_rate, 0664, picolcd_fb_update_rate_show,
   picolcd_fb_update_rate_store);
  
  /* initialize Framebuffer device */
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 7/9] drivers/hid/hid-picolcd_fb: avoid world-writable sysfs files.

2014-04-21 Thread Rusty Russell
In line with practice for module parameters, we're adding a build-time
check that sysfs files aren't world-writable.

Cc: Bruno Prémont 
Signed-off-by: Rusty Russell 
---
 drivers/hid/hid-picolcd_fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hid/hid-picolcd_fb.c b/drivers/hid/hid-picolcd_fb.c
index c930ab8554ea..7f965e231433 100644
--- a/drivers/hid/hid-picolcd_fb.c
+++ b/drivers/hid/hid-picolcd_fb.c
@@ -501,7 +501,7 @@ static ssize_t picolcd_fb_update_rate_store(struct device 
*dev,
return count;
 }
 
-static DEVICE_ATTR(fb_update_rate, 0666, picolcd_fb_update_rate_show,
+static DEVICE_ATTR(fb_update_rate, 0664, picolcd_fb_update_rate_show,
picolcd_fb_update_rate_store);
 
 /* initialize Framebuffer device */
-- 
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 7/9] drivers/hid/hid-picolcd_fb: avoid world-writable sysfs files.

2014-04-21 Thread Rusty Russell
In line with practice for module parameters, we're adding a build-time
check that sysfs files aren't world-writable.

Cc: Bruno Prémont bonb...@linux-vserver.org
Signed-off-by: Rusty Russell ru...@rustcorp.com.au
---
 drivers/hid/hid-picolcd_fb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hid/hid-picolcd_fb.c b/drivers/hid/hid-picolcd_fb.c
index c930ab8554ea..7f965e231433 100644
--- a/drivers/hid/hid-picolcd_fb.c
+++ b/drivers/hid/hid-picolcd_fb.c
@@ -501,7 +501,7 @@ static ssize_t picolcd_fb_update_rate_store(struct device 
*dev,
return count;
 }
 
-static DEVICE_ATTR(fb_update_rate, 0666, picolcd_fb_update_rate_show,
+static DEVICE_ATTR(fb_update_rate, 0664, picolcd_fb_update_rate_show,
picolcd_fb_update_rate_store);
 
 /* initialize Framebuffer device */
-- 
1.8.3.2

--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/