* [Fwd: [PATCH] Some pxe fixes.]
@ 2009-05-01 13:34 Michel Hermier
2009-06-09 19:08 ` Vladimir 'phcoder' Serbinenko
0 siblings, 1 reply; 2+ messages in thread
From: Michel Hermier @ 2009-05-01 13:34 UTC (permalink / raw)
To: grub-devel
[-- Attachment #1: Type: text/plain, Size: 319 bytes --]
Hi,
I was toying with pxe and noticed some errors in the code small errors
in the code. In the file read method it is possible to return error
codes instead of amount read. This patch fix that by setting the error
and returning -1 instead. It also fix some coding style by removing tabs
and use UNUSED macro.
Michel
[-- Attachment #2: pxe.diff --]
[-- Type: text/plain, Size: 3144 bytes --]
Index: ChangeLog
===================================================================
--- ChangeLog (révision 2154)
+++ ChangeLog (copie de travail)
@@ -1,3 +1,9 @@
+2009-05-01 Michel Hermier <michel.hermier@gmail.com>
+
+ * fs/i386/pc/pxe.c (grub_pxefs_read): Fix returned values.
+ Returning error codes as grub_size_t is a bad idea. Fixing
+ indent style and use UNUSED macro while at it.
+
2009-04-30 David S. Miller <davem@davemloft.net>
* util/hostdisk.c (device_is_wholedisk): New function.
Index: fs/i386/pc/pxe.c
===================================================================
--- fs/i386/pc/pxe.c (révision 2154)
+++ fs/i386/pc/pxe.c (copie de travail)
@@ -72,24 +72,24 @@
}
static void
-grub_pxe_close (grub_disk_t disk __attribute((unused)))
+grub_pxe_close (grub_disk_t disk UNUSED)
{
}
static grub_err_t
-grub_pxe_read (grub_disk_t disk __attribute((unused)),
- grub_disk_addr_t sector __attribute((unused)),
- grub_size_t size __attribute((unused)),
- char *buf __attribute((unused)))
+grub_pxe_read (grub_disk_t disk UNUSED,
+ grub_disk_addr_t sector UNUSED,
+ grub_size_t size UNUSED,
+ char *buf UNUSED)
{
return GRUB_ERR_OUT_OF_RANGE;
}
static grub_err_t
-grub_pxe_write (grub_disk_t disk __attribute((unused)),
- grub_disk_addr_t sector __attribute((unused)),
- grub_size_t size __attribute((unused)),
- const char *buf __attribute((unused)))
+grub_pxe_write (grub_disk_t disk UNUSED,
+ grub_disk_addr_t sector UNUSED,
+ grub_size_t size UNUSED,
+ const char *buf UNUSED)
{
return GRUB_ERR_OUT_OF_RANGE;
}
@@ -108,8 +108,8 @@
static grub_err_t
grub_pxefs_dir (grub_device_t device UNUSED, const char *path UNUSED,
- int (*hook) (const char *filename,
- const struct grub_dirhook_info *info) UNUSED)
+ int (*hook) (const char *filename,
+ const struct grub_dirhook_info *info) UNUSED)
{
return GRUB_ERR_NONE;
}
@@ -189,8 +189,11 @@
pn = grub_divmod64 (file->offset, data->block_size, &r);
if (r)
- return grub_error (GRUB_ERR_BAD_FS,
- "read access must be aligned to packet size");
+ {
+ grub_error (GRUB_ERR_BAD_FS,
+ "read access must be aligned to packet size");
+ return -1;
+ }
if ((curr_file != file) || (data->packet_number > pn))
{
@@ -206,7 +209,10 @@
o.packet_size = data->block_size;
grub_pxe_call (GRUB_PXENV_TFTP_OPEN, &o);
if (o.status)
- return grub_error (GRUB_ERR_BAD_FS, "open fails");
+ {
+ grub_error (GRUB_ERR_BAD_FS, "open fails");
+ return -1;
+ }
data->packet_number = 0;
curr_file = file;
}
@@ -246,8 +252,8 @@
}
static grub_err_t
-grub_pxefs_label (grub_device_t device __attribute ((unused)),
- char **label __attribute ((unused)))
+grub_pxefs_label (grub_device_t device UNUSED,
+ char **label UNUSED)
{
*label = 0;
return GRUB_ERR_NONE;
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Fwd: [PATCH] Some pxe fixes.]
2009-05-01 13:34 [Fwd: [PATCH] Some pxe fixes.] Michel Hermier
@ 2009-06-09 19:08 ` Vladimir 'phcoder' Serbinenko
0 siblings, 0 replies; 2+ messages in thread
From: Vladimir 'phcoder' Serbinenko @ 2009-06-09 19:08 UTC (permalink / raw)
To: The development of GRUB 2
Hello. Sorry that this mail was overlooked
On Fri, May 1, 2009 at 3:34 PM, Michel Hermier<michel.hermier@gmail.com> wrote:
> Hi,
>
> I was toying with pxe and noticed some errors in the code small errors
> in the code. In the file read method it is possible to return error
> codes instead of amount read. This patch fix that by setting the error
> and returning -1 instead.
Comitted this part. Thank you for noticing this bug
> It also fix some coding style by removing tabs
> and use UNUSED macro.
grub2 equally uses the both approaches. Unless it creates problems
with compilers I don't see any urge to make it uniform
>
> Michel
>
>
> Index: ChangeLog
> ===================================================================
> --- ChangeLog (révision 2154)
> +++ ChangeLog (copie de travail)
> @@ -1,3 +1,9 @@
> +2009-05-01 Michel Hermier <michel.hermier@gmail.com>
> +
> + * fs/i386/pc/pxe.c (grub_pxefs_read): Fix returned values.
> + Returning error codes as grub_size_t is a bad idea. Fixing
> + indent style and use UNUSED macro while at it.
> +
> 2009-04-30 David S. Miller <davem@davemloft.net>
>
> * util/hostdisk.c (device_is_wholedisk): New function.
> Index: fs/i386/pc/pxe.c
> ===================================================================
> --- fs/i386/pc/pxe.c (révision 2154)
> +++ fs/i386/pc/pxe.c (copie de travail)
> @@ -72,24 +72,24 @@
> }
>
> static void
> -grub_pxe_close (grub_disk_t disk __attribute((unused)))
> +grub_pxe_close (grub_disk_t disk UNUSED)
> {
> }
>
> static grub_err_t
> -grub_pxe_read (grub_disk_t disk __attribute((unused)),
> - grub_disk_addr_t sector __attribute((unused)),
> - grub_size_t size __attribute((unused)),
> - char *buf __attribute((unused)))
> +grub_pxe_read (grub_disk_t disk UNUSED,
> + grub_disk_addr_t sector UNUSED,
> + grub_size_t size UNUSED,
> + char *buf UNUSED)
> {
> return GRUB_ERR_OUT_OF_RANGE;
> }
>
> static grub_err_t
> -grub_pxe_write (grub_disk_t disk __attribute((unused)),
> - grub_disk_addr_t sector __attribute((unused)),
> - grub_size_t size __attribute((unused)),
> - const char *buf __attribute((unused)))
> +grub_pxe_write (grub_disk_t disk UNUSED,
> + grub_disk_addr_t sector UNUSED,
> + grub_size_t size UNUSED,
> + const char *buf UNUSED)
> {
> return GRUB_ERR_OUT_OF_RANGE;
> }
> @@ -108,8 +108,8 @@
>
> static grub_err_t
> grub_pxefs_dir (grub_device_t device UNUSED, const char *path UNUSED,
> - int (*hook) (const char *filename,
> - const struct grub_dirhook_info *info) UNUSED)
> + int (*hook) (const char *filename,
> + const struct grub_dirhook_info *info) UNUSED)
> {
> return GRUB_ERR_NONE;
> }
> @@ -189,8 +189,11 @@
>
> pn = grub_divmod64 (file->offset, data->block_size, &r);
> if (r)
> - return grub_error (GRUB_ERR_BAD_FS,
> - "read access must be aligned to packet size");
> + {
> + grub_error (GRUB_ERR_BAD_FS,
> + "read access must be aligned to packet size");
> + return -1;
> + }
>
> if ((curr_file != file) || (data->packet_number > pn))
> {
> @@ -206,7 +209,10 @@
> o.packet_size = data->block_size;
> grub_pxe_call (GRUB_PXENV_TFTP_OPEN, &o);
> if (o.status)
> - return grub_error (GRUB_ERR_BAD_FS, "open fails");
> + {
> + grub_error (GRUB_ERR_BAD_FS, "open fails");
> + return -1;
> + }
> data->packet_number = 0;
> curr_file = file;
> }
> @@ -246,8 +252,8 @@
> }
>
> static grub_err_t
> -grub_pxefs_label (grub_device_t device __attribute ((unused)),
> - char **label __attribute ((unused)))
> +grub_pxefs_label (grub_device_t device UNUSED,
> + char **label UNUSED)
> {
> *label = 0;
> return GRUB_ERR_NONE;
>
>
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/grub-devel
>
>
--
Regards
Vladimir 'phcoder' Serbinenko
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-06-09 19:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-01 13:34 [Fwd: [PATCH] Some pxe fixes.] Michel Hermier
2009-06-09 19:08 ` Vladimir 'phcoder' Serbinenko
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.